.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 {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.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;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.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--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  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;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !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;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.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;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.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__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  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: none;
  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 .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--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  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, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 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;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  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: none;
  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: none;
}

.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: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 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: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 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;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.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;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.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__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.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: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  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: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc( 100% - 2.4em );
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("../images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("../images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("../images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("../images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("../images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("../images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("../images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-BkCnObl.eot");
  src: url("../fonts/ITCAvantGardeStd-BkCnObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-BkCnObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-BkCnObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-BkCnObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-BkCnObl.svg#ITCAvantGardeStd-BkCnObl") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Demi";
  src: url("../fonts/ITCAvantGardeStd-Demi.eot");
  src: url("../fonts/ITCAvantGardeStd-Demi.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-Demi.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-Demi.woff") format("woff"), url("../fonts/ITCAvantGardeStd-Demi.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-Demi.svg#ITCAvantGardeStd-Demi") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-BoldCnObl.eot");
  src: url("../fonts/ITCAvantGardeStd-BoldCnObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-BoldCnObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-BoldCnObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-BoldCnObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-BoldCnObl.svg#ITCAvantGardeStd-BoldCnObl") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-Bold.eot");
  src: url("../fonts/ITCAvantGardeStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-Bold.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-Bold.woff") format("woff"), url("../fonts/ITCAvantGardeStd-Bold.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-Bold.svg#ITCAvantGardeStd-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-BkObl.eot");
  src: url("../fonts/ITCAvantGardeStd-BkObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-BkObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-BkObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-BkObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-BkObl.svg#ITCAvantGardeStd-BkObl") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Book Condensed";
  src: url("../fonts/ITCAvantGardeStd-BkCn.eot");
  src: url("../fonts/ITCAvantGardeStd-BkCn.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-BkCn.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-BkCn.woff") format("woff"), url("../fonts/ITCAvantGardeStd-BkCn.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-BkCn.svg#ITCAvantGardeStd-BkCn") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Bold Condensed";
  src: url("../fonts/ITCAvantGardeStd-BoldCn.eot");
  src: url("../fonts/ITCAvantGardeStd-BoldCn.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-BoldCn.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-BoldCn.woff") format("woff"), url("../fonts/ITCAvantGardeStd-BoldCn.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-BoldCn.svg#ITCAvantGardeStd-BoldCn") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-DemiObl.eot");
  src: url("../fonts/ITCAvantGardeStd-DemiObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-DemiObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-DemiObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-DemiObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-DemiObl.svg#ITCAvantGardeStd-DemiObl") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Book";
  src: url("../fonts/ITCAvantGardeStd-Bk.eot");
  src: url("../fonts/ITCAvantGardeStd-Bk.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-Bk.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-Bk.woff") format("woff"), url("../fonts/ITCAvantGardeStd-Bk.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-Bk.svg#ITCAvantGardeStd-Bk") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Demi Condensed";
  src: url("../fonts/ITCAvantGardeStd-DemiCn.eot");
  src: url("../fonts/ITCAvantGardeStd-DemiCn.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-DemiCn.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-DemiCn.woff") format("woff"), url("../fonts/ITCAvantGardeStd-DemiCn.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-DemiCn.svg#ITCAvantGardeStd-DemiCn") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-DemiCnObl.eot");
  src: url("../fonts/ITCAvantGardeStd-DemiCnObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-DemiCnObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-DemiCnObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-DemiCnObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-DemiCnObl.svg#ITCAvantGardeStd-DemiCnObl") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-BoldObl.eot");
  src: url("../fonts/ITCAvantGardeStd-BoldObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-BoldObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-BoldObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-BoldObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-BoldObl.svg#ITCAvantGardeStd-BoldObl") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Medium Condensed";
  src: url("../fonts/ITCAvantGardeStd-MdCn.eot");
  src: url("../fonts/ITCAvantGardeStd-MdCn.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-MdCn.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-MdCn.woff") format("woff"), url("../fonts/ITCAvantGardeStd-MdCn.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-MdCn.svg#ITCAvantGardeStd-MdCn") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Extra";
  src: url("../fonts/ITCAvantGardeStd-XLt.eot");
  src: url("../fonts/ITCAvantGardeStd-XLt.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-XLt.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-XLt.woff") format("woff"), url("../fonts/ITCAvantGardeStd-XLt.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-XLt.svg#ITCAvantGardeStd-XLt") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-Md.eot");
  src: url("../fonts/ITCAvantGardeStd-Md.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-Md.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-Md.woff") format("woff"), url("../fonts/ITCAvantGardeStd-Md.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-Md.svg#ITCAvantGardeStd-Md") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-XLtCnObl.eot");
  src: url("../fonts/ITCAvantGardeStd-XLtCnObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-XLtCnObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-XLtCnObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-XLtCnObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-XLtCnObl.svg#ITCAvantGardeStd-XLtCnObl") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std Extra Light Condensed";
  src: url("../fonts/ITCAvantGardeStd-XLtCn.eot");
  src: url("../fonts/ITCAvantGardeStd-XLtCn.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-XLtCn.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-XLtCn.woff") format("woff"), url("../fonts/ITCAvantGardeStd-XLtCn.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-XLtCn.svg#ITCAvantGardeStd-XLtCn") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-XLtObl.eot");
  src: url("../fonts/ITCAvantGardeStd-XLtObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-XLtObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-XLtObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-XLtObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-XLtObl.svg#ITCAvantGardeStd-XLtObl") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-MdCnObl.eot");
  src: url("../fonts/ITCAvantGardeStd-MdCnObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-MdCnObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-MdCnObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-MdCnObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-MdCnObl.svg#ITCAvantGardeStd-MdCnObl") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ITC Avant Garde Gothic Std";
  src: url("../fonts/ITCAvantGardeStd-MdObl.eot");
  src: url("../fonts/ITCAvantGardeStd-MdObl.eot?#iefix") format("embedded-opentype"), url("../fonts/ITCAvantGardeStd-MdObl.woff2") format("woff2"), url("../fonts/ITCAvantGardeStd-MdObl.woff") format("woff"), url("../fonts/ITCAvantGardeStd-MdObl.ttf") format("truetype"), url("../fonts/ITCAvantGardeStd-MdObl.svg#ITCAvantGardeStd-MdObl") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-BoldOblique.eot");
  src: url("../fonts/Helvetica-BoldOblique.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica-BoldOblique.woff2") format("woff2"), url("../fonts/Helvetica-BoldOblique.woff") format("woff"), url("../fonts/Helvetica-BoldOblique.ttf") format("truetype"), url("../fonts/Helvetica-BoldOblique.svg#Helvetica-BoldOblique") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.eot");
  src: url("../fonts/Helvetica-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica-Bold.woff2") format("woff2"), url("../fonts/Helvetica-Bold.woff") format("woff"), url("../fonts/Helvetica-Bold.ttf") format("truetype"), url("../fonts/Helvetica-Bold.svg#Helvetica-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.eot");
  src: url("../fonts/Helvetica.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica.woff2") format("woff2"), url("../fonts/Helvetica.woff") format("woff"), url("../fonts/Helvetica.ttf") format("truetype"), url("../fonts/Helvetica.svg#Helvetica") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-LightOblique.eot");
  src: url("../fonts/Helvetica-LightOblique.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica-LightOblique.woff2") format("woff2"), url("../fonts/Helvetica-LightOblique.woff") format("woff"), url("../fonts/Helvetica-LightOblique.ttf") format("truetype"), url("../fonts/Helvetica-LightOblique.svg#Helvetica-LightOblique") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Light.eot");
  src: url("../fonts/Helvetica-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica-Light.woff2") format("woff2"), url("../fonts/Helvetica-Light.woff") format("woff"), url("../fonts/Helvetica-Light.ttf") format("truetype"), url("../fonts/Helvetica-Light.svg#Helvetica-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Oblique.eot");
  src: url("../fonts/Helvetica-Oblique.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica-Oblique.woff2") format("woff2"), url("../fonts/Helvetica-Oblique.woff") format("woff"), url("../fonts/Helvetica-Oblique.ttf") format("truetype"), url("../fonts/Helvetica-Oblique.svg#Helvetica-Oblique") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.eot");
  src: url("../fonts/HelveticaNeue-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeue-Medium.woff") format("woff"), url("../fonts/HelveticaNeue-Medium.ttf") format("truetype"), url("../fonts/HelveticaNeue-Medium.svg#HelveticaNeue-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue.eot");
  src: url("../fonts/HelveticaNeue.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue.woff2") format("woff2"), url("../fonts/HelveticaNeue.woff") format("woff"), url("../fonts/HelveticaNeue.ttf") format("truetype"), url("../fonts/HelveticaNeue.svg#HelveticaNeue") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.eot");
  src: url("../fonts/HelveticaNeue-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeue-Bold.woff") format("woff"), url("../fonts/HelveticaNeue-Bold.ttf") format("truetype"), url("../fonts/HelveticaNeue-Bold.svg#HelveticaNeue-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Memphis LT CYR W01";
  src: url("../fonts/MemphisLTCYRW01-LightItalic.eot");
  src: url("../fonts/MemphisLTCYRW01-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/MemphisLTCYRW01-LightItalic.woff2") format("woff2"), url("../fonts/MemphisLTCYRW01-LightItalic.woff") format("woff"), url("../fonts/MemphisLTCYRW01-LightItalic.ttf") format("truetype"), url("../fonts/MemphisLTCYRW01-LightItalic.svg#MemphisLTCYRW01-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Memphis LT CYR W01";
  src: url("../fonts/MemphisLTCYRW01-Medium.eot");
  src: url("../fonts/MemphisLTCYRW01-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/MemphisLTCYRW01-Medium.woff2") format("woff2"), url("../fonts/MemphisLTCYRW01-Medium.woff") format("woff"), url("../fonts/MemphisLTCYRW01-Medium.ttf") format("truetype"), url("../fonts/MemphisLTCYRW01-Medium.svg#MemphisLTCYRW01-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Memphis LT CYR W01";
  src: url("../fonts/MemphisLTCYRW01-Light.eot");
  src: url("../fonts/MemphisLTCYRW01-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/MemphisLTCYRW01-Light.woff2") format("woff2"), url("../fonts/MemphisLTCYRW01-Light.woff") format("woff"), url("../fonts/MemphisLTCYRW01-Light.ttf") format("truetype"), url("../fonts/MemphisLTCYRW01-Light.svg#MemphisLTCYRW01-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Memphis LT CYR W01";
  src: url("../fonts/MemphisLTCYRW01-Medium_1.eot");
  src: url("../fonts/MemphisLTCYRW01-Medium_1.eot?#iefix") format("embedded-opentype"), url("../fonts/MemphisLTCYRW01-Medium_1.woff2") format("woff2"), url("../fonts/MemphisLTCYRW01-Medium_1.woff") format("woff"), url("../fonts/MemphisLTCYRW01-Medium_1.ttf") format("truetype"), url("../fonts/MemphisLTCYRW01-Medium_1.svg#MemphisLTCYRW01-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Memphis LT CYR W01";
  src: url("../fonts/MemphisLTCYRW01-LightItalic_1.eot");
  src: url("../fonts/MemphisLTCYRW01-LightItalic_1.eot?#iefix") format("embedded-opentype"), url("../fonts/MemphisLTCYRW01-LightItalic_1.woff2") format("woff2"), url("../fonts/MemphisLTCYRW01-LightItalic_1.woff") format("woff"), url("../fonts/MemphisLTCYRW01-LightItalic_1.ttf") format("truetype"), url("../fonts/MemphisLTCYRW01-LightItalic_1.svg#MemphisLTCYRW01-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Memphis LT CYR W01";
  src: url("../fonts/MemphisLTCYRW01-Light_1.eot");
  src: url("../fonts/MemphisLTCYRW01-Light_1.eot?#iefix") format("embedded-opentype"), url("../fonts/MemphisLTCYRW01-Light_1.woff2") format("woff2"), url("../fonts/MemphisLTCYRW01-Light_1.woff") format("woff"), url("../fonts/MemphisLTCYRW01-Light_1.ttf") format("truetype"), url("../fonts/MemphisLTCYRW01-Light_1.svg#MemphisLTCYRW01-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --body-font: "Memphis LT CYR W01", sans-serif;
  --special-font: "Memphis LT CYR W01", Arial, sans-serif;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.primary-btn.mb-5 {
  margin-bottom: 40px;
}

.absolute-center, .has-video .video-wrapper .absolute-full-box::before, header .mobile-menu__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container-fluid {
  max-width: 1920px;
}

.d-none {
  display: none !important;
}

body {
  font-family: "Memphis LT CYR W01";
  overflow-x: hidden;
}

.home-container aside a,
.section-title,
h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4 {
  font-family: "ITC Avant Garde Gothic Std";
}

header .mobile-menu,
header button.close {
  --menu-bar-width: 22px;
}
@media (max-width: 650px) {
  header .mobile-menu.active {
    position: absolute;
    right: 24px;
    margin-right: 0 !important;
  }
}

.btn.arrow-link {
  font-family: "ITC Avant Garde Gothic Std";
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}
.btn.arrow-link::after {
  margin-top: -3px;
}

.btn.primary-btn--white {
  color: #fff;
  border-color: #fff;
}
.btn.primary-btn--white:hover {
  border-color: #000;
}

.transition, .two-panel .panel .panel-text {
  transition: 0.2s all ease;
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 651px) {
  .visible-mobile {
    display: none;
  }
}

.scroll-container .content-container h2 {
  max-width: 480px;
}

.btn-white-shadowed {
  min-width: 295px;
  background: #FFFFFF;
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-decoration: none !important;
}
.btn-white-shadowed:hover {
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.75);
}

.flex-direction-row-reverse {
  flex-direction: row-reverse;
}

.btn.arrow-link:not(.alt) {
  font-size: calc(20rem / 16);
  letter-spacing: 0.05em;
}

.accordions button {
  text-transform: none;
}

.show-nav .menu-item-has-children > a,
.show-nav .menu-item-has-children > span {
  text-transform: none;
}

.searchform label:not(.accessibility) {
  top: 16px;
}
.searchform input {
  font-size: calc(24rem / 16);
}

.card {
  background: #FAFAFA;
}
.card h3 {
  margin-bottom: 16px;
}
@media (max-width: 650px) {
  .card .btn {
    text-decoration: none;
  }
}

.card:not(.sponsored) article {
  padding: 24px 32px 30px;
}

.filters li {
  font-size: calc(18rem / 16);
}

.post-hero p {
  color: var(--black) !important;
  font-size: calc(21rem / 16) !important;
  line-height: calc(32 / 18) !important;
}
.post-hero.custom-height.full-width img {
  height: calc(100vh - 74px);
}

.single-post p {
  color: var(--black) !important;
}

.related-posts h2 {
  font-size: calc(36rem / 16);
  line-height: calc(37 / 30);
}

.social-media {
  padding: 25px 0 40px;
}
.social-media h2 {
  margin-bottom: 19px;
}
.btn.pl-0 {
  padding-left: 0 !important;
}

h3.mb-0 {
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .sticky-container.hidden-mobile {
    display: none;
  }
}

.form-page-meta {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .form-page-meta {
    min-height: auto;
  }
}

.mfp-close {
  width: auto;
  font-size: 0;
  line-height: 0;
  display: inline-block;
  align-self: flex-end;
  border: 0;
  outline: none;
  padding: 0;
  border-radius: 50%;
  box-shadow: 2px 3px 6px -1px rgba(0, 0, 0, 0.2);
  margin: 28px 34px 19px;
}
.mfp-close::before {
  content: url(../svgs/icon-mfp-close.svg);
}

.screen-reader-text {
  display: none;
}

.contact-info .eyebrow,
.contact-info.eyebrow {
  font-size: 22px;
  line-height: 24px;
  font-family: "ITC Avant Garde Gothic Std";
}

.contact-details td.contact-info p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: calc(28 / 16);
}

.contact-details table td {
  line-height: 24px;
}

.contact-details p.copy-sm {
  margin-top: 55px;
  width: 100%;
  max-width: 636px;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  color: #000000;
}

@media only screen and (max-width: 71.875em) {
  .page-hero--events {
    flex-wrap: wrap;
  }
  .page-hero--events .image {
    height: auto;
  }
}
@media (max-width: 991px) {
  .page-hero--events {
    flex-wrap: wrap !important;
  }
  .page-hero--events .image {
    height: 570px;
    max-width: 100% !important;
  }
}
@media (max-width: 650px) {
  .page-hero--events {
    padding-bottom: 0 !important;
  }
}

@media only screen and (max-width: 71.875em) {
  .judges .years-sort {
    margin: 0 auto;
  }
}
.post-builder.pl-100 {
  padding-bottom: 100px;
}

.judges.pb-0 {
  padding-bottom: 0 !important;
}

.custom-select {
  background: url("../images/icon-right.svg") 95% center no-repeat #FFFFFF;
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  padding: 11px 20px !important;
  min-width: 295px;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  outline: none;
  margin: 0 auto 60px auto !important;
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

.post-hero.full-width h1.color-black {
  color: var(--black);
  max-width: 440px;
  left: 0;
  right: 0;
  margin: auto;
}

.btn--wanted-about {
  background: #FFFFFF;
  border-radius: 3px;
  font-size: 14px;
  line-height: 45px;
  text-align: center;
  letter-spacing: 0.06em;
  color: #000000;
  width: 100%;
  max-width: 200px !important;
  padding: 10px 20px;
  display: inline-block !important;
}

.btn--downloadable {
  margin: 10px 0;
  display: flex;
  align-items: center;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  margin-right: 80px !important;
}
.btn--downloadable a {
  font-weight: normal;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase !important;
  color: #000000;
  text-decoration: none !important;
  font-family: var(--special-font);
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.btn--downloadable a svg {
  margin-left: 30px !important;
  transition: 0.2s all ease;
}
.btn--downloadable a:hover {
  text-decoration: underline !important;
}
.btn--downloadable a:hover svg {
  transform: translateY(1px);
}

.scroll-container .content-container .btn-wrapper {
  flex-wrap: wrap;
}

.select-wrapper {
  text-align: center;
}
.select-wrapper .select2-container {
  border: 0;
  background: #FFFFFF;
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  min-width: 295px;
  text-align: left;
}
.select-wrapper .select2-container.select2-container--default {
  background: #FFFFFF;
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}
.select-wrapper .select2-container.select2-container--default .select2-selection--single {
  border: 0;
  height: auto;
  background: url(../images/icon-right.svg) 95% center no-repeat;
}
.select-wrapper .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: normal;
  font-size: 14px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--special-font);
}
.select-wrapper .select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.select-wrapper .select2-container .select2-dropdown {
  border: 0;
  background: #FFFFFF;
  box-shadow: 0px 15px 30px -15px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 3px 3px;
}
.select-wrapper .select2-container .select2-dropdown .select2-results__option {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 36px;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--special-font);
  background: none;
}
.select-wrapper .select2-container .select2-dropdown .select2-results__option:hover {
  background: #000;
  color: #fff;
}

.register.register--wanted-design .register__inner h2 p {
  margin-bottom: 0;
  font-size: calc(50rem / 16);
  letter-spacing: 0.02em;
  line-height: calc(60 / 50);
}
@media (max-width: 991px) {
  .register.register--wanted-design .register__inner h2 p {
    font-size: calc(36rem / 16);
  }
}

.mt-40 {
  margin-top: 40px;
}

.hero article .heading-wrapper {
  position: relative;
  padding-right: 30px;
}
.hero article .heading-wrapper img {
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 7px));
}

@media (max-width: 650px) {
  .container.custom-width {
    max-width: 100% !important;
  }
}

@media (max-width: 650px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  footer .bottom-footer {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  footer .bottom-footer .copyright {
    margin: 0;
    text-align: center;
  }
}

.mb-0 {
  margin-bottom: 0;
}

header {
  padding: 0;
  padding-right: 35px;
}
header .icff-logo {
  max-width: 200px;
  max-height: 74px;
  margin-top: 15px;
  margin-right: 16px;
  margin-bottom: -1px;
  margin-left: 10px;
}
header .icff-logo a {
  display: block;
}
header .icff-logo a img {
  width: 200px;
  max-width: 200px;
}
header .search-pop {
  font-size: 0;
  z-index: 2;
  border-left: 1px solid #e0e0e0;
  padding: 2px 22px;
  height: auto;
}
header .search-pop.active::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  cursor: auto;
}
header .search-popup {
  top: 75px;
  backface-visibility: hidden;
}
header .mobile-menu {
  position: relative;
  overflow: visible;
  align-self: center;
}
header .mobile-menu:not(.active) {
  z-index: 2;
}
header .mobile-menu__cross {
  opacity: 0;
}
header .mobile-menu__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.03em;
  color: #000000;
  opacity: 1;
  font-family: var(--special-font);
  white-space: nowrap;
  margin-left: 3px;
}
header .mobile-menu.active .mobile-menu__cross {
  opacity: 1;
}
header .mobile-menu.active .mobile-menu__text {
  opacity: 0;
}
header nav:not(.show-nav) {
  padding: 140px 20px 130px 96px;
}
@media (max-width: 650px) {
  header nav:not(.show-nav) {
    padding: 0 60px 100px;
  }
}
@media (max-width: 650px) {
  header nav .searchform {
    margin-top: 11px;
    width: auto;
    margin-right: -60px;
  }
}
@media (max-width: 650px) {
  header nav .event-info ul {
    width: auto;
  }
}
header nav .event-info p {
  color: #000;
}
header a.btn {
  font-weight: 500;
  text-transform: none;
  padding: 3px 3px 0 0;
  font-size: 15px;
}
@media (max-width: 650px) {
  header #menu-main > li.active {
    position: relative;
  }
  header #menu-main > li.active > a::after {
    content: url(../images/icon-arrow--up.svg);
    position: absolute;
    right: 0;
    top: 0;
  }
}
header #menu-main > li > a {
  font-family: "ITC Avant Garde Gothic Std";
}
header #menu-main > li > a:hover {
  font-weight: 600;
}
header #menu-main .sub-menu {
  left: calc(100% + 149px);
  top: 24px;
}
header #menu-main .sub-menu .sub-menu {
  left: calc(100% + 138px);
  top: 0px;
}
header.show-header {
  padding-right: 0;
}
@media (max-width: 650px) {
  header.show-header {
    padding: 0;
  }
}
header.show-header .icff-logo {
  max-width: 235px;
  margin-right: 80px;
}
@media (max-width: 1199px) {
  header.show-header .icff-logo {
    margin-right: 20px;
  }
}
@media (max-width: 650px) {
  header.show-header .icff-logo {
    margin-top: 0;
    max-width: 208px;
  }
}
header.show-header .search-pop {
  border: 0;
  align-self: center;
}
@media (max-width: 650px) {
  header.show-header .search-pop {
    display: none;
  }
}
header.show-header .search-popup {
  top: 73px;
}
@media (max-width: 991px) {
  header.show-header .nav-items {
    width: 100%;
  }
  header.show-header .nav-items .search-pop {
    margin-left: auto;
  }
}
@media (max-width: 650px) {
  header.show-header .nav-items {
    margin-left: 0;
  }
  header.show-header .nav-items .mobile-menu {
    margin-left: auto;
    margin-right: 25px;
  }
}
header.show-header .show-nav {
  width: auto;
  padding: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  header.show-header .show-nav {
    position: absolute;
    left: auto;
    right: auto;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  header.show-header .show-nav {
    width: 100%;
    margin: 15px auto 0;
  }
}
@media (max-width: 650px) {
  header.show-header .show-nav .mobile-menu {
    margin-left: auto;
    margin-right: 3px;
  }
}
@media (max-width: 650px) {
  header.show-header .show-nav > ul {
    margin: 0;
    padding: 33px 55px;
    max-height: calc(100% - 58px);
    justify-content: unset;
  }
}
header.show-header .show-nav > ul::before {
  top: 72px;
  height: 390px;
}
@media (max-width: 991px) {
  header.show-header .show-nav > ul::before {
    height: 420px;
  }
}
header.show-header .show-nav > ul > li {
  padding: 0 33px;
}
@media (max-width: 1199px) {
  header.show-header .show-nav > ul > li {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  header.show-header .show-nav > ul > li {
    padding: 0 15px;
  }
}
header.show-header .show-nav > ul > li > a,
header.show-header .show-nav > ul > li > span {
  padding-bottom: 0;
}
@media (max-width: 650px) {
  header.show-header .show-nav > ul > li.active::after {
    content: url(../images/icon-arrow--up.svg);
    position: absolute;
    right: 0;
    top: 0;
  }
}
header.show-header .show-nav .sub-menu {
  padding-top: 60px;
  display: block;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  header.show-header .show-nav .sub-menu {
    height: auto;
    max-height: none;
  }
}
@media (max-width: 650px) {
  header.show-header .show-nav .sub-menu {
    padding-top: 0;
  }
}
header.show-header .show-nav .sub-menu li {
  width: 100%;
  margin-right: 0;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  header.show-header .show-nav .sub-menu li {
    margin-bottom: 0;
  }
}
header.show-header .show-nav .sub-menu li a,
header.show-header .show-nav .sub-menu li span {
  text-decoration: none;
  color: #ADADAD;
}
header.show-header .show-nav .sub-menu li.current-menu-item a,
header.show-header .show-nav .sub-menu li.current-menu-item span, header.show-header .show-nav .sub-menu li:hover a,
header.show-header .show-nav .sub-menu li:hover span {
  font-weight: bold;
  color: #000;
}
header.show-header .show-nav .menu-item-has-children.active > a::after,
header.show-header .show-nav .menu-item-has-children.active > span::after {
  bottom: -26px;
}
header.show-header .logo,
header.show-header .header-btns {
  position: relative;
  z-index: 1;
}
header.show-header .header-btns {
  height: 73px;
  font-size: 0;
}
@media (max-width: 991px) {
  header.show-header .header-btns {
    margin: 0;
    margin-right: 0;
    height: auto;
    font-size: 0;
    width: auto;
    flex: 1 1 auto;
  }
}
@media (max-width: 650px) {
  header.show-header .header-btns {
    margin-top: 1px;
  }
}
header.show-header .header-btns .btn {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.06em;
  color: #000000;
  padding: 0 16px;
  border-left: 1px solid #E0E0E0;
  text-decoration: none;
  text-transform: none;
}
@media (max-width: 991px) {
  header.show-header .header-btns .btn {
    padding: 5px 15px;
    width: 50%;
    color: #fff;
    background-color: #000;
  }
  header.show-header .header-btns .btn:first-child {
    border-left: 0;
  }
}
header.show-header .header-btns .btn:hover {
  color: #fff;
  background-color: #000;
}
header.show-header.active .show-nav {
  margin: 0;
}

.hero h2 {
  padding-bottom: 7px;
  margin-bottom: 26px;
  border-bottom: 1px solid #000;
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
  color: #000000;
}
.hero h2 a {
  text-decoration: none;
}
.hero h2 a:hover {
  opacity: 0.7;
}
.hero p {
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}
.hero a.btn {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  font-family: var(--special-font);
}
.hero a.btn:hover {
  text-decoration: underline;
}
.hero article {
  padding: 31px 35px;
}
.hero article img {
  right: 40px;
}
.hero .slick-next::before {
  content: "SWIPE LEFT";
  position: absolute;
  right: 140%;
  text-indent: 0;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}
@media (max-width: 650px) {
  .hero .slick-next::before {
    display: inline-block;
    vertical-align: middle;
  }
}

.ticker p {
  white-space: normal;
  margin: 0;
}

@media (max-width: 650px) {
  .post-hero .hidden-mobile {
    display: none;
  }
}
@media (max-width: 650px) {
  .post-hero.two-column article {
    padding-bottom: 0;
  }
  .post-hero.two-column article > div {
    margin-top: auto;
    margin-bottom: 100px;
  }
  .post-hero.two-column article > div h1 {
    margin-bottom: 0;
  }
}
.post-hero__caption-mobile {
  display: none;
}
@media (max-width: 650px) {
  .post-hero__caption-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 0;
  }
  .post-hero__caption-mobile span {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.06em;
    color: #000000;
  }
}

.podcasts-hero {
  background: #000000;
  color: #fff;
}
.podcasts-hero.no-margin {
  margin-bottom: -53px;
}
.podcasts-hero .audio {
  border: 1px solid var(--white);
}
.podcasts-hero a {
  color: #fff;
}

.hero.show-hero {
  height: calc(100vh - 113px);
}
@media (max-width: 650px) {
  .hero.show-hero {
    height: calc(100vh - 73px);
  }
}
.hero.show-hero h2 {
  font-size: 50px;
  line-height: 60px;
}
@media (max-width: 650px) {
  .hero.show-hero h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
.hero.show-hero p.carousel-supertext {
  letter-spacing: 0.01em;
}
.hero.show-hero .carousel {
  height: 100%;
}
.hero.show-hero .slick-arrow {
  overflow: hidden;
  backface-visibility: hidden;
}
@media (max-width: 650px) {
  .hero.show-hero .slick-arrow {
    bottom: 98px;
  }
}
.hero.show-hero .slick-arrow::before {
  display: none;
}
.hero.show-hero .slick-arrow.slick-prev {
  right: 85px;
  z-index: 2;
  transform: rotate(180deg);
}
.hero.show-hero article h2 {
  border: none;
}
.hero.show-hero article a.btn {
  display: inline-flex;
  align-items: center;
}
.hero.show-hero article a.btn svg {
  margin-right: 16px;
}

@media (max-width: 650px) {
  .page-hero--events {
    padding-bottom: 60px;
  }
}
.page-hero--events.image-aligned-left {
  flex-direction: row-reverse;
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: unset;
}
.page-hero--events.image-aligned-left .image {
  width: 100%;
  max-width: 50%;
}
.page-hero--events article {
  display: flex;
  flex-direction: column;
  min-height: 645px;
  max-width: 100%;
}
.page-hero--events article .eyebrow {
  margin-bottom: 50px;
}
@media (max-width: 650px) {
  .page-hero--events article .eyebrow {
    margin-bottom: 50px;
  }
}
.page-hero--events article h1 {
  margin: auto;
}
.page-hero--events article p:first-of-type {
  margin-top: 50px;
}
.page-hero--events article p:last-of-type {
  margin-bottom: 0px;
}
body.page-template-page-wanted-design-launch-pad .page-hero--events article p + p {
  margin-top: 0;
  margin-bottom: 28px;
}
.page-hero--events article .btn {
  align-self: center;
}

.wanted-design-hero {
  height: calc(100vh - 73px);
  min-height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.wanted-design-hero .hero-caption {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
}
.wanted-design-hero .hero-caption h1 {
  margin: 0;
  text-align: center;
}

.newsletter .form .agreement {
  display: flex;
}

.home-container aside a {
  color: rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 71.876em) {
  .watch-nav-item.active a {
    color: #fff !important;
  }
  .watch-nav-item.active a img {
    filter: invert(1);
  }
}

.home-container {
  grid-template-columns: 277px auto;
  display: flex;
}
@media only screen and (max-width: 71.875em) {
  .home-container {
    flex-direction: column;
  }
}
.home-container aside {
  width: 100%;
  min-width: 277px;
}
.home-container .home-sections {
  width: calc(100% - 277px);
}
@media only screen and (max-width: 71.875em) {
  .home-container .home-sections {
    width: 100%;
  }
}
.home-container .home-sections section {
  width: 100%;
}

.card-carousel .card {
  background: #FAFAFA;
}

.card .btn .read-now {
  text-transform: uppercase;
}

.card .btn .read-now,
.card .btn .read-time {
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.06em;
  color: #000000;
  font-family: "Memphis LT CYR W01", Arial, sans-serif;
  text-decoration: none;
}

.card .btn .read-time {
  text-transform: none;
}

.sponsored-story {
  align-items: unset;
  flex-wrap: nowrap;
}
body.page-template-page-home .sponsored-story {
  margin-top: 139px;
}
.sponsored-story .eyebrow {
  margin-top: 18px;
}
@media only screen and (max-width: 71.875em) {
  .sponsored-story .eyebrow {
    margin: 32px 0 120px;
  }
}
@media (max-width: 650px) {
  .sponsored-story .eyebrow {
    margin: 32px auto 120px;
  }
}
.sponsored-story .large {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .sponsored-story .large {
    max-width: 45%;
    border: 2px solid #000;
    border-width: 2px 0;
    padding-right: 66px;
    padding-bottom: 124px;
  }
}
@media (max-width: 650px) {
  .sponsored-story .large {
    text-align: center;
  }
  .sponsored-story .large .btn.primary-btn {
    margin: 0 auto;
  }
}
.sponsored-story .large .sponsored-story__content {
  margin-top: auto;
  margin-bottom: auto;
}
.sponsored-story img {
  object-fit: cover;
}
@media screen and (min-width: 651px) {
  .sponsored-story img {
    width: 100%;
    max-width: 55%;
  }
}
.sponsored-story .read-time {
  display: none;
}
@media (max-width: 650px) {
  .sponsored-story .read-time {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
  }
}

.watch {
  padding-top: 35px;
}
.watch::before {
  background: #616161;
}
@media (max-width: 650px) {
  .watch::before {
    background: #000;
  }
}
.watch .card.webinars-card {
  background: #fff;
}
.watch .btn.arrow-link {
  color: #fff;
}

.listen .card.podcasts-card {
  background: #000000;
}
.listen .card.podcasts-card article {
  color: #fff;
}
.listen .card.podcasts-card article .btn {
  filter: invert(1);
}

.read {
  padding: 153px 0 197px;
}
@media (max-width: 650px) {
  .read {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 650px) {
  .related-posts {
    padding-right: 26px;
    padding-left: 26px;
  }
}
@media (max-width: 650px) {
  .related-posts .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.related-posts .mobile-carousel .card {
  display: flex;
  flex-direction: column;
}
.related-posts .mobile-carousel .card article {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
.related-posts .mobile-carousel .card article .btn {
  margin-top: auto;
}
@media (max-width: 650px) {
  .related-posts .mobile-carousel {
    overflow: hidden;
  }
  .related-posts .mobile-carousel .slide {
    height: auto;
  }
}

@media (max-width: 650px) {
  .related-posts .carousel-wrapper,
.read .carousel-wrapper,
.watch .carousel-wrapper,
.listen .carousel-wrapper,
.brands .carousel-wrapper {
    margin-right: -26px;
    margin-left: -26px;
  }
}
@media (max-width: 650px) {
  .related-posts .btn.arrow-link,
.read .btn.arrow-link,
.watch .btn.arrow-link,
.listen .btn.arrow-link,
.brands .btn.arrow-link {
    padding-right: 0;
  }
  .related-posts .btn.arrow-link::after,
.read .btn.arrow-link::after,
.watch .btn.arrow-link::after,
.listen .btn.arrow-link::after,
.brands .btn.arrow-link::after {
    display: none;
  }
}

@media only screen and (max-width: 40.625em) {
  .home .card-carousel {
    width: 100%;
    margin-left: 0;
  }
}
.home .card.brands-card {
  background: #000;
  color: #fff;
}
.home .card.brands-card .btn {
  filter: invert(1);
}

.search-results .card {
  background: #FAFAFA;
}
.search-results .card:hover {
  box-shadow: 0px 15px 60px -25px rgba(0, 0, 0, 0.25);
}
@media (max-width: 650px) {
  .search-results .alm-listing.grid li:nth-of-type(n+1):nth-of-type(-n + 3) {
    margin-top: 0;
  }
}

.stories-posts .filters {
  margin-bottom: 33px;
}
.stories-posts .filter-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 650px) {
  .stories-posts .filter-tags {
    margin-top: 50px;
    justify-content: flex-start;
  }
}
.stories-posts .filter-tags li {
  margin: 1px 1px 16px;
}
.stories-posts .filter-tags li.current-cat a {
  border-color: #000;
  color: #fff;
  background: #000;
}
.stories-posts .filter-tags li a {
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid #BBBBBB;
  border-radius: 20px;
  font-size: 12px;
  line-height: 15px;
  color: #BBBBBB;
  display: block;
  text-decoration: none;
}
.stories-posts:not(.has-margin-top) .grid {
  margin-top: 15px !important;
}
.stories-posts .sponsored-post .sponsored-story {
  align-items: unset;
}
@media (max-width: 650px) {
  .stories-posts .sponsored-post .sponsored-story {
    padding-left: 0;
  }
}
.stories-posts .sponsored-post .sponsored-story .eyebrow {
  margin: 32px 0 120px;
}
@media (max-width: 650px) {
  .stories-posts .sponsored-post .sponsored-story .eyebrow {
    margin: 32px auto 120px;
  }
}
.stories-posts .sponsored-post .sponsored-story img {
  margin-right: 0;
}
.stories-posts .btn-wrapper {
  margin-bottom: 80px;
}

.two-column-content,
blockquote.image-bkg {
  width: calc((var(--vw, 1vw) * 100));
}
@media screen and (min-width: 1541px) {
  .two-column-content,
blockquote.image-bkg {
    margin-left: calc(-7vw - 49px);
  }
}
@media screen and (max-width: 714px) {
  .two-column-content,
blockquote.image-bkg {
    width: 100%;
  }
}
@media screen and (max-width: 1265px) {
  .two-column-content,
blockquote.image-bkg {
    padding-top: 50px;
  }
}

.post-hero.two-column p {
  font-size: calc(18rem / 16);
  line-height: calc(28 / 18);
  max-width: 670px;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media screen and (max-width: 1265px) {
  .post-hero.two-column p {
    font-size: calc(15rem / 16);
    line-height: calc(24 / 15);
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 650px) {
  .post-hero.two-column article {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.post-type-archive-webinars {
  color: #fff;
}
.post-type-archive-webinars main {
  background-color: #000;
}
.post-type-archive-webinars .archive-hero {
  color: #fff;
}
.post-type-archive-webinars .archive-hero .share-post li a {
  color: #fff;
}
.post-type-archive-webinars .card.webinars-card {
  background-color: #fff;
}
@media (max-width: 650px) {
  .post-type-archive-webinars .copy-url {
    background-color: #fff;
  }
}

.post-type-archive-podcasts .card.podcasts-card,
.single-podcasts .card.podcasts-card {
  background: #000000;
}
.post-type-archive-podcasts .card.podcasts-card article,
.single-podcasts .card.podcasts-card article {
  color: #fff;
}
.post-type-archive-podcasts .card.podcasts-card article .btn,
.single-podcasts .card.podcasts-card article .btn {
  filter: invert(1);
}

.card--black {
  background: #000000;
}
.card--black article {
  color: #fff;
}
.card--black article .btn {
  filter: invert(1);
}
.card--yellow {
  background: #FDDB00;
}
.card--yellow article {
  color: #000;
}
.card--yellow article .btn {
  filter: invert(0);
}
.card--large {
  --image-height: 505px;
}
@media only screen and (max-width: 71.875em) {
  .card--large {
    --image-height: 520px;
  }
}
.card--large:not(.sponsored) article {
  height: 82px;
}
@media only screen and (max-width: 71.875em) {
  .card--large:not(.sponsored) article {
    height: 66px;
    overflow: hidden;
  }
}
@media (max-width: 650px) {
  .card--large:not(.sponsored) article {
    height: 63px;
  }
}
.card--large:not(.sponsored) article h3 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 650px) {
  .card--large:not(.sponsored) article h3 {
    font-size: 15px;
    line-height: 1.2;
  }
}

body.webinars-template-default.single.single-webinars main {
  background-color: #000;
  color: #fff;
}
body.webinars-template-default.single.single-webinars main .post-builder a {
  color: inherit;
  text-decoration: underline;
}
body.webinars-template-default.single.single-webinars .share-post li a {
  color: #fff;
}
body.webinars-template-default.single.single-webinars .card.webinars-card {
  background: #FAFAFA;
}
body.webinars-template-default.single.single-webinars .related-posts .btn.primary-btn {
  filter: invert(1);
}

.register {
  background-color: #000;
  color: #fff;
  text-align: left;
}
@media (max-width: 650px) {
  .register {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.register .container {
  max-width: var(--container-width);
}
@media (max-width: 650px) {
  .register .container {
    padding-left: 33px;
    padding-right: 33px;
  }
}
.register__inner {
  max-width: 1200px; 
  width: 100%;
}
@media (max-width: 650px) {
  .register__inner h2 {
    line-height: 47px;
    margin-bottom: 25px;
  }
}
@media (max-width: 650px) {
  .register__inner p.large {
    font-size: 15px;
    line-height: 26px;
  }
}
.register__inner .btn {
  border: 1px solid #fff !important;
}
@media (max-width: 650px) {
  .register__inner .btn {
    margin-top: 33px;
  }
}
.register__inner .btn:hover {
  border-color: #fff;
}
.register.text-center .register__inner {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.register.text-center .register__inner h2,
.register.text-center .register__inner p {
  text-align: center;
}
.register.text-right .register__inner {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.register.text-right .register__inner h2,
.register.text-right .register__inner p {
  text-align: right;
}
.register.content-wide .register__inner {
  max-width: 100%;
}
.register--wanted-design {
  margin-bottom: -60px;
}
@media (max-width: 1199px) {
  .register--wanted-design {
    margin-bottom: 0;
  }
}
@media (max-width: 650px) {
  .register--wanted-design {
    margin-top: 37px;
  }
}

.image-with-content {
  padding-top: 37px;
  padding-bottom: 77px;
}
.image-with-content .image-content-block {
  padding-top: 23px;
  padding-bottom: 62px;
}
@media (max-width: 650px) {
  .image-with-content .image-content-block {
    padding: 0;
  }
}
.image-with-content .image-content-block article {
  width: 100%;
  max-width: 574px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 650px) {
  .image-with-content .image-content-block article {
    padding: 32px 20px 80px;
    margin: 0;
  }
}
@media (max-width: 650px) {
  .image-with-content .image-content-block article h2,
.image-with-content .image-content-block article p {
    text-align: center;
  }
}
.image-with-content .image-content-block.image-aligned-right {
  flex-direction: row-reverse;
}
.image-with-content .link-wrapper {
  margin-bottom: 40px;
}
.image-with-content .link-wrapper a {
  text-decoration: underline;
}
.image-with-content__social {
  display: flex;
  align-items: center;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 650px) {
  .image-with-content__social {
    justify-content: center;
  }
}
.image-with-content__social li {
  font-size: 0;
  line-height: 0;
  margin-right: 28px;
}

.scroll-container .content-container p,
.scroll-container .content-container ul,
.scroll-container .content-container ol {
  color: var(--black);
}

.scroll-container .content-container * {
  width: 100%;
}

@media (max-width: 650px) {
  .hotel-page-wrapper .sticky-container {
    display: none;
  }
}
.hotel-page-wrapper .hotel-page {
  padding-top: 150px;
}
@media (max-width: 650px) {
  .hotel-page-wrapper .hotel-page {
    padding-top: 0;
  }
}
.hotel-page-wrapper .hotel-page .wanted-design-logo {
  margin-top: -95px;
  margin-bottom: 156px;
  max-width: 213px !important;
}
@media (max-width: 650px) {
  .hotel-page-wrapper .hotel-page .wanted-design-logo {
    margin-top: 15px;
  }
  body.page-template-page-wanted-about .hotel-page-wrapper .hotel-page .wanted-design-logo {
    margin-bottom: 60px;
  }
}
.hotel-page-wrapper .hotel-page .wanted-design-logo img {
  max-width: 213px !important;
}
.hotel-page-wrapper .hotel-page h1 {
  margin-bottom: 140px;
  text-align: center;
}
@media (max-width: 650px) {
  .hotel-page-wrapper .hotel-page h1 {
    margin: 50px 0;
    text-align: center;
  }
}
.hotel-page-wrapper .hotel-page .image-mobile {
  margin-bottom: 50px;
  width: auto;
}
@media (max-width: 650px) {
  .hotel-page-wrapper .hotel-page .image-mobile {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.faqs__top {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}
.faqs__top p a {
  text-decoration: underline;
}

.content-faqs h2 {
  margin: 0 !important;
  max-width: 100% !important;
  text-align: left !important;
}
.content-faqs h2 .btn {
  margin: 0 !important;
  text-align: left !important;
  text-decoration: none !important;
}

.press-inquires h2 {
  margin: 0 0 50px !important;
  max-width: 100% !important;
}
.press-inquires__block {
  margin-bottom: 100px;
}
.press-inquires__block__contact {
  border: 1px solid #D8D8D8;
  border-width: 1px 0;
  padding: 25px 0;
}
.press-inquires__block__contact .d-flex {
  display: flex;
  flex-wrap: wrap;
}
.press-inquires__block__contact .content-left,
.press-inquires__block__contact .content-right {
  width: 100%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .press-inquires__block__contact .content-left,
.press-inquires__block__contact .content-right {
    max-width: 100%;
  }
}
.press-inquires__block__contact h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  font-family: var(--special-font);
}
@media (max-width: 991px) {
  .press-inquires__block__contact h4 {
    margin-bottom: 15px;
  }
}
.press-inquires__block__contact p {
  margin: 0;
}
.press-inquires__block__contact p + p {
  margin-top: 10px;
}

.image-content-block .btn-wrapper {
  margin-top: 45px;
}
.image-content-block .btn-wrapper + .btn-wrapper {
  margin-top: 30px;
}
.image-content-block .btn-wrapper .btn {
  margin-top: 0;
}

@media (max-width: 1199px) {
  .has-video {
    flex-direction: column-reverse;
  }
}
.has-video .video-wrapper {
  position: relative;
  width: calc(702 / 1440 * 100%);
}
@media (max-width: 1199px) {
  .has-video .video-wrapper {
    width: 100%;
  }
}
.has-video .video-wrapper img {
  width: 100%;
}
.has-video .video-wrapper .absolute-full-box {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: url(../svgs/cursor-play.svg), auto;
}
.has-video .video-wrapper .absolute-full-box::before {
  font-size: 0;
  line-height: 0;
  content: url(../svgs/cursor-play.svg);
}
@media (max-width: 650px) {
  .has-video article h2 {
    text-align: center;
  }
}

.award-winners {
  padding: 110px 0;
}

.wanted-design-content {
  padding: 75px 0 100px;
}
.wanted-design-content .container {
  max-width: 770px;
}
.wanted-design-content .btn-wrapper {
  margin-bottom: 64px;
}
.wanted-design-content .figures-wrapper {
  margin: 15px -50px 150px;
}
@media only screen and (max-width: 71.875em) {
  .wanted-design-content .figures-wrapper {
    margin: 15px -20px 50px;
  }
}
.wanted-design-content .figures-wrapper figure {
  padding: 0 15px;
}
.wanted-design-content .figures-wrapper figure img {
  max-width: 100%;
}
.wanted-design-content .figures-wrapper figure figcaption {
  font-style: italic;
  font-weight: normal;
  font-size: 12px;
  line-height: 28px;
  margin-top: 11px;
}

.single-post .post-hero {
  margin-bottom: 150px;
}
@media (max-width: 650px) {
  .single-post .post-hero {
    margin-bottom: 0;
  }
}
.single-post blockquote.image-bkg p {
  color: #fff !important;
}

.wanted-design-content .wp-caption-text {
  font-family: Helvetica;
  font-style: italic;
  font-weight: normal;
  font-size: 12px;
  line-height: 28px;
  color: #000000;
  margin-top: 10px;
  text-align: left;
}

@media only screen and (max-width: 50em) {
  .page-template-page-hotel .hotel-page-wrapper .sticky-container {
    height: 100vh;
    margin: 0 auto;
    max-width: 100%;
    position: static;
  }
}

.wanted-design-logo img {
  max-width: 213px;
}

/* Custom Fixes */
.card {
  display: flex;
  flex-direction: column;
}
.card:not(.sponsored) article {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.card:not(.sponsored) article.height-auto {
  height: auto;
}
.card:not(.sponsored) article .btn {
  margin-top: auto;
}

.brands .card:not(.sponsored) article {
  flex-direction: row;
}
.brands .card:not(.sponsored) article .btn {
  margin-top: 0;
}

@media (max-width: 650px) {
  .stories-posts .sponsored-post.custom-style img {
    left: -66px;
    width: calc(100% + 66px + 66px);
  }
}

.post-hero.full-width.custom-style-handler {
  margin-bottom: 0;
}
.post-hero.full-width.custom-style-handler p.large {
  line-height: 30px !important;
  font-size: 22px !important;
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .post-hero.full-width.custom-style-handler article {
    padding: 0;
  }
  .post-hero.full-width.custom-style-handler article > div {
    margin: 0;
  }
}

.custom-style-handler .no-margin, .custom-style-handler article {
  margin: 35px auto 0 !important;
}

.faqs__top p {
  margin-bottom: 0;
}

.custom-height-auto {
  height: auto !important;
}

.custom-flex-link {
  display: flex;
  justify-content: space-between;
  flex-direction: row !important;
  align-items: center;
}
@media (max-width: 650px) {
  .custom-flex-link {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start;
  }
}
.custom-flex-link * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.custom-flex-link .btn {
  padding-left: 0;
}

/***Brands***/
.products {
  padding: 0 0 125px;
}

.pricing-table {
  padding: 104px 0 80px;
}
@media (max-width: 650px) {
  .pricing-table {
    padding: 30px 0 70px;
  }
}
.pricing-table .container {
  max-width: 1350px;
}
.pricing-table .visible-desktop {
  display: none;
}
@media screen and (min-width: 651px) {
  .pricing-table .visible-desktop {
    display: block;
  }
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table table thead th {
  padding: 13px 30px;
  background-color: #000;
  font-weight: normal;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: left;
}
.pricing-table table tbody td {
  padding: 35px 30px 35px;
  border: 1px solid #AAAAAA;
  border-width: 1px 0;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}
.pricing-table table tbody td:first-child {
  padding-left: 0;
}
.pricing-table .title-top {
  font-size: 10px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}
.pricing-table .table-as-card {
  margin-bottom: 30px;
}
.pricing-table .table-as-card__header {
  padding: 27px 27px 25px;
  background-color: #000;
  border: 1px solid #000000;
  border-radius: 8px 8px 0px 0px;
}
.pricing-table .table-as-card__header h4 {
  font-weight: normal;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}
.pricing-table .table-as-card__body {
  border: 1px solid #000000;
  border-radius: 0px 0px 8px 8px;
}
.pricing-table .table-as-card__body ul {
  list-style: none;
  margin: 0;
  padding: 12px 20px;
}
.pricing-table .table-as-card__body ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 13px 0;
}
.pricing-table .table-as-card__body ul li:not(:last-child) {
  border-bottom: 1px solid #CCCCCC;
}

.pricing-accordions {
  padding-bottom: 84px;
}
.pricing-accordions .container {
  max-width: 1350px;
}
.pricing-accordions .accordion-card {
  border: 1px solid #000000;
  border-width: 1px 0;
  margin-bottom: -1px;
}
.pricing-accordions .accordion-card .card-header {
  cursor: pointer;
  font-weight: normal;
  font-size: 15px;
  line-height: 12px;
  letter-spacing: 0.05em;
  color: #000000;
  padding: 34px 0;
  padding-right: 60px;
  position: relative;
}
.pricing-accordions .accordion-card .card-header::after {
  content: "+";
  font-size: 25px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -2px;
  font-size: 0;
  width: 14px;
  height: 14px;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.2261 11.1119H1.00238L1.00238 9.11187H19.2261L19.2261 11.1119Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.11469 19.2238V1.00006L11.1147 1.00006V19.2238L9.11469 19.2238Z' fill='black'/%3E%3C/svg%3E%0A");
}
.pricing-accordions .accordion-card .card-header.active::after {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.2252 11.1119H1.00141L1.00141 9.11187H19.2252L19.2252 11.1119Z' fill='black'/%3E%3C/svg%3E%0A");
}
.pricing-accordions .accordion-card .card-body {
  display: none;
  padding-bottom: 80px;
}
.pricing-accordions .accordion-card .card-body p,
.pricing-accordions .accordion-card .card-body ul,
.pricing-accordions .accordion-card .card-body ol {
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.05em;
  color: #000000;
}

.contact-details h1 {
  text-align: left;
  padding-left: 15px;
  margin-bottom: 25px;
}
.contact-details__row {
  display: flex;
  flex-wrap: wrap;
}
.contact-details .col-4 {
  width: 100%;
  max-width: 33.3%;
}
@media (max-width: 991px) {
  .contact-details .col-4 {
    max-width: 50%;
  }
}
@media (max-width: 650px) {
  .contact-details .col-4 {
    max-width: 100%;
  }
}
.contact-details .contact-blocks {
  padding-bottom: 100px;
  margin-bottom: 25px;
}
.contact-details .contact-blocks__title {
  margin-bottom: 60px;
  text-align: center;
}
.contact-details .contact-blocks:not(:last-child) {
  border-bottom: 1px solid #000000;
}
.contact-details__block {
  padding: 33px 15px;
}
.contact-details__block h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}
.contact-details__block p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.card-carousel .product-card {
  background: #000000;
}
.card-carousel .product-card .image {
  background-color: #f9f9f9;
  border-radius: 0;
}
.card-carousel .product-card article {
  color: #fff;
}
.card-carousel .product-card article .btn {
  filter: invert(1);
}

.show-about {
  padding: 152px 0 354px;
}
@media (max-width: 991px) {
  .show-about {
    padding: 100px 0 220px;
  }
}
@media (max-width: 650px) {
  .show-about {
    padding: 90px 0 70px;
  }
}
.show-about .container {
  flex-wrap: nowrap;
}
@media (max-width: 650px) {
  .show-about .container {
    flex-wrap: wrap;
  }
}
.show-about .about-text {
  width: 100%;
}
.show-about .about-imgs {
  width: 100%;
  max-width: calc(100% - 675px);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1199px) {
  .show-about .about-imgs {
    max-width: 100%;
    padding-left: 60px;
  }
}
@media (max-width: 650px) {
  .show-about .about-imgs {
    max-width: 100%;
    padding-left: 0;
    margin-top: 54px;
  }
}
.show-about .about-imgs .large-img {
  margin-left: auto;
  width: 100%;
  max-width: 554px;
  max-height: 650px;
  -o-object-fit: cover;
  object-fit: cover;
}
.show-about .about-imgs .small-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 439px;
  height: 306px;
  -webkit-filter: drop-shadow(2px 14px 50px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(2px 14px 50px rgba(0, 0, 0, 0.25));
  -o-object-fit: cover;
  object-fit: cover;
  transform: translateY(calc(100% - 92px));
}
@media (max-width: 1440px) {
  .show-about .about-imgs .small-img {
    left: -200px;
  }
}
@media (max-width: 1199px) {
  .show-about .about-imgs .small-img {
    width: 400px;
    transform: translateY(calc(100% - 50px));
  }
}
@media (max-width: 991px) {
  .show-about .about-imgs .small-img {
    height: 176px;
    width: 220px;
    left: -80px;
  }
}
@media (max-width: 650px) {
  .show-about .about-imgs .small-img {
    display: none;
  }
}

.two-panel .panel {
  background: #000 !important;
  width: 50%;
}
@media (max-width: 991px) {
  .two-panel .panel {
    background: none !important;
    width: 100%;
    margin: 0;
    padding: 46px 15px;
  }
}
.two-panel .panel .panel-text {
  min-height: 654px;
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
  background: #000;
}
@media (max-width: 991px) {
  .two-panel .panel .panel-text {
    max-width: 100%;
    margin: 0;
    padding: 127px 0 105px;
    text-align: center;
    align-items: center;
    border-radius: 0;
  }
}
.two-panel .panel .panel-text .supertext {
  width: 100%;
}
.two-panel .panel .panel-text .large-heading {
  margin: auto;
}
.two-panel .panel .panel-text .btn {
  margin: 0 0 0;
}
@media screen and (any-hover: hover) {
  .two-panel .panel .panel-text:hover {
    color: #000;
    background: #fff;
    border-color: #000;
  }
  .two-panel .panel .panel-text:hover .supertext {
    border-bottom-color: #000;
  }
  .two-panel .panel .panel-text:hover .large-heading a {
    color: #000;
  }
  .two-panel .panel .panel-text:hover .btn {
    color: #000;
  }
}

.show-home .watch {
  background: none;
  position: relative;
}
.show-home .read {
  padding-bottom: 130px !important;
}

@media screen and (min-width: 801px) {
  .about-showcase {
    display: none;
  }
}
@media (max-width: 650px) {
  .about-showcase {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 800px) {
  .about-showcase--desktop {
    display: none;
  }
}

.about-page .intro-text {
  margin-bottom: 50px;
}

.gallery-wrapper .gallery-header {
  padding-top: 57px;
  padding-bottom: 42px;
}
.gallery-wrapper .gallery-header .container {
  max-width: 700px;
}
.gallery-wrapper .gallery-header h1 {
  text-align: center;
  color: #000000;
  margin: 0;
  margin-bottom: 34px;
}
.gallery-wrapper .gallery-header p {
  margin: 0;
}
.gallery-wrapper .gallery-showcase .container {
  max-width: 1355px;
  padding: 0 105px;
}
@media (max-width: 991px) {
  .gallery-wrapper .gallery-showcase .container {
    padding: 0 65px;
  }
}
@media (max-width: 650px) {
  .gallery-wrapper .gallery-showcase .container {
    padding: 0 50px;
  }
}
.gallery-wrapper .gallery-showcase .slick-slider {
  position: relative;
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-list {
  overflow: hidden;
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-arrow {
  right: -74px;
  top: 40%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .gallery-wrapper .gallery-showcase .slick-slider .slick-arrow {
    right: -50px;
  }
}
@media (max-width: 650px) {
  .gallery-wrapper .gallery-showcase .slick-slider .slick-arrow {
    right: -40px;
  }
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-arrow.slick-prev {
  transform: translateY(calc(100% + 15px)) rotate(180deg);
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-arrow.slick-prev:hover {
  transform: translateY(calc(100% + 15px)) translateX(-5px) rotate(180deg);
}
@media (max-width: 650px) {
  .gallery-wrapper .gallery-showcase .slick-slider .slick-arrow.slick-prev {
    right: auto;
    left: -40px;
    transform: translateY(0) rotate(180deg);
  }
  .gallery-wrapper .gallery-showcase .slick-slider .slick-arrow.slick-prev:hover {
    transform: translateY(0) translateX(-5px) rotate(180deg);
  }
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-slide {
  padding: 0 15px;
}
@media (max-width: 650px) {
  .gallery-wrapper .gallery-showcase .slick-slider .slick-slide {
    padding: 0;
  }
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-slide img {
  width: 100%;
}
.gallery-wrapper .gallery-showcase .slick-slider .slick-slide h2 {
  margin: 34px 0 15px;
  text-align: center;
}

#menu-footer > li > a {
  font-family: "Memphis LT CYR W01", Arial, sans-serif;
}

.newsletter p {
  color: var(--black);
}

footer #menu-footer .sub-menu .current_page_item a {
  color: var(--black);
  font-weight: 700;
}

.newsletter {
  padding: 142px 0;
}
@media (min-width: 992px) {
  .newsletter {
    padding-right: 70px;
  }
}
.newsletter article {
  margin-top: 4px;
}
.newsletter .form input[type=text],
.newsletter .form input[type=email] {
  text-align: left;
  padding-left: 0;
}
.newsletter .form .gform_button {
  min-width: auto;
  padding: 14px 37px;
}
.newsletter .gform_wrapper {
  text-align: left;
}
.newsletter .gform_wrapper .gform_footer {
  margin-top: 58px;
}
@media (max-width: 650px) {
  .newsletter .gform_wrapper .gform_footer {
    text-align: center;
  }
}

.gform_wrapper .gfield.large span,
.gform_wrapper .has_country span {
  width: 100% !important;
  padding: 0 !important;
}
.gform_wrapper select {
  text-align-last: center;
}
.gform_wrapper .gfield_radio input {
  margin-top: -10px;
}
.gform_wrapper .gfield_html {
  padding-bottom: 25px;
}
.gform_wrapper .gfield_html h4 {
  margin-bottom: 20px;
}
.gform_wrapper .gfield textarea {
  text-transform: none;
  height: 80px;
}
.gform_wrapper .gfield input[type=file] {
  width: 100%;
  margin-bottom: 40px;
}
.gform_wrapper .gfield input[type=file] + .gform_fileupload_rules {
  display: none;
}
.gform_wrapper .gfield input[type=file]::-webkit-file-upload-button, .gform_wrapper .gfield input[type=file]::file-selector-button {
  height: 45px;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 3px;
  color: #fff;
  min-width: 200px;
  cursor: pointer;
  margin-right: 24px;
}
.gform_wrapper .gfield .ginput_recaptcha {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .gform-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.gform-wrapper .gsection_title {
  margin: 93px 0 15px;
  font-weight: 500;
  font-size: 18px !important;
  line-height: normal !important;
}
.gform-wrapper .gsection_description {
  margin-bottom: 35px;
}
.gform-wrapper label.gfield_label {
  font-family: "ITC Avant Garde Gothic Std";
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  text-align: left;
  display: block;
  margin-bottom: 25px;
}
.gform-wrapper .ginput_container_radio .gfield_radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice {
  display: flex;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice:not(:last-child) {
  margin-bottom: 27px;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice label {
  text-align: left;
  display: block;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: #000000;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  margin: 0;
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  margin-top: -2px;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice] {
  border: 0 !important;
  width: auto;
  height: 25px;
  background: none !important;
  box-shadow: none !important;
  margin: 0;
  border-bottom: 1px solid #000 !important;
  border-radius: 0;
  opacity: 0;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice]::before {
  content: "OTHER";
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
  display: block;
  border-right: 1px solid #000;
  padding-right: 4px;
  margin-top: 6px;
  cursor: pointer;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice] + [aria-label=Other] {
  height: 25px;
  border: none !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  margin: 0;
  padding-left: 0;
  margin-left: -50px;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice] + [aria-label=Other]::-webkit-input-placeholder {
  color: #fff;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice] + [aria-label=Other]::-moz-placeholder {
  color: #fff;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice] + [aria-label=Other]:-ms-input-placeholder {
  color: #fff;
}
.gform-wrapper .ginput_container_radio .gfield_radio .gchoice input[type=radio][value=gf_other_choice] + [aria-label=Other]:-moz-placeholder {
  color: #fff;
}
.gform-wrapper .ginput_container_date .hasDatepicker {
  height: 25px;
  border: none !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  margin: 0;
  padding-left: 0;
  width: 100%;
  max-width: 360px;
  margin-bottom: 55px;
}
.gform-wrapper .aligned-center .ginput_container_radio {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.gform-wrapper .aligned-center .ginput_container_radio .gfield_radio {
  align-items: center;
}
.gform-wrapper .aligned-center .ginput_container_radio .gfield_radio .gchoice {
  min-width: 120px;
}
.gform-wrapper .inline .ginput_container_radio .gfield_radio {
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
.gform-wrapper .inline .ginput_container_radio .gfield_radio .gchoice {
  margin-bottom: 0 !important;
}
.gform-wrapper .inline .ginput_container_radio .gfield_radio .gchoice:not(:last-child) {
  margin-right: 67px;
}
.gform-wrapper .inline .ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  margin-top: 12px;
}
.gform-wrapper .inline .ginput_container_radio .gfield_radio .gchoice label {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: #000000;
}
.gform-wrapper .gsection_description {
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: #000000;
}
.gform-wrapper .custom-content {
  text-align: left;
}
.gform-wrapper .custom-content a {
  text-decoration: underline;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.06em;
}
.gform-wrapper .custom-content p {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.06em;
}

/**Updated Style**/
.brands-wrapper .container {
  max-width: 1460px;
}

.brands-wrapper h1 {
  text-align: center;
  padding: 25px 0;
  margin-bottom: 37px;
}

.brands-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.brands-wrapper ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 40px;
  display: block;
}

.brands-wrapper ul li div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.brands-wrapper ul li div p {
  width: 25%;
  padding-right: 15px;
}

.brands-wrapper ul li h5,
.brands-wrapper ul li p {
  margin: 0;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--special-font);
}

.brands-wrapper ul li h5 {
  color: #000;
}

.brands-wrapper ul li p {
  color: #acacac;
  font-size: 18px;
}

.brands-wrapper ul li p a {
  color: inherit;
}

@media screen and (max-width: 991px) {
  .brands-wrapper ul li div p {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .brands-wrapper ul li div p {
    width: 100%;
  }
}

.attachment-xlarge {
	max-width: 100%;
	height: auto;
}

/*# sourceMappingURL=style-revised.css.map */
