/* Remove arrow/toggle button inside the picker */
.pkt-lrd-color-wrapper .sp-replacer .sp-dd {
  display: none !important; /* hide dropdown arrow */
}

/* Reduce padding inside the color picker wrapper */
.pkt-lrd-color-wrapper .sp-replacer {
  padding: 0 !important;
  border: 1px solid #2ea2cc !important;
  /* border-radius: 4px !important; */
  height: 30px !important;
  box-sizing: border-box !important;
  border-left: none !important;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

/* Align color preview box with input */
.sp-preview {
  margin: 0 !important;
  border: none !important;
  width: 30px !important;
  height: 100% !important;
  border-right: 1px solid #8c8f94 !important;
  border-radius: 4px 0 0 4px !important;
}

/* Input text field */
.sp-input {
  height: 30px !important;
  padding: 0 8px !important;
  text-transform: uppercase;
  font-size: 13px;
  /* width: auto !important; */
  box-sizing: border-box;
  background-color: #ffffff;
}

.pkt-lrd-personalization-table tbody tr {
  padding: 15px 0;
}

/* Wrapper: remove space between input and button */
.pkt-lrd-color-wrapper {
  width: inherit;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Input (hex field) */
.pkt-lrd-user-color-field {
  width: 100px;
  height: 30px;
  border: 1px solid #2ea2cc;
  border-right: none; /* merge with button */
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
  text-align: center;
  color: #2c3338;
  font-size: 13px;
  box-sizing: border-box;
}

/* "Choose Color" button (attached to input) */
.pkt-lrd-color-btn {
  background: #f6f7f7;
  border: 1px solid #2ea2cc;
  border-right: 1px solid #c3c4c7;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  color: #50575e;
  font-size: 13px;
  line-height: 1.5;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  height: 30px;
  box-sizing: border-box;
}

.pkt-lrd-color-btn:hover {
  background: #f0f0f1;
  border-color: #2271b1;
  color: #2271b1;
}

.pkt-lrd-user-account-settings-btn-wrapper {
  /* margin-top: 20px; */
  /* padding-inline-end: 20px; */
  /* text-align: end; */
  /* padding-bottom: 10px; */
  position: absolute;
  left: 20px;
  bottom: 10px;
}

.pkt-lrd-user-account-settings-btn {
  width: 100px;
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
  background-color: #427ed1;
  border: 0;
  transition: all 1s;
}

.pkt-lrd-btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-top-color: #0073aa;
  border-radius: 50%;
  margin-right: 6px;
  animation: pkt-lrd-spin 0.6s linear infinite;
  vertical-align: middle;
}

.pkt-lrd-reset-default-btn {
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
  background-color: #C46856;
  border: 0;
  transition: all 1s;
}

.pkt-lrd-reset-btn {
  padding: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
  background-color: green;
  border: 0;
  transition: all 1s;
}

@keyframes pkt-lrd-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
