#stsm_reviewer_info .stsm-field-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 15px;
}

#stsm_reviewer_info label {
  font-size: 14px;
  font-weight: 500;
}

.hndle.ui-sortable-handle {
  font-size: 18px !important;
}


/* Group Tabs */
.stsm-settings-tabs-wrapper {
  margin-top: 20px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px;
}

.stsm-settings-tabs-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  border-bottom: 1px solid #ddd;
}

.stsm-settings-tabs-nav li {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #f5f5f5;
  margin-right: 2px;
}

.stsm-settings-tabs-nav li.active {
  background: #fff;
  border-top: 2px solid #007cba;
  font-weight: bold;
}

.stsm-settings-tabs-content {
  padding: 15px;
}

.stsm-settings-tab-content {
  display: none;
}

.stsm-settings-tab-content.active {
  display: block;
}

/* Slider Settings Tabs */
.stsm-slider-s-tabs-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.stsm-slider-s-tabs-nav {
  flex: 0 0 200px;
  border-right: 1px solid #ddd;
}

.stsm-slider-s-tabs-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stsm-slider-s-tabs-nav li {
  padding: 10px 15px;
  cursor: pointer;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s;
}

.stsm-slider-s-tabs-nav li:hover,
.stsm-slider-s-tabs-nav li.active {
  background-color: #e4e4e4;
  font-weight: bold;
}

.stsm-slider-s-tabs-content {
  flex: 1;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-style: none;
}

.stsm-slider-s-tab-content {
  display: none;
}

.stsm-slider-s-tab-content.active {
  display: block;
}



/* Switch CSS */
.stsm-switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}

.stsm-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.stsm-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.stsm-slider:before {
  position: absolute;
  content: '';
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.stsm-slider {
  background-color: #007cba;
}

input:checked+.stsm-slider:before {
  transform: translateX(14px);
}


/* Settings CSS */
.stsm-settings-item {
  gap: 15px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 25px;
}

.stsm-settings-item .title {
  font-size: 16px !important;
  padding-left: 0 !important;
}

.stsm-settings-item .label p {
  margin: 0 !important;
}

/* Help CSS */
.stsm-help-wrapper {
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
  margin: 20px 20px 20px 0;
  box-shadow: 0 0 20px 0 rgba(36, 39, 50, .08);
}

.stsm-help-header {
  background: #222;
  padding: 30px;
  border-radius: 5px;
}

.stsm-help-header .title {
  color: #fff;
  font-size: 30px;
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
}

.stsm-help-header p {
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.stsm-helo-list {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.stsm-help-type {
  padding: 25px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(36, 39, 50, .08);
}

.stsm-help-type h3 {
  margin: 0;
  line-height: 1;
  font-size: 20px;
  text-transform: capitalize;
}

.stsm-help-type p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 100px;
}

.stsm-help-type a {
  display: inline-block;
  background: #222;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  transition: all 0.3s;
}

.stsm-help-type a:hover {
  background-color: #111;
}

.stsm-help-mid {
  gap: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
}

.stsm-help-video iframe {
  width: 100%;
  height: 500px;
  border-radius: 5px;
}

.stsm-author-bio {
  padding: 30px;
  box-shadow: 0 0 20px 0 rgba(36, 39, 50, .08);
}

.stsm-author-bio h2 {
  font-size: 30px;
  margin-top: 0;
}

.stsm-author-bio h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.stsm-author-bio p {
  font-size: 16px;
  line-height: 1.5;
}

.stsm-author-bio ul {
  gap: 10px;
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0;
}

.stsm-author-bio ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #222;
  transition: all 0.3s;
}

.stsm-author-bio ul li a:hover {
  color: #cff094;
}





/* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
.rating-group {
  display: inline-flex;
}

/* make hover effect work properly in IE */
.rating__icon {
  pointer-events: none;
}

/* hide radio inputs */
.rating__input {
  position: absolute !important;
  left: -9999px !important;
}

/* hide 'none' input from screenreaders */
.rating__input--none {
  display: none
}

/* set icon padding and size */
.rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
}

/* set default star color */
.rating__icon--star {
  color: orange;
}

/* if any input is checked, make its following siblings grey */
.rating__input:checked~.rating__label .rating__icon--star {
  color: #ddd;
}

/* make all stars orange on rating group hover */
.rating-group:hover .rating__label .rating__icon--star {
  color: orange;
}

/* make hovered input's following siblings grey on hover */
.rating__input:hover~.rating__label .rating__icon--star {
  color: #ddd;
}

.stsm-settings-item .slider-cols {
  gap: 15px;
  display: flex;
  align-items: center;
}

.stsm-settings-tab-content .heading {
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

#stsm_layout_meta_box .stsm-settings-item {
  margin-bottom: 0;
}

#stsm_layout_meta_box .inside {
  padding-top: 6px;
}