.section-block{
  margin-bottom: 30px;
}
.meta-section .section-block:not(:first-child){
  display: none;
}
.section-block label{
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.display-settings .select2.select2-container{
  width: 100% !important;
}
.switch {
  background-color: #ddd;
  border-radius: 18px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  padding: 3px;
  position: relative;
  vertical-align: top;
  width: 56px;
}
.switch-input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.switch-label {
  background: #eceeef none repeat scroll 0 0;
  border-radius: inherit;
  display: block;
  font-size: 10px;
  height: inherit;
  position: relative;
  text-transform: uppercase;
  transition: all 0.15s ease-out 0s;
}
.switch-label::before, .switch-label::after {
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  top: 50%;
  transition: inherit;
}
.switch-input:checked ~ .switch-label {
  background: #2271b1 none repeat scroll 0 0;
}
.switch-handle {
  background-color: #fff;
  border-radius: 10px;
  height: 18px;
  left: 4px;
  position: absolute;
  top: 4px;
  transition: left 0.15s ease-out 0s;
  width: 18px;
}
.switch-handle::before {
  background-color: #f9f9f9;
  border-radius: 6px;
  content: "";
  height: 12px;
  left: 50%;
  margin: -6px 0 0 -6px;
  position: absolute;
  top: 50%;
  width: 12px;
}
.switch-input:checked ~ .switch-handle {
  left: 40px;
}
.switch-green > .switch-input:checked ~ .switch-label {
  background-color: #2271b1;
}


/* Custom Toast CSS  */
i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: dashicons !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.toast-icon-error:before {
  content: "\f335";
}

.toast-icon-info:before {
  content: "\f348";
}

.toast-icon-notice:before {
  content: "\f16d";
}

.toast-icon-success:before {
  content: "\f12a";
}

.toast-icon-warning:before {
  content: "\f534";
}

.toast-item-wrapper {
  min-width: 250px;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toast-item-wrapper i.toast-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 50px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.5rem;
}

.toast-item-wrapper .toast-close {
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  text-align: center;
  cursor: pointer;
}

.toast-item-wrapper.success {
  background-color: #11A849;
  border: 1px solid #11A849;
}

.toast-item-wrapper.error {
  background-color: #EE0000;
  border: 1px solid #EE0000;
}

.toast-item-wrapper.error {
  padding: 10px;
}

.toast-item-wrapper.error p {
  margin: 0;
}

.toast-item-wrapper.warning {
  background-color: #F5A623;
  border: 1px solid #F5A623;
  color: #333;
}

.toast-item-wrapper.notice {
  background-color: #48a9f8;
  border: 1px solid #208ce4;
}

.toast-item-wrapper.notice {
  padding: 10px;
}

.toast-item-wrapper.notice p {
  margin: 0;
}

.toast-item-wrapper.info {
  background-color: #7f97a3;
  border: 1px solid #6b8699;
}

.toast-item-wrapper.toast-top-left {
  left: 20px;
  top: 20px;
}

.toast-item-wrapper.toast-top-right {
  right: 20px;
  top: 20px;
}

.toast-item-wrapper.toast-top-center {
  margin: 0 auto;
  top: 20px;
}

.toast-item-wrapper.toast-bottom-left {
  left: 20px;
  bottom: 20px;
}

.toast-item-wrapper.toast-bottom-right {
  right: 20px;
  bottom: 20px;
}

.toast-item-wrapper.toast-bottom-center {
  margin: 0 auto;
  bottom: 20px;
}

.toast-item-wrapper.fullscreen {
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
}

.toast-item-wrapper p {
  margin: 0;
}

.toast-item-wrapper .toast-title {
  font-size: 1rem;
  font-weight: 700;
}

.toast-item-wrapper .toast-message {
  font-size: 0.87rem;
}

.toast-item-wrapper .toast-progress {
  width: 0;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  right: 0;
}

.toast-item-wrapper.rtl {
  direction: rtl;
  text-align: right;
}

.toast-item-wrapper.rtl i.toast-icon {
  left: auto;
  right: 0;
}

.toast-item-wrapper.rtl .toast-close {
  right: auto;
  left: 0;
}

.toast-item-wrapper.rtl p {
  text-align: right;
}

.toast-item-wrapper.rtl .toast-progress {
  left: auto;
  right: 0;
}