/**
 * Strong Testimonials Default Widget template
 */
/* Clears
-----------------------------------------------*/
.clear {
  clear: both;
}

/**
Minimum paragraph width means no short words in skinny space next to image
in columns or small screens.

This workaround is needed until we can use flexbox properly
or CSS offers container queries.

Thanks https://css-tricks.com/minimum-paragraph-widths/
*/
.maybe-clear {
  content: "";
  /* this value seems to work well in both responsive and Masonry */
  width: 6em;
  display: block;
  overflow: hidden;
}

/* Base
-----------------------------------------------*/
.strong-view.wpmtst-small-widget {
  display: block;
  width: 100%;
}
.strong-view.wpmtst-small-widget div {
  box-sizing: border-box;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial {
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100%;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial.t-slide {
  margin-top: 0;
  margin-bottom: 0;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-inner {
  display: block;
  width: 100%;
  height: 100%;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-image {
  max-width: 50%;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-field-before {
  margin-right: 0.5em;
}
.strong-view.wpmtst-small-widget a.readmore,
.strong-view.wpmtst-small-widget a.readmore-toggle {
  white-space: nowrap;
  z-index: 100;
}
.strong-view.wpmtst-small-widget a.readmore-toggle:hover {
  cursor: pointer;
}

.strong-view.slider-container {
  opacity: 1;
}
.strong-view .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* Template
-----------------------------------------------*/
.strong-view.wpmtst-small-widget {
  margin-bottom: 1em;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial {
  margin-bottom: 1em;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-inner {
  padding: 10px;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-inner > *:not(:nth-last-child(2)):not(:last-child) {
	margin-bottom: 5px;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-heading {
  margin-bottom: 1em;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-content p:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-content p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-image {
  float: left;
  margin-top: 0.25em;
  margin-right: 1em;
  margin-bottom: .5em;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-image .initials {
  margin-top: 0.25em;
  margin-right: 1em;
  margin-bottom: .5em;
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  background-color: #f9f9f9;
  border-radius: 3px;
  display: table-cell;
  vertical-align: middle;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-field {
  clear: both;
}
.strong-view.wpmtst-small-widget .wpmtst-testimonial-name {
  font-weight: 700;
}
.strong-view.wpmtst-small-widget .readmore {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.strong-view.wpmtst-small-widget .readmore-page {
  border: 1px solid #E6E6E6;
  padding: 0.5em;
  text-align: center;
}

/* Slideshow
-----------------------------------------------*/
.strong-view.wpmtst-small-widget.slider-container .strong-content {
  margin: 0 auto;
}
.strong-view.wpmtst-small-widget.slider-container .wpmtst-testimonial:not(:first-child) {
  display: none;
}
.strong-view.wpmtst-small-widget.nav-position-inside .wpmtst-testimonial-inner {
  padding-bottom: 48px;
}
.strong-view.wpmtst-small-widget.controls-type-sides .wpmtst-testimonial-inner {
  padding-left: 50px;
  padding-right: 50px;
}

/* Responsive
-----------------------------------------------*/
@media only screen and (max-width: 320px) {
  .strong-view.wpmtst-small-widget .wpmtst-testimonial-image {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
/* RTL
-----------------------------------------------*/
.strong-view.wpmtst-small-widget.rtl .wpmtst-testimonial,
.strong-view.wpmtst-small-widget.rtl .wpmtst-testimonial-inner,
.strong-view.wpmtst-small-widget.rtl .wpmtst-testimonial-heading {
  text-align: right;
}
.strong-view.wpmtst-small-widget.rtl .wpmtst-testimonial-image {
  float: right;
  margin-left: 1em;
}
.strong-view.wpmtst-small-widget.rtl .wpmtst-testimonial-field {
  text-align: left;
}

/* Option: Image Right
-----------------------------------------------*/
.strong-view.wpmtst-small-widget.image-right .wpmtst-testimonial-image {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.1em;
}

@media only screen and (max-width: 480px) and (orientation: portrait) {
  .strong-view.wpmtst-small-widget.image-right .strong-content .wpmtst-testimonial-image {
    float: none;
  }
}
.strong-view.wpmtst-small-widget.image-right.rtl .wpmtst-testimonial,
.strong-view.wpmtst-small-widget.image-right.rtl .wpmtst-testimonial-inner,
.strong-view.wpmtst-small-widget.image-right.rtl .wpmtst-testimonial-heading {
  text-align: right;
}
.strong-view.wpmtst-small-widget.image-right.rtl .wpmtst-testimonial-image {
  float: left;
  margin-left: 0;
  margin-right: 1em;
}
.strong-view.wpmtst-small-widget .disabled {
  display : none!important;
}

.wpmslider-controls.disabled {
    display: block !important;
}

/*  Compatibility with metaslider pro layers display
----------------------------------------------------*/

.msHtmlOverlay .layer .disabled {
    display: block !important;
}/**
 * Star Ratings - Display Only
 *
 * Pure CSS. No floats or bidi. Simple em-based sizing.
 *
 * http://codepen.io/cdillon/pen/vXNbBw
 *
 * Based on Pure CSS Star Rating Widget by James Barnett
 * http://codepen.io/jamesbarnett/pen/vlpkh
 */

/* the container */
.strong-rating-wrapper {
  line-height: 1.7;
}

/* inline-block */
.strong-rating-wrapper.average > span {
  display: inline-block;
}

/* block */
.strong-rating-wrapper.average.block > span {
  display: block;
  margin: 0;
}

/* centered */
.strong-rating-wrapper.average.centered {
  text-align: center;
}

.strong-rating-title {
  font-weight: 700;
}

.strong-rating-wrapper legend {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* the fieldset */
.strong-rating {
  display: inline-block;
  border: 0;
}

/* the stars */

.strong-rating span.star {
  display: inline-block;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
}

.strong-rating-wrapper:not(.average) span.star:first-child:before {
  padding-left: 0;
}

.strong-rating-wrapper:not(.average) span.star:last-child:before {
  padding-right: 0;
}

.strong-rating span.star:hover {
  cursor: default;
}

/* fieldset tweaks */

/* in a form */
.strong-rating-wrapper.in-form .strong-rating {
  padding: 0;
}

/* in a view */
.strong-rating-wrapper.in-view {
  display: inline-block;
}

.strong-rating-wrapper.in-view .strong-rating {
  margin: 0;
  padding: 0;
}

/* in the post editor */
.strong-rating-wrapper.in-metabox {
  display: inline-block;
}

.strong-rating-wrapper.in-metabox .strong-rating span.star:before {
  font-size: 20px;
  line-height: 27px;
}

.strong-rating-wrapper.in-table-list .strong-rating span.star:before {
  /* use padding not margin */
  padding: 1px;
}

/* the magic */

/* this is how we highlight stars before the checked one (siblings before): */

/* hide the first label because our rating may be zero */
.strong-rating span.star0 {
  display: none;
}

/* set the color of the star and its stroke(outline) color and width */
.strong-rating-wrapper .star svg path {
  fill: #FFB900;
}
/* set the width of the star */
.strong-rating-wrapper .star svg {
  width: 20px;
}

/* then turn off stars after the current rating */
.strong-rating span.current ~ span.star:before {
  content: "";
  -webkit-mask: url(/wp-content/plugins/strong-testimonials/public/css/../svg/star-regular.svg) center center no-repeat;
  mask: url(/wp-content/plugins/strong-testimonials/public/css/../svg/star-regular.svg) center center no-repeat;
}

/* turn on the current rating */
.strong-rating span.current:before {
  color: #FFB900;
}

/* which may be a half star */
.strong-rating-wrapper.average .strong-rating span.star.half:before {
  content: "";
  -webkit-mask: url(/wp-content/plugins/strong-testimonials/public/css/../svg/star-half-alt-solid.svg) center center no-repeat;
  mask: url(/wp-content/plugins/strong-testimonials/public/css/../svg/star-half-alt-solid.svg) center center no-repeat;
}

/* Responsive
--------------------------------------------------*/
@media only screen and (max-width: 480px) {
  .strong-rating-wrapper > span {
    display: block;
    line-height: 30px;
    vertical-align: middle;
    margin: 0;
    text-align: center;
  }
}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:0;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:0;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top,white 50%,#eee 100%);background-image:-o-linear-gradient(top,white 50%,#eee 100%);background-image:linear-gradient(to bottom,white 50%,#eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF',endColorstr='#FFEEEEEE',GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:0;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top,#eee 50%,#ccc 100%);background-image:-o-linear-gradient(top,#eee 50%,#ccc 100%);background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE',endColorstr='#FFCCCCCC',GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:0;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:0}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:0;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top,white 0,#eee 50%);background-image:-o-linear-gradient(top,white 0,#eee 50%);background-image:linear-gradient(to bottom,white 0,#eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF',endColorstr='#FFEEEEEE',GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top,#eee 50%,white 100%);background-image:-o-linear-gradient(top,#eee 50%,white 100%);background-image:linear-gradient(to bottom,#eee 50%,white 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE',endColorstr='#FFFFFFFF',GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:white;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:0}.select2-container--classic .select2-dropdown--below{border-top:0}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:white}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}.select2-container--comfortable .select2-selection--single{background-color:#fff;border:1px solid #aaa;height:32px}.select2-container--comfortable .select2-selection--single .select2-selection__rendered{color:#444;line-height:32px}.select2-container--comfortable .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--comfortable .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--comfortable .select2-selection--single .select2-selection__arrow{height:32px;position:absolute;top:1px;right:1px;width:20px}.select2-container--comfortable .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:7px 6px 0 6px;height:0;left:50%;margin-left:-12px;margin-top:-4px;position:absolute;top:50%;width:0}.select2-container--comfortable[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--comfortable[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--comfortable.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--comfortable.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--comfortable.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 6px 7px 6px}.select2-container--comfortable .select2-selection--multiple{background-color:white;border:1px solid #aaa;cursor:text}.select2-container--comfortable .select2-selection--multiple .select2-search--inline .select2-search__field{margin-top:8px}.select2-container--comfortable .select2-selection--multiple .select2-search--inline .select2-search__field{height:28px;line-height:28px}.select2-container--comfortable .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 8px 1px;width:100%}.select2-container--comfortable .select2-selection--multiple .select2-selection__rendered li{list-style:none;line-height:28px}.select2-container--comfortable .select2-selection--multiple .select2-selection__placeholder{color:#999;float:left}.select2-container--comfortable .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;line-height:28px;margin-top:9px;margin-right:4px}.select2-container--comfortable .select2-selection--multiple .select2-selection__clear:hover{color:#cd0000}.select2-container--comfortable .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;cursor:default;float:left;margin-right:8px;margin-top:8px;padding:0 10px}.select2-container--comfortable .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:4px}.select2-container--comfortable .select2-selection--multiple .select2-selection__choice__remove:hover{color:#cd0000}.select2-container--comfortable[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--comfortable[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--comfortable[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--comfortable[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:8px;margin-right:auto}.select2-container--comfortable[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--comfortable.select2-container--focus .select2-selection--multiple{border:solid #333 1px;outline:0;z-index:1}.select2-container--comfortable.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--comfortable.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--comfortable.select2-container--open.select2-container--above .select2-selection--single,.select2-container--comfortable.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--comfortable.select2-container--open.select2-container--below .select2-selection--single,.select2-container--comfortable.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--comfortable .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--comfortable .select2-search--inline .select2-search__field{height:34px;background:transparent;border:0;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--comfortable .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--comfortable .select2-results__option[role=group]{padding:0}.select2-container--comfortable .select2-results__option[aria-disabled=true]{color:#999}.select2-container--comfortable .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--comfortable .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--comfortable .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--comfortable .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--comfortable .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--comfortable .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--comfortable .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--comfortable .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--comfortable .select2-results__group{cursor:default;display:block;padding:6px}.select2-search--dropdown{padding:8px}.select2-search--dropdown .select2-search__field{padding:8px}.select2{margin-top:4px}.select2-container--wp-admin .select2-selection--single{background-color:#FFF;border:1px solid #DDD;box-shadow:inset 0 1px 2px rgba(0,0,0,0.07)}.select2-container--wp-admin .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--wp-admin .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--wp-admin .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--wp-admin .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--wp-admin .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-8px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--wp-admin[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--wp-admin[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--wp-admin.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--wp-admin.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--wp-admin.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--wp-admin .select2-selection--multiple{background-color:white;border:1px solid #DDD;cursor:text}.select2-container--wp-admin .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;display:block;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--wp-admin .select2-selection--multiple .select2-selection__rendered li{list-style:none;line-height:1.4em}.select2-container--wp-admin .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--wp-admin .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--wp-admin .select2-selection--multiple .select2-selection__choice{background:rgba(0,0,0,0.07);border:1px solid #CCC;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px 2px}.select2-container--wp-admin .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--wp-admin .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--wp-admin[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--wp-admin[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--wp-admin[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--wp-admin[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--wp-admin[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--wp-admin.select2-container--focus .select2-selection--multiple{border:solid #DDD 1px;outline:0}.select2-container--wp-admin.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--wp-admin.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--wp-admin.select2-container--open.select2-container--above .select2-selection--single,.select2-container--wp-admin.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--wp-admin.select2-container--open.select2-container--below .select2-selection--single,.select2-container--wp-admin.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--wp-admin .select2-search--dropdown .select2-search__field{border:1px solid #DDD}.select2-container--wp-admin .select2-search--inline .select2-search__field{background:transparent;border:0;outline:0;box-shadow:none;-webkit-appearance:textfield;margin-top:7px}.select2-container--wp-admin .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--wp-admin .select2-results__option[role=group]{padding:0}.select2-container--wp-admin .select2-results__option[aria-disabled=true]{color:#999}.select2-container--wp-admin .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--wp-admin .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--wp-admin .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--wp-admin .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--wp-admin .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--wp-admin .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--wp-admin .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--wp-admin .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--wp-admin .select2-results__group{cursor:default;display:block;padding:6px}.select2 span.dropdown-wrapper{display:none}.select2{margin-top:2px}
/* Select2
---------------------------------------------------------*/
.wpmtst-assignment {
  visibility: hidden;
}
.select2-results__option[role="treeitem"] {
  text-indent: 1em;
}
select[multiple].wpmtst-assignment {
  width: 100%;
}