.product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
    background: #2f3d4d;
    padding: 6px 12px;
}

.form-check-input {
  clear: left;
}

.form-switch.form-switch-sm {
  margin-bottom: 0.5rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-sm .form-check-input {
  height: 1rem;
  width: calc(1rem + 0.75rem);
  border-radius: 2rem;
}

.form-switch.form-switch-md {
  margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
}

.form-switch.form-switch-lg {
  margin-bottom: 1.5rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-lg .form-check-input {
  height: 2rem;
  width: calc(3rem + 0.75rem);
  border-radius: 4rem;
}

.form-switch.form-switch-xl {
  margin-bottom: 2rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-xl .form-check-input {
  height: 2.5rem;
  width: calc(4rem + 0.75rem);
  border-radius: 5rem;
}

.card.theme-card .card-header {
  border-bottom: 1px solid #f1f1f1;
}

.card.theme-card .card-body {
  padding: 0;
}

.card.theme-card .card-footer {
  border-top: 1px solid #f1f1f1;
}

form .image-preview {
  padding: 15px 25px;
  background: #0d3985;
  border-radius: 5px;
  display: block;
  margin: 5px 0px 10px 0;
}

form .image-preview img {
  max-height: 200px;
}

.repeater-blocks-container {
  margin-top: 15px;
}

.repeater-blocks-container .options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.repeater-block-header .options a {
  margin-right: 10px;
}

.repeater-blocks-container .options a svg {
  margin-right: 5px;
}

.repeater-block {
  background: #f2f8ff;
  border: 2px solid #787b7d;
  border-radius: 3px;
  margin-top: 20px;
}

.repeater-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repeater-block-content {
  border-top: 1px solid #788da7;
}

.repeater-block-header, .repeater-block-content {
  padding: 10px 15px;
}

.sidebar-content {
  height: 100%;
}
.tld-search-area{
  display: flex;
  justify-content: space-between;
  padding: 15px 0 0;
}
.tld-search-area .tld-search-sec{
  width: 450px;
}
button, input, a, textarea, div, span, .form-control{
  box-shadow: none !important;
  outline: none !important;
}
@media (max-width:768px) {
  .tld-search-area{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .tld-search-area .tld-search-sec{
    width: 100%;
    margin-bottom: 10px;
  }
}
.ck-editor__editable {
    min-height: 300px;
}

/* Dashboard quick-link cards */
.card-hover {
    transition: transform .15s ease, box-shadow .15s ease;
    border: 1px solid #e9ecef;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.10) !important;
    border-color: #3f80ea;
}

/* Settings toggle labels */
.form-switch.form-switch-lg .form-check-input {
    margin-top: 0.1rem;
}

/* Utility */
.xsmall { font-size: 0.72rem; }

/* Options form section dividers */
.options-section-heading {
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 6px;
    margin: 28px 0 16px;
    color: #354052;
}

/* Dashboard Quick Actions List */
.quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-action-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    background-color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.quick-action-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #fafbfc;
}

.quick-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease-in-out;
}

.quick-action-icon svg {
    width: 16px;
    height: 16px;
}

.quick-action-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #212529;
}

.quick-action-desc {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 1px;
}

.chevron-arrow {
    opacity: 0.5;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.quick-action-item:hover .chevron-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Quick Action Themes */
.action-danger .quick-action-icon {
    background-color: rgba(250, 82, 82, 0.1);
    color: #fa5252;
}
.action-danger:hover {
    border-color: rgba(250, 82, 82, 0.4) !important;
}

.action-primary .quick-action-icon {
    background-color: rgba(63, 128, 234, 0.1);
    color: #3f80ea;
}
.action-primary:hover {
    border-color: rgba(63, 128, 234, 0.4) !important;
}

.action-success .quick-action-icon {
    background-color: rgba(75, 181, 67, 0.1);
    color: #4bb543;
}
.action-success:hover {
    border-color: rgba(75, 181, 67, 0.4) !important;
}

.action-warning .quick-action-icon {
    background-color: rgba(240, 173, 78, 0.1);
    color: #f0ad4e;
}
.action-warning:hover {
    border-color: rgba(240, 173, 78, 0.4) !important;
}

.action-secondary .quick-action-icon {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}
.action-secondary:hover {
    border-color: rgba(108, 117, 125, 0.4) !important;
}