/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:rgba(0,0,0,0)}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}meta.foundation-version{font-family:"1.0.3"}meta.foundation-mq{font-family:"small=0&medium=50.0625rem&large=75rem&xlarge=90rem&xxlarge=120rem"}html,body{height:100%;font-size:100%}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#fcfcfc;color:#4e4e4e;padding:0;margin:0;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:normal;font-style:normal;line-height:1;position:relative;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{max-width:100%;height:auto;-ms-interpolation-mode:bicubic;display:inline-block;vertical-align:middle}a,[ui-sref]{cursor:pointer}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none !important}.padding{padding:1.1rem}.iconic{width:1rem;height:1rem;vertical-align:middle}a>.iconic{margin-top:-2px;margin-right:.25rem}a>.iconic *{fill:#4688f1;stroke:#4688f1}a>.iconic *.iconic-property-accent{fill:#4688f1;stroke:#4688f1}.iconic *{fill:#4688f1;stroke:#4688f1}.iconic *.iconic-property-accent{fill:#4688f1;stroke:#4688f1}.iconic-color-primary *{fill:#4688f1;stroke:#4688f1}.iconic-color-primary *.iconic-property-accent{fill:#4688f1;stroke:#4688f1}.iconic-color-success *{fill:#12c17d;stroke:#12c17d}.iconic-color-success *.iconic-property-accent{fill:#12c17d;stroke:#12c17d}.iconic-color-warning *{fill:#f57f34;stroke:#f57f34}.iconic-color-warning *.iconic-property-accent{fill:#f57f34;stroke:#f57f34}.iconic-color-alert *{fill:#f87b78;stroke:#f87b78}.iconic-color-alert *.iconic-property-accent{fill:#f87b78;stroke:#f87b78}.iconic-color-dark *{fill:#769da3;stroke:#769da3}.iconic-color-dark *.iconic-property-accent{fill:#769da3;stroke:#769da3}.action-sheet-container{position:relative;display:inline-block}.action-sheet-container .button,.action-sheet-container button{margin-left:0;margin-right:0}.action-sheet{position:fixed;left:0;z-index:1000;width:100%;padding:1.1rem;background:#5d868c;text-align:center;transition-property:transform opacity;transition-duration:.25s;transition-timing-function:ease-out;box-shadow:0 -3px 10px rgba(0,0,0,.25);bottom:0;transform:translateY(100%)}.action-sheet.is-active{transform:translateY(0%)}.action-sheet ul{margin:-1.1rem;margin-top:0;list-style-type:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.action-sheet ul:first-child{margin-top:-1.1rem}.action-sheet ul:first-child li:first-child{border-top:0}.action-sheet ul a{display:block;padding:.88rem;line-height:1;color:#fff;border-top:1px solid #769da3}.action-sheet ul a:hover{color:#fff;background:rgba(0,0,0,.13)}.action-sheet ul .alert>a{color:#f87b78}.action-sheet ul .disabled>a{pointer-events:none;color:#999}@media only screen and (min-width: 50.0625em){.action-sheet{position:absolute;left:50%;width:220px;border-radius:4px;opacity:0;pointer-events:none;box-shadow:0 0 10px rgba(0,0,0,.25);top:auto;bottom:0;transform:translateX(-50%) translateY(110%)}.action-sheet.is-active{opacity:1;pointer-events:auto}.action-sheet::before,.action-sheet::after{content:"";position:absolute;left:50%;display:block;width:0px;height:0px;border-left:10px solid rgba(0,0,0,0);border-right:10px solid rgba(0,0,0,0);margin-left:-10px}.action-sheet.is-active{transform:translateX(-50%) translateY(100%)}.action-sheet::before,.action-sheet::after{top:-10px;bottom:auto;border-top:0;border-bottom:10px solid #5d868c}.action-sheet::before{top:-12px;border-bottom-color:rgba(0,0,0,.15)}.action-sheet.top{position:absolute;left:50%;width:220px;border-radius:4px;opacity:0;pointer-events:none;box-shadow:0 0 10px rgba(0,0,0,.25);top:0;bottom:auto;transform:translateX(-50%) translateY(-120%)}.action-sheet.top.is-active{opacity:1;pointer-events:auto}.action-sheet.top::before,.action-sheet.top::after{content:"";position:absolute;left:50%;display:block;width:0px;height:0px;border-left:10px solid rgba(0,0,0,0);border-right:10px solid rgba(0,0,0,0);margin-left:-10px}.action-sheet.top.is-active{transform:translateX(-50%) translateY(-110%)}.action-sheet.top::before,.action-sheet.top::after{top:auto;bottom:-10px;border-top:10px solid #5d868c;border-bottom:0}.action-sheet.top::before{bottom:-12px;border-top-color:rgba(0,0,0,.15)}}.action-sheet.primary{background:#4688f1;color:#000;border:0}.action-sheet.primary::before{display:none}.action-sheet.primary::before,.action-sheet.primary::after{border-top-color:#4688f1}.action-sheet.primary.top::before,.action-sheet.primary.top::after{border-bottom-color:#4688f1}.action-sheet.primary ul{margin:-1.1rem;margin-top:0;list-style-type:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.action-sheet.primary ul:first-child{margin-top:-1.1rem}.action-sheet.primary ul:first-child li:first-child{border-top:0}.action-sheet.primary ul a{display:block;padding:.88rem;line-height:1;color:#000;border-top:1px solid #2975ef}.action-sheet.primary ul a:hover{color:#000;background:#387ff0}.action-sheet.primary ul .alert>a{color:#f87b78}.action-sheet.primary ul .disabled>a{pointer-events:none;color:#999}.action-sheet.dark{background:#769da3;color:#fff;border:0}.action-sheet.dark::before{display:none}.action-sheet.dark::before,.action-sheet.dark::after{border-top-color:#769da3}.action-sheet.dark.top::before,.action-sheet.dark.top::after{border-bottom-color:#769da3}.action-sheet.dark ul{margin:-1.1rem;margin-top:0;list-style-type:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.action-sheet.dark ul:first-child{margin-top:-1.1rem}.action-sheet.dark ul:first-child li:first-child{border-top:0}.action-sheet.dark ul a{display:block;padding:.88rem;line-height:1;color:#fff;border-top:1px solid #84a7ac}.action-sheet.dark ul a:hover{color:#fff;background:#7da2a8}.action-sheet.dark ul .alert>a{color:#f87b78}.action-sheet.dark ul .disabled>a{pointer-events:none;color:#999}.block-list{margin-bottom:1rem;line-height:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.block-list,.block-list ul{list-style-type:none}.block-list ul{margin-left:0}.block-list{font-size:.9rem;margin-left:-1.1rem;margin-right:-1.1rem}.block-list [type=text],.block-list input[type=password],.block-list input[type=date],.block-list input[type=datetime],.block-list input[type=datetime-local],.block-list input[type=month],.block-list input[type=week],.block-list input[type=email],.block-list input[type=number],.block-list input[type=search],.block-list input[type=tel],.block-list input[type=time],.block-list input[type=url],.block-list input[type=color],.block-list textarea{margin:0;border:0;line-height:1;height:auto;padding:.8rem 1rem;color:inherit}.block-list [type=text]:hover,.block-list [type=text]:focus,.block-list input[type=password]:hover,.block-list input[type=password]:focus,.block-list input[type=date]:hover,.block-list input[type=date]:focus,.block-list input[type=datetime]:hover,.block-list input[type=datetime]:focus,.block-list input[type=datetime-local]:hover,.block-list input[type=datetime-local]:focus,.block-list input[type=month]:hover,.block-list input[type=month]:focus,.block-list input[type=week]:hover,.block-list input[type=week]:focus,.block-list input[type=email]:hover,.block-list input[type=email]:focus,.block-list input[type=number]:hover,.block-list input[type=number]:focus,.block-list input[type=search]:hover,.block-list input[type=search]:focus,.block-list input[type=tel]:hover,.block-list input[type=tel]:focus,.block-list input[type=time]:hover,.block-list input[type=time]:focus,.block-list input[type=url]:hover,.block-list input[type=url]:focus,.block-list input[type=color]:hover,.block-list input[type=color]:focus,.block-list textarea:hover,.block-list textarea:focus{border:0}.block-list li>input[type=checkbox],.block-list li>input[type=radio]{position:absolute;left:-9999px}.block-list li>input[type=checkbox]+label,.block-list li>input[type=radio]+label{display:block;font-size:.9rem;margin:0}.block-list li>input[type=checkbox]:checked+label::before,.block-list li>input[type=radio]:checked+label::before{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="32" viewBox="0 0 32 32"><path fill="rgb(0, 0, 0)" d="M16 0c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zm6.906 8.875l2.219 2.031-12.063 13.281-6.188-6.188 2.125-2.125 3.938 3.938 9.969-10.938z"/></svg>');content:"";background-size:100% 100%;width:1.5em;height:1.5em;color:#4688f1;float:right;pointer-events:none;margin-top:-0.25em}@media screen and (min-width: 0\0 ){.block-list li>input[type=checkbox]:checked+label::before,.block-list li>input[type=radio]:checked+label::before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAdlJREFUeNrMl0FugzAQRY3TRZeoFyhVL0BOkGTXJezaHZwguUnECaCrdFd6gqQnCN11Uyk5QekNOlONJWMVGMCgfGlkEIY3HnsG2xFM3d96PjQB2AJsWdPtAPYOln+dTwXnuw4DHEGzBvNFN6EDCTiS9XIAwB40acNoucKoxODIie0AwAOCu8KOSnIiNx/MakK+A7sW9oTferxx3fP3T1nURoBG/irGVahHwjHm/Ggx7E3TMVdrQmoP0gngghhpZQ3QvG/EdPLUelARWI8Aycjq9Md0qMIdbcNhjmOKLoY7quk3l1Rebeqg4AwFkmq7LWGOh1pmNY0etZAWSq0OX8HoS4JvWuCopbSY26EGR/CW86K0BF+pwkLwlPuyHJhOCl5oe4ZtF++vOqST+GdOYwO+71pN2VNAjmQGPCe42weuHDg0PI8olUwnYrXTGQJH9gxq8l1LKvrQx4O6/YY32Kp/ugb3ey7gZ4xAzuhYiYTxB/UHZFAuaREVXZ2g6yFlvEC2yoKEmbsRZYNgVLk2JeaOaG+xLHN+WCszDWMqLGOrJFa1DlApjSdwoHJGqGzLIb0+cas0wh5Bh780ngswx8GJD7h8sHg2wLA/mfDLPZpdxOF0quP5rwADAAFIzSRvu1m5AAAAAElFTkSuQmCC")}}.block-list .with-dropdown{color:inherit}.block-list .with-dropdown select{-webkit-appearance:none;-moz-appearance:none;outline:0;background:0;border:0;height:auto;padding:.8rem 1rem;margin:0;font-size:1em;line-height:1;color:inherit;background-color:rgba(0,0,0,0)}.block-list .switch{position:absolute;top:50%;right:1rem;transform:translateY(-50%)}.block-list.with-icons li>a,.block-list.with-icons li>span,.block-list.with-icons li>label{padding-left:2.8rem}.block-list.with-icons li img,.block-list.with-icons li .iconic{position:absolute;top:.25rem;left:.25rem;width:2rem;height:2rem;border-radius:8px;pointer-events:none}.block-list header{margin-top:1em;color:#666;font-weight:bold;margin-bottom:.5em;margin-left:1rem;font-size:.8em;cursor:default;text-transform:uppercase}.block-list li{position:relative;border-bottom:1px solid #cacaca}.block-list li:first-child{border-top:1px solid #cacaca}.block-list li>a,.block-list li>span,.block-list li>label{display:block;padding:.8rem 1rem;padding-left:1rem;color:#000;line-height:1}.block-list li>span{cursor:default}.block-list li>a,.block-list li>label{cursor:pointer}.block-list li>a:hover,.block-list li>label:hover{color:#000}.block-list li>a:hover,.block-list li>label:hover,.block-list li select:hover{background:#fff}.block-list li.caution>a,.block-list li.caution>a:hover{color:#f87b78}.block-list li.disabled>a{cursor:default}.block-list li.disabled>a,.block-list li.disabled>a:hover{color:#999}.block-list li.disabled>a:hover{background:rgba(0,0,0,0)}.block-list li.with-chevron::after{content:"›";display:block;position:absolute;right:1rem;top:50%;transform:translateY(-50%);font-weight:bold;color:#666;font-size:2em}.block-list li.with-chevron .block-list-label{padding-right:1.5rem}.block-list li .block-list-label{display:inline-block;float:right;padding:0;color:#999;pointer-events:none}.block-list li .block-list-label.left{margin-left:.8rem;float:none}.button-group>li>a,.button-group>li>label,.button-group>li>button,.button,button{display:inline-block;border:0;text-align:center;line-height:1;cursor:pointer;-webkit-appearance:none;-webkit-font-smoothing:antialiased;transition:background .25s ease-out;vertical-align:middle;padding:.5rem 1.125rem;margin:0 1.1rem 1.1rem 0;font-size:.875rem;border-radius:.1875rem}.button,button{font-size:.875rem;display:inline-block;margin:0 1.1rem 1.1rem 0;background:#4688f1;color:#000}.button .iconic,button .iconic{width:1em;height:1em;vertical-align:middle;margin-right:.25em;margin-top:-2px}.button:hover,button:hover,.button:focus,button:focus{background:#1b6cee;color:#000}.button[data-popup-toggle]::after,button[data-popup-toggle]::after{border-top-color:#000}.button .iconic *,button .iconic *{fill:#000;stroke:#000}.button .iconic *.iconic-property-accent,button .iconic *.iconic-property-accent{fill:#000;stroke:#000}.button.tiny,button.tiny{font-size:.6125rem}.button.tiny .iconic,button.tiny .iconic{width:1em;height:1em;vertical-align:middle;margin-right:.25em;margin-top:-2px}.button.small,button.small{font-size:.7rem}.button.small .iconic,button.small .iconic{width:1em;height:1em;vertical-align:middle;margin-right:.25em;margin-top:-2px}.button.large,button.large{font-size:1.05rem}.button.large .iconic,button.large .iconic{width:1em;height:1em;vertical-align:middle;margin-right:.25em;margin-top:-2px}.button.expand,button.expand{display:block;margin-left:0;margin-right:0}.button.secondary,button.secondary{background:#f57f34;color:#fff}.button.secondary:hover,button.secondary:hover,.button.secondary:focus,button.secondary:focus{background:#f1650c;color:#fff}.button.secondary[data-popup-toggle]::after,button.secondary[data-popup-toggle]::after{border-top-color:#fff}.button.secondary .iconic *,button.secondary .iconic *{fill:#fff;stroke:#fff}.button.secondary .iconic *.iconic-property-accent,button.secondary .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button.success,button.success{background:#12c17d;color:#fff}.button.success:hover,button.success:hover,.button.success:focus,button.success:focus{background:#0fa46a;color:#fff}.button.success[data-popup-toggle]::after,button.success[data-popup-toggle]::after{border-top-color:#fff}.button.success .iconic *,button.success .iconic *{fill:#fff;stroke:#fff}.button.success .iconic *.iconic-property-accent,button.success .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button.warning,button.warning{background:#f57f34;color:#fff}.button.warning:hover,button.warning:hover,.button.warning:focus,button.warning:focus{background:#f1650c;color:#fff}.button.warning[data-popup-toggle]::after,button.warning[data-popup-toggle]::after{border-top-color:#fff}.button.warning .iconic *,button.warning .iconic *{fill:#fff;stroke:#fff}.button.warning .iconic *.iconic-property-accent,button.warning .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button.alert,button.alert{background:#f87b78;color:#000}.button.alert:hover,button.alert:hover,.button.alert:focus,button.alert:focus{background:#f54844;color:#000}.button.alert[data-popup-toggle]::after,button.alert[data-popup-toggle]::after{border-top-color:#000}.button.alert .iconic *,button.alert .iconic *{fill:#000;stroke:#000}.button.alert .iconic *.iconic-property-accent,button.alert .iconic *.iconic-property-accent{fill:#000;stroke:#000}.button.info,button.info{background:#ecf3fe;color:#000}.button.info:hover,button.info:hover,.button.info:focus,button.info:focus{background:#a6c7fa;color:#000}.button.info[data-popup-toggle]::after,button.info[data-popup-toggle]::after{border-top-color:#000}.button.info .iconic *,button.info .iconic *{fill:#000;stroke:#000}.button.info .iconic *.iconic-property-accent,button.info .iconic *.iconic-property-accent{fill:#000;stroke:#000}.button.dark,button.dark{background:#769da3;color:#fff}.button.dark:hover,button.dark:hover,.button.dark:focus,button.dark:focus{background:#60898f;color:#fff}.button.dark[data-popup-toggle]::after,button.dark[data-popup-toggle]::after{border-top-color:#fff}.button.dark .iconic *,button.dark .iconic *{fill:#fff;stroke:#fff}.button.dark .iconic *.iconic-property-accent,button.dark .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button.hollow,button.hollow{border:1px solid #4688f1;background:rgba(0,0,0,0);color:#4688f1}.button.hollow:hover,button.hollow:hover,.button.hollow:focus,button.hollow:focus{border-color:#74a6f5;background:rgba(0,0,0,0);color:#74a6f5}.button.hollow[data-popup-toggle]::after,button.hollow[data-popup-toggle]::after{border-top-color:#4688f1}.button.hollow .iconic *,button.hollow .iconic *{fill:#4688f1;stroke:#4688f1}.button.hollow .iconic *.iconic-property-accent,button.hollow .iconic *.iconic-property-accent{fill:#4688f1;stroke:#4688f1}.button.hollow:hover .iconic *,button.hollow:hover .iconic *{fill:#74a6f5;stroke:#74a6f5}.button.hollow:hover .iconic *.iconic-property-accent,button.hollow:hover .iconic *.iconic-property-accent{fill:#74a6f5;stroke:#74a6f5}.button.hollow.secondary,button.hollow.secondary{border:1px solid #f57f34;background:rgba(0,0,0,0);color:#f57f34}.button.hollow.secondary:hover,button.hollow.secondary:hover,.button.hollow.secondary:focus,button.hollow.secondary:focus{border-color:#f89f67;background:rgba(0,0,0,0);color:#f89f67}.button.hollow.secondary[data-popup-toggle]::after,button.hollow.secondary[data-popup-toggle]::after{border-top-color:#f57f34}.button.hollow.secondary .iconic *,button.hollow.secondary .iconic *{fill:#f57f34;stroke:#f57f34}.button.hollow.secondary .iconic *.iconic-property-accent,button.hollow.secondary .iconic *.iconic-property-accent{fill:#f57f34;stroke:#f57f34}.button.hollow.secondary:hover .iconic *,button.hollow.secondary:hover .iconic *{fill:#f89f67;stroke:#f89f67}.button.hollow.secondary:hover .iconic *.iconic-property-accent,button.hollow.secondary:hover .iconic *.iconic-property-accent{fill:#f89f67;stroke:#f89f67}.button.hollow.success,button.hollow.success{border:1px solid #12c17d;background:rgba(0,0,0,0);color:#12c17d}.button.hollow.success:hover,button.hollow.success:hover,.button.hollow.success:focus,button.hollow.success:focus{border-color:#32eca4;background:rgba(0,0,0,0);color:#32eca4}.button.hollow.success[data-popup-toggle]::after,button.hollow.success[data-popup-toggle]::after{border-top-color:#12c17d}.button.hollow.success .iconic *,button.hollow.success .iconic *{fill:#12c17d;stroke:#12c17d}.button.hollow.success .iconic *.iconic-property-accent,button.hollow.success .iconic *.iconic-property-accent{fill:#12c17d;stroke:#12c17d}.button.hollow.success:hover .iconic *,button.hollow.success:hover .iconic *{fill:#32eca4;stroke:#32eca4}.button.hollow.success:hover .iconic *.iconic-property-accent,button.hollow.success:hover .iconic *.iconic-property-accent{fill:#32eca4;stroke:#32eca4}.button.hollow.warning,button.hollow.warning{border:1px solid #f57f34;background:rgba(0,0,0,0);color:#f57f34}.button.hollow.warning:hover,button.hollow.warning:hover,.button.hollow.warning:focus,button.hollow.warning:focus{border-color:#f89f67;background:rgba(0,0,0,0);color:#f89f67}.button.hollow.warning[data-popup-toggle]::after,button.hollow.warning[data-popup-toggle]::after{border-top-color:#f57f34}.button.hollow.warning .iconic *,button.hollow.warning .iconic *{fill:#f57f34;stroke:#f57f34}.button.hollow.warning .iconic *.iconic-property-accent,button.hollow.warning .iconic *.iconic-property-accent{fill:#f57f34;stroke:#f57f34}.button.hollow.warning:hover .iconic *,button.hollow.warning:hover .iconic *{fill:#f89f67;stroke:#f89f67}.button.hollow.warning:hover .iconic *.iconic-property-accent,button.hollow.warning:hover .iconic *.iconic-property-accent{fill:#f89f67;stroke:#f89f67}.button.hollow.alert,button.hollow.alert{border:1px solid #f87b78;background:rgba(0,0,0,0);color:#f87b78}.button.hollow.alert:hover,button.hollow.alert:hover,.button.hollow.alert:focus,button.hollow.alert:focus{border-color:#fa9c9a;background:rgba(0,0,0,0);color:#fa9c9a}.button.hollow.alert[data-popup-toggle]::after,button.hollow.alert[data-popup-toggle]::after{border-top-color:#f87b78}.button.hollow.alert .iconic *,button.hollow.alert .iconic *{fill:#f87b78;stroke:#f87b78}.button.hollow.alert .iconic *.iconic-property-accent,button.hollow.alert .iconic *.iconic-property-accent{fill:#f87b78;stroke:#f87b78}.button.hollow.alert:hover .iconic *,button.hollow.alert:hover .iconic *{fill:#fa9c9a;stroke:#fa9c9a}.button.hollow.alert:hover .iconic *.iconic-property-accent,button.hollow.alert:hover .iconic *.iconic-property-accent{fill:#fa9c9a;stroke:#fa9c9a}.button.hollow.info,button.hollow.info{border:1px solid #ecf3fe;background:rgba(0,0,0,0);color:#ecf3fe}.button.hollow.info:hover,button.hollow.info:hover,.button.hollow.info:focus,button.hollow.info:focus{border-color:#f1f6fe;background:rgba(0,0,0,0);color:#f1f6fe}.button.hollow.info[data-popup-toggle]::after,button.hollow.info[data-popup-toggle]::after{border-top-color:#ecf3fe}.button.hollow.info .iconic *,button.hollow.info .iconic *{fill:#ecf3fe;stroke:#ecf3fe}.button.hollow.info .iconic *.iconic-property-accent,button.hollow.info .iconic *.iconic-property-accent{fill:#ecf3fe;stroke:#ecf3fe}.button.hollow.info:hover .iconic *,button.hollow.info:hover .iconic *{fill:#f1f6fe;stroke:#f1f6fe}.button.hollow.info:hover .iconic *.iconic-property-accent,button.hollow.info:hover .iconic *.iconic-property-accent{fill:#f1f6fe;stroke:#f1f6fe}.button.hollow.dark,button.hollow.dark{border:1px solid #769da3;background:rgba(0,0,0,0);color:#769da3}.button.hollow.dark:hover,button.hollow.dark:hover,.button.hollow.dark:focus,button.hollow.dark:focus{border-color:#98b6ba;background:rgba(0,0,0,0);color:#98b6ba}.button.hollow.dark[data-popup-toggle]::after,button.hollow.dark[data-popup-toggle]::after{border-top-color:#769da3}.button.hollow.dark .iconic *,button.hollow.dark .iconic *{fill:#769da3;stroke:#769da3}.button.hollow.dark .iconic *.iconic-property-accent,button.hollow.dark .iconic *.iconic-property-accent{fill:#769da3;stroke:#769da3}.button.hollow.dark:hover .iconic *,button.hollow.dark:hover .iconic *{fill:#98b6ba;stroke:#98b6ba}.button.hollow.dark:hover .iconic *.iconic-property-accent,button.hollow.dark:hover .iconic *.iconic-property-accent{fill:#98b6ba;stroke:#98b6ba}.button.disabled,button.disabled{opacity:.5;cursor:default;pointer-events:none}.button-group{margin:0;margin-bottom:1rem;list-style-type:none;display:inline-flex;border-radius:.1875rem;overflow:hidden;font-size:.875rem}.button-group>li{flex:0 0 auto}.button-group>li>a,.button-group>li>label,.button-group>li>button{border-radius:0;font-size:inherit;display:block;margin:0}.button-group>li>input+label{margin-left:0}.button-group>li:not(:last-child)>a,.button-group>li:not(:last-child)>label,.button-group>li:not(:last-child)>button{border-right:1px solid #bdbdbd}.button-group .iconic{width:1em;height:1em;vertical-align:middle;margin-right:.25em;margin-top:-2px}.button-group.segmented.alert,.button-group.segmented.warning,.button-group.segmented.success,.button-group.segmented.secondary,.button-group.segmented{border:1px solid #4688f1;transition-property:background color}.button-group.segmented>li>input[type=radio]{position:absolute;left:-9999px}.button-group.segmented.alert>li>a,.button-group.segmented.warning>li>a,.button-group.segmented.success>li>a,.button-group.segmented.secondary>li>a,.button-group.segmented>li>a,.button-group.segmented.alert>li>label,.button-group.segmented.warning>li>label,.button-group.segmented.success>li>label,.button-group.segmented.secondary>li>label,.button-group.segmented>li>label,.button-group.segmented.alert>li>button,.button-group.segmented.warning>li>button,.button-group.segmented.success>li>button,.button-group.segmented.secondary>li>button,.button-group.segmented>li>button{margin-right:0;background:rgba(0,0,0,0)}.button-group{display:inline-flex;border-radius:.1875rem}.button-group>li{flex:0 0 auto}.button-group>li>a,.button-group>li>label,.button-group>li>button{background:#4688f1;color:#fff;border-color:#1b6cee}.button-group>li>a:hover,.button-group>li>a:focus,.button-group>li>label:hover,.button-group>li>label:focus,.button-group>li>button:hover,.button-group>li>button:focus{background:#1b6cee;color:#fff}.button-group>li>a[data-popup-toggle]::after,.button-group>li>label[data-popup-toggle]::after,.button-group>li>button[data-popup-toggle]::after{border-top-color:#fff}.button-group>li>a .iconic *,.button-group>li>label .iconic *,.button-group>li>button .iconic *{fill:#fff;stroke:#fff}.button-group>li>a .iconic *.iconic-property-accent,.button-group>li>label .iconic *.iconic-property-accent,.button-group>li>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group>li.is-active>a,.button-group>li.is-active>label,.button-group>li.is-active>button{background:#1b6cee}.button-group.secondary>li>a,.button-group.secondary>li>label,.button-group.secondary>li>button{background:#f57f34;color:#fff;border-color:#f1650c}.button-group.secondary>li>a:hover,.button-group.secondary>li>a:focus,.button-group.secondary>li>label:hover,.button-group.secondary>li>label:focus,.button-group.secondary>li>button:hover,.button-group.secondary>li>button:focus{background:#f1650c;color:#fff}.button-group.secondary>li>a[data-popup-toggle]::after,.button-group.secondary>li>label[data-popup-toggle]::after,.button-group.secondary>li>button[data-popup-toggle]::after{border-top-color:#fff}.button-group.secondary>li>a .iconic *,.button-group.secondary>li>label .iconic *,.button-group.secondary>li>button .iconic *{fill:#fff;stroke:#fff}.button-group.secondary>li>a .iconic *.iconic-property-accent,.button-group.secondary>li>label .iconic *.iconic-property-accent,.button-group.secondary>li>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.secondary>li.is-active>a,.button-group.secondary>li.is-active>label,.button-group.secondary>li.is-active>button{background:#f1650c}.button-group.success>li>a,.button-group.success>li>label,.button-group.success>li>button{background:#12c17d;color:#fff;border-color:#0fa46a}.button-group.success>li>a:hover,.button-group.success>li>a:focus,.button-group.success>li>label:hover,.button-group.success>li>label:focus,.button-group.success>li>button:hover,.button-group.success>li>button:focus{background:#0fa46a;color:#fff}.button-group.success>li>a[data-popup-toggle]::after,.button-group.success>li>label[data-popup-toggle]::after,.button-group.success>li>button[data-popup-toggle]::after{border-top-color:#fff}.button-group.success>li>a .iconic *,.button-group.success>li>label .iconic *,.button-group.success>li>button .iconic *{fill:#fff;stroke:#fff}.button-group.success>li>a .iconic *.iconic-property-accent,.button-group.success>li>label .iconic *.iconic-property-accent,.button-group.success>li>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.success>li.is-active>a,.button-group.success>li.is-active>label,.button-group.success>li.is-active>button{background:#0fa46a}.button-group.warning>li>a,.button-group.warning>li>label,.button-group.warning>li>button{background:#f57f34;color:#fff;border-color:#f1650c}.button-group.warning>li>a:hover,.button-group.warning>li>a:focus,.button-group.warning>li>label:hover,.button-group.warning>li>label:focus,.button-group.warning>li>button:hover,.button-group.warning>li>button:focus{background:#f1650c;color:#fff}.button-group.warning>li>a[data-popup-toggle]::after,.button-group.warning>li>label[data-popup-toggle]::after,.button-group.warning>li>button[data-popup-toggle]::after{border-top-color:#fff}.button-group.warning>li>a .iconic *,.button-group.warning>li>label .iconic *,.button-group.warning>li>button .iconic *{fill:#fff;stroke:#fff}.button-group.warning>li>a .iconic *.iconic-property-accent,.button-group.warning>li>label .iconic *.iconic-property-accent,.button-group.warning>li>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.warning>li.is-active>a,.button-group.warning>li.is-active>label,.button-group.warning>li.is-active>button{background:#f1650c}.button-group.alert>li>a,.button-group.alert>li>label,.button-group.alert>li>button{background:#f87b78;color:#fff;border-color:#f54844}.button-group.alert>li>a:hover,.button-group.alert>li>a:focus,.button-group.alert>li>label:hover,.button-group.alert>li>label:focus,.button-group.alert>li>button:hover,.button-group.alert>li>button:focus{background:#f54844;color:#fff}.button-group.alert>li>a[data-popup-toggle]::after,.button-group.alert>li>label[data-popup-toggle]::after,.button-group.alert>li>button[data-popup-toggle]::after{border-top-color:#fff}.button-group.alert>li>a .iconic *,.button-group.alert>li>label .iconic *,.button-group.alert>li>button .iconic *{fill:#fff;stroke:#fff}.button-group.alert>li>a .iconic *.iconic-property-accent,.button-group.alert>li>label .iconic *.iconic-property-accent,.button-group.alert>li>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.alert>li.is-active>a,.button-group.alert>li.is-active>label,.button-group.alert>li.is-active>button{background:#f54844}.button-group>li.secondary>a,.button-group>li.secondary>label,.button-group>li.secondary>button{background:#f57f34;color:#fff;border-color:#f57f34}.button-group>li.secondary>a:hover,.button-group>li.secondary>a:focus,.button-group>li.secondary>label:hover,.button-group>li.secondary>label:focus,.button-group>li.secondary>button:hover,.button-group>li.secondary>button:focus{background:#f1650c;color:#fff}.button-group>li.secondary>a[data-popup-toggle]::after,.button-group>li.secondary>label[data-popup-toggle]::after,.button-group>li.secondary>button[data-popup-toggle]::after{border-top-color:#fff}.button-group>li.secondary>a:hover,.button-group>li.secondary>a:focus,.button-group>li.secondary>label:hover,.button-group>li.secondary>label:focus,.button-group>li.secondary>button:hover,.button-group>li.secondary>button:focus{border-color:#d4590a}.button-group>li.secondary>a .iconic *,.button-group>li.secondary>label .iconic *,.button-group>li.secondary>button .iconic *{fill:#fff;stroke:#fff}.button-group>li.secondary>a .iconic *.iconic-property-accent,.button-group>li.secondary>label .iconic *.iconic-property-accent,.button-group>li.secondary>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group>li.success>a,.button-group>li.success>label,.button-group>li.success>button{background:#12c17d;color:#fff;border-color:#12c17d}.button-group>li.success>a:hover,.button-group>li.success>a:focus,.button-group>li.success>label:hover,.button-group>li.success>label:focus,.button-group>li.success>button:hover,.button-group>li.success>button:focus{background:#0fa46a;color:#fff}.button-group>li.success>a[data-popup-toggle]::after,.button-group>li.success>label[data-popup-toggle]::after,.button-group>li.success>button[data-popup-toggle]::after{border-top-color:#fff}.button-group>li.success>a:hover,.button-group>li.success>a:focus,.button-group>li.success>label:hover,.button-group>li.success>label:focus,.button-group>li.success>button:hover,.button-group>li.success>button:focus{border-color:#0e915e}.button-group>li.success>a .iconic *,.button-group>li.success>label .iconic *,.button-group>li.success>button .iconic *{fill:#fff;stroke:#fff}.button-group>li.success>a .iconic *.iconic-property-accent,.button-group>li.success>label .iconic *.iconic-property-accent,.button-group>li.success>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group>li.warning>a,.button-group>li.warning>label,.button-group>li.warning>button{background:#f57f34;color:#fff;border-color:#f57f34}.button-group>li.warning>a:hover,.button-group>li.warning>a:focus,.button-group>li.warning>label:hover,.button-group>li.warning>label:focus,.button-group>li.warning>button:hover,.button-group>li.warning>button:focus{background:#f1650c;color:#fff}.button-group>li.warning>a[data-popup-toggle]::after,.button-group>li.warning>label[data-popup-toggle]::after,.button-group>li.warning>button[data-popup-toggle]::after{border-top-color:#fff}.button-group>li.warning>a:hover,.button-group>li.warning>a:focus,.button-group>li.warning>label:hover,.button-group>li.warning>label:focus,.button-group>li.warning>button:hover,.button-group>li.warning>button:focus{border-color:#d4590a}.button-group>li.warning>a .iconic *,.button-group>li.warning>label .iconic *,.button-group>li.warning>button .iconic *{fill:#fff;stroke:#fff}.button-group>li.warning>a .iconic *.iconic-property-accent,.button-group>li.warning>label .iconic *.iconic-property-accent,.button-group>li.warning>button .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group>li.alert>a,.button-group>li.alert>label,.button-group>li.alert>button{background:#f87b78;color:#000;border-color:#f87b78}.button-group>li.alert>a:hover,.button-group>li.alert>a:focus,.button-group>li.alert>label:hover,.button-group>li.alert>label:focus,.button-group>li.alert>button:hover,.button-group>li.alert>button:focus{background:#f54844;color:#000}.button-group>li.alert>a[data-popup-toggle]::after,.button-group>li.alert>label[data-popup-toggle]::after,.button-group>li.alert>button[data-popup-toggle]::after{border-top-color:#000}.button-group>li.alert>a:hover,.button-group>li.alert>a:focus,.button-group>li.alert>label:hover,.button-group>li.alert>label:focus,.button-group>li.alert>button:hover,.button-group>li.alert>button:focus{border-color:#f32521}.button-group>li.alert>a .iconic *,.button-group>li.alert>label .iconic *,.button-group>li.alert>button .iconic *{fill:#000;stroke:#000}.button-group>li.alert>a .iconic *.iconic-property-accent,.button-group>li.alert>label .iconic *.iconic-property-accent,.button-group>li.alert>button .iconic *.iconic-property-accent{fill:#000;stroke:#000}.button-group.segmented{border-color:#4688f1}.button-group.segmented>li>a,.button-group.segmented>li>label,.button-group.segmented>li>button{border-color:#4688f1;color:#4688f1}.button-group.segmented>li>a:hover,.button-group.segmented>li>label:hover,.button-group.segmented>li>button:hover{background:rgba(70,136,241,.25);color:#4688f1}.button-group.segmented>li>a .iconic *,.button-group.segmented>li>label .iconic *,.button-group.segmented>li>button .iconic *{fill:#4688f1;stroke:#4688f1}.button-group.segmented>li>a .iconic *.iconic-property-accent,.button-group.segmented>li>label .iconic *.iconic-property-accent,.button-group.segmented>li>button .iconic *.iconic-property-accent{fill:#4688f1;stroke:#4688f1}.button-group.segmented>li.is-active>a,.button-group.segmented>li.is-active>a:hover,.button-group.segmented>li>input:checked+label,.button-group.segmented>li>input:checked+label:hover{background:#4688f1;color:#000}.button-group.segmented>li.is-active>a .iconic *,.button-group.segmented>li>input:checked+label .iconic *{fill:#000;stroke:#000}.button-group.segmented>li.is-active>a .iconic *.iconic-property-accent,.button-group.segmented>li>input:checked+label .iconic *.iconic-property-accent{fill:#000;stroke:#000}.button-group.segmented.secondary{border-color:#f57f34}.button-group.segmented.secondary>li>a,.button-group.segmented.secondary>li>label,.button-group.segmented.secondary>li>button{border-color:#f57f34;color:#f57f34}.button-group.segmented.secondary>li>a:hover,.button-group.segmented.secondary>li>label:hover,.button-group.segmented.secondary>li>button:hover{background:rgba(245,127,52,.25);color:#f57f34}.button-group.segmented.secondary>li>a .iconic *,.button-group.segmented.secondary>li>label .iconic *,.button-group.segmented.secondary>li>button .iconic *{fill:#f57f34;stroke:#f57f34}.button-group.segmented.secondary>li>a .iconic *.iconic-property-accent,.button-group.segmented.secondary>li>label .iconic *.iconic-property-accent,.button-group.segmented.secondary>li>button .iconic *.iconic-property-accent{fill:#f57f34;stroke:#f57f34}.button-group.segmented.secondary>li.is-active>a,.button-group.segmented.secondary>li.is-active>a:hover,.button-group.segmented.secondary>li>input:checked+label,.button-group.segmented.secondary>li>input:checked+label:hover{background:#f57f34;color:#fff}.button-group.segmented.secondary>li.is-active>a .iconic *,.button-group.segmented.secondary>li>input:checked+label .iconic *{fill:#fff;stroke:#fff}.button-group.segmented.secondary>li.is-active>a .iconic *.iconic-property-accent,.button-group.segmented.secondary>li>input:checked+label .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.segmented.success{border-color:#12c17d}.button-group.segmented.success>li>a,.button-group.segmented.success>li>label,.button-group.segmented.success>li>button{border-color:#12c17d;color:#12c17d}.button-group.segmented.success>li>a:hover,.button-group.segmented.success>li>label:hover,.button-group.segmented.success>li>button:hover{background:rgba(18,193,125,.25);color:#12c17d}.button-group.segmented.success>li>a .iconic *,.button-group.segmented.success>li>label .iconic *,.button-group.segmented.success>li>button .iconic *{fill:#12c17d;stroke:#12c17d}.button-group.segmented.success>li>a .iconic *.iconic-property-accent,.button-group.segmented.success>li>label .iconic *.iconic-property-accent,.button-group.segmented.success>li>button .iconic *.iconic-property-accent{fill:#12c17d;stroke:#12c17d}.button-group.segmented.success>li.is-active>a,.button-group.segmented.success>li.is-active>a:hover,.button-group.segmented.success>li>input:checked+label,.button-group.segmented.success>li>input:checked+label:hover{background:#12c17d;color:#fff}.button-group.segmented.success>li.is-active>a .iconic *,.button-group.segmented.success>li>input:checked+label .iconic *{fill:#fff;stroke:#fff}.button-group.segmented.success>li.is-active>a .iconic *.iconic-property-accent,.button-group.segmented.success>li>input:checked+label .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.segmented.warning{border-color:#f57f34}.button-group.segmented.warning>li>a,.button-group.segmented.warning>li>label,.button-group.segmented.warning>li>button{border-color:#f57f34;color:#f57f34}.button-group.segmented.warning>li>a:hover,.button-group.segmented.warning>li>label:hover,.button-group.segmented.warning>li>button:hover{background:rgba(245,127,52,.25);color:#f57f34}.button-group.segmented.warning>li>a .iconic *,.button-group.segmented.warning>li>label .iconic *,.button-group.segmented.warning>li>button .iconic *{fill:#f57f34;stroke:#f57f34}.button-group.segmented.warning>li>a .iconic *.iconic-property-accent,.button-group.segmented.warning>li>label .iconic *.iconic-property-accent,.button-group.segmented.warning>li>button .iconic *.iconic-property-accent{fill:#f57f34;stroke:#f57f34}.button-group.segmented.warning>li.is-active>a,.button-group.segmented.warning>li.is-active>a:hover,.button-group.segmented.warning>li>input:checked+label,.button-group.segmented.warning>li>input:checked+label:hover{background:#f57f34;color:#fff}.button-group.segmented.warning>li.is-active>a .iconic *,.button-group.segmented.warning>li>input:checked+label .iconic *{fill:#fff;stroke:#fff}.button-group.segmented.warning>li.is-active>a .iconic *.iconic-property-accent,.button-group.segmented.warning>li>input:checked+label .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.button-group.segmented.alert{border-color:#f87b78}.button-group.segmented.alert>li>a,.button-group.segmented.alert>li>label,.button-group.segmented.alert>li>button{border-color:#f87b78;color:#f87b78}.button-group.segmented.alert>li>a:hover,.button-group.segmented.alert>li>label:hover,.button-group.segmented.alert>li>button:hover{background:rgba(248,123,120,.25);color:#f87b78}.button-group.segmented.alert>li>a .iconic *,.button-group.segmented.alert>li>label .iconic *,.button-group.segmented.alert>li>button .iconic *{fill:#f87b78;stroke:#f87b78}.button-group.segmented.alert>li>a .iconic *.iconic-property-accent,.button-group.segmented.alert>li>label .iconic *.iconic-property-accent,.button-group.segmented.alert>li>button .iconic *.iconic-property-accent{fill:#f87b78;stroke:#f87b78}.button-group.segmented.alert>li.is-active>a,.button-group.segmented.alert>li.is-active>a:hover,.button-group.segmented.alert>li>input:checked+label,.button-group.segmented.alert>li>input:checked+label:hover{background:#f87b78;color:#000}.button-group.segmented.alert>li.is-active>a .iconic *,.button-group.segmented.alert>li>input:checked+label .iconic *{fill:#000;stroke:#000}.button-group.segmented.alert>li.is-active>a .iconic *.iconic-property-accent,.button-group.segmented.alert>li>input:checked+label .iconic *.iconic-property-accent{fill:#000;stroke:#000}.button-group.tiny{font-size:.6125rem}.button-group.small{font-size:.7rem}.button-group.large{font-size:1.05rem}.button-group.expand{display:flex}.button-group.expand>li{flex:1}.button-group.expand>li>a,.button-group.expand>li>label,.button-group.expand>li>button{display:block;margin-left:0;margin-right:0}.button-group li.disabled>a,.button-group li.disabled>label,.button-group li.disabled>button{opacity:.5;cursor:default;pointer-events:none}.card{border:1px solid #cacaca;margin-bottom:.5rem;background:#fff;color:#000;border-radius:.1875rem;box-shadow:none;overflow:hidden}.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{color:inherit}.card ul{margin-bottom:0}.card.primary{border:0;margin-bottom:.5rem;background:#4688f1;color:#000;border-radius:.1875rem;box-shadow:none;overflow:hidden}.card.primary h1,.card.primary h2,.card.primary h3,.card.primary h4,.card.primary h5,.card.primary h6{color:inherit}.card.primary ul{margin-bottom:0}.card.primary .card-divider{background:#327bef;padding:1.1rem}.card.success{border:0;margin-bottom:.5rem;background:#12c17d;color:#fff;border-radius:.1875rem;box-shadow:none;overflow:hidden}.card.success h1,.card.success h2,.card.success h3,.card.success h4,.card.success h5,.card.success h6{color:inherit}.card.success ul{margin-bottom:0}.card.success .card-divider{background:#14d489;padding:1.1rem}.card.warning{border:0;margin-bottom:.5rem;background:#f57f34;color:#fff;border-radius:.1875rem;box-shadow:none;overflow:hidden}.card.warning h1,.card.warning h2,.card.warning h3,.card.warning h4,.card.warning h5,.card.warning h6{color:inherit}.card.warning ul{margin-bottom:0}.card.warning .card-divider{background:#f68842;padding:1.1rem}.card.alert{border:0;margin-bottom:.5rem;background:#f87b78;color:#000;border-radius:.1875rem;box-shadow:none;overflow:hidden}.card.alert h1,.card.alert h2,.card.alert h3,.card.alert h4,.card.alert h5,.card.alert h6{color:inherit}.card.alert ul{margin-bottom:0}.card.alert .card-divider{background:#f76360;padding:1.1rem}.card.dark{border:0;margin-bottom:.5rem;background:#769da3;color:#fff;border-radius:.1875rem;box-shadow:none;overflow:hidden}.card.dark h1,.card.dark h2,.card.dark h3,.card.dark h4,.card.dark h5,.card.dark h6{color:inherit}.card.dark ul{margin-bottom:0}.card.dark .card-divider{background:#80a4a9;padding:1.1rem}.card-divider{background:rgba(0,0,0,0);padding:1.1rem}.card-section{padding:1.1rem}.close-button{position:absolute;color:#999;top:1.1rem;right:1.1rem;font-size:1.5em;line-height:.5;cursor:pointer}.close-button:hover{color:#333}ul.thumbnails>li img,.thumbnail{padding:.5rem;box-shadow:0 3px 15px rgba(0,0,0,.25)}ul.thumbnails>li{margin-bottom:1rem}ul.thumbnails>li a{display:block}[type=text],input[type=password],input[type=date],input[type=datetime],input[type=datetime-local],input[type=month],input[type=week],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=time],input[type=url],input[type=color],textarea{-webkit-appearance:none;-moz-appearance:none;display:block;width:100%;padding:.5rem;margin:0 0 1.1rem 0;border:1px solid #cacaca;border-radius:0;background:#fff;color:#4e4e4e;font-size:1rem;line-height:1;-webkit-font-smoothing:antialiased}[type=text]:hover,input[type=password]:hover,input[type=date]:hover,input[type=datetime]:hover,input[type=datetime-local]:hover,input[type=month]:hover,input[type=week]:hover,input[type=email]:hover,input[type=number]:hover,input[type=search]:hover,input[type=tel]:hover,input[type=time]:hover,input[type=url]:hover,input[type=color]:hover,textarea:hover{border:1px solid #bbb;background:#fefada;color:#4e4e4e}[type=text]:focus,input[type=password]:focus,input[type=date]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=month]:focus,input[type=week]:focus,input[type=email]:focus,input[type=number]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=time]:focus,input[type=url]:focus,input[type=color]:focus,textarea:focus{outline:0;border:1px solid #4688f1;background:#fff;color:#4e4e4e}label>[type=text],label>input[type=password],label>input[type=date],label>input[type=datetime],label>input[type=datetime-local],label>input[type=month],label>input[type=week],label>input[type=email],label>input[type=number],label>input[type=search],label>input[type=tel],label>input[type=time],label>input[type=url],label>input[type=color],label>textarea{margin-top:.5rem}label{display:block;font-size:1rem;margin-bottom:.5rem;color:#4e4e4e}label>input,label>textarea{margin-top:.5rem}input[type=checkbox],input[type=radio]{width:1rem;height:1rem}label>input[type=checkbox],label>input[type=radio]{margin-right:.25rem}input[type=checkbox]+label,input[type=radio]+label{display:inline-block;margin-left:.5rem;margin-right:1rem;margin-bottom:0;vertical-align:baseline}.inline-label{display:flex;flex-flow:row nowrap;align-items:stretch;margin-bottom:1.1rem}label>.inline-label{margin-top:.5rem}.inline-label>input,.inline-label>select{flex:1;margin:0}.inline-label>.form-label{flex:0 0 auto;background:#fcfcfc;color:#4e4e4e;border:1px solid #cacaca;padding:0 .5rem;display:flex;align-items:center}.inline-label>.form-label:first-child{border-right:0}.inline-label>.form-label:last-child{border-left:0}.inline-label>a,.inline-label>button,.inline-label>input[type=button],.inline-label>input[type=submit]{flex:0 0 auto;display:flex;align-items:center;padding-top:0;padding-bottom:0;margin:0;border-radius:0}textarea{height:auto;width:100%}select{-webkit-appearance:none;-moz-appearance:none;display:block;width:100%;padding:.5rem;margin:0 0 1.1rem 0;font-size:1rem;color:#000;border-radius:0;border:1px solid #cacaca;background:#fafafa url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb(0, 0, 0)"></polygon></svg>') right 10px center no-repeat;background-size:8px 8px;padding-right:1.625rem}select:hover{background-color:#f0f0f0}select:focus{outline:0}input[type=range]{-webkit-appearance:none;-moz-appearance:none;display:block;width:100%;height:1rem;background:#ddd;cursor:pointer;overflow:visible;margin-top:.25rem;margin-bottom:.25rem}input[type=range]:focus{outline:0}input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;background:#4688f1;width:1.5rem;height:1.5rem}input[type=range]::-moz-range-track{-moz-appearance:none;max-width:300px;height:4px;background:#ccc;cursor:pointer}input[type=range]::-moz-range-thumb{-moz-appearance:none;background:#4688f1;width:1.5rem;height:1.5rem}input[type=range]::-ms-track{max-width:300px;height:4px;background:#ccc;cursor:pointer}input[type=range]::-ms-thumb{background:#4688f1;width:1.5rem;height:1.5rem}output{line-height:1.5rem;vertical-align:middle;margin-left:.5em}input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;background:#4688f1}progress,meter{-webkit-appearance:none;-moz-appearance:none;display:block;width:100%;height:1.5rem;margin-bottom:1rem;background:#ccc;border:0}progress::-webkit-progress-bar{background:#ccc}progress::-webkit-progress-value{background:#4688f1}progress::-moz-progress-bar{background:#4688f1}progress.high::-webkit-progress-value{background:#12c17d}progress.high::-moz-progress-bar{background:#12c17d}progress.medium::-webkit-progress-value{background:#e7cf00}progress.medium::-moz-progress-bar{background:#e7cf00}progress.low::-webkit-progress-value{background:#f87b78}progress.low::-moz-progress-bar{background:#f87b78}meter{background:#ccc}meter::-webkit-meter-bar{background:#ccc}meter::-webkit-meter-optimum-value{background:#12c17d}meter::-webkit-meter-suboptimum-value{background:#e7cf00}meter::-webkit-meter-even-less-good-value{background:#f87b78}meter::-moz-meter-bar{background:#4688f1}meter:-moz-meter-optimum::-moz-meter-bar{background:#12c17d}meter:-moz-meter-sub-optimum::-moz-meter-bar{background:#e7cf00}meter:-moz-meter-sub-sub-optimum::-moz-meter-bar{background:#f87b78}.panel{position:absolute;z-index:100;overflow-y:auto;display:none}.is-active.panel{display:block}.panel{padding:0;background:#fff}.panel-top{top:0;left:0;width:100%;height:300px}.panel-top.is-active{box-shadow:0 3px 10px rgba(0,0,0,.25)}.panel-right{top:0;right:0;height:100%;width:100%}@media only screen and (min-width: 18.75em){.panel-right{width:300px}}.panel-right.is-active{box-shadow:-3px 0 10px rgba(0,0,0,.25)}.panel-bottom{bottom:0;left:0;width:100%;height:300px}.panel-bottom.is-active{box-shadow:2px -3px 10px rgba(0,0,0,.25)}.panel-left{top:0;left:0;height:100%;width:100%}@media only screen and (min-width: 18.75em){.panel-left{width:300px}}.panel-left.is-active{box-shadow:3px 0 10px rgba(0,0,0,.25)}.panel-fixed{position:fixed}.xxlarge-grid-block,.xlarge-grid-block,.large-grid-block,.medium-grid-block,.small-grid-block,.grid-block,.grid-frame{backface-visibility:hidden}.vertical.xxlarge-grid-block,.vertical.xlarge-grid-block,.vertical.large-grid-block,.vertical.medium-grid-block,.vertical.small-grid-block,.vertical.grid-block,.vertical.grid-frame{flex-flow:column nowrap;align-items:stretch}.small-vertical.xxlarge-grid-block,.small-vertical.xlarge-grid-block,.small-vertical.large-grid-block,.small-vertical.medium-grid-block,.small-vertical.small-grid-block,.small-vertical.grid-block,.small-vertical.grid-frame{flex-flow:column nowrap;align-items:stretch}.small-horizontal.xxlarge-grid-block,.small-horizontal.xlarge-grid-block,.small-horizontal.large-grid-block,.small-horizontal.medium-grid-block,.small-horizontal.small-grid-block,.small-horizontal.grid-block,.small-horizontal.grid-frame{flex-flow:row wrap}@media only screen and (min-width: 50.0625em){.medium-vertical.xxlarge-grid-block,.medium-vertical.xlarge-grid-block,.medium-vertical.large-grid-block,.medium-vertical.medium-grid-block,.medium-vertical.small-grid-block,.medium-vertical.grid-block,.medium-vertical.grid-frame{flex-flow:column nowrap;align-items:stretch}.medium-horizontal.xxlarge-grid-block,.medium-horizontal.xlarge-grid-block,.medium-horizontal.large-grid-block,.medium-horizontal.medium-grid-block,.medium-horizontal.small-grid-block,.medium-horizontal.grid-block,.medium-horizontal.grid-frame{flex-flow:row wrap}}@media only screen and (min-width: 75em){.large-vertical.xxlarge-grid-block,.large-vertical.xlarge-grid-block,.large-vertical.large-grid-block,.large-vertical.medium-grid-block,.large-vertical.small-grid-block,.large-vertical.grid-block,.large-vertical.grid-frame{flex-flow:column nowrap;align-items:stretch}.large-horizontal.xxlarge-grid-block,.large-horizontal.xlarge-grid-block,.large-horizontal.large-grid-block,.large-horizontal.medium-grid-block,.large-horizontal.small-grid-block,.large-horizontal.grid-block,.large-horizontal.grid-frame{flex-flow:row wrap}}@media only screen and (min-width: 90em){.xlarge-vertical.xxlarge-grid-block,.xlarge-vertical.xlarge-grid-block,.xlarge-vertical.large-grid-block,.xlarge-vertical.medium-grid-block,.xlarge-vertical.small-grid-block,.xlarge-vertical.grid-block,.xlarge-vertical.grid-frame{flex-flow:column nowrap;align-items:stretch}.xlarge-horizontal.xxlarge-grid-block,.xlarge-horizontal.xlarge-grid-block,.xlarge-horizontal.large-grid-block,.xlarge-horizontal.medium-grid-block,.xlarge-horizontal.small-grid-block,.xlarge-horizontal.grid-block,.xlarge-horizontal.grid-frame{flex-flow:row wrap}}@media only screen and (min-width: 120em){.xxlarge-vertical.xxlarge-grid-block,.xxlarge-vertical.xlarge-grid-block,.xxlarge-vertical.large-grid-block,.xxlarge-vertical.medium-grid-block,.xxlarge-vertical.small-grid-block,.xxlarge-vertical.grid-block,.xxlarge-vertical.grid-frame{flex-flow:column nowrap;align-items:stretch}.xxlarge-horizontal.xxlarge-grid-block,.xxlarge-horizontal.xlarge-grid-block,.xxlarge-horizontal.large-grid-block,.xxlarge-horizontal.medium-grid-block,.xxlarge-horizontal.small-grid-block,.xxlarge-horizontal.grid-block,.xxlarge-horizontal.grid-frame{flex-flow:row wrap}}.align-right.xxlarge-grid-block,.align-right.xlarge-grid-block,.align-right.large-grid-block,.align-right.medium-grid-block,.align-right.small-grid-block,.align-right.grid-block,.align-right.grid-frame{justify-content:flex-end}.align-center.xxlarge-grid-block,.align-center.xlarge-grid-block,.align-center.large-grid-block,.align-center.medium-grid-block,.align-center.small-grid-block,.align-center.grid-block,.align-center.grid-frame{justify-content:center}.align-justify.xxlarge-grid-block,.align-justify.xlarge-grid-block,.align-justify.large-grid-block,.align-justify.medium-grid-block,.align-justify.small-grid-block,.align-justify.grid-block,.align-justify.grid-frame{justify-content:space-between}.align-spaced.xxlarge-grid-block,.align-spaced.xlarge-grid-block,.align-spaced.large-grid-block,.align-spaced.medium-grid-block,.align-spaced.small-grid-block,.align-spaced.grid-block,.align-spaced.grid-frame{justify-content:space-around}.wrap.xxlarge-grid-block,.wrap.xlarge-grid-block,.wrap.large-grid-block,.wrap.medium-grid-block,.wrap.small-grid-block,.wrap.grid-block,.wrap.grid-frame{flex-wrap:wrap;align-items:flex-start}.shrink.xxlarge-grid-content,.shrink.xxlarge-grid-block,.shrink.xlarge-grid-content,.shrink.xlarge-grid-block,.shrink.large-grid-content,.shrink.large-grid-block,.shrink.medium-grid-content,.shrink.medium-grid-block,.shrink.small-grid-content,.shrink.small-grid-block,.shrink.grid-content,.shrink.grid-block{flex:0 0 auto}.grid-frame{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0}.grid-block{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.grid-content .grid-block{margin-left:-1.1rem;margin-right:-1.1rem}.grid-content{display:block;padding:0 1.1rem;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;flex:1 1 auto}.grid-content.collapse{padding:0}.grid-container{max-width:800px;margin:0 auto}.grid-container.contain-left{max-width:800px;margin:0 auto 0 0}.grid-container.contain-right{max-width:800px;margin:0 0 0 auto}.small-grid-block{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.small-grid-block.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}.small-grid-content{display:block;padding:0 1.1rem;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;flex:1 1 auto}.small-grid-content.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}@media only screen and (min-width: 50.0625em){.medium-grid-block{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.medium-grid-block.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 50.0625em){.medium-grid-content{display:block;padding:0 1.1rem;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;flex:1 1 auto}.medium-grid-content.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 75em){.large-grid-block{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.large-grid-block.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 75em){.large-grid-content{display:block;padding:0 1.1rem;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;flex:1 1 auto}.large-grid-content.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 90em){.xlarge-grid-block{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.xlarge-grid-block.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 90em){.xlarge-grid-content{display:block;padding:0 1.1rem;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;flex:1 1 auto}.xlarge-grid-content.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 120em){.xxlarge-grid-block{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.xxlarge-grid-block.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}@media only screen and (min-width: 120em){.xxlarge-grid-content{display:block;padding:0 1.1rem;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;flex:1 1 auto}.xxlarge-grid-content.panel{transform:none;position:relative;width:auto;height:auto;z-index:auto;box-shadow:none;background:rgba(0,0,0,0);top:auto;right:auto;bottom:auto;left:auto}}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.small-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.small-order-1{order:1}.small-offset-1{margin-left:8.3333333333%}.small-up-1{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-1>li,.small-up-1>div,.small-up-1>section{padding:0 1rem 1rem;flex:0 0 100%}.small-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.small-order-2{order:2}.small-offset-2{margin-left:16.6666666667%}.small-up-2{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-2>li,.small-up-2>div,.small-up-2>section{padding:0 1rem 1rem;flex:0 0 50%}.small-3{flex:0 0 25%;max-width:25%}.small-order-3{order:3}.small-offset-3{margin-left:25%}.small-up-3{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-3>li,.small-up-3>div,.small-up-3>section{padding:0 1rem 1rem;flex:0 0 33.3333333333%}.small-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.small-order-4{order:4}.small-offset-4{margin-left:33.3333333333%}.small-up-4{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-4>li,.small-up-4>div,.small-up-4>section{padding:0 1rem 1rem;flex:0 0 25%}.small-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.small-order-5{order:5}.small-offset-5{margin-left:41.6666666667%}.small-up-5{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-5>li,.small-up-5>div,.small-up-5>section{padding:0 1rem 1rem;flex:0 0 20%}.small-6{flex:0 0 50%;max-width:50%}.small-order-6{order:6}.small-offset-6{margin-left:50%}.small-up-6{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-6>li,.small-up-6>div,.small-up-6>section{padding:0 1rem 1rem;flex:0 0 16.6666666667%}.small-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.small-order-7{order:7}.small-offset-7{margin-left:58.3333333333%}.small-up-7{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-7>li,.small-up-7>div,.small-up-7>section{padding:0 1rem 1rem;flex:0 0 14.2857142857%}.small-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.small-order-8{order:8}.small-offset-8{margin-left:66.6666666667%}.small-up-8{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-8>li,.small-up-8>div,.small-up-8>section{padding:0 1rem 1rem;flex:0 0 12.5%}.small-9{flex:0 0 75%;max-width:75%}.small-order-9{order:9}.small-offset-9{margin-left:75%}.small-up-9{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-9>li,.small-up-9>div,.small-up-9>section{padding:0 1rem 1rem;flex:0 0 11.1111111111%}.small-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.small-order-10{order:10}.small-offset-10{margin-left:83.3333333333%}.small-up-10{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-10>li,.small-up-10>div,.small-up-10>section{padding:0 1rem 1rem;flex:0 0 10%}.small-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.small-order-11{order:11}.small-offset-11{margin-left:91.6666666667%}.small-up-11{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-11>li,.small-up-11>div,.small-up-11>section{padding:0 1rem 1rem;flex:0 0 9.0909090909%}.small-12{flex:0 0 100%;max-width:100%}.small-order-12{order:12}.small-offset-12{margin-left:100%}.small-up-12{flex-flow:row wrap;overflow:visible;list-style-type:none}.small-up-12>li,.small-up-12>div,.small-up-12>section{padding:0 1rem 1rem;flex:0 0 8.3333333333%}@media only screen and (min-width: 50.0625em){.medium-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.medium-order-1{order:1}.medium-offset-1{margin-left:8.3333333333%}.medium-up-1{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-1>li,.medium-up-1>div,.medium-up-1>section{padding:0 1rem 1rem;flex:0 0 100%}}@media only screen and (min-width: 50.0625em){.medium-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.medium-order-2{order:2}.medium-offset-2{margin-left:16.6666666667%}.medium-up-2{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-2>li,.medium-up-2>div,.medium-up-2>section{padding:0 1rem 1rem;flex:0 0 50%}}@media only screen and (min-width: 50.0625em){.medium-3{flex:0 0 25%;max-width:25%}.medium-order-3{order:3}.medium-offset-3{margin-left:25%}.medium-up-3{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-3>li,.medium-up-3>div,.medium-up-3>section{padding:0 1rem 1rem;flex:0 0 33.3333333333%}}@media only screen and (min-width: 50.0625em){.medium-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.medium-order-4{order:4}.medium-offset-4{margin-left:33.3333333333%}.medium-up-4{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-4>li,.medium-up-4>div,.medium-up-4>section{padding:0 1rem 1rem;flex:0 0 25%}}@media only screen and (min-width: 50.0625em){.medium-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.medium-order-5{order:5}.medium-offset-5{margin-left:41.6666666667%}.medium-up-5{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-5>li,.medium-up-5>div,.medium-up-5>section{padding:0 1rem 1rem;flex:0 0 20%}}@media only screen and (min-width: 50.0625em){.medium-6{flex:0 0 50%;max-width:50%}.medium-order-6{order:6}.medium-offset-6{margin-left:50%}.medium-up-6{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-6>li,.medium-up-6>div,.medium-up-6>section{padding:0 1rem 1rem;flex:0 0 16.6666666667%}}@media only screen and (min-width: 50.0625em){.medium-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.medium-order-7{order:7}.medium-offset-7{margin-left:58.3333333333%}.medium-up-7{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-7>li,.medium-up-7>div,.medium-up-7>section{padding:0 1rem 1rem;flex:0 0 14.2857142857%}}@media only screen and (min-width: 50.0625em){.medium-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.medium-order-8{order:8}.medium-offset-8{margin-left:66.6666666667%}.medium-up-8{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-8>li,.medium-up-8>div,.medium-up-8>section{padding:0 1rem 1rem;flex:0 0 12.5%}}@media only screen and (min-width: 50.0625em){.medium-9{flex:0 0 75%;max-width:75%}.medium-order-9{order:9}.medium-offset-9{margin-left:75%}.medium-up-9{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-9>li,.medium-up-9>div,.medium-up-9>section{padding:0 1rem 1rem;flex:0 0 11.1111111111%}}@media only screen and (min-width: 50.0625em){.medium-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.medium-order-10{order:10}.medium-offset-10{margin-left:83.3333333333%}.medium-up-10{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-10>li,.medium-up-10>div,.medium-up-10>section{padding:0 1rem 1rem;flex:0 0 10%}}@media only screen and (min-width: 50.0625em){.medium-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.medium-order-11{order:11}.medium-offset-11{margin-left:91.6666666667%}.medium-up-11{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-11>li,.medium-up-11>div,.medium-up-11>section{padding:0 1rem 1rem;flex:0 0 9.0909090909%}}@media only screen and (min-width: 50.0625em){.medium-12{flex:0 0 100%;max-width:100%}.medium-order-12{order:12}.medium-offset-12{margin-left:100%}.medium-up-12{flex-flow:row wrap;overflow:visible;list-style-type:none}.medium-up-12>li,.medium-up-12>div,.medium-up-12>section{padding:0 1rem 1rem;flex:0 0 8.3333333333%}}@media only screen and (min-width: 75em){.large-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.large-order-1{order:1}.large-offset-1{margin-left:8.3333333333%}.large-up-1{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-1>li,.large-up-1>div,.large-up-1>section{padding:0 1rem 1rem;flex:0 0 100%}}@media only screen and (min-width: 75em){.large-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.large-order-2{order:2}.large-offset-2{margin-left:16.6666666667%}.large-up-2{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-2>li,.large-up-2>div,.large-up-2>section{padding:0 1rem 1rem;flex:0 0 50%}}@media only screen and (min-width: 75em){.large-3{flex:0 0 25%;max-width:25%}.large-order-3{order:3}.large-offset-3{margin-left:25%}.large-up-3{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-3>li,.large-up-3>div,.large-up-3>section{padding:0 1rem 1rem;flex:0 0 33.3333333333%}}@media only screen and (min-width: 75em){.large-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.large-order-4{order:4}.large-offset-4{margin-left:33.3333333333%}.large-up-4{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-4>li,.large-up-4>div,.large-up-4>section{padding:0 1rem 1rem;flex:0 0 25%}}@media only screen and (min-width: 75em){.large-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.large-order-5{order:5}.large-offset-5{margin-left:41.6666666667%}.large-up-5{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-5>li,.large-up-5>div,.large-up-5>section{padding:0 1rem 1rem;flex:0 0 20%}}@media only screen and (min-width: 75em){.large-6{flex:0 0 50%;max-width:50%}.large-order-6{order:6}.large-offset-6{margin-left:50%}.large-up-6{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-6>li,.large-up-6>div,.large-up-6>section{padding:0 1rem 1rem;flex:0 0 16.6666666667%}}@media only screen and (min-width: 75em){.large-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.large-order-7{order:7}.large-offset-7{margin-left:58.3333333333%}.large-up-7{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-7>li,.large-up-7>div,.large-up-7>section{padding:0 1rem 1rem;flex:0 0 14.2857142857%}}@media only screen and (min-width: 75em){.large-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.large-order-8{order:8}.large-offset-8{margin-left:66.6666666667%}.large-up-8{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-8>li,.large-up-8>div,.large-up-8>section{padding:0 1rem 1rem;flex:0 0 12.5%}}@media only screen and (min-width: 75em){.large-9{flex:0 0 75%;max-width:75%}.large-order-9{order:9}.large-offset-9{margin-left:75%}.large-up-9{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-9>li,.large-up-9>div,.large-up-9>section{padding:0 1rem 1rem;flex:0 0 11.1111111111%}}@media only screen and (min-width: 75em){.large-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.large-order-10{order:10}.large-offset-10{margin-left:83.3333333333%}.large-up-10{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-10>li,.large-up-10>div,.large-up-10>section{padding:0 1rem 1rem;flex:0 0 10%}}@media only screen and (min-width: 75em){.large-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.large-order-11{order:11}.large-offset-11{margin-left:91.6666666667%}.large-up-11{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-11>li,.large-up-11>div,.large-up-11>section{padding:0 1rem 1rem;flex:0 0 9.0909090909%}}@media only screen and (min-width: 75em){.large-12{flex:0 0 100%;max-width:100%}.large-order-12{order:12}.large-offset-12{margin-left:100%}.large-up-12{flex-flow:row wrap;overflow:visible;list-style-type:none}.large-up-12>li,.large-up-12>div,.large-up-12>section{padding:0 1rem 1rem;flex:0 0 8.3333333333%}}@media only screen and (min-width: 90em){.xlarge-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.xlarge-order-1{order:1}.xlarge-offset-1{margin-left:8.3333333333%}.xlarge-up-1{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-1>li,.xlarge-up-1>div,.xlarge-up-1>section{padding:0 1rem 1rem;flex:0 0 100%}}@media only screen and (min-width: 90em){.xlarge-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.xlarge-order-2{order:2}.xlarge-offset-2{margin-left:16.6666666667%}.xlarge-up-2{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-2>li,.xlarge-up-2>div,.xlarge-up-2>section{padding:0 1rem 1rem;flex:0 0 50%}}@media only screen and (min-width: 90em){.xlarge-3{flex:0 0 25%;max-width:25%}.xlarge-order-3{order:3}.xlarge-offset-3{margin-left:25%}.xlarge-up-3{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-3>li,.xlarge-up-3>div,.xlarge-up-3>section{padding:0 1rem 1rem;flex:0 0 33.3333333333%}}@media only screen and (min-width: 90em){.xlarge-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.xlarge-order-4{order:4}.xlarge-offset-4{margin-left:33.3333333333%}.xlarge-up-4{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-4>li,.xlarge-up-4>div,.xlarge-up-4>section{padding:0 1rem 1rem;flex:0 0 25%}}@media only screen and (min-width: 90em){.xlarge-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.xlarge-order-5{order:5}.xlarge-offset-5{margin-left:41.6666666667%}.xlarge-up-5{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-5>li,.xlarge-up-5>div,.xlarge-up-5>section{padding:0 1rem 1rem;flex:0 0 20%}}@media only screen and (min-width: 90em){.xlarge-6{flex:0 0 50%;max-width:50%}.xlarge-order-6{order:6}.xlarge-offset-6{margin-left:50%}.xlarge-up-6{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-6>li,.xlarge-up-6>div,.xlarge-up-6>section{padding:0 1rem 1rem;flex:0 0 16.6666666667%}}@media only screen and (min-width: 90em){.xlarge-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.xlarge-order-7{order:7}.xlarge-offset-7{margin-left:58.3333333333%}.xlarge-up-7{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-7>li,.xlarge-up-7>div,.xlarge-up-7>section{padding:0 1rem 1rem;flex:0 0 14.2857142857%}}@media only screen and (min-width: 90em){.xlarge-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.xlarge-order-8{order:8}.xlarge-offset-8{margin-left:66.6666666667%}.xlarge-up-8{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-8>li,.xlarge-up-8>div,.xlarge-up-8>section{padding:0 1rem 1rem;flex:0 0 12.5%}}@media only screen and (min-width: 90em){.xlarge-9{flex:0 0 75%;max-width:75%}.xlarge-order-9{order:9}.xlarge-offset-9{margin-left:75%}.xlarge-up-9{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-9>li,.xlarge-up-9>div,.xlarge-up-9>section{padding:0 1rem 1rem;flex:0 0 11.1111111111%}}@media only screen and (min-width: 90em){.xlarge-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.xlarge-order-10{order:10}.xlarge-offset-10{margin-left:83.3333333333%}.xlarge-up-10{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-10>li,.xlarge-up-10>div,.xlarge-up-10>section{padding:0 1rem 1rem;flex:0 0 10%}}@media only screen and (min-width: 90em){.xlarge-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.xlarge-order-11{order:11}.xlarge-offset-11{margin-left:91.6666666667%}.xlarge-up-11{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-11>li,.xlarge-up-11>div,.xlarge-up-11>section{padding:0 1rem 1rem;flex:0 0 9.0909090909%}}@media only screen and (min-width: 90em){.xlarge-12{flex:0 0 100%;max-width:100%}.xlarge-order-12{order:12}.xlarge-offset-12{margin-left:100%}.xlarge-up-12{flex-flow:row wrap;overflow:visible;list-style-type:none}.xlarge-up-12>li,.xlarge-up-12>div,.xlarge-up-12>section{padding:0 1rem 1rem;flex:0 0 8.3333333333%}}@media only screen and (min-width: 120em){.xxlarge-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.xxlarge-order-1{order:1}.xxlarge-offset-1{margin-left:8.3333333333%}.xxlarge-up-1{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-1>li,.xxlarge-up-1>div,.xxlarge-up-1>section{padding:0 1rem 1rem;flex:0 0 100%}}@media only screen and (min-width: 120em){.xxlarge-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.xxlarge-order-2{order:2}.xxlarge-offset-2{margin-left:16.6666666667%}.xxlarge-up-2{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-2>li,.xxlarge-up-2>div,.xxlarge-up-2>section{padding:0 1rem 1rem;flex:0 0 50%}}@media only screen and (min-width: 120em){.xxlarge-3{flex:0 0 25%;max-width:25%}.xxlarge-order-3{order:3}.xxlarge-offset-3{margin-left:25%}.xxlarge-up-3{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-3>li,.xxlarge-up-3>div,.xxlarge-up-3>section{padding:0 1rem 1rem;flex:0 0 33.3333333333%}}@media only screen and (min-width: 120em){.xxlarge-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.xxlarge-order-4{order:4}.xxlarge-offset-4{margin-left:33.3333333333%}.xxlarge-up-4{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-4>li,.xxlarge-up-4>div,.xxlarge-up-4>section{padding:0 1rem 1rem;flex:0 0 25%}}@media only screen and (min-width: 120em){.xxlarge-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.xxlarge-order-5{order:5}.xxlarge-offset-5{margin-left:41.6666666667%}.xxlarge-up-5{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-5>li,.xxlarge-up-5>div,.xxlarge-up-5>section{padding:0 1rem 1rem;flex:0 0 20%}}@media only screen and (min-width: 120em){.xxlarge-6{flex:0 0 50%;max-width:50%}.xxlarge-order-6{order:6}.xxlarge-offset-6{margin-left:50%}.xxlarge-up-6{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-6>li,.xxlarge-up-6>div,.xxlarge-up-6>section{padding:0 1rem 1rem;flex:0 0 16.6666666667%}}@media only screen and (min-width: 120em){.xxlarge-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.xxlarge-order-7{order:7}.xxlarge-offset-7{margin-left:58.3333333333%}.xxlarge-up-7{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-7>li,.xxlarge-up-7>div,.xxlarge-up-7>section{padding:0 1rem 1rem;flex:0 0 14.2857142857%}}@media only screen and (min-width: 120em){.xxlarge-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.xxlarge-order-8{order:8}.xxlarge-offset-8{margin-left:66.6666666667%}.xxlarge-up-8{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-8>li,.xxlarge-up-8>div,.xxlarge-up-8>section{padding:0 1rem 1rem;flex:0 0 12.5%}}@media only screen and (min-width: 120em){.xxlarge-9{flex:0 0 75%;max-width:75%}.xxlarge-order-9{order:9}.xxlarge-offset-9{margin-left:75%}.xxlarge-up-9{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-9>li,.xxlarge-up-9>div,.xxlarge-up-9>section{padding:0 1rem 1rem;flex:0 0 11.1111111111%}}@media only screen and (min-width: 120em){.xxlarge-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.xxlarge-order-10{order:10}.xxlarge-offset-10{margin-left:83.3333333333%}.xxlarge-up-10{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-10>li,.xxlarge-up-10>div,.xxlarge-up-10>section{padding:0 1rem 1rem;flex:0 0 10%}}@media only screen and (min-width: 120em){.xxlarge-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.xxlarge-order-11{order:11}.xxlarge-offset-11{margin-left:91.6666666667%}.xxlarge-up-11{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-11>li,.xxlarge-up-11>div,.xxlarge-up-11>section{padding:0 1rem 1rem;flex:0 0 9.0909090909%}}@media only screen and (min-width: 120em){.xxlarge-12{flex:0 0 100%;max-width:100%}.xxlarge-order-12{order:12}.xxlarge-offset-12{margin-left:100%}.xxlarge-up-12{flex-flow:row wrap;overflow:visible;list-style-type:none}.xxlarge-up-12>li,.xxlarge-up-12>div,.xxlarge-up-12>section{padding:0 1rem 1rem;flex:0 0 8.3333333333%}}.grid-content .grid-block{flex-wrap:wrap;overflow:visible}.grid-content .grid-block .grid-content{overflow:visible}.grid-content .modal .grid-block{flex-wrap:nowrap}.title-bar{display:flex;flex:0 0 auto;align-items:center;justify-content:flex-start;overflow:visible}.title-bar .title{font-weight:bold}.title-bar .left,.title-bar .center,.title-bar .right{display:block;white-space:nowrap;overflow:visible}.title-bar .left:first-child:last-child,.title-bar .center:first-child:last-child,.title-bar .right:first-child:last-child{flex:1;margin:0}.title-bar .left{order:1;flex:0 0 25%}.title-bar .center{order:2;flex:0 0 50%;text-align:center}.title-bar .right{order:3;flex:0 0 25%;text-align:right}.title-bar .left:first-child{flex:1 1 auto}.title-bar .left:first-child+.right:last-child{flex:1 1 auto}.title-bar .center:first-child:not(:last-child){margin-left:25%}.title-bar .center+.left{margin-right:-25%}.title-bar{background:#eee;color:#000;padding:1.1rem;border-bottom:1px solid #ccc}.title-bar.primary{background:#4688f1;color:#000;padding:1.1rem;border-bottom:1px solid #ccc}.title-bar.primary a,.title-bar.primary a:hover{color:#000}.title-bar.primary .iconic *{fill:#000;stroke:#000}.title-bar.primary .iconic *.iconic-property-accent{fill:#000;stroke:#000}.title-bar.dark{background:#769da3;color:#fff;padding:1.1rem;border-bottom:1px solid #ccc}.title-bar.dark a,.title-bar.dark a:hover{color:#fff}.title-bar.dark .iconic *{fill:#fff;stroke:#fff}.title-bar.dark .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.title-bar-bottom{border-bottom:0;border-top:1px solid #ccc}.label{line-height:1;white-space:nowrap;display:inline-block;cursor:default}.label{font-size:.8rem;padding:.3666666667rem .55rem;background:#4688f1;border-radius:0;color:#000}.label.primary{background:#4688f1;border-radius:0;color:#000}.label.success{background:#12c17d;border-radius:0;color:#fff}.label.warning{background:#f57f34;border-radius:0;color:#fff}.label.alert{background:#f87b78;border-radius:0;color:#000}.label.dark{background:#769da3;border-radius:0;color:#fff}.badge{align-items:center;justify-content:center;display:inline-flex;border-radius:1000px}.badge{font-size:.8em;width:1.5rem;height:1.5rem;background:#4688f1;color:#fff}.badge.secondary{background:#f57f34;color:#fff}.badge.primary{background:#4688f1;color:#000}.badge.success{background:#12c17d;color:#fff}.badge.warning{background:#f57f34;color:#fff}.badge.alert{background:#f87b78;color:#000}.badge.dark{background:#769da3;color:#fff}.inline-list{list-style-type:none;text-align:left}.inline-list li,.inline-list dt,.inline-list dd{display:inline-block;margin-left:-2px;margin-right:-2px}.inline-list li{margin-right:1rem;margin-left:0}.menu-bar{display:flex;align-items:stretch;margin:0;list-style-type:none}.menu-bar>li{flex:1 0 auto;align-items:center}.menu-bar>li>a{display:flex;flex-flow:column nowrap;align-items:center;padding:1.1rem;font-size:1rem;line-height:1}.menu-bar{background:rgba(0,0,0,0)}.menu-bar>li>a{color:#fff}.menu-bar>li>a:hover{background:rgba(18,18,18,0);color:#4688f1}.menu-bar .is-active>a{background:rgba(18,18,18,0);color:#4688f1}.menu-bar .iconic *{fill:#fff;stroke:#fff}.menu-bar .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.menu-bar,.menu-bar.horizontal{overflow-x:hidden;flex-flow:row nowrap}.menu-bar>li>a,.menu-bar.horizontal>li>a{flex-flow:column nowrap}.menu-bar.vertical{flex-flow:column nowrap}.menu-bar.vertical>li>a{flex-flow:row nowrap}.menu-bar.condense>li{flex:0 0 auto}.menu-bar.align-right{justify-content:flex-end}.menu-bar.align-center{justify-content:center}.menu-bar.align-justify{justify-content:space-between}.menu-bar.align-spaced{justify-content:space-around}.menu-bar.small-condense li{flex:0 0 auto}.menu-bar.small-expand li{flex:1 0 auto}.menu-bar.small-align-left{justify-content:flex-start}.menu-bar.small-align-right{justify-content:flex-end}.menu-bar.small-align-center{justify-content:center}.menu-bar.small-align-justify{justify-content:space-between}.menu-bar.small-align-spaced{justify-content:space-around}@media only screen and (min-width: 50.0625em){.menu-bar.medium-condense li{flex:0 0 auto}.menu-bar.medium-expand li{flex:1 0 auto}.menu-bar.medium-align-left{justify-content:flex-start}.menu-bar.medium-align-right{justify-content:flex-end}.menu-bar.medium-align-center{justify-content:center}.menu-bar.medium-align-justify{justify-content:space-between}.menu-bar.medium-align-spaced{justify-content:space-around}}@media only screen and (min-width: 75em){.menu-bar.large-condense li{flex:0 0 auto}.menu-bar.large-expand li{flex:1 0 auto}.menu-bar.large-align-left{justify-content:flex-start}.menu-bar.large-align-right{justify-content:flex-end}.menu-bar.large-align-center{justify-content:center}.menu-bar.large-align-justify{justify-content:space-between}.menu-bar.large-align-spaced{justify-content:space-around}}@media only screen and (min-width: 90em){.menu-bar.xlarge-condense li{flex:0 0 auto}.menu-bar.xlarge-expand li{flex:1 0 auto}.menu-bar.xlarge-align-left{justify-content:flex-start}.menu-bar.xlarge-align-right{justify-content:flex-end}.menu-bar.xlarge-align-center{justify-content:center}.menu-bar.xlarge-align-justify{justify-content:space-between}.menu-bar.xlarge-align-spaced{justify-content:space-around}}@media only screen and (min-width: 120em){.menu-bar.xxlarge-condense li{flex:0 0 auto}.menu-bar.xxlarge-expand li{flex:1 0 auto}.menu-bar.xxlarge-align-left{justify-content:flex-start}.menu-bar.xxlarge-align-right{justify-content:flex-end}.menu-bar.xxlarge-align-center{justify-content:center}.menu-bar.xxlarge-align-justify{justify-content:space-between}.menu-bar.xxlarge-align-spaced{justify-content:space-around}}.menu-bar.small-horizontal{overflow-x:hidden;flex-flow:row nowrap}.menu-bar.small-horizontal>li>a{flex-flow:column nowrap}.menu-bar.small-vertical{flex-flow:column nowrap}.menu-bar.small-vertical>li>a{flex-flow:row nowrap}@media only screen and (min-width: 50.0625em){.menu-bar.medium-horizontal{overflow-x:hidden;flex-flow:row nowrap}.menu-bar.medium-horizontal>li>a{flex-flow:column nowrap}.menu-bar.medium-vertical{flex-flow:column nowrap}.menu-bar.medium-vertical>li>a{flex-flow:row nowrap}}@media only screen and (min-width: 75em){.menu-bar.large-horizontal{overflow-x:hidden;flex-flow:row nowrap}.menu-bar.large-horizontal>li>a{flex-flow:column nowrap}.menu-bar.large-vertical{flex-flow:column nowrap}.menu-bar.large-vertical>li>a{flex-flow:row nowrap}}@media only screen and (min-width: 90em){.menu-bar.xlarge-horizontal{overflow-x:hidden;flex-flow:row nowrap}.menu-bar.xlarge-horizontal>li>a{flex-flow:column nowrap}.menu-bar.xlarge-vertical{flex-flow:column nowrap}.menu-bar.xlarge-vertical>li>a{flex-flow:row nowrap}}@media only screen and (min-width: 120em){.menu-bar.xxlarge-horizontal{overflow-x:hidden;flex-flow:row nowrap}.menu-bar.xxlarge-horizontal>li>a{flex-flow:column nowrap}.menu-bar.xxlarge-vertical{flex-flow:column nowrap}.menu-bar.xxlarge-vertical>li>a{flex-flow:row nowrap}}.menu-bar>li>img,.menu-bar>li>.iconic,.menu-bar.icon-top>li>img,.menu-bar.icon-top>li>.iconic{margin:0;width:25px;height:25px}.menu-bar>li>a,.menu-bar.icon-top>li>a{flex-flow:column nowrap}.menu-bar>li>a>img,.menu-bar>li>a>.iconic,.menu-bar.icon-top>li>a>img,.menu-bar.icon-top>li>a>.iconic{margin:0 0 1.1rem 0}.menu-bar.icon-right>li>img,.menu-bar.icon-right>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.icon-right>li>a{flex-flow:row-reverse nowrap}.menu-bar.icon-right>li>a>img,.menu-bar.icon-right>li>a>.iconic{margin:0 0 0 1.1rem}.menu-bar.icon-bottom>li>img,.menu-bar.icon-bottom>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.icon-bottom>li>a{flex-flow:column-reverse nowrap}.menu-bar.icon-bottom>li>a>img,.menu-bar.icon-bottom>li>a>.iconic{margin:1.1rem 0 0 0}.menu-bar.icon-left>li>img,.menu-bar.icon-left>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.icon-left>li>a{flex-flow:row nowrap;align-items:center}.menu-bar.icon-left>li>a>img,.menu-bar.icon-left>li>a>.iconic{margin:0 1.1rem 0 0}.menu-bar.small-icon-top>li>img,.menu-bar.small-icon-top>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.small-icon-top>li>a{flex-flow:column nowrap}.menu-bar.small-icon-top>li>a>img,.menu-bar.small-icon-top>li>a>.iconic{margin:0 0 1.1rem 0}.menu-bar.small-icon-right>li>img,.menu-bar.small-icon-right>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.small-icon-right>li>a{flex-flow:row-reverse nowrap}.menu-bar.small-icon-right>li>a>img,.menu-bar.small-icon-right>li>a>.iconic{margin:0 0 0 1.1rem}.menu-bar.small-icon-bottom>li>img,.menu-bar.small-icon-bottom>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.small-icon-bottom>li>a{flex-flow:column-reverse nowrap}.menu-bar.small-icon-bottom>li>a>img,.menu-bar.small-icon-bottom>li>a>.iconic{margin:1.1rem 0 0 0}.menu-bar.small-icon-left>li>img,.menu-bar.small-icon-left>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.small-icon-left>li>a{flex-flow:row nowrap;align-items:center}.menu-bar.small-icon-left>li>a>img,.menu-bar.small-icon-left>li>a>.iconic{margin:0 1.1rem 0 0}@media only screen and (min-width: 50.0625em){.menu-bar.medium-icon-top>li>img,.menu-bar.medium-icon-top>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.medium-icon-top>li>a{flex-flow:column nowrap}.menu-bar.medium-icon-top>li>a>img,.menu-bar.medium-icon-top>li>a>.iconic{margin:0 0 1.1rem 0}}@media only screen and (min-width: 50.0625em){.menu-bar.medium-icon-right>li>img,.menu-bar.medium-icon-right>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.medium-icon-right>li>a{flex-flow:row-reverse nowrap}.menu-bar.medium-icon-right>li>a>img,.menu-bar.medium-icon-right>li>a>.iconic{margin:0 0 0 1.1rem}}@media only screen and (min-width: 50.0625em){.menu-bar.medium-icon-bottom>li>img,.menu-bar.medium-icon-bottom>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.medium-icon-bottom>li>a{flex-flow:column-reverse nowrap}.menu-bar.medium-icon-bottom>li>a>img,.menu-bar.medium-icon-bottom>li>a>.iconic{margin:1.1rem 0 0 0}}@media only screen and (min-width: 50.0625em){.menu-bar.medium-icon-left>li>img,.menu-bar.medium-icon-left>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.medium-icon-left>li>a{flex-flow:row nowrap;align-items:center}.menu-bar.medium-icon-left>li>a>img,.menu-bar.medium-icon-left>li>a>.iconic{margin:0 1.1rem 0 0}}@media only screen and (min-width: 75em){.menu-bar.large-icon-top>li>img,.menu-bar.large-icon-top>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.large-icon-top>li>a{flex-flow:column nowrap}.menu-bar.large-icon-top>li>a>img,.menu-bar.large-icon-top>li>a>.iconic{margin:0 0 1.1rem 0}}@media only screen and (min-width: 75em){.menu-bar.large-icon-right>li>img,.menu-bar.large-icon-right>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.large-icon-right>li>a{flex-flow:row-reverse nowrap}.menu-bar.large-icon-right>li>a>img,.menu-bar.large-icon-right>li>a>.iconic{margin:0 0 0 1.1rem}}@media only screen and (min-width: 75em){.menu-bar.large-icon-bottom>li>img,.menu-bar.large-icon-bottom>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.large-icon-bottom>li>a{flex-flow:column-reverse nowrap}.menu-bar.large-icon-bottom>li>a>img,.menu-bar.large-icon-bottom>li>a>.iconic{margin:1.1rem 0 0 0}}@media only screen and (min-width: 75em){.menu-bar.large-icon-left>li>img,.menu-bar.large-icon-left>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.large-icon-left>li>a{flex-flow:row nowrap;align-items:center}.menu-bar.large-icon-left>li>a>img,.menu-bar.large-icon-left>li>a>.iconic{margin:0 1.1rem 0 0}}@media only screen and (min-width: 90em){.menu-bar.xlarge-icon-top>li>img,.menu-bar.xlarge-icon-top>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xlarge-icon-top>li>a{flex-flow:column nowrap}.menu-bar.xlarge-icon-top>li>a>img,.menu-bar.xlarge-icon-top>li>a>.iconic{margin:0 0 1.1rem 0}}@media only screen and (min-width: 90em){.menu-bar.xlarge-icon-right>li>img,.menu-bar.xlarge-icon-right>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xlarge-icon-right>li>a{flex-flow:row-reverse nowrap}.menu-bar.xlarge-icon-right>li>a>img,.menu-bar.xlarge-icon-right>li>a>.iconic{margin:0 0 0 1.1rem}}@media only screen and (min-width: 90em){.menu-bar.xlarge-icon-bottom>li>img,.menu-bar.xlarge-icon-bottom>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xlarge-icon-bottom>li>a{flex-flow:column-reverse nowrap}.menu-bar.xlarge-icon-bottom>li>a>img,.menu-bar.xlarge-icon-bottom>li>a>.iconic{margin:1.1rem 0 0 0}}@media only screen and (min-width: 90em){.menu-bar.xlarge-icon-left>li>img,.menu-bar.xlarge-icon-left>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xlarge-icon-left>li>a{flex-flow:row nowrap;align-items:center}.menu-bar.xlarge-icon-left>li>a>img,.menu-bar.xlarge-icon-left>li>a>.iconic{margin:0 1.1rem 0 0}}@media only screen and (min-width: 120em){.menu-bar.xxlarge-icon-top>li>img,.menu-bar.xxlarge-icon-top>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xxlarge-icon-top>li>a{flex-flow:column nowrap}.menu-bar.xxlarge-icon-top>li>a>img,.menu-bar.xxlarge-icon-top>li>a>.iconic{margin:0 0 1.1rem 0}}@media only screen and (min-width: 120em){.menu-bar.xxlarge-icon-right>li>img,.menu-bar.xxlarge-icon-right>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xxlarge-icon-right>li>a{flex-flow:row-reverse nowrap}.menu-bar.xxlarge-icon-right>li>a>img,.menu-bar.xxlarge-icon-right>li>a>.iconic{margin:0 0 0 1.1rem}}@media only screen and (min-width: 120em){.menu-bar.xxlarge-icon-bottom>li>img,.menu-bar.xxlarge-icon-bottom>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xxlarge-icon-bottom>li>a{flex-flow:column-reverse nowrap}.menu-bar.xxlarge-icon-bottom>li>a>img,.menu-bar.xxlarge-icon-bottom>li>a>.iconic{margin:1.1rem 0 0 0}}@media only screen and (min-width: 120em){.menu-bar.xxlarge-icon-left>li>img,.menu-bar.xxlarge-icon-left>li>.iconic{margin:0;width:25px;height:25px}.menu-bar.xxlarge-icon-left>li>a{flex-flow:row nowrap;align-items:center}.menu-bar.xxlarge-icon-left>li>a>img,.menu-bar.xxlarge-icon-left>li>a>.iconic{margin:0 1.1rem 0 0}}.menu-bar.label-side>li{position:relative}.menu-bar.label-side>li>a{padding-right:3.4rem}.menu-bar.label-side .menu-bar-label{display:block;font-size:.9rem;width:1.2rem;height:1.2rem;line-height:1.2rem;text-align:center;border-radius:1000px;background:red;color:#fff;position:absolute;pointer-events:none;right:1.1rem;top:50%;transform:translateY(-50%)}.menu-bar.label-corner>li{position:relative}.menu-bar.label-corner>li>a{padding-right:3.4rem}.menu-bar.label-corner .menu-bar-label{display:block;font-size:.9rem;width:1.2rem;height:1.2rem;line-height:1.2rem;text-align:center;border-radius:1000px;background:red;color:#fff;position:absolute;pointer-events:none;right:1.1rem;top:1.1rem}.menu-bar.primary{background:#4688f1}.menu-bar.primary>li>a{color:#000}.menu-bar.primary>li>a:hover{background:#327bef;color:#000}.menu-bar.primary .is-active>a{background:#327bef;color:#000}.menu-bar.primary .iconic *{fill:#000;stroke:#000}.menu-bar.primary .iconic *.iconic-property-accent{fill:#000;stroke:#000}.menu-bar.dark{background:#769da3}.menu-bar.dark>li>a{color:#fff}.menu-bar.dark>li>a:hover{background:#80a4a9;color:#fff}.menu-bar.dark .is-active>a{background:#80a4a9;color:#fff}.menu-bar.dark .iconic *{fill:#fff;stroke:#fff}.menu-bar.dark .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.menu-bar>li.title{padding:1.1rem;cursor:default;font-weight:bold}.menu-group{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap}@media only screen and (min-width: 50.0625em){.menu-group{flex-wrap:nowrap}}.menu-group>.menu-group-left,.menu-group>.menu-group-right{flex:1 1 100%}@media only screen and (min-width: 50.0625em){.menu-group>.menu-group-left,.menu-group>.menu-group-right{flex:0 0 auto}}.menu-group .menu-bar{overflow-x:hidden;flex-flow:row nowrap;margin:0}.menu-group .menu-bar>li>a{flex-flow:column nowrap}.menu-group .menu-bar>li{flex:0 0 auto}.menu-group.primary{background-color:#4688f1}.menu-group.primary .menu-bar{background:#4688f1}.menu-group.primary .menu-bar>li>a{color:#000}.menu-group.primary .menu-bar>li>a:hover{background:#327bef;color:#000}.menu-group.primary .menu-bar .is-active>a{background:#327bef;color:#000}.menu-group.primary .menu-bar .iconic *{fill:#000;stroke:#000}.menu-group.primary .menu-bar .iconic *.iconic-property-accent{fill:#000;stroke:#000}.menu-group.dark{background-color:#769da3}.menu-group.dark .menu-bar{background:#769da3}.menu-group.dark .menu-bar>li>a{color:#fff}.menu-group.dark .menu-bar>li>a:hover{background:#80a4a9;color:#fff}.menu-group.dark .menu-bar .is-active>a{background:#80a4a9;color:#fff}.menu-group.dark .menu-bar .iconic *{fill:#fff;stroke:#fff}.menu-group.dark .menu-bar .iconic *.iconic-property-accent{fill:#fff;stroke:#fff}.modal{position:relative;z-index:1001;background:#fff;flex:0 0 auto;width:100%;height:100vh;max-height:100%;overflow:hidden;padding:1.1rem}@media only screen and (min-width: 50.0625em){.modal{height:auto;max-width:600px}}.modal .grid-content,.modal .grid-block{margin:0}.modal .close-button,.modal [fa-close]{z-index:1001}.modal{max-width:600px;border-radius:.125rem;box-shadow:0 0 .25rem rgba(0,0,0,.14),0 .25rem .5rem rgba(0,0,0,.14)}.tiny>.modal{max-width:300px}.small>.modal{max-width:500px}.large>.modal{max-width:800px}.dialog>.modal{height:auto}.collapse>.modal{padding:0}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;display:none;background-color:rgba(0,0,0,.3);align-items:center;justify-content:center}.modal-overlay.is-active{display:flex}@keyframes shake{0%,10%,20%,30%,40%,50%,60%,70%,80%,90%{transform:translateX(7%)}5%,15%,25%,35%,45%,55%,65%,75%,85%,95%{transform:translateX(-7%)}100%{transform:translateX(0)}}@keyframes spin-cw{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes spin-ccw{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}@keyframes wiggle{40%,50%,60%{transform:rotate(7deg)}35%,45%,55%,65%{transform:rotate(-7deg)}0%,30%,70%,100%{transform:rotate(0)}}.slideInDown.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateY(-100%)}.slideInDown.ng-enter.ng-enter-active{transform:translateX(0) translateY(0)}.slideInLeft.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateX(100%)}.slideInLeft.ng-enter.ng-enter-active{transform:translateX(0) translateY(0)}.slideInUp.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateY(100%)}.slideInUp.ng-enter.ng-enter-active{transform:translateX(0) translateY(0)}.slideInRight.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateX(-100%)}.slideInRight.ng-enter.ng-enter-active{transform:translateX(0) translateY(0)}.slideOutBottom.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateX(0) translateY(0)}.slideOutBottom.ng-leave.ng-leave-active{transform:translateY(100%)}.slideOutRight.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateX(0) translateY(0)}.slideOutRight.ng-leave.ng-leave-active{transform:translateX(100%)}.slideOutUp.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateX(0) translateY(0)}.slideOutUp.ng-leave.ng-leave-active{transform:translateY(-100%)}.slideOutLeft.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;backface-visibility:hidden;transform:translateX(0) translateY(0)}.slideOutLeft.ng-leave.ng-leave-active{transform:translateX(-100%)}.fadeIn.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:opacity;opacity:0}.fadeIn.ng-enter.ng-enter-active{opacity:1}.fadeOut.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:opacity;opacity:1}.fadeOut.ng-leave.ng-leave-active{opacity:0}.hingeInFromTop.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:perspective(2000px) rotateX(-90deg);transform-origin:top;opacity:0}.hingeInFromTop.ng-enter.ng-enter-active{transform:rotate(0deg);opacity:1}.hingeInFromRight.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:perspective(2000px) rotateY(-90deg);transform-origin:right;opacity:0}.hingeInFromRight.ng-enter.ng-enter-active{transform:rotate(0deg);opacity:1}.hingeInFromBottom.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:perspective(2000px) rotateX(90deg);transform-origin:bottom;opacity:0}.hingeInFromBottom.ng-enter.ng-enter-active{transform:rotate(0deg);opacity:1}.hingeInFromLeft.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:perspective(2000px) rotateY(90deg);transform-origin:left;opacity:0}.hingeInFromLeft.ng-enter.ng-enter-active{transform:rotate(0deg);opacity:1}.hingeInFromMiddleX.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:perspective(2000px) rotateX(-90deg);transform-origin:center;opacity:0}.hingeInFromMiddleX.ng-enter.ng-enter-active{transform:rotate(0deg);opacity:1}.hingeInFromMiddleY.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:perspective(2000px) rotateY(-90deg);transform-origin:center;opacity:0}.hingeInFromMiddleY.ng-enter.ng-enter-active{transform:rotate(0deg);opacity:1}.hingeOutFromTop.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:rotate(0deg);transform-origin:top;opacity:1}.hingeOutFromTop.ng-leave.ng-leave-active{transform:perspective(2000px) rotateX(-90deg);opacity:0}.hingeOutFromRight.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:rotate(0deg);transform-origin:right;opacity:1}.hingeOutFromRight.ng-leave.ng-leave-active{transform:perspective(2000px) rotateY(-90deg);opacity:0}.hingeOutFromBottom.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:rotate(0deg);transform-origin:bottom;opacity:1}.hingeOutFromBottom.ng-leave.ng-leave-active{transform:perspective(2000px) rotateX(90deg);opacity:0}.hingeOutFromLeft.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:rotate(0deg);transform-origin:left;opacity:1}.hingeOutFromLeft.ng-leave.ng-leave-active{transform:perspective(2000px) rotateY(90deg);opacity:0}.hingeOutFromMiddleX.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:rotate(0deg);transform-origin:center;opacity:1}.hingeOutFromMiddleX.ng-leave.ng-leave-active{transform:perspective(2000px) rotateX(-90deg);opacity:0}.hingeOutFromMiddleY.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,opacity;transform:rotate(0deg);transform-origin:center;opacity:1}.hingeOutFromMiddleY.ng-leave.ng-leave-active{transform:perspective(2000px) rotateY(-90deg);opacity:0}.zoomIn.ng-enter{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,property;transform:scale(1.5);opacity:0}.zoomIn.ng-enter.ng-enter-active{transform:scale(1);opacity:1}.zoomOut.ng-leave{transition-duration:500ms;transition-timing-function:ease;transition-delay:0;transition-property:transform,property;transform:scale(0.5);opacity:1}.zoomOut.ng-leave.ng-leave-active{transform:scale(1);opacity:0}.spinIn.ng-enter{transition-property:transform,opacity;transform:rotate(-270deg);opacity:0}.spinIn.ng-enter.ng-enter-active{transform:rotate(0);opacity:1}.spinOut.ng-leave{transition-property:transform,opacity;transform:rotate(0);opacity:1}.spinOut.ng-leave.ng-leave-active{transform:rotate(270deg);opacity:0}.spinInCCW.ng-enter{transition-property:transform,opacity;transform:rotate(270deg);opacity:0}.spinInCCW.ng-enter.ng-enter-active{transform:rotate(0);opacity:1}.spinOutCCW.ng-leave{transition-property:transform,opacity;transform:rotate(0);opacity:1}.spinOutCCW.ng-leave.ng-leave-active{transform:rotate(-270deg);opacity:0}.slow{transition-duration:750ms !important}.fast{transition-duration:250ms !important}.linear{transition-timing-function:linear !important}.ease{transition-timing-function:ease !important}.easeIn{transition-timing-function:ease-in !important}.easeOut{transition-timing-function:ease-out !important}.easeInOut{transition-timing-function:ease-in-out !important}.bounceIn{transition-timing-function:cubic-bezier(0.485, 0.155, 0.24, 1.245) !important}.bounceOut{transition-timing-function:cubic-bezier(0.485, 0.155, 0.515, 0.845) !important}.bounceInOut{transition-timing-function:cubic-bezier(0.76, -0.245, 0.24, 1.245) !important}.delay{transition-delay:300ms !important}.long-delay{transition-delay:700ms !important}.shake{animation-name:shake;animation-duration:500ms;animation-timing-function:ease;backface-visibility:hidden;transform:translate3d(0, 0, 0);animation-delay:0}.spin-cw{animation-name:spin-cw;animation-duration:500ms;animation-timing-function:ease;backface-visibility:hidden;transform:translate3d(0, 0, 0);animation-delay:0}.spin-ccw{animation-name:spin-ccw;animation-duration:500ms;animation-timing-function:ease;backface-visibility:hidden;transform:translate3d(0, 0, 0);animation-delay:0}.wiggle{animation-name:wiggle;animation-duration:500ms;animation-timing-function:ease;backface-visibility:hidden;transform:translate3d(0, 0, 0);animation-delay:0}.shake.infinite,.spin-cw.infinite,.spin-ccw.infinite,.wiggle.infinite{animation-iteration-count:infinite}.shake.linear,.spin-cw.linear,.spin-ccw.linear,.wiggle.linear{animation-timing-function:linear !important}.shake.ease,.spin-cw.ease,.spin-ccw.ease,.wiggle.ease{animation-timing-function:ease !important}.shake.easeIn,.spin-cw.easeIn,.spin-ccw.easeIn,.wiggle.easeIn{animation-timing-function:ease-in !important}.shake.easeOut,.spin-cw.easeOut,.spin-ccw.easeOut,.wiggle.easeOut{animation-timing-function:ease-out !important}.shake.easeInOut,.spin-cw.easeInOut,.spin-ccw.easeInOut,.wiggle.easeInOut{animation-timing-function:ease-in-out !important}.shake.bounceIn,.spin-cw.bounceIn,.spin-ccw.bounceIn,.wiggle.bounceIn{animation-timing-function:cubic-bezier(0.485, 0.155, 0.24, 1.245) !important}.shake.bounceOut,.spin-cw.bounceOut,.spin-ccw.bounceOut,.wiggle.bounceOut{animation-timing-function:cubic-bezier(0.485, 0.155, 0.515, 0.845) !important}.shake.bounceInOut,.spin-cw.bounceInOut,.spin-ccw.bounceInOut,.wiggle.bounceInOut{animation-timing-function:cubic-bezier(0.76, -0.245, 0.24, 1.245) !important}.shake.slow,.spin-cw.slow,.spin-ccw.slow,.wiggle.slow{animation-duration:750ms !important}.shake.fast,.spin-cw.fast,.spin-ccw.fast,.wiggle.fast{animation-duration:250ms !important}.shake.delay,.spin-cw.delay,.spin-ccw.delay,.wiggle.delay{animation-delay:300ms !important}.shake.long-delay,.spin-cw.long-delay,.spin-ccw.long-delay,.wiggle.long-delay{animation-delay:700ms !important}.stagger{transition-delay:150ms;transition-duration:0}.stort-stagger{transition-delay:150ms;transition-duration:0}.long-stagger{transition-delay:150ms;transition-duration:0}.static-notification,.notification{z-index:1000;position:relative;margin-top:.5rem;margin-bottom:.5rem;display:none}.static-notification h1,.notification h1{font-size:1.25em;margin:0}.static-notification p,.notification p{margin:0}.is-active.static-notification,.is-active.notification{display:flex}.static-notification .close-button,.notification .close-button{color:#fff}.notification-container{z-index:3000;position:fixed;display:flex;flex-direction:column}.notification{background:rgba(0,0,0,0);padding:17px;border-radius:4px}.notification,.notification h1,.notification h2,.notification h3,.notification h4,.notification h5,.notification h6{color:#4e4e4e}.notification.success{background:#12c17d;padding:17px;border-radius:4px}.notification.success,.notification.success h1,.notification.success h2,.notification.success h3,.notification.success h4,.notification.success h5,.notification.success h6{color:#4e4e4e}.notification.warning{background:#f57f34;padding:17px;border-radius:4px}.notification.warning,.notification.warning h1,.notification.warning h2,.notification.warning h3,.notification.warning h4,.notification.warning h5,.notification.warning h6{color:#4e4e4e}.notification.alert{background:#f87b78;padding:17px;border-radius:4px}.notification.alert,.notification.alert h1,.notification.alert h2,.notification.alert h3,.notification.alert h4,.notification.alert h5,.notification.alert h6{color:#4e4e4e}.notification.dark{background:#769da3;padding:17px;border-radius:4px}.notification.dark,.notification.dark h1,.notification.dark h2,.notification.dark h3,.notification.dark h4,.notification.dark h5,.notification.dark h6{color:#fff}.static-notification{background:rgba(0,0,0,0);padding:17px;border-radius:4px;position:fixed !important}.static-notification,.static-notification h1,.static-notification h2,.static-notification h3,.static-notification h4,.static-notification h5,.static-notification h6{color:#4e4e4e}.static-notification.top-right{width:25rem;right:1.1rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.static-notification.top-right{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.static-notification.top-left{width:25rem;left:1.1rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.static-notification.top-left{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.static-notification.top-middle{width:25rem;left:50%;margin-left:-12.5rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.static-notification.top-middle{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.static-notification.bottom-right{width:25rem;right:1.1rem;top:auto;bottom:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.static-notification.bottom-right{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.static-notification.bottom-left{width:25rem;left:1.1rem;top:auto;bottom:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.static-notification.bottom-left{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.static-notification.bottom-middle{width:25rem;left:50%;margin-left:-12.5rem;top:auto;bottom:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.static-notification.bottom-middle{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container{width:25rem;right:1.1rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container.top-right{width:25rem;right:1.1rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container.top-right{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container.top-left{width:25rem;left:1.1rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container.top-left{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container.top-middle{width:25rem;left:50%;margin-left:-12.5rem;top:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container.top-middle{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container.bottom-right{width:25rem;right:1.1rem;top:auto;bottom:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container.bottom-right{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container.bottom-left{width:25rem;left:1.1rem;top:auto;bottom:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container.bottom-left{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-container.bottom-middle{width:25rem;left:50%;margin-left:-12.5rem;top:auto;bottom:1.1rem}@media only screen and (min-width: 0em)and (max-width: 50rem){.notification-container.bottom-middle{width:auto;left:1.1rem;right:1.1rem;margin-left:0}}.notification-icon{flex:0 0 60px;margin-right:1.1rem;align-self:flex-start}.notification-icon img{width:100%;height:auto}.notification-content{flex:1}.off-canvas{position:fixed;overflow:scroll;-webkit-overflow-scrolling:touch;transition:transform .25s ease-out;z-index:2}.is-active.off-canvas{transform:translate(0, 0) !important}.off-canvas~.grid-frame{transform:translate(0, 0, 0);transition:transform .25s ease-out;backface-visibility:hidden;background:#fff}.off-canvas{width:250px;height:100%;top:0;left:0;box-shadow:inset -3px 0 10px rgba(0,0,0,.25);transform:translateX(-100%);background:#fff;color:#000}.off-canvas.is-active~.grid-frame{transform:translateX(250px) !important}.off-canvas.top{height:250px;width:100%;top:0;left:0;transform:translateY(-100%);box-shadow:inset 0 -3px 10px rgba(0,0,0,.25)}.off-canvas.top.is-active~.grid-frame{transform:translateY(250px) !important}.off-canvas.right{width:250px;height:100%;left:auto;top:0;right:0;box-shadow:inset 3px 0 10px rgba(0,0,0,.25);transform:translateX(100%)}.off-canvas.right.is-active~.grid-frame{transform:translateX(-250px) !important}.off-canvas.bottom{height:250px;width:100%;top:auto;bottom:0;left:0;transform:translateY(100%);box-shadow:inset 0 3px 10px rgba(0,0,0,.25)}.off-canvas.bottom.is-active~.grid-frame{transform:translateY(-250px) !important}.off-canvas.left{width:250px;height:100%;top:0;left:0;box-shadow:inset -3px 0 10px rgba(0,0,0,.25);transform:translateX(-100%)}.off-canvas.left.is-active~.grid-frame{transform:translateX(250px) !important}.off-canvas.detached{z-index:0;box-shadow:none}.off-canvas.detached,.off-canvas.detached.is-active{transform:none}.off-canvas.detached~.grid-frame{z-index:1;box-shadow:0 0 15px rgba(0,0,0,.5)}.off-canvas.primary{background:#4688f1;color:#000}.off-canvas.dark{background:#769da3;color:#fff}.popup{position:absolute;z-index:1000;opacity:0;overflow:hidden;transition:opacity .25s ease-out;pointer-events:none}.tether-enabled.popup{opacity:1;pointer-events:auto}.popup{width:18.75rem;background:#fff;border-radius:0;box-shadow:0 0 10px rgba(0,0,0,.25);border:0}.popup.dark{background:#769da3;border-radius:0;box-shadow:0 0 10px rgba(0,0,0,.25);border:0}.popup.primary{background:#4688f1;border-radius:0;box-shadow:0 0 10px rgba(0,0,0,.25);border:0}.switch{position:relative;overflow:hidden;display:inline-block}.switch>input{position:absolute;left:-9999px;outline:none}.switch>label{touch-action:manipulation;display:block;width:100%;height:100%;cursor:pointer;margin:0}.switch>label::after{content:"";display:block;position:absolute;top:0;left:0}.switch{width:3.125rem;height:2rem;border-radius:9999px}.switch>label::after{width:2rem;height:2rem}.switch input:checked+label::after{left:1.125rem}.switch>label{background:#ccc}.switch>label::after{background:#fff;border-radius:9999px;transition:left .15s ease-out;border:4px solid #ccc}.switch input:checked+label{background:#4688f1;margin:0}.switch input:checked+label::after{border-color:#4688f1}.switch.small{width:2.5rem;height:1.625rem}.switch.small>label::after{width:1.625rem;height:1.625rem}.switch.small input:checked+label::after{left:.875rem}.switch.large{width:3.75rem;height:2.375rem}.switch.large>label::after{width:2.375rem;height:2.375rem}.switch.large input:checked+label::after{left:1.375rem}.tabs{display:flex;background:rgba(0,0,0,0);flex-flow:row wrap}.tabs.vertical{display:flex;background:rgba(0,0,0,0);flex-flow:column nowrap}.tabs .tab-item{background:rgba(0,0,0,0);padding:1.1rem;line-height:1;margin:0;flex:0 1 auto;cursor:pointer;color:#4e4e4e}.tabs .tab-item.is-active{background:#fff;color:#769da3}.tabs .tab-item.is-active:hover{background:rgba(13,13,13,0)}.tabs .tab-item:hover{background:rgba(13,13,13,0)}.tab-contents{padding:1.1rem}.tab-contents .tab-content{display:none}.tab-contents .tab-content.is-active{display:block}.accordion-title{padding:1.1rem;background:rgba(0,0,0,0);color:#4688f1;line-height:1;cursor:pointer}.accordion-title:hover{background:#fcfcfc}.is-active>.accordion-title{background:rgba(0,0,0,0);color:#769da3}.accordion-content{padding:1.1rem;display:none}.is-active>.accordion-content{display:block}.v-align{display:flex;align-items:center;justify-content:space-between}.v-align .align-top{align-self:flex-start}.v-align .align-center{align-self:center}.v-align .align-bottom{align-self:flex-end}.v-align .small-align-top{align-self:flex-start}.v-align .small-align-center{align-self:center}.v-align .small-align-bottom{align-self:flex-end}@media only screen and (min-width: 50.0625em){.v-align .medium-align-top{align-self:flex-start}}@media only screen and (min-width: 50.0625em){.v-align .medium-align-center{align-self:center}}@media only screen and (min-width: 50.0625em){.v-align .medium-align-bottom{align-self:flex-end}}@media only screen and (min-width: 75em){.v-align .large-align-top{align-self:flex-start}}@media only screen and (min-width: 75em){.v-align .large-align-center{align-self:center}}@media only screen and (min-width: 75em){.v-align .large-align-bottom{align-self:flex-end}}@media only screen and (min-width: 90em){.v-align .xlarge-align-top{align-self:flex-start}}@media only screen and (min-width: 90em){.v-align .xlarge-align-center{align-self:center}}@media only screen and (min-width: 90em){.v-align .xlarge-align-bottom{align-self:flex-end}}@media only screen and (min-width: 120em){.v-align .xxlarge-align-top{align-self:flex-start}}@media only screen and (min-width: 120em){.v-align .xxlarge-align-center{align-self:center}}@media only screen and (min-width: 120em){.v-align .xxlarge-align-bottom{align-self:flex-end}}.hide{display:none !important}.invisible{visibility:hidden}.hide-for-small{display:block !important;display:none !important}.hide-for-small[class*=grid-block]{display:flex !important;display:none !important}.show-for-small{display:none !important;display:block !important}.show-for-small[class*=grid-block]{display:none !important;display:flex !important}.hide-for-small-only{display:block !important}@media only screen and (min-width: 0em)and (max-width: 50rem){.hide-for-small-only{display:none !important}}.hide-for-small-only[class*=grid-block]{display:flex !important}@media only screen and (min-width: 0em)and (max-width: 50rem){.hide-for-small-only[class*=grid-block]{display:none !important}}.show-for-small-only{display:none !important}@media only screen and (min-width: 0em)and (max-width: 50rem){.show-for-small-only{display:block !important}}.show-for-small-only[class*=grid-block]{display:none !important}@media only screen and (min-width: 0em)and (max-width: 50rem){.show-for-small-only[class*=grid-block]{display:flex !important}}.hide-for-medium{display:block !important}@media only screen and (min-width: 50.0625em){.hide-for-medium{display:none !important}}.hide-for-medium[class*=grid-block]{display:flex !important}@media only screen and (min-width: 50.0625em){.hide-for-medium[class*=grid-block]{display:none !important}}.show-for-medium{display:none !important}@media only screen and (min-width: 50.0625em){.show-for-medium{display:block !important}}.show-for-medium[class*=grid-block]{display:none !important}@media only screen and (min-width: 50.0625em){.show-for-medium[class*=grid-block]{display:flex !important}}.hide-for-medium-only{display:block !important}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.hide-for-medium-only{display:none !important}}.hide-for-medium-only[class*=grid-block]{display:flex !important}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.hide-for-medium-only[class*=grid-block]{display:none !important}}.show-for-medium-only{display:none !important}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.show-for-medium-only{display:block !important}}.show-for-medium-only[class*=grid-block]{display:none !important}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.show-for-medium-only[class*=grid-block]{display:flex !important}}.hide-for-large{display:block !important}@media only screen and (min-width: 75em){.hide-for-large{display:none !important}}.hide-for-large[class*=grid-block]{display:flex !important}@media only screen and (min-width: 75em){.hide-for-large[class*=grid-block]{display:none !important}}.show-for-large{display:none !important}@media only screen and (min-width: 75em){.show-for-large{display:block !important}}.show-for-large[class*=grid-block]{display:none !important}@media only screen and (min-width: 75em){.show-for-large[class*=grid-block]{display:flex !important}}.hide-for-large-only{display:block !important}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.hide-for-large-only{display:none !important}}.hide-for-large-only[class*=grid-block]{display:flex !important}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.hide-for-large-only[class*=grid-block]{display:none !important}}.show-for-large-only{display:none !important}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.show-for-large-only{display:block !important}}.show-for-large-only[class*=grid-block]{display:none !important}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.show-for-large-only[class*=grid-block]{display:flex !important}}.hide-for-xlarge{display:block !important}@media only screen and (min-width: 90em){.hide-for-xlarge{display:none !important}}.hide-for-xlarge[class*=grid-block]{display:flex !important}@media only screen and (min-width: 90em){.hide-for-xlarge[class*=grid-block]{display:none !important}}.show-for-xlarge{display:none !important}@media only screen and (min-width: 90em){.show-for-xlarge{display:block !important}}.show-for-xlarge[class*=grid-block]{display:none !important}@media only screen and (min-width: 90em){.show-for-xlarge[class*=grid-block]{display:flex !important}}.hide-for-xlarge-only{display:block !important}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.hide-for-xlarge-only{display:none !important}}.hide-for-xlarge-only[class*=grid-block]{display:flex !important}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.hide-for-xlarge-only[class*=grid-block]{display:none !important}}.show-for-xlarge-only{display:none !important}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.show-for-xlarge-only{display:block !important}}.show-for-xlarge-only[class*=grid-block]{display:none !important}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.show-for-xlarge-only[class*=grid-block]{display:flex !important}}.hide-for-xxlarge{display:block !important}@media only screen and (min-width: 120em){.hide-for-xxlarge{display:none !important}}.hide-for-xxlarge[class*=grid-block]{display:flex !important}@media only screen and (min-width: 120em){.hide-for-xxlarge[class*=grid-block]{display:none !important}}.show-for-xxlarge{display:none !important}@media only screen and (min-width: 120em){.show-for-xxlarge{display:block !important}}.show-for-xxlarge[class*=grid-block]{display:none !important}@media only screen and (min-width: 120em){.show-for-xxlarge[class*=grid-block]{display:flex !important}}.hide-for-xxlarge-only{display:block !important}@media only screen and (min-width: 120em){.hide-for-xxlarge-only{display:none !important}}.hide-for-xxlarge-only[class*=grid-block]{display:flex !important}@media only screen and (min-width: 120em){.hide-for-xxlarge-only[class*=grid-block]{display:none !important}}.show-for-xxlarge-only{display:none !important}@media only screen and (min-width: 120em){.show-for-xxlarge-only{display:block !important}}.show-for-xxlarge-only[class*=grid-block]{display:none !important}@media only screen and (min-width: 120em){.show-for-xxlarge-only[class*=grid-block]{display:flex !important}}@media only screen and (orientation: portrait){.hide-for-portrait{display:none !important}.hide-for-portrait[class*=grid-block]{display:flex !important}.show-for-portrait{display:block !important}.show-for-portrait[class*=grid-block]{display:flex !important}}@media only screen and (orientation: landscape){.hide-for-landscape{display:none !important}.hide-for-landscape[class*=grid-block]{display:flex !important}.show-for-landscape{display:block !important}.show-for-landscape[class*=grid-block]{display:flex !important}}.text-left{text-align:left}.small-text-left{text-align:left}@media only screen and (min-width: 0em)and (max-width: 50rem){.small-only-text-left{text-align:left}}.text-left{text-align:left}@media only screen and (min-width: 50.0625em){.medium-text-left{text-align:left}}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.medium-only-text-left{text-align:left}}.text-left{text-align:left}@media only screen and (min-width: 75em){.large-text-left{text-align:left}}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.large-only-text-left{text-align:left}}.text-left{text-align:left}@media only screen and (min-width: 90em){.xlarge-text-left{text-align:left}}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.xlarge-only-text-left{text-align:left}}.text-left{text-align:left}@media only screen and (min-width: 120em){.xxlarge-text-left{text-align:left}}@media only screen and (min-width: 120em){.xxlarge-only-text-left{text-align:left}}.text-right{text-align:right}.small-text-right{text-align:right}@media only screen and (min-width: 0em)and (max-width: 50rem){.small-only-text-right{text-align:right}}.text-right{text-align:right}@media only screen and (min-width: 50.0625em){.medium-text-right{text-align:right}}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.medium-only-text-right{text-align:right}}.text-right{text-align:right}@media only screen and (min-width: 75em){.large-text-right{text-align:right}}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.large-only-text-right{text-align:right}}.text-right{text-align:right}@media only screen and (min-width: 90em){.xlarge-text-right{text-align:right}}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.xlarge-only-text-right{text-align:right}}.text-right{text-align:right}@media only screen and (min-width: 120em){.xxlarge-text-right{text-align:right}}@media only screen and (min-width: 120em){.xxlarge-only-text-right{text-align:right}}.text-center{text-align:center}.small-text-center{text-align:center}@media only screen and (min-width: 0em)and (max-width: 50rem){.small-only-text-center{text-align:center}}.text-center{text-align:center}@media only screen and (min-width: 50.0625em){.medium-text-center{text-align:center}}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.medium-only-text-center{text-align:center}}.text-center{text-align:center}@media only screen and (min-width: 75em){.large-text-center{text-align:center}}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.large-only-text-center{text-align:center}}.text-center{text-align:center}@media only screen and (min-width: 90em){.xlarge-text-center{text-align:center}}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.xlarge-only-text-center{text-align:center}}.text-center{text-align:center}@media only screen and (min-width: 120em){.xxlarge-text-center{text-align:center}}@media only screen and (min-width: 120em){.xxlarge-only-text-center{text-align:center}}.text-justify{text-align:justify}.small-text-justify{text-align:justify}@media only screen and (min-width: 0em)and (max-width: 50rem){.small-only-text-justify{text-align:justify}}.text-justify{text-align:justify}@media only screen and (min-width: 50.0625em){.medium-text-justify{text-align:justify}}@media only screen and (min-width: 50.0625em)and (max-width: 74.9375rem){.medium-only-text-justify{text-align:justify}}.text-justify{text-align:justify}@media only screen and (min-width: 75em){.large-text-justify{text-align:justify}}@media only screen and (min-width: 75em)and (max-width: 89.9375rem){.large-only-text-justify{text-align:justify}}.text-justify{text-align:justify}@media only screen and (min-width: 90em){.xlarge-text-justify{text-align:justify}}@media only screen and (min-width: 90em)and (max-width: 119.9375rem){.xlarge-only-text-justify{text-align:justify}}.text-justify{text-align:justify}@media only screen and (min-width: 120em){.xxlarge-text-justify{text-align:justify}}@media only screen and (min-width: 120em){.xxlarge-only-text-justify{text-align:justify}}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.float-left{float:left}.float-right{float:right}.float-none{float:none}.CodeMirror{font-family:monospace;height:300px;color:black;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{background-color:white}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:black}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid black;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0 !important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20, 255, 20, 0.5);animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:blue}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:bold}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:blue}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3,.cm-s-default .cm-type{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta{color:#555}.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error{color:red}.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255, 150, 0, 0.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:white}.CodeMirror-scroll{overflow:scroll !important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-vscrollbar,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none !important;border:none !important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-scroll,.CodeMirror-sizer,.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber{box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::-moz-selection, .CodeMirror-line>span::-moz-selection, .CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255, 255, 0, 0.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:none}@font-face{font-family:"iconic-sm";src:url(font-path("iconic-sm.eot"));src:url(font-path("iconic-sm.eot?#iconic-sm")) format("embedded-opentype"),url(font-path("iconic-sm.woff")) format("woff"),url(font-path("iconic-sm.ttf")) format("truetype"),url(font-path("iconic-sm.otf")) format("opentype"),url(font-path("iconic-sm.svg#iconic-sm")) format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"iconic-md";src:url(font-path("iconic-md.eot"));src:url(font-path("iconic-md.eot?#iconic-md")) format("embedded-opentype"),url(font-path("iconic-md.woff")) format("woff"),url(font-path("iconic-md.ttf")) format("truetype"),url(font-path("iconic-md.otf")) format("opentype"),url(font-path("iconic-md.svg#iconic-md")) format("svg");font-weight:normal;font-style:normal}@font-face{font-family:"iconic-lg";src:url(font-path("iconic-lg.eot"));src:url(font-path("iconic-lg.eot?#iconic-lg")) format("embedded-opentype"),url(font-path("iconic-lg.woff")) format("woff"),url(font-path("iconic-lg.ttf")) format("truetype"),url(font-path("iconic-lg.otf")) format("opentype"),url(font-path("iconic-lg.svg#iconic-lg")) format("svg");font-weight:normal;font-style:normal}.fi-account-login:before,.fi-account-logout:before,.fi-action-redo:before,.fi-action-undo:before,.fi-align-center:before,.fi-align-left:before,.fi-align-right:before,.fi-aperture:before,.fi-arrow-bottom-fill-acute:before,.fi-arrow-bottom-fill-angled:before,.fi-arrow-bottom-fill-large-acute:before,.fi-arrow-bottom-fill-large-angled:before,.fi-arrow-bottom-fill-large-oblique:before,.fi-arrow-bottom-fill-large:before,.fi-arrow-bottom-fill-oblique:before,.fi-arrow-bottom-fill:before,.fi-arrow-bottom-left-fill-acute:before,.fi-arrow-bottom-left-fill-angled:before,.fi-arrow-bottom-left-fill-large-acute:before,.fi-arrow-bottom-left-fill-large-angled:before,.fi-arrow-bottom-left-fill-large-oblique:before,.fi-arrow-bottom-left-fill-large:before,.fi-arrow-bottom-left-fill-oblique:before,.fi-arrow-bottom-left-fill:before,.fi-arrow-bottom-left-line-acute:before,.fi-arrow-bottom-left-line-large-acute:before,.fi-arrow-bottom-left-line-large-oblique:before,.fi-arrow-bottom-left-line-large:before,.fi-arrow-bottom-left-line-oblique:before,.fi-arrow-bottom-left-line:before,.fi-arrow-bottom-line-acute:before,.fi-arrow-bottom-line-large-acute:before,.fi-arrow-bottom-line-large-oblique:before,.fi-arrow-bottom-line-large:before,.fi-arrow-bottom-line-oblique:before,.fi-arrow-bottom-line:before,.fi-arrow-bottom-right-fill-acute:before,.fi-arrow-bottom-right-fill-angled:before,.fi-arrow-bottom-right-fill-large-acute:before,.fi-arrow-bottom-right-fill-large-angled:before,.fi-arrow-bottom-right-fill-large-oblique:before,.fi-arrow-bottom-right-fill-large:before,.fi-arrow-bottom-right-fill-oblique:before,.fi-arrow-bottom-right-fill:before,.fi-arrow-bottom-right-line-acute:before,.fi-arrow-bottom-right-line-large-acute:before,.fi-arrow-bottom-right-line-large-oblique:before,.fi-arrow-bottom-right-line-large:before,.fi-arrow-bottom-right-line-oblique:before,.fi-arrow-bottom-right-line:before,.fi-arrow-left-fill-acute:before,.fi-arrow-left-fill-angled:before,.fi-arrow-left-fill-large-acute:before,.fi-arrow-left-fill-large-angled:before,.fi-arrow-left-fill-large-oblique:before,.fi-arrow-left-fill-large:before,.fi-arrow-left-fill-oblique:before,.fi-arrow-left-fill:before,.fi-arrow-left-line-acute:before,.fi-arrow-left-line-large-acute:before,.fi-arrow-left-line-large-oblique:before,.fi-arrow-left-line-large:before,.fi-arrow-left-line-oblique:before,.fi-arrow-left-line:before,.fi-arrow-right-angle-bottom-left-fill-acute:before,.fi-arrow-right-angle-bottom-left-fill-angled:before,.fi-arrow-right-angle-bottom-left-fill:before,.fi-arrow-right-angle-bottom-left-line:before,.fi-arrow-right-angle-bottom-right-fill-acute:before,.fi-arrow-right-angle-bottom-right-fill-angled:before,.fi-arrow-right-angle-bottom-right-fill:before,.fi-arrow-right-angle-bottom-right-line:before,.fi-arrow-right-angle-left-bottom-fill-acute:before,.fi-arrow-right-angle-left-bottom-fill-angled:before,.fi-arrow-right-angle-left-bottom-fill:before,.fi-arrow-right-angle-left-bottom-line:before,.fi-arrow-right-angle-left-top-fill-acute:before,.fi-arrow-right-angle-left-top-fill-angled:before,.fi-arrow-right-angle-left-top-fill:before,.fi-arrow-right-angle-left-top-line:before,.fi-arrow-right-angle-right-bottom-fill-acute:before,.fi-arrow-right-angle-right-bottom-fill-angled:before,.fi-arrow-right-angle-right-bottom-fill:before,.fi-arrow-right-angle-right-bottom-line:before,.fi-arrow-right-angle-right-top-fill-acute:before,.fi-arrow-right-angle-right-top-fill-angled:before,.fi-arrow-right-angle-right-top-fill:before,.fi-arrow-right-angle-right-top-line:before,.fi-arrow-right-angle-thick-bottom-left-fill-acute:before,.fi-arrow-right-angle-thick-bottom-left-fill-angled:before,.fi-arrow-right-angle-thick-bottom-left-fill:before,.fi-arrow-right-angle-thick-bottom-left-line:before,.fi-arrow-right-angle-thick-bottom-right-fill-acute:before,.fi-arrow-right-angle-thick-bottom-right-fill-angled:before,.fi-arrow-right-angle-thick-bottom-right-fill:before,.fi-arrow-right-angle-thick-bottom-right-line:before,.fi-arrow-right-angle-thick-left-bottom-fill-acute:before,.fi-arrow-right-angle-thick-left-bottom-fill-angled:before,.fi-arrow-right-angle-thick-left-bottom-fill:before,.fi-arrow-right-angle-thick-left-bottom-line:before,.fi-arrow-right-angle-thick-left-top-fill-acute:before,.fi-arrow-right-angle-thick-left-top-fill-angled:before,.fi-arrow-right-angle-thick-left-top-fill:before,.fi-arrow-right-angle-thick-left-top-line:before,.fi-arrow-right-angle-thick-right-bottom-fill-acute:before,.fi-arrow-right-angle-thick-right-bottom-fill-angled:before,.fi-arrow-right-angle-thick-right-bottom-fill:before,.fi-arrow-right-angle-thick-right-bottom-line:before,.fi-arrow-right-angle-thick-right-top-fill-acute:before,.fi-arrow-right-angle-thick-right-top-fill-angled:before,.fi-arrow-right-angle-thick-right-top-fill:before,.fi-arrow-right-angle-thick-right-top-line:before,.fi-arrow-right-angle-thick-top-left-fill-acute:before,.fi-arrow-right-angle-thick-top-left-fill-angled:before,.fi-arrow-right-angle-thick-top-left-fill:before,.fi-arrow-right-angle-thick-top-left-line:before,.fi-arrow-right-angle-thick-top-right-fill-acute:before,.fi-arrow-right-angle-thick-top-right-fill-angled:before,.fi-arrow-right-angle-thick-top-right-fill:before,.fi-arrow-right-angle-thick-top-right-line:before,.fi-arrow-right-angle-top-left-fill-acute:before,.fi-arrow-right-angle-top-left-fill-angled:before,.fi-arrow-right-angle-top-left-fill:before,.fi-arrow-right-angle-top-left-line:before,.fi-arrow-right-angle-top-right-fill-acute:before,.fi-arrow-right-angle-top-right-fill-angled:before,.fi-arrow-right-angle-top-right-fill:before,.fi-arrow-right-angle-top-right-line:before,.fi-arrow-right-fill-acute:before,.fi-arrow-right-fill-angled:before,.fi-arrow-right-fill-large-acute:before,.fi-arrow-right-fill-large-angled:before,.fi-arrow-right-fill-large-oblique:before,.fi-arrow-right-fill-large:before,.fi-arrow-right-fill-oblique:before,.fi-arrow-right-fill:before,.fi-arrow-right-line-acute:before,.fi-arrow-right-line-large-acute:before,.fi-arrow-right-line-large-oblique:before,.fi-arrow-right-line-large:before,.fi-arrow-right-line-oblique:before,.fi-arrow-right-line:before,.fi-arrow-thick-bottom-fill-acute:before,.fi-arrow-thick-bottom-fill-angled:before,.fi-arrow-thick-bottom-fill-large-acute:before,.fi-arrow-thick-bottom-fill-large-angled:before,.fi-arrow-thick-bottom-fill-large-oblique:before,.fi-arrow-thick-bottom-fill-large:before,.fi-arrow-thick-bottom-fill-oblique:before,.fi-arrow-thick-bottom-fill:before,.fi-arrow-thick-bottom-left-fill-acute:before,.fi-arrow-thick-bottom-left-fill-angled:before,.fi-arrow-thick-bottom-left-fill-large-acute:before,.fi-arrow-thick-bottom-left-fill-large-angled:before,.fi-arrow-thick-bottom-left-fill-large-oblique:before,.fi-arrow-thick-bottom-left-fill-large:before,.fi-arrow-thick-bottom-left-fill-oblique:before,.fi-arrow-thick-bottom-left-fill:before,.fi-arrow-thick-bottom-left-line-acute:before,.fi-arrow-thick-bottom-left-line-large-acute:before,.fi-arrow-thick-bottom-left-line-large-oblique:before,.fi-arrow-thick-bottom-left-line-large:before,.fi-arrow-thick-bottom-left-line-oblique:before,.fi-arrow-thick-bottom-left-line:before,.fi-arrow-thick-bottom-line-acute:before,.fi-arrow-thick-bottom-line-large-acute:before,.fi-arrow-thick-bottom-line-large-oblique:before,.fi-arrow-thick-bottom-line-large:before,.fi-arrow-thick-bottom-line-oblique:before,.fi-arrow-thick-bottom-line:before,.fi-arrow-thick-bottom-right-fill-acute:before,.fi-arrow-thick-bottom-right-fill-angled:before,.fi-arrow-thick-bottom-right-fill-large-acute:before,.fi-arrow-thick-bottom-right-fill-large-angled:before,.fi-arrow-thick-bottom-right-fill-large-oblique:before,.fi-arrow-thick-bottom-right-fill-large:before,.fi-arrow-thick-bottom-right-fill-oblique:before,.fi-arrow-thick-bottom-right-fill:before,.fi-arrow-thick-bottom-right-line-acute:before,.fi-arrow-thick-bottom-right-line-large-acute:before,.fi-arrow-thick-bottom-right-line-large-oblique:before,.fi-arrow-thick-bottom-right-line-large:before,.fi-arrow-thick-bottom-right-line-oblique:before,.fi-arrow-thick-bottom-right-line:before,.fi-arrow-thick-left-fill-acute:before,.fi-arrow-thick-left-fill-angled:before,.fi-arrow-thick-left-fill-large-acute:before,.fi-arrow-thick-left-fill-large-angled:before,.fi-arrow-thick-left-fill-large-oblique:before,.fi-arrow-thick-left-fill-large:before,.fi-arrow-thick-left-fill-oblique:before,.fi-arrow-thick-left-fill:before,.fi-arrow-thick-left-line-acute:before,.fi-arrow-thick-left-line-large-acute:before,.fi-arrow-thick-left-line-large-oblique:before,.fi-arrow-thick-left-line-large:before,.fi-arrow-thick-left-line-oblique:before,.fi-arrow-thick-left-line:before,.fi-arrow-thick-right-fill-acute:before,.fi-arrow-thick-right-fill-angled:before,.fi-arrow-thick-right-fill-large-acute:before,.fi-arrow-thick-right-fill-large-angled:before,.fi-arrow-thick-right-fill-large-oblique:before,.fi-arrow-thick-right-fill-large:before,.fi-arrow-thick-right-fill-oblique:before,.fi-arrow-thick-right-fill:before,.fi-arrow-thick-right-line-acute:before,.fi-arrow-thick-right-line-large-acute:before,.fi-arrow-thick-right-line-large-oblique:before,.fi-arrow-thick-right-line-large:before,.fi-arrow-thick-right-line-oblique:before,.fi-arrow-thick-right-line:before,.fi-arrow-thick-top-fill-acute:before,.fi-arrow-thick-top-fill-angled:before,.fi-arrow-thick-top-fill-large-acute:before,.fi-arrow-thick-top-fill-large-angled:before,.fi-arrow-thick-top-fill-large-oblique:before,.fi-arrow-thick-top-fill-large:before,.fi-arrow-thick-top-fill-oblique:before,.fi-arrow-thick-top-fill:before,.fi-arrow-thick-top-left-fill-acute:before,.fi-arrow-thick-top-left-fill-angled:before,.fi-arrow-thick-top-left-fill-large-acute:before,.fi-arrow-thick-top-left-fill-large-angled:before,.fi-arrow-thick-top-left-fill-large-oblique:before,.fi-arrow-thick-top-left-fill-large:before,.fi-arrow-thick-top-left-fill-oblique:before,.fi-arrow-thick-top-left-fill:before,.fi-arrow-thick-top-left-line-acute:before,.fi-arrow-thick-top-left-line-large-acute:before,.fi-arrow-thick-top-left-line-large-oblique:before,.fi-arrow-thick-top-left-line-large:before,.fi-arrow-thick-top-left-line-oblique:before,.fi-arrow-thick-top-left-line:before,.fi-arrow-thick-top-line-acute:before,.fi-arrow-thick-top-line-large-acute:before,.fi-arrow-thick-top-line-large-oblique:before,.fi-arrow-thick-top-line-large:before,.fi-arrow-thick-top-line-oblique:before,.fi-arrow-thick-top-line:before,.fi-arrow-thick-top-right-fill-acute:before,.fi-arrow-thick-top-right-fill-angled:before,.fi-arrow-thick-top-right-fill-large-acute:before,.fi-arrow-thick-top-right-fill-large-angled:before,.fi-arrow-thick-top-right-fill-large-oblique:before,.fi-arrow-thick-top-right-fill-large:before,.fi-arrow-thick-top-right-fill-oblique:before,.fi-arrow-thick-top-right-fill:before,.fi-arrow-thick-top-right-line-acute:before,.fi-arrow-thick-top-right-line-large-acute:before,.fi-arrow-thick-top-right-line-large-oblique:before,.fi-arrow-thick-top-right-line-large:before,.fi-arrow-thick-top-right-line-oblique:before,.fi-arrow-thick-top-right-line:before,.fi-arrow-top-fill-acute:before,.fi-arrow-top-fill-angled:before,.fi-arrow-top-fill-large-acute:before,.fi-arrow-top-fill-large-angled:before,.fi-arrow-top-fill-large-oblique:before,.fi-arrow-top-fill-large:before,.fi-arrow-top-fill-oblique:before,.fi-arrow-top-fill:before,.fi-arrow-top-left-fill-acute:before,.fi-arrow-top-left-fill-angled:before,.fi-arrow-top-left-fill-large-acute:before,.fi-arrow-top-left-fill-large-angled:before,.fi-arrow-top-left-fill-large-oblique:before,.fi-arrow-top-left-fill-large:before,.fi-arrow-top-left-fill-oblique:before,.fi-arrow-top-left-fill:before,.fi-arrow-top-left-line-acute:before,.fi-arrow-top-left-line-large-acute:before,.fi-arrow-top-left-line-large-oblique:before,.fi-arrow-top-left-line-large:before,.fi-arrow-top-left-line-oblique:before,.fi-arrow-top-left-line:before,.fi-arrow-top-line-acute:before,.fi-arrow-top-line-large-acute:before,.fi-arrow-top-line-large-oblique:before,.fi-arrow-top-line-large:before,.fi-arrow-top-line-oblique:before,.fi-arrow-top-line:before,.fi-arrow-top-right-fill-acute:before,.fi-arrow-top-right-fill-angled:before,.fi-arrow-top-right-fill-large-acute:before,.fi-arrow-top-right-fill-large-angled:before,.fi-arrow-top-right-fill-large-oblique:before,.fi-arrow-top-right-fill-large:before,.fi-arrow-top-right-fill-oblique:before,.fi-arrow-top-right-fill:before,.fi-arrow-top-right-line-acute:before,.fi-arrow-top-right-line-large-acute:before,.fi-arrow-top-right-line-large-oblique:before,.fi-arrow-top-right-line-large:before,.fi-arrow-top-right-line-oblique:before,.fi-arrow-top-right-line:before,.fi-audio-spectrum:before,.fi-audio:before,.fi-ban:before,.fi-bar-chart:before,.fi-basket:before,.fi-battery:before,.fi-beaker:before,.fi-bell:before,.fi-bitcoin-address:before,.fi-bitcoin-block:before,.fi-bitcoin-transaction:before,.fi-bitcoin:before,.fi-bluetooth:before,.fi-bold:before,.fi-book:before,.fi-bookmark:before,.fi-box:before,.fi-brain:before,.fi-briefcase:before,.fi-british-pound:before,.fi-browser-type-chrome:before,.fi-browser-type-firefox:before,.fi-browser-type-internetexplorer:before,.fi-browser-type-safari:before,.fi-browser:before,.fi-brush:before,.fi-bug:before,.fi-bullhorn:before,.fi-calculator:before,.fi-calendar:before,.fi-camera-rangefinder:before,.fi-camera-slr:before,.fi-caret-bottom:before,.fi-caret-left:before,.fi-caret-right:before,.fi-caret-top:before,.fi-cart:before,.fi-chat:before,.fi-check:before,.fi-chevron-bottom:before,.fi-chevron-left:before,.fi-chevron-right:before,.fi-chevron-top:before,.fi-circle-check:before,.fi-circle-x:before,.fi-clipboard:before,.fi-clock:before,.fi-cloud-transfer-download:before,.fi-cloud-transfer-upload:before,.fi-cloud:before,.fi-cloudy:before,.fi-code:before,.fi-cog:before,.fi-cogs:before,.fi-collapse-down:before,.fi-collapse-left:before,.fi-collapse-right:before,.fi-collapse-up:before,.fi-command:before,.fi-comment-square:before,.fi-compass:before,.fi-connections:before,.fi-contrast:before,.fi-copywriting:before,.fi-credit-card:before,.fi-crop:before,.fi-dashboard:before,.fi-data-transfer-download:before,.fi-data-transfer-upload:before,.fi-database:before,.fi-delete:before,.fi-delta:before,.fi-dial:before,.fi-document:before,.fi-dollar:before,.fi-double-quote-sans-left:before,.fi-double-quote-sans-right:before,.fi-double-quote-serif-left:before,.fi-double-quote-serif-right:before,.fi-easel:before,.fi-eject:before,.fi-electric:before,.fi-elevator:before,.fi-ellipses:before,.fi-envelope-closed:before,.fi-envelope-open:before,.fi-euro:before,.fi-excerpt:before,.fi-expand-down:before,.fi-expand-left:before,.fi-expand-right:before,.fi-expand-up:before,.fi-external-link:before,.fi-eye-closed:before,.fi-eye-open:before,.fi-eyedropper:before,.fi-file-ai:before,.fi-file-css:before,.fi-file-dmg:before,.fi-file-doc:before,.fi-file-gif:before,.fi-file-html:before,.fi-file-jpg:before,.fi-file-js:before,.fi-file-json:before,.fi-file-mov:before,.fi-file-mp3:before,.fi-file-pdf:before,.fi-file-png:before,.fi-file-psd:before,.fi-file-svg:before,.fi-file-txt:before,.fi-file-xls:before,.fi-file-xml:before,.fi-file-zip:before,.fi-fire:before,.fi-firefly:before,.fi-flag:before,.fi-flash:before,.fi-folder:before,.fi-fork:before,.fi-fullscreen-enter:before,.fi-fullscreen-exit:before,.fi-funnel:before,.fi-game-controller:before,.fi-globe:before,.fi-graph:before,.fi-grid-four-up:before,.fi-grid-three-up:before,.fi-grid-two-up:before,.fi-guides:before,.fi-hammer:before,.fi-hand:before,.fi-hard-drive:before,.fi-header:before,.fi-headphones:before,.fi-heart:before,.fi-history:before,.fi-home:before,.fi-image-landscape:before,.fi-image-portrait:before,.fi-inbox:before,.fi-infinity:before,.fi-info:before,.fi-inkwell:before,.fi-iphone:before,.fi-italic:before,.fi-justify-center:before,.fi-justify-left:before,.fi-justify-right:before,.fi-key:before,.fi-keyboard:before,.fi-laptop:before,.fi-layers:before,.fi-lightbulb:before,.fi-lightning-bolt:before,.fi-lightning:before,.fi-link-broken:before,.fi-link-intact:before,.fi-list-nested:before,.fi-list-rich:before,.fi-list:before,.fi-location:before,.fi-lock-locked:before,.fi-lock-unlocked:before,.fi-loop-circular:before,.fi-loop-square:before,.fi-loop:before,.fi-loupe:before,.fi-magic-wand:before,.fi-magnifying-glass:before,.fi-map-marker:before,.fi-map:before,.fi-medal:before,.fi-media-pause:before,.fi-media-play-circle:before,.fi-media-play:before,.fi-media-record:before,.fi-media-skip-backward:before,.fi-media-skip-forward:before,.fi-media-step-backward:before,.fi-media-step-forward:before,.fi-media-stop:before,.fi-medical-cross:before,.fi-menu:before,.fi-microphone:before,.fi-minus:before,.fi-monitor:before,.fi-moon:before,.fi-move:before,.fi-musical-note:before,.fi-network:before,.fi-nexus:before,.fi-open-source:before,.fi-paperclip:before,.fi-peace:before,.fi-pen:before,.fi-pencil:before,.fi-people:before,.fi-person-female:before,.fi-person-genderless:before,.fi-person-male:before,.fi-pie-chart:before,.fi-pin:before,.fi-platform-android:before,.fi-platform-apple:before,.fi-platform-linux:before,.fi-platform-microsoft:before,.fi-plus:before,.fi-power-standby:before,.fi-print:before,.fi-project:before,.fi-pulse:before,.fi-puzzle-piece:before,.fi-question-mark:before,.fi-radiation:before,.fi-rainy:before,.fi-random:before,.fi-ratio:before,.fi-reload:before,.fi-resize-both:before,.fi-resize-height:before,.fi-resize-width:before,.fi-rocket:before,.fi-route:before,.fi-rss-alt:before,.fi-rss:before,.fi-scissors:before,.fi-screenshot:before,.fi-screwdriver:before,.fi-script:before,.fi-server:before,.fi-settings:before,.fi-shape-circle:before,.fi-shape-hexagon:before,.fi-shape-octagon:before,.fi-shape-square-rounded:before,.fi-shape-square:before,.fi-share-boxed:before,.fi-share:before,.fi-shield:before,.fi-signal:before,.fi-signpost:before,.fi-social-dropbox:before,.fi-social-facebook:before,.fi-social-github:before,.fi-social-instagram:before,.fi-social-linkedin:before,.fi-social-pinterest:before,.fi-social-reddit:before,.fi-social-tumblr:before,.fi-social-twitter:before,.fi-social-vimeo:before,.fi-social-youtube:before,.fi-sort-ascending:before,.fi-sort-descending:before,.fi-spreadsheet:before,.fi-star:before,.fi-sun:before,.fi-syringe:before,.fi-tablet:before,.fi-tag:before,.fi-tags:before,.fi-target:before,.fi-task:before,.fi-terminal:before,.fi-text:before,.fi-thermometer:before,.fi-thumb-down:before,.fi-thumb-up:before,.fi-tiara:before,.fi-timer:before,.fi-tint:before,.fi-tools:before,.fi-transfer:before,.fi-trash:before,.fi-vertical-align-bottom:before,.fi-vertical-align-center:before,.fi-vertical-align-top:before,.fi-video:before,.fi-volume-high:before,.fi-volume-low:before,.fi-volume-medium:before,.fi-volume-off:before,.fi-warning:before,.fi-wifi:before,.fi-wrench:before,.fi-x:before,.fi-yen:before,.fi-zoom-in:before,.fi-zoom-out:before{font-family:"iconic-sm";font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;text-decoration:inherit}[class*=fi-].iconic-xs:before,[class*=fi-].iconic-sm:before,[class*=fi-].iconic-md:before,[class*=fi-].iconic-lg:before,[class*=fi-].iconic-icon-sm:before,[class*=fi-].iconic-icon-md:before,[class*=fi-].iconic-icon-lg:before{font-weight:normal;font-style:normal}[class*=fi-].iconic-xs:before{font-family:"iconic-sm";font-size:11px}[class*=fi-].iconic-sm:before{font-family:"iconic-sm";font-size:16px}[class*=fi-].iconic-md:before{font-family:"iconic-md";font-size:32px}[class*=fi-].iconic-lg:before{font-family:"iconic-lg";font-size:128px}[class*=fi-].iconic-icon-sm:before{font-family:"iconic-sm"}[class*=fi-].iconic-icon-md:before{font-family:"iconic-md"}[class*=fi-].iconic-icon-lg:before{font-family:"iconic-lg"}[class*=fi-].iconic-size-sm:before{font-size:16px}.fi-iconic-size-md:before{font-size:32px}[class*=fi-].iconic-size-lg:before{font-size:128px}[class*=fi-].iconic-align-center:before{text-align:center}[class*=fi-].iconic-align-left:before{text-align:left}[class*=fi-].iconic-align-right:before{text-align:right}[class*=fi-].iconic-flip-horizontal:before{transform:scale(-1, 1)}[class*=fi-].iconic-flip-vertical:before{transform:scale(1, -1)}[class*=fi-].iconic-flip-horizontal-vertical:before{transform:scale(-1, -1)}.fi-account-login:before{content:""}.fi-account-logout:before{content:""}.fi-action-redo:before{content:""}.fi-action-undo:before{content:""}.fi-align-center:before{content:""}.fi-align-left:before{content:""}.fi-align-right:before{content:""}.fi-aperture:before{content:""}.fi-arrow-bottom-fill-acute:before{content:""}.fi-arrow-bottom-fill-angled:before{content:""}.fi-arrow-bottom-fill-large-acute:before{content:""}.fi-arrow-bottom-fill-large-angled:before{content:""}.fi-arrow-bottom-fill-large-oblique:before{content:""}.fi-arrow-bottom-fill-large:before{content:""}.fi-arrow-bottom-fill-oblique:before{content:""}.fi-arrow-bottom-fill:before{content:""}.fi-arrow-bottom-left-fill-acute:before{content:""}.fi-arrow-bottom-left-fill-angled:before{content:""}.fi-arrow-bottom-left-fill-large-acute:before{content:""}.fi-arrow-bottom-left-fill-large-angled:before{content:""}.fi-arrow-bottom-left-fill-large-oblique:before{content:""}.fi-arrow-bottom-left-fill-large:before{content:""}.fi-arrow-bottom-left-fill-oblique:before{content:""}.fi-arrow-bottom-left-fill:before{content:""}.fi-arrow-bottom-left-line-acute:before{content:""}.fi-arrow-bottom-left-line-large-acute:before{content:""}.fi-arrow-bottom-left-line-large-oblique:before{content:""}.fi-arrow-bottom-left-line-large:before{content:""}.fi-arrow-bottom-left-line-oblique:before{content:""}.fi-arrow-bottom-left-line:before{content:""}.fi-arrow-bottom-line-acute:before{content:""}.fi-arrow-bottom-line-large-acute:before{content:""}.fi-arrow-bottom-line-large-oblique:before{content:""}.fi-arrow-bottom-line-large:before{content:""}.fi-arrow-bottom-line-oblique:before{content:""}.fi-arrow-bottom-line:before{content:""}.fi-arrow-bottom-right-fill-acute:before{content:""}.fi-arrow-bottom-right-fill-angled:before{content:""}.fi-arrow-bottom-right-fill-large-acute:before{content:""}.fi-arrow-bottom-right-fill-large-angled:before{content:""}.fi-arrow-bottom-right-fill-large-oblique:before{content:""}.fi-arrow-bottom-right-fill-large:before{content:""}.fi-arrow-bottom-right-fill-oblique:before{content:""}.fi-arrow-bottom-right-fill:before{content:""}.fi-arrow-bottom-right-line-acute:before{content:""}.fi-arrow-bottom-right-line-large-acute:before{content:""}.fi-arrow-bottom-right-line-large-oblique:before{content:""}.fi-arrow-bottom-right-line-large:before{content:""}.fi-arrow-bottom-right-line-oblique:before{content:""}.fi-arrow-bottom-right-line:before{content:""}.fi-arrow-left-fill-acute:before{content:""}.fi-arrow-left-fill-angled:before{content:""}.fi-arrow-left-fill-large-acute:before{content:""}.fi-arrow-left-fill-large-angled:before{content:""}.fi-arrow-left-fill-large-oblique:before{content:""}.fi-arrow-left-fill-large:before{content:""}.fi-arrow-left-fill-oblique:before{content:""}.fi-arrow-left-fill:before{content:""}.fi-arrow-left-line-acute:before{content:""}.fi-arrow-left-line-large-acute:before{content:""}.fi-arrow-left-line-large-oblique:before{content:""}.fi-arrow-left-line-large:before{content:""}.fi-arrow-left-line-oblique:before{content:""}.fi-arrow-left-line:before{content:""}.fi-arrow-right-angle-bottom-left-fill-acute:before{content:""}.fi-arrow-right-angle-bottom-left-fill-angled:before{content:""}.fi-arrow-right-angle-bottom-left-fill:before{content:""}.fi-arrow-right-angle-bottom-left-line:before{content:""}.fi-arrow-right-angle-bottom-right-fill-acute:before{content:""}.fi-arrow-right-angle-bottom-right-fill-angled:before{content:""}.fi-arrow-right-angle-bottom-right-fill:before{content:""}.fi-arrow-right-angle-bottom-right-line:before{content:""}.fi-arrow-right-angle-left-bottom-fill-acute:before{content:""}.fi-arrow-right-angle-left-bottom-fill-angled:before{content:""}.fi-arrow-right-angle-left-bottom-fill:before{content:""}.fi-arrow-right-angle-left-bottom-line:before{content:""}.fi-arrow-right-angle-left-top-fill-acute:before{content:""}.fi-arrow-right-angle-left-top-fill-angled:before{content:""}.fi-arrow-right-angle-left-top-fill:before{content:""}.fi-arrow-right-angle-left-top-line:before{content:""}.fi-arrow-right-angle-right-bottom-fill-acute:before{content:""}.fi-arrow-right-angle-right-bottom-fill-angled:before{content:""}.fi-arrow-right-angle-right-bottom-fill:before{content:""}.fi-arrow-right-angle-right-bottom-line:before{content:""}.fi-arrow-right-angle-right-top-fill-acute:before{content:""}.fi-arrow-right-angle-right-top-fill-angled:before{content:""}.fi-arrow-right-angle-right-top-fill:before{content:""}.fi-arrow-right-angle-right-top-line:before{content:""}.fi-arrow-right-angle-thick-bottom-left-fill-acute:before{content:""}.fi-arrow-right-angle-thick-bottom-left-fill-angled:before{content:""}.fi-arrow-right-angle-thick-bottom-left-fill:before{content:""}.fi-arrow-right-angle-thick-bottom-left-line:before{content:""}.fi-arrow-right-angle-thick-bottom-right-fill-acute:before{content:""}.fi-arrow-right-angle-thick-bottom-right-fill-angled:before{content:""}.fi-arrow-right-angle-thick-bottom-right-fill:before{content:""}.fi-arrow-right-angle-thick-bottom-right-line:before{content:""}.fi-arrow-right-angle-thick-left-bottom-fill-acute:before{content:""}.fi-arrow-right-angle-thick-left-bottom-fill-angled:before{content:""}.fi-arrow-right-angle-thick-left-bottom-fill:before{content:""}.fi-arrow-right-angle-thick-left-bottom-line:before{content:""}.fi-arrow-right-angle-thick-left-top-fill-acute:before{content:""}.fi-arrow-right-angle-thick-left-top-fill-angled:before{content:""}.fi-arrow-right-angle-thick-left-top-fill:before{content:""}.fi-arrow-right-angle-thick-left-top-line:before{content:""}.fi-arrow-right-angle-thick-right-bottom-fill-acute:before{content:""}.fi-arrow-right-angle-thick-right-bottom-fill-angled:before{content:""}.fi-arrow-right-angle-thick-right-bottom-fill:before{content:""}.fi-arrow-right-angle-thick-right-bottom-line:before{content:""}.fi-arrow-right-angle-thick-right-top-fill-acute:before{content:""}.fi-arrow-right-angle-thick-right-top-fill-angled:before{content:""}.fi-arrow-right-angle-thick-right-top-fill:before{content:""}.fi-arrow-right-angle-thick-right-top-line:before{content:""}.fi-arrow-right-angle-thick-top-left-fill-acute:before{content:""}.fi-arrow-right-angle-thick-top-left-fill-angled:before{content:""}.fi-arrow-right-angle-thick-top-left-fill:before{content:""}.fi-arrow-right-angle-thick-top-left-line:before{content:""}.fi-arrow-right-angle-thick-top-right-fill-acute:before{content:""}.fi-arrow-right-angle-thick-top-right-fill-angled:before{content:""}.fi-arrow-right-angle-thick-top-right-fill:before{content:""}.fi-arrow-right-angle-thick-top-right-line:before{content:""}.fi-arrow-right-angle-top-left-fill-acute:before{content:""}.fi-arrow-right-angle-top-left-fill-angled:before{content:""}.fi-arrow-right-angle-top-left-fill:before{content:""}.fi-arrow-right-angle-top-left-line:before{content:""}.fi-arrow-right-angle-top-right-fill-acute:before{content:""}.fi-arrow-right-angle-top-right-fill-angled:before{content:""}.fi-arrow-right-angle-top-right-fill:before{content:""}.fi-arrow-right-angle-top-right-line:before{content:""}.fi-arrow-right-fill-acute:before{content:""}.fi-arrow-right-fill-angled:before{content:""}.fi-arrow-right-fill-large-acute:before{content:""}.fi-arrow-right-fill-large-angled:before{content:""}.fi-arrow-right-fill-large-oblique:before{content:""}.fi-arrow-right-fill-large:before{content:""}.fi-arrow-right-fill-oblique:before{content:""}.fi-arrow-right-fill:before{content:""}.fi-arrow-right-line-acute:before{content:""}.fi-arrow-right-line-large-acute:before{content:""}.fi-arrow-right-line-large-oblique:before{content:""}.fi-arrow-right-line-large:before{content:""}.fi-arrow-right-line-oblique:before{content:""}.fi-arrow-right-line:before{content:""}.fi-arrow-thick-bottom-fill-acute:before{content:""}.fi-arrow-thick-bottom-fill-angled:before{content:""}.fi-arrow-thick-bottom-fill-large-acute:before{content:""}.fi-arrow-thick-bottom-fill-large-angled:before{content:""}.fi-arrow-thick-bottom-fill-large-oblique:before{content:""}.fi-arrow-thick-bottom-fill-large:before{content:""}.fi-arrow-thick-bottom-fill-oblique:before{content:""}.fi-arrow-thick-bottom-fill:before{content:""}.fi-arrow-thick-bottom-left-fill-acute:before{content:""}.fi-arrow-thick-bottom-left-fill-angled:before{content:""}.fi-arrow-thick-bottom-left-fill-large-acute:before{content:""}.fi-arrow-thick-bottom-left-fill-large-angled:before{content:""}.fi-arrow-thick-bottom-left-fill-large-oblique:before{content:""}.fi-arrow-thick-bottom-left-fill-large:before{content:""}.fi-arrow-thick-bottom-left-fill-oblique:before{content:""}.fi-arrow-thick-bottom-left-fill:before{content:""}.fi-arrow-thick-bottom-left-line-acute:before{content:""}.fi-arrow-thick-bottom-left-line-large-acute:before{content:""}.fi-arrow-thick-bottom-left-line-large-oblique:before{content:""}.fi-arrow-thick-bottom-left-line-large:before{content:""}.fi-arrow-thick-bottom-left-line-oblique:before{content:""}.fi-arrow-thick-bottom-left-line:before{content:""}.fi-arrow-thick-bottom-line-acute:before{content:""}.fi-arrow-thick-bottom-line-large-acute:before{content:""}.fi-arrow-thick-bottom-line-large-oblique:before{content:""}.fi-arrow-thick-bottom-line-large:before{content:""}.fi-arrow-thick-bottom-line-oblique:before{content:""}.fi-arrow-thick-bottom-line:before{content:""}.fi-arrow-thick-bottom-right-fill-acute:before{content:""}.fi-arrow-thick-bottom-right-fill-angled:before{content:""}.fi-arrow-thick-bottom-right-fill-large-acute:before{content:""}.fi-arrow-thick-bottom-right-fill-large-angled:before{content:""}.fi-arrow-thick-bottom-right-fill-large-oblique:before{content:""}.fi-arrow-thick-bottom-right-fill-large:before{content:""}.fi-arrow-thick-bottom-right-fill-oblique:before{content:""}.fi-arrow-thick-bottom-right-fill:before{content:""}.fi-arrow-thick-bottom-right-line-acute:before{content:""}.fi-arrow-thick-bottom-right-line-large-acute:before{content:""}.fi-arrow-thick-bottom-right-line-large-oblique:before{content:""}.fi-arrow-thick-bottom-right-line-large:before{content:""}.fi-arrow-thick-bottom-right-line-oblique:before{content:""}.fi-arrow-thick-bottom-right-line:before{content:""}.fi-arrow-thick-left-fill-acute:before{content:""}.fi-arrow-thick-left-fill-angled:before{content:""}.fi-arrow-thick-left-fill-large-acute:before{content:""}.fi-arrow-thick-left-fill-large-angled:before{content:""}.fi-arrow-thick-left-fill-large-oblique:before{content:""}.fi-arrow-thick-left-fill-large:before{content:""}.fi-arrow-thick-left-fill-oblique:before{content:""}.fi-arrow-thick-left-fill:before{content:""}.fi-arrow-thick-left-line-acute:before{content:""}.fi-arrow-thick-left-line-large-acute:before{content:""}.fi-arrow-thick-left-line-large-oblique:before{content:""}.fi-arrow-thick-left-line-large:before{content:""}.fi-arrow-thick-left-line-oblique:before{content:""}.fi-arrow-thick-left-line:before{content:""}.fi-arrow-thick-right-fill-acute:before{content:""}.fi-arrow-thick-right-fill-angled:before{content:""}.fi-arrow-thick-right-fill-large-acute:before{content:""}.fi-arrow-thick-right-fill-large-angled:before{content:""}.fi-arrow-thick-right-fill-large-oblique:before{content:""}.fi-arrow-thick-right-fill-large:before{content:""}.fi-arrow-thick-right-fill-oblique:before{content:""}.fi-arrow-thick-right-fill:before{content:""}.fi-arrow-thick-right-line-acute:before{content:""}.fi-arrow-thick-right-line-large-acute:before{content:""}.fi-arrow-thick-right-line-large-oblique:before{content:""}.fi-arrow-thick-right-line-large:before{content:""}.fi-arrow-thick-right-line-oblique:before{content:""}.fi-arrow-thick-right-line:before{content:""}.fi-arrow-thick-top-fill-acute:before{content:""}.fi-arrow-thick-top-fill-angled:before{content:""}.fi-arrow-thick-top-fill-large-acute:before{content:""}.fi-arrow-thick-top-fill-large-angled:before{content:""}.fi-arrow-thick-top-fill-large-oblique:before{content:""}.fi-arrow-thick-top-fill-large:before{content:""}.fi-arrow-thick-top-fill-oblique:before{content:""}.fi-arrow-thick-top-fill:before{content:""}.fi-arrow-thick-top-left-fill-acute:before{content:""}.fi-arrow-thick-top-left-fill-angled:before{content:""}.fi-arrow-thick-top-left-fill-large-acute:before{content:""}.fi-arrow-thick-top-left-fill-large-angled:before{content:""}.fi-arrow-thick-top-left-fill-large-oblique:before{content:""}.fi-arrow-thick-top-left-fill-large:before{content:""}.fi-arrow-thick-top-left-fill-oblique:before{content:""}.fi-arrow-thick-top-left-fill:before{content:""}.fi-arrow-thick-top-left-line-acute:before{content:""}.fi-arrow-thick-top-left-line-large-acute:before{content:""}.fi-arrow-thick-top-left-line-large-oblique:before{content:""}.fi-arrow-thick-top-left-line-large:before{content:""}.fi-arrow-thick-top-left-line-oblique:before{content:""}.fi-arrow-thick-top-left-line:before{content:""}.fi-arrow-thick-top-line-acute:before{content:""}.fi-arrow-thick-top-line-large-acute:before{content:""}.fi-arrow-thick-top-line-large-oblique:before{content:""}.fi-arrow-thick-top-line-large:before{content:""}.fi-arrow-thick-top-line-oblique:before{content:""}.fi-arrow-thick-top-line:before{content:""}.fi-arrow-thick-top-right-fill-acute:before{content:""}.fi-arrow-thick-top-right-fill-angled:before{content:""}.fi-arrow-thick-top-right-fill-large-acute:before{content:""}.fi-arrow-thick-top-right-fill-large-angled:before{content:""}.fi-arrow-thick-top-right-fill-large-oblique:before{content:""}.fi-arrow-thick-top-right-fill-large:before{content:""}.fi-arrow-thick-top-right-fill-oblique:before{content:""}.fi-arrow-thick-top-right-fill:before{content:""}.fi-arrow-thick-top-right-line-acute:before{content:""}.fi-arrow-thick-top-right-line-large-acute:before{content:""}.fi-arrow-thick-top-right-line-large-oblique:before{content:""}.fi-arrow-thick-top-right-line-large:before{content:""}.fi-arrow-thick-top-right-line-oblique:before{content:""}.fi-arrow-thick-top-right-line:before{content:""}.fi-arrow-top-fill-acute:before{content:""}.fi-arrow-top-fill-angled:before{content:""}.fi-arrow-top-fill-large-acute:before{content:""}.fi-arrow-top-fill-large-angled:before{content:""}.fi-arrow-top-fill-large-oblique:before{content:""}.fi-arrow-top-fill-large:before{content:""}.fi-arrow-top-fill-oblique:before{content:""}.fi-arrow-top-fill:before{content:""}.fi-arrow-top-left-fill-acute:before{content:""}.fi-arrow-top-left-fill-angled:before{content:""}.fi-arrow-top-left-fill-large-acute:before{content:""}.fi-arrow-top-left-fill-large-angled:before{content:""}.fi-arrow-top-left-fill-large-oblique:before{content:""}.fi-arrow-top-left-fill-large:before{content:""}.fi-arrow-top-left-fill-oblique:before{content:""}.fi-arrow-top-left-fill:before{content:""}.fi-arrow-top-left-line-acute:before{content:""}.fi-arrow-top-left-line-large-acute:before{content:""}.fi-arrow-top-left-line-large-oblique:before{content:""}.fi-arrow-top-left-line-large:before{content:""}.fi-arrow-top-left-line-oblique:before{content:""}.fi-arrow-top-left-line:before{content:""}.fi-arrow-top-line-acute:before{content:""}.fi-arrow-top-line-large-acute:before{content:""}.fi-arrow-top-line-large-oblique:before{content:""}.fi-arrow-top-line-large:before{content:""}.fi-arrow-top-line-oblique:before{content:""}.fi-arrow-top-line:before{content:""}.fi-arrow-top-right-fill-acute:before{content:""}.fi-arrow-top-right-fill-angled:before{content:""}.fi-arrow-top-right-fill-large-acute:before{content:""}.fi-arrow-top-right-fill-large-angled:before{content:""}.fi-arrow-top-right-fill-large-oblique:before{content:""}.fi-arrow-top-right-fill-large:before{content:""}.fi-arrow-top-right-fill-oblique:before{content:""}.fi-arrow-top-right-fill:before{content:""}.fi-arrow-top-right-line-acute:before{content:""}.fi-arrow-top-right-line-large-acute:before{content:""}.fi-arrow-top-right-line-large-oblique:before{content:""}.fi-arrow-top-right-line-large:before{content:""}.fi-arrow-top-right-line-oblique:before{content:""}.fi-arrow-top-right-line:before{content:""}.fi-audio-spectrum:before{content:""}.fi-audio:before{content:""}.fi-ban:before{content:""}.fi-bar-chart:before{content:""}.fi-basket:before{content:""}.fi-battery:before{content:""}.fi-beaker:before{content:""}.fi-bell:before{content:""}.fi-bitcoin-address:before{content:""}.fi-bitcoin-block:before{content:""}.fi-bitcoin-transaction:before{content:""}.fi-bitcoin:before{content:""}.fi-bluetooth:before{content:""}.fi-bold:before{content:""}.fi-book:before{content:""}.fi-bookmark:before{content:""}.fi-box:before{content:""}.fi-brain:before{content:""}.fi-briefcase:before{content:""}.fi-british-pound:before{content:""}.fi-browser-type-chrome:before{content:""}.fi-browser-type-firefox:before{content:""}.fi-browser-type-internetexplorer:before{content:""}.fi-browser-type-safari:before{content:""}.fi-browser:before{content:""}.fi-brush:before{content:""}.fi-bug:before{content:""}.fi-bullhorn:before{content:""}.fi-calculator:before{content:""}.fi-calendar:before{content:""}.fi-camera-rangefinder:before{content:""}.fi-camera-slr:before{content:""}.fi-caret-bottom:before{content:""}.fi-caret-left:before{content:""}.fi-caret-right:before{content:""}.fi-caret-top:before{content:""}.fi-cart:before{content:""}.fi-chat:before{content:""}.fi-check:before{content:""}.fi-chevron-bottom:before{content:""}.fi-chevron-left:before{content:""}.fi-chevron-right:before{content:""}.fi-chevron-top:before{content:""}.fi-circle-check:before{content:""}.fi-circle-x:before{content:""}.fi-clipboard:before{content:""}.fi-clock:before{content:""}.fi-cloud-transfer-download:before{content:""}.fi-cloud-transfer-upload:before{content:""}.fi-cloud:before{content:""}.fi-cloudy:before{content:""}.fi-code:before{content:""}.fi-cog:before{content:""}.fi-cogs:before{content:""}.fi-collapse-down:before{content:""}.fi-collapse-left:before{content:""}.fi-collapse-right:before{content:""}.fi-collapse-up:before{content:""}.fi-command:before{content:""}.fi-comment-square:before{content:""}.fi-compass:before{content:""}.fi-connections:before{content:""}.fi-contrast:before{content:""}.fi-copywriting:before{content:""}.fi-credit-card:before{content:""}.fi-crop:before{content:""}.fi-dashboard:before{content:""}.fi-data-transfer-download:before{content:""}.fi-data-transfer-upload:before{content:""}.fi-database:before{content:""}.fi-delete:before{content:""}.fi-delta:before{content:""}.fi-dial:before{content:""}.fi-document:before{content:""}.fi-dollar:before{content:""}.fi-double-quote-sans-left:before{content:""}.fi-double-quote-sans-right:before{content:""}.fi-double-quote-serif-left:before{content:""}.fi-double-quote-serif-right:before{content:""}.fi-easel:before{content:""}.fi-eject:before{content:""}.fi-electric:before{content:""}.fi-elevator:before{content:""}.fi-ellipses:before{content:""}.fi-envelope-closed:before{content:""}.fi-envelope-open:before{content:""}.fi-euro:before{content:""}.fi-excerpt:before{content:""}.fi-expand-down:before{content:""}.fi-expand-left:before{content:""}.fi-expand-right:before{content:""}.fi-expand-up:before{content:""}.fi-external-link:before{content:""}.fi-eye-closed:before{content:""}.fi-eye-open:before{content:""}.fi-eyedropper:before{content:""}.fi-file-ai:before{content:""}.fi-file-css:before{content:""}.fi-file-dmg:before{content:""}.fi-file-doc:before{content:""}.fi-file-gif:before{content:""}.fi-file-html:before{content:""}.fi-file-jpg:before{content:""}.fi-file-js:before{content:""}.fi-file-json:before{content:""}.fi-file-mov:before{content:""}.fi-file-mp3:before{content:""}.fi-file-pdf:before{content:""}.fi-file-png:before{content:""}.fi-file-psd:before{content:""}.fi-file-svg:before{content:""}.fi-file-txt:before{content:""}.fi-file-xls:before{content:""}.fi-file-xml:before{content:""}.fi-file-zip:before{content:""}.fi-fire:before{content:""}.fi-firefly:before{content:""}.fi-flag:before{content:""}.fi-flash:before{content:""}.fi-folder:before{content:""}.fi-fork:before{content:""}.fi-fullscreen-enter:before{content:""}.fi-fullscreen-exit:before{content:""}.fi-funnel:before{content:""}.fi-game-controller:before{content:""}.fi-globe:before{content:""}.fi-graph:before{content:""}.fi-grid-four-up:before{content:""}.fi-grid-three-up:before{content:""}.fi-grid-two-up:before{content:""}.fi-guides:before{content:""}.fi-hammer:before{content:""}.fi-hand:before{content:""}.fi-hard-drive:before{content:""}.fi-header:before{content:""}.fi-headphones:before{content:""}.fi-heart:before{content:""}.fi-history:before{content:""}.fi-home:before{content:""}.fi-image-landscape:before{content:""}.fi-image-portrait:before{content:""}.fi-inbox:before{content:""}.fi-infinity:before{content:""}.fi-info:before{content:""}.fi-inkwell:before{content:""}.fi-iphone:before{content:""}.fi-italic:before{content:""}.fi-justify-center:before{content:""}.fi-justify-left:before{content:""}.fi-justify-right:before{content:""}.fi-key:before{content:""}.fi-keyboard:before{content:""}.fi-laptop:before{content:""}.fi-layers:before{content:""}.fi-lightbulb:before{content:""}.fi-lightning-bolt:before{content:""}.fi-lightning:before{content:""}.fi-link-broken:before{content:""}.fi-link-intact:before{content:""}.fi-list-nested:before{content:""}.fi-list-rich:before{content:""}.fi-list:before{content:""}.fi-location:before{content:""}.fi-lock-locked:before{content:""}.fi-lock-unlocked:before{content:""}.fi-loop-circular:before{content:""}.fi-loop-square:before{content:""}.fi-loop:before{content:""}.fi-loupe:before{content:""}.fi-magic-wand:before{content:""}.fi-magnifying-glass:before{content:""}.fi-map-marker:before{content:""}.fi-map:before{content:""}.fi-medal:before{content:""}.fi-media-pause:before{content:""}.fi-media-play-circle:before{content:""}.fi-media-play:before{content:""}.fi-media-record:before{content:""}.fi-media-skip-backward:before{content:""}.fi-media-skip-forward:before{content:""}.fi-media-step-backward:before{content:""}.fi-media-step-forward:before{content:""}.fi-media-stop:before{content:""}.fi-medical-cross:before{content:""}.fi-menu:before{content:""}.fi-microphone:before{content:""}.fi-minus:before{content:""}.fi-monitor:before{content:""}.fi-moon:before{content:""}.fi-move:before{content:""}.fi-musical-note:before{content:""}.fi-network:before{content:""}.fi-nexus:before{content:""}.fi-open-source:before{content:""}.fi-paperclip:before{content:""}.fi-peace:before{content:""}.fi-pen:before{content:""}.fi-pencil:before{content:""}.fi-people:before{content:""}.fi-person-female:before{content:""}.fi-person-genderless:before{content:""}.fi-person-male:before{content:""}.fi-pie-chart:before{content:""}.fi-pin:before{content:""}.fi-platform-android:before{content:""}.fi-platform-apple:before{content:""}.fi-platform-linux:before{content:""}.fi-platform-microsoft:before{content:""}.fi-plus:before{content:""}.fi-power-standby:before{content:""}.fi-print:before{content:""}.fi-project:before{content:""}.fi-pulse:before{content:""}.fi-puzzle-piece:before{content:""}.fi-question-mark:before{content:""}.fi-radiation:before{content:""}.fi-rainy:before{content:""}.fi-random:before{content:""}.fi-ratio:before{content:""}.fi-reload:before{content:""}.fi-resize-both:before{content:""}.fi-resize-height:before{content:""}.fi-resize-width:before{content:""}.fi-rocket:before{content:""}.fi-route:before{content:""}.fi-rss-alt:before{content:""}.fi-rss:before{content:""}.fi-scissors:before{content:""}.fi-screenshot:before{content:""}.fi-screwdriver:before{content:""}.fi-script:before{content:""}.fi-server:before{content:""}.fi-settings:before{content:""}.fi-shape-circle:before{content:""}.fi-shape-hexagon:before{content:""}.fi-shape-octagon:before{content:""}.fi-shape-square-rounded:before{content:""}.fi-shape-square:before{content:""}.fi-share-boxed:before{content:""}.fi-share:before{content:""}.fi-shield:before{content:""}.fi-signal:before{content:""}.fi-signpost:before{content:""}.fi-social-dropbox:before{content:""}.fi-social-facebook:before{content:""}.fi-social-github:before{content:""}.fi-social-instagram:before{content:""}.fi-social-linkedin:before{content:""}.fi-social-pinterest:before{content:""}.fi-social-reddit:before{content:""}.fi-social-tumblr:before{content:""}.fi-social-twitter:before{content:""}.fi-social-vimeo:before{content:""}.fi-social-youtube:before{content:""}.fi-sort-ascending:before{content:""}.fi-sort-descending:before{content:""}.fi-spreadsheet:before{content:""}.fi-star:before{content:""}.fi-sun:before{content:""}.fi-syringe:before{content:""}.fi-tablet:before{content:""}.fi-tag:before{content:""}.fi-tags:before{content:""}.fi-target:before{content:""}.fi-task:before{content:""}.fi-terminal:before{content:""}.fi-text:before{content:""}.fi-thermometer:before{content:""}.fi-thumb-down:before{content:""}.fi-thumb-up:before{content:""}.fi-tiara:before{content:""}.fi-timer:before{content:""}.fi-tint:before{content:""}.fi-tools:before{content:""}.fi-transfer:before{content:""}.fi-trash:before{content:""}.fi-vertical-align-bottom:before{content:""}.fi-vertical-align-center:before{content:""}.fi-vertical-align-top:before{content:""}.fi-video:before{content:""}.fi-volume-high:before{content:""}.fi-volume-low:before{content:""}.fi-volume-medium:before{content:""}.fi-volume-off:before{content:""}.fi-warning:before{content:""}.fi-wifi:before{content:""}.fi-wrench:before{content:""}.fi-x:before{content:""}.fi-yen:before{content:""}.fi-zoom-in:before{content:""}.fi-zoom-out:before{content:""}.showtime-shadowbar{z-index:27;background:#fffdf5;box-shadow:0 .0625rem .25rem rgba(0,0,0,.3);position:fixed;width:100%;display:flex;height:2.5rem}.showtime-shadowbar__info{flex:1;display:flex;justify-content:flex-start;align-items:center;overflow:hidden}.showtime-shadowbar__info-item{font-size:13px;margin:0;padding:0 7px;line-height:17px;color:#222234;word-break:break-all}.showtime-shadowbar__info-item:first-child{padding-left:14px}@media only screen and (max-width: 31.1875em){.showtime-shadowbar__info-item{padding:0 3px}.showtime-shadowbar__info-item .showtime-icon{display:none}.showtime-shadowbar__info-item:first-child{display:none;padding-left:6px}}.showime-shadowbar__info-plan{display:flex;align-items:center;padding-left:7px}.showime-shadowbar__info-plan input[type=checkbox]{display:block;min-height:auto;margin-bottom:0}.showime-shadowbar__info-plan label{display:block;font-size:13px;line-height:17px;color:#222234;margin:0 0 0 3px !important}.showtime-shadowbar__link{background-color:#ffd635;font-size:13px;color:#222234;display:flex;align-items:center;justify-content:space-between;padding:0 .625rem;text-decoration:none}.showtime-shadowbar__link .showtime-icon{margin-right:5px}@media only screen and (max-width: 31.1875em){.showtime-shadowbar__link .showtime-icon{display:none}}.showtime-shadowbar__link:hover,.showtime-shadowbar__link:focus,.showtime-shadowbar__link:visited,.showtime-shadowbar__link:active{color:#000}@keyframes pulse{0%{transform:scale3d(0.75, 0.75, 0.75)}50%{transform:scale3d(0.85, 0.85, 0.85)}100%{transform:scale3d(0.75, 0.75, 0.75)}}@media screen and (min-width: 0){.showtime-utility-font-headline-large-fluid{font-size:1.4375rem !important;line-height:1.625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-utility-font-headline-large-fluid{font-size:1.5625rem !important;line-height:1.75rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-utility-font-headline-large-fluid{font-size:1.625rem !important;line-height:1.8125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-utility-font-headline-large-fluid{font-size:1.75rem !important;line-height:1.9375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 0){.showtime-utility-font-headline-medium-fluid{font-size:1.1875rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-utility-font-headline-medium-fluid{font-size:1.3125rem !important;line-height:1.5rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-utility-font-headline-medium-fluid{font-size:1.5rem !important;line-height:1.6875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-utility-font-headline-medium-fluid{font-size:1.5rem !important;line-height:1.6875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 0){.showtime-utility-font-headline-fluid-bold{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-utility-font-headline-fluid-bold{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-utility-font-headline-fluid-bold{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-utility-font-headline-fluid-bold{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 0){.showtime-utility-font-headline-fluid{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-utility-font-headline-fluid{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-utility-font-headline-fluid{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-utility-font-headline-fluid{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.showtime-utility-font-headline-small-loose-uppercase-bold{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-utility-font-headline-small-loose-uppercase{font-size:.8125rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-utility-font-body-bold{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-utility-font-body{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-utility-font-body-small-bold{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-utility-font-body-small{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-utility-font-label-loose{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-utility-font-label-small-loose{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-utility-font-label-extra-small-loose{font-size:.625rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.utility-nowrap{white-space:nowrap !important}.utility-caps{text-transform:uppercase}.utility-truncate{white-space:nowrap !important;overflow:hidden !important;text-overflow:ellipsis !important}.utility-emphasis{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes button-loader-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes animated-stroke{0%{stroke-dashoffset:0}100%{stroke-dashoffset:-1000}}[data-react-class=SVGIcon]{display:inline}.showtime-icon{display:inline-block}.showtime-icon svg{width:inherit;height:inherit}.showtime-icon svg *{fill:currentColor}.showtime-icon--expand-to-fit{height:100%;width:100%}.showtime-icon--size-12{height:.75rem;width:.75rem}.showtime-icon--size-14{height:.875rem;width:.875rem}.showtime-icon--size-16{height:1rem;width:1rem}.showtime-icon--size-20{height:1.25rem;width:1.25rem}.showtime-icon--size-24{height:1.5rem;width:1.5rem}.showtime-icon--size-28{height:1.75rem;width:1.75rem}.showtime-icon--size-44{height:2.75rem;width:2.75rem}.showtime-icon--color-success{color:#13bf1f}.showtime-icon--color-warning{color:#ff9100}.showtime-icon--color-error{color:#ff513d}.showtime-icon--color-blocked{color:#cacaca}.showtime-icon--margin-left{margin-left:.3125rem}.showtime-icon--margin-right{margin-right:.3125rem}ul{list-style:none;margin:0;padding:0}.margin{margin:1.1rem}.padding{padding:1.1rem}.no-padding,.no-padding input{padding:0 !important}.padding-small{padding:.625rem}.no-margin,.no-margin input{margin:0 !important}@media only screen and (min-width: 0em)and (max-width: 50rem){.no-margin-small{margin:0 !important}}@media only screen and (min-width: 0em)and (max-width: 50rem){.no-padding-small{padding:0 !important}}@media only screen and (min-width: 50.0625em){.no-margin-large{margin:0 !important}}@media only screen and (min-width: 50.0625em){.no-padding-large{padding:0 !important}}.hide-small-up{display:none}@media only screen and (min-width: 50.0625em){.hide-medium-up{display:none}}@media only screen and (min-width: 75em){.hide-large-up{display:none}}.container{border:1px solid #cacaca;border-radius:5px;background-color:#fcfcfc}.shrink-small{flex:0 0 auto}a:active{color:#4688f1;text-decoration:underline}a.no-color{color:#4e4e4e}a.no-color:hover,a.no-color:active{color:#4688f1;text-decoration:underline}a.no-color:hover svg *,a.no-color:active svg *{fill:#4688f1}h2 a,p.description a{display:block}*{-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1em 0}hr.light-notch{border:1px solid #fff;border-top:1px solid #cacaca}hr.dark-notch{border:1px solid #769da3;border-top:1px solid #cacaca}hr.dashed{border:rgba(0,0,0,0);border-bottom:1px dashed #4e4e4e}.panel{z-index:12}.action-sheet{z-index:14}.route-loading .tail-spin{width:70px;height:70px;margin-top:100px}.route-loading .tail-spin stop{stop-color:#4688f1}.route-loading .tail-spin circle{fill:#4688f1}.no-javascript-warning{text-align:center;display:flex;width:100%;height:100%;padding:1.1rem;position:absolute;background-color:#fcfcfc;align-items:center;justify-content:center;z-index:33}.widget-body table .input-warning,.widget-body table td.cell-time,h4,.text-xs{font-size:.6875rem}label,h3,.text-sm{font-size:.875rem}label.checkbox,p,.text-md{font-size:1rem}.text-lg{font-size:1.125rem}h2,.text-xl{font-size:1.5rem}.number-lg,h1,.text-xxl{font-size:1.375rem}.primary-color{color:#4688f1}.secondary-color{color:#f57f34}.dark-color{color:#769da3}.primary-color-darker{color:#1f838a}.primary-color-lighter{color:#ecf3fe}.dark-color-darker{color:#5d868c}.color-storm-light{color:#91b2b7}.info-color{color:#ecf3fe}.negative-color{color:#f57f34}.positive-color{color:#12c17d}.color-volcano-light{color:#f87b78}.gray-dark,.number-lg{color:#4e4e4e}.gray,label{color:#4e4e4e}.gray-light{color:#cacaca}.gray-lighter{color:#fcfcfc}.white{color:#fff}.white-half{color:rgba(255,255,255,.5)}.black{color:#000}.black-half{color:rgba(0,0,0,.5)}.text-bold{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}p{color:#4e4e4e}h1{margin:0}h3{font-weight:normal;text-transform:uppercase;line-height:1.1rem}label{font-weight:normal;color:#646470}.number-lg{font-weight:normal;margin:0;font-size:1.125rem}.number-lg.success{color:#12c17d}.table-fixed-container{width:100%}@media only screen and (max-width: 50em){.table-fixed-container{overflow-x:auto}}.legacy-table{font-size:.9rem;color:#4e4e4e;width:100%;border:0;background-color:#fff}@media only screen and (min-width: 50.0625em){.legacy-table{border-top:1px solid #cacaca;border-bottom:1px solid #cacaca;border-top-left-radius:5px;border-top-right-radius:5px;border-collapse:separate;border-spacing:0}}.legacy-table td,.legacy-table th{text-align:left;padding:1.25rem 1.1875rem}.legacy-table thead th{font-size:.8rem;font-weight:normal;color:#4e4e4e;text-align:left;padding:.9375rem 1.1875rem;border-bottom:1px solid #cacaca;background-color:#fcfcfc}.legacy-table thead th:first-child{border-left:1px solid #cacaca;border-top-left-radius:5px}.legacy-table thead th:last-child{border-right:1px solid #cacaca;border-top-right-radius:5px}@media only screen and (max-width: 50em){.legacy-table thead th:first-child{border-left:0}.legacy-table thead th:last-child{border-right:0}}@media only screen and (min-width: 50.0625em){.legacy-table tbody th:first-child,.legacy-table tbody td:first-child,.legacy-table tfoot th:first-child,.legacy-table tfoot td:first-child{border-left:1px solid #cacaca}.legacy-table tbody th:last-child,.legacy-table tbody td:last-child,.legacy-table tfoot th:last-child,.legacy-table tfoot td:last-child{border-right:1px solid #cacaca}}.legacy-table tbody th,.legacy-table tbody td{border-top:1px dotted #cacaca}@media only screen and (min-width: 50.0625em){.legacy-table tbody td.border-left{border-left:1px solid #cacaca}.legacy-table tbody td.border-right{border-right:1px solid #cacaca}}@media only screen and (min-width: 50.0625em){.legacy-table tbody tr:first-child th,.legacy-table tbody tr:first-child td{border-top:1px solid #cacaca}}@media only screen and (min-width: 50.0625em){.legacy-table tr:nth-child(even){background-color:#fff}.legacy-table .row-subgroup+tr th,.legacy-table .row-subgroup+tr td{border-top:0 !important}}.legacy-table .is-positive{color:#12c17d}.legacy-table .is-negative{color:#f57f34}.legacy-table .row-subgroup td{font-size:.6875rem;color:#4e4e4e;text-transform:uppercase;padding:.625rem .9375rem;border-top:1px solid #cacaca;border-bottom:1px solid #cacaca;background-color:#fcfcfc;box-shadow:inset 0 .0625rem 0 0 #fff}@media only screen and (min-width: 50.0625em){.legacy-table tr.row-addanother{display:none}}.legacy-table input,.legacy-table .button,.legacy-table button,.legacy-table select{margin:0}.legacy-table .col-xs{width:50px}.legacy-table .col-sm{width:85px}.legacy-table .col-md{width:120px}.legacy-table .col-lg{width:200px}.legacy-table .col-fluid{min-width:120px}.legacy-table .col-fluid input{min-width:150px}@media only screen and (min-width: 0em)and (max-width: 50rem){.legacy-table .table-footer th:empty{display:none}}.legacy-table a{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;text-decoration:none;color:#4688f1}.legacy-table a:active{opacity:.5}.no-touchevents .legacy-table a:hover{color:#1f838a}@media only screen and (max-width: 50em){.legacy-table.table-responsive{display:block}.legacy-table.table-responsive thead,.legacy-table.table-responsive tbody,.legacy-table.table-responsive tfoot,.legacy-table.table-responsive tr,.legacy-table.table-responsive th,.legacy-table.table-responsive td{display:block;border-radius:0}}@media only screen and (min-width: 50.0625em){.legacy-table.table-responsive{table-layout:fixed}}.legacy-table.table-responsive thead{display:none}@media only screen and (min-width: 50.0625em){.legacy-table.table-responsive thead{display:table-header-group}.legacy-table.table-responsive thead th{font-size:.75rem;font-weight:normal;color:#4e4e4e;border:0;padding:.9375rem .5rem}}.legacy-table.table-responsive td,.legacy-table.table-responsive th{padding:.5625rem .625rem .5rem}@media only screen and (max-width: 50em){.legacy-table.table-responsive td,.legacy-table.table-responsive th{padding:.5625rem 0 .5rem;margin:0 .9375rem}.tr:not(.row-subgroup) .legacy-table.table-responsive td,.tr:not(.row-subgroup) .legacy-table.table-responsive th{min-height:65px}.legacy-table.table-responsive td:nth-child(2),.legacy-table.table-responsive th:nth-child(2){border-top:0 !important}.legacy-table.table-responsive td[data-col-heading]::before,.legacy-table.table-responsive th[data-col-heading]::before{content:attr(data-col-heading);font-size:.875rem;color:#4e4e4e;overflow:hidden;text-overflow:ellipsis;line-height:1rem}.legacy-table.table-responsive td.cell-xs::before,.legacy-table.table-responsive td.cell-sm::before,.legacy-table.table-responsive td.cell-md::before,.legacy-table.table-responsive th.cell-xs::before,.legacy-table.table-responsive th.cell-sm::before,.legacy-table.table-responsive th.cell-md::before{width:30%;padding-left:0;vertical-align:middle;display:inline-block}.legacy-table.table-responsive td.cell-xs>span,.legacy-table.table-responsive td.cell-sm>span,.legacy-table.table-responsive td.cell-md>span,.legacy-table.table-responsive th.cell-xs>span,.legacy-table.table-responsive th.cell-sm>span,.legacy-table.table-responsive th.cell-md>span{width:70%;vertical-align:middle;display:inline-block}.legacy-table.table-responsive td.cell-lg::before,.legacy-table.table-responsive td.cell-lg input,.legacy-table.table-responsive td.cell-title::before,.legacy-table.table-responsive td.cell-title input,.legacy-table.table-responsive td.cell-fluid::before,.legacy-table.table-responsive td.cell-fluid input,.legacy-table.table-responsive th.cell-lg::before,.legacy-table.table-responsive th.cell-lg input,.legacy-table.table-responsive th.cell-title::before,.legacy-table.table-responsive th.cell-title input,.legacy-table.table-responsive th.cell-fluid::before,.legacy-table.table-responsive th.cell-fluid input{display:block;width:100%}.legacy-table.table-responsive td.cell-lg::before,.legacy-table.table-responsive td.cell-title::before,.legacy-table.table-responsive td.cell-fluid::before,.legacy-table.table-responsive th.cell-lg::before,.legacy-table.table-responsive th.cell-title::before,.legacy-table.table-responsive th.cell-fluid::before{margin:0}.legacy-table.table-responsive td:empty,.legacy-table.table-responsive th:empty{display:none}.legacy-table.table-responsive td.cell-addanother,.legacy-table.table-responsive th.cell-addanother{display:none}.legacy-table.table-responsive td.formatted-number>span:nth-of-type(1),.legacy-table.table-responsive th.formatted-number>span:nth-of-type(1){vertical-align:middle;display:inline-block;width:70%}.legacy-table.table-responsive td .button.text:not(.remove-row),.legacy-table.table-responsive td button.text:not(.remove-row),.legacy-table.table-responsive th .button.text:not(.remove-row),.legacy-table.table-responsive th button.text:not(.remove-row){border:0;background:#4e4e4e;color:#fff}.legacy-table.table-responsive td .button.text:not(.remove-row) svg *,.legacy-table.table-responsive td button.text:not(.remove-row) svg *,.legacy-table.table-responsive th .button.text:not(.remove-row) svg *,.legacy-table.table-responsive th button.text:not(.remove-row) svg *{fill:#fff}.legacy-table.table-responsive td .button.text:not(.remove-row):hover,.legacy-table.table-responsive td button.text:not(.remove-row):hover,.legacy-table.table-responsive th .button.text:not(.remove-row):hover,.legacy-table.table-responsive th button.text:not(.remove-row):hover{background:#000}}@media only screen and (max-width: 50em){.legacy-table.table-responsive th,.legacy-table.table-responsive td.cell-title,.legacy-table.table-responsive th.cell-title,.legacy-table.table-responsive .row-subgroup td{border-top:.0625rem solid #1d2541;box-shadow:inset 0 .0625rem 0 0 #444b65;border-top:1px solid #cacaca;border-bottom:1px solid #cacaca;background-color:#fcfcfc;box-shadow:0 .0625rem 0 0 #fff;min-height:50px;padding:1.0625rem .9375rem .5rem .9375rem;margin:0}}@media only screen and (min-width: 50.0625em){.legacy-table.table-responsive th,.legacy-table.table-responsive td.cell-title,.legacy-table.table-responsive th.cell-title,.legacy-table.table-responsive .row-subgroup td{color:#4e4e4e;text-align:left;padding:.5625rem .625rem .5rem}}.legacy-table.table-responsive tfoot{min-height:65px;background-color:#fff}.legacy-table.table-responsive tfoot th,.legacy-table.table-responsive tfoot td{border-top:1px solid #cacaca}@media only screen and (min-width: 50em){._hide-over-800px{display:none}}.legacy-table.table-stacked{display:block}.legacy-table.table-stacked thead,.legacy-table.table-stacked tbody,.legacy-table.table-stacked tfoot,.legacy-table.table-stacked tr,.legacy-table.table-stacked th,.legacy-table.table-stacked td{display:block;border-radius:0}.legacy-table.table-stacked thead{display:none}.legacy-table.table-stacked td,.legacy-table.table-stacked th{padding:.5625rem .625rem .5rem;padding:.5625rem 0 .5rem;margin:0 .9375rem}.tr:not(.row-subgroup) .legacy-table.table-stacked td,.tr:not(.row-subgroup) .legacy-table.table-stacked th{min-height:65px}.legacy-table.table-stacked td:nth-child(2),.legacy-table.table-stacked th:nth-child(2){border-top:0 !important}.legacy-table.table-stacked td[data-col-heading]::before,.legacy-table.table-stacked th[data-col-heading]::before{content:attr(data-col-heading);font-size:.875rem;color:#4e4e4e;overflow:hidden;text-overflow:ellipsis;line-height:1rem}.legacy-table.table-stacked td.cell-xs::before,.legacy-table.table-stacked td.cell-sm::before,.legacy-table.table-stacked td.cell-md::before,.legacy-table.table-stacked th.cell-xs::before,.legacy-table.table-stacked th.cell-sm::before,.legacy-table.table-stacked th.cell-md::before{width:30%;padding-left:0;vertical-align:middle;display:inline-block}.legacy-table.table-stacked td.cell-xs>span,.legacy-table.table-stacked td.cell-sm>span,.legacy-table.table-stacked td.cell-md>span,.legacy-table.table-stacked th.cell-xs>span,.legacy-table.table-stacked th.cell-sm>span,.legacy-table.table-stacked th.cell-md>span{width:70%;vertical-align:middle;display:inline-block}.legacy-table.table-stacked td.cell-lg::before,.legacy-table.table-stacked td.cell-lg input,.legacy-table.table-stacked td.cell-title::before,.legacy-table.table-stacked td.cell-title input,.legacy-table.table-stacked td.cell-fluid::before,.legacy-table.table-stacked td.cell-fluid input,.legacy-table.table-stacked th.cell-lg::before,.legacy-table.table-stacked th.cell-lg input,.legacy-table.table-stacked th.cell-title::before,.legacy-table.table-stacked th.cell-title input,.legacy-table.table-stacked th.cell-fluid::before,.legacy-table.table-stacked th.cell-fluid input{display:block;width:100%}.legacy-table.table-stacked td.cell-lg::before,.legacy-table.table-stacked td.cell-title::before,.legacy-table.table-stacked td.cell-fluid::before,.legacy-table.table-stacked th.cell-lg::before,.legacy-table.table-stacked th.cell-title::before,.legacy-table.table-stacked th.cell-fluid::before{margin:0}.legacy-table.table-stacked td:empty,.legacy-table.table-stacked th:empty{display:none}.legacy-table.table-stacked td.cell-addanother,.legacy-table.table-stacked th.cell-addanother{display:none}.legacy-table.table-stacked td.formatted-number>span:nth-of-type(1),.legacy-table.table-stacked th.formatted-number>span:nth-of-type(1){vertical-align:middle;display:inline-block;width:70%}.legacy-table.table-stacked td .button.text:not(.remove-row),.legacy-table.table-stacked td button.text:not(.remove-row),.legacy-table.table-stacked th .button.text:not(.remove-row),.legacy-table.table-stacked th button.text:not(.remove-row){border:1px solid #4688f1;background:linear-gradient(-180deg, #ECF3FE 1%, #4688F1 100%);color:#fff}.legacy-table.table-stacked td .button.text:not(.remove-row) svg *,.legacy-table.table-stacked td button.text:not(.remove-row) svg *,.legacy-table.table-stacked th .button.text:not(.remove-row) svg *,.legacy-table.table-stacked th button.text:not(.remove-row) svg *{fill:#fff}.legacy-table.table-stacked th,.legacy-table.table-stacked td.cell-title,.legacy-table.table-stacked th.cell-title,.legacy-table.table-stacked .row-subgroup td{border-top:.0625rem solid #1d2541;box-shadow:inset 0 .0625rem 0 0 #444b65;border-top:1px solid #cacaca;border-bottom:1px solid #cacaca;background-color:#fcfcfc;box-shadow:0 .0625rem 0 0 #fff;min-height:50px;padding:1.0625rem .9375rem .5rem .9375rem;margin:0}.legacy-table.table-stacked tfoot{display:none}input,input[type=text],input[type=password],input[type=date],input[type=datetime],input[type=datetime-local],input[type=month],input[type=week],input[type=email],input[type=number],input[type=search],input[type=tel],input[type=time],input[type=url],input[type=color],textarea{min-height:45px;width:100%;margin:0 0 1.1rem 0;padding:.5rem;border:1px solid #cacaca;border-radius:.1875rem;resize:none;font:inherit;font-size:1rem;line-height:1rem;color:#222234;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1)}input:focus,input[type=text]:focus,input[type=password]:focus,input[type=date]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=month]:focus,input[type=week]:focus,input[type=email]:focus,input[type=number]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=time]:focus,input[type=url]:focus,input[type=color]:focus,textarea:focus{border-color:#4688f1;box-shadow:0 0 0 4px rgba(70,136,241,.15);outline:0}input::-webkit-input-placeholder,input[type=text]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder,input[type=date]::-webkit-input-placeholder,input[type=datetime]::-webkit-input-placeholder,input[type=datetime-local]::-webkit-input-placeholder,input[type=month]::-webkit-input-placeholder,input[type=week]::-webkit-input-placeholder,input[type=email]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=search]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,input[type=time]::-webkit-input-placeholder,input[type=url]::-webkit-input-placeholder,input[type=color]::-webkit-input-placeholder,textarea::-webkit-input-placeholder{font-size:1rem;font-weight:lighter;line-height:1rem;padding-top:2px;color:#cacaca}input:-moz-placeholder,input[type=text]:-moz-placeholder,input[type=password]:-moz-placeholder,input[type=date]:-moz-placeholder,input[type=datetime]:-moz-placeholder,input[type=datetime-local]:-moz-placeholder,input[type=month]:-moz-placeholder,input[type=week]:-moz-placeholder,input[type=email]:-moz-placeholder,input[type=number]:-moz-placeholder,input[type=search]:-moz-placeholder,input[type=tel]:-moz-placeholder,input[type=time]:-moz-placeholder,input[type=url]:-moz-placeholder,input[type=color]:-moz-placeholder,textarea:-moz-placeholder{font-size:1rem;font-weight:lighter;line-height:1rem;padding-top:2px;color:#cacaca}input::-moz-placeholder,input[type=text]::-moz-placeholder,input[type=password]::-moz-placeholder,input[type=date]::-moz-placeholder,input[type=datetime]::-moz-placeholder,input[type=datetime-local]::-moz-placeholder,input[type=month]::-moz-placeholder,input[type=week]::-moz-placeholder,input[type=email]::-moz-placeholder,input[type=number]::-moz-placeholder,input[type=search]::-moz-placeholder,input[type=tel]::-moz-placeholder,input[type=time]::-moz-placeholder,input[type=url]::-moz-placeholder,input[type=color]::-moz-placeholder,textarea::-moz-placeholder{font-size:1rem;font-weight:lighter;line-height:1rem;padding-top:2px;color:#cacaca}input:-ms-input-placeholder,input[type=text]:-ms-input-placeholder,input[type=password]:-ms-input-placeholder,input[type=date]:-ms-input-placeholder,input[type=datetime]:-ms-input-placeholder,input[type=datetime-local]:-ms-input-placeholder,input[type=month]:-ms-input-placeholder,input[type=week]:-ms-input-placeholder,input[type=email]:-ms-input-placeholder,input[type=number]:-ms-input-placeholder,input[type=search]:-ms-input-placeholder,input[type=tel]:-ms-input-placeholder,input[type=time]:-ms-input-placeholder,input[type=url]:-ms-input-placeholder,input[type=color]:-ms-input-placeholder,textarea:-ms-input-placeholder{font-size:1rem;font-weight:lighter;line-height:1rem;padding-top:2px;color:#cacaca}.disabled input,input.disabled,input:disabled,.disabled input[type=text],input[type=text].disabled,input[type=text]:disabled,.disabled input[type=password],input[type=password].disabled,input[type=password]:disabled,.disabled input[type=date],input[type=date].disabled,input[type=date]:disabled,.disabled input[type=datetime],input[type=datetime].disabled,input[type=datetime]:disabled,.disabled input[type=datetime-local],input[type=datetime-local].disabled,input[type=datetime-local]:disabled,.disabled input[type=month],input[type=month].disabled,input[type=month]:disabled,.disabled input[type=week],input[type=week].disabled,input[type=week]:disabled,.disabled input[type=email],input[type=email].disabled,input[type=email]:disabled,.disabled input[type=number],input[type=number].disabled,input[type=number]:disabled,.disabled input[type=search],input[type=search].disabled,input[type=search]:disabled,.disabled input[type=tel],input[type=tel].disabled,input[type=tel]:disabled,.disabled input[type=time],input[type=time].disabled,input[type=time]:disabled,.disabled input[type=url],input[type=url].disabled,input[type=url]:disabled,.disabled input[type=color],input[type=color].disabled,input[type=color]:disabled,.disabled textarea,textarea.disabled,textarea:disabled{background-color:#fcfcfc;color:#4e4e4e;border:1px solid #fff;box-shadow:none;pointer-events:none;font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.disabled input::-webkit-input-placeholder,input.disabled::-webkit-input-placeholder,input:disabled::-webkit-input-placeholder,.disabled input[type=text]::-webkit-input-placeholder,input[type=text].disabled::-webkit-input-placeholder,input[type=text]:disabled::-webkit-input-placeholder,.disabled input[type=password]::-webkit-input-placeholder,input[type=password].disabled::-webkit-input-placeholder,input[type=password]:disabled::-webkit-input-placeholder,.disabled input[type=date]::-webkit-input-placeholder,input[type=date].disabled::-webkit-input-placeholder,input[type=date]:disabled::-webkit-input-placeholder,.disabled input[type=datetime]::-webkit-input-placeholder,input[type=datetime].disabled::-webkit-input-placeholder,input[type=datetime]:disabled::-webkit-input-placeholder,.disabled input[type=datetime-local]::-webkit-input-placeholder,input[type=datetime-local].disabled::-webkit-input-placeholder,input[type=datetime-local]:disabled::-webkit-input-placeholder,.disabled input[type=month]::-webkit-input-placeholder,input[type=month].disabled::-webkit-input-placeholder,input[type=month]:disabled::-webkit-input-placeholder,.disabled input[type=week]::-webkit-input-placeholder,input[type=week].disabled::-webkit-input-placeholder,input[type=week]:disabled::-webkit-input-placeholder,.disabled input[type=email]::-webkit-input-placeholder,input[type=email].disabled::-webkit-input-placeholder,input[type=email]:disabled::-webkit-input-placeholder,.disabled input[type=number]::-webkit-input-placeholder,input[type=number].disabled::-webkit-input-placeholder,input[type=number]:disabled::-webkit-input-placeholder,.disabled input[type=search]::-webkit-input-placeholder,input[type=search].disabled::-webkit-input-placeholder,input[type=search]:disabled::-webkit-input-placeholder,.disabled input[type=tel]::-webkit-input-placeholder,input[type=tel].disabled::-webkit-input-placeholder,input[type=tel]:disabled::-webkit-input-placeholder,.disabled input[type=time]::-webkit-input-placeholder,input[type=time].disabled::-webkit-input-placeholder,input[type=time]:disabled::-webkit-input-placeholder,.disabled input[type=url]::-webkit-input-placeholder,input[type=url].disabled::-webkit-input-placeholder,input[type=url]:disabled::-webkit-input-placeholder,.disabled input[type=color]::-webkit-input-placeholder,input[type=color].disabled::-webkit-input-placeholder,input[type=color]:disabled::-webkit-input-placeholder,.disabled textarea::-webkit-input-placeholder,textarea.disabled::-webkit-input-placeholder,textarea:disabled::-webkit-input-placeholder{color:#fcfcfc}.disabled input:-moz-placeholder,input.disabled:-moz-placeholder,input:disabled:-moz-placeholder,.disabled input[type=text]:-moz-placeholder,input[type=text].disabled:-moz-placeholder,input[type=text]:disabled:-moz-placeholder,.disabled input[type=password]:-moz-placeholder,input[type=password].disabled:-moz-placeholder,input[type=password]:disabled:-moz-placeholder,.disabled input[type=date]:-moz-placeholder,input[type=date].disabled:-moz-placeholder,input[type=date]:disabled:-moz-placeholder,.disabled input[type=datetime]:-moz-placeholder,input[type=datetime].disabled:-moz-placeholder,input[type=datetime]:disabled:-moz-placeholder,.disabled input[type=datetime-local]:-moz-placeholder,input[type=datetime-local].disabled:-moz-placeholder,input[type=datetime-local]:disabled:-moz-placeholder,.disabled input[type=month]:-moz-placeholder,input[type=month].disabled:-moz-placeholder,input[type=month]:disabled:-moz-placeholder,.disabled input[type=week]:-moz-placeholder,input[type=week].disabled:-moz-placeholder,input[type=week]:disabled:-moz-placeholder,.disabled input[type=email]:-moz-placeholder,input[type=email].disabled:-moz-placeholder,input[type=email]:disabled:-moz-placeholder,.disabled input[type=number]:-moz-placeholder,input[type=number].disabled:-moz-placeholder,input[type=number]:disabled:-moz-placeholder,.disabled input[type=search]:-moz-placeholder,input[type=search].disabled:-moz-placeholder,input[type=search]:disabled:-moz-placeholder,.disabled input[type=tel]:-moz-placeholder,input[type=tel].disabled:-moz-placeholder,input[type=tel]:disabled:-moz-placeholder,.disabled input[type=time]:-moz-placeholder,input[type=time].disabled:-moz-placeholder,input[type=time]:disabled:-moz-placeholder,.disabled input[type=url]:-moz-placeholder,input[type=url].disabled:-moz-placeholder,input[type=url]:disabled:-moz-placeholder,.disabled input[type=color]:-moz-placeholder,input[type=color].disabled:-moz-placeholder,input[type=color]:disabled:-moz-placeholder,.disabled textarea:-moz-placeholder,textarea.disabled:-moz-placeholder,textarea:disabled:-moz-placeholder{color:#fcfcfc}.disabled input::-moz-placeholder,input.disabled::-moz-placeholder,input:disabled::-moz-placeholder,.disabled input[type=text]::-moz-placeholder,input[type=text].disabled::-moz-placeholder,input[type=text]:disabled::-moz-placeholder,.disabled input[type=password]::-moz-placeholder,input[type=password].disabled::-moz-placeholder,input[type=password]:disabled::-moz-placeholder,.disabled input[type=date]::-moz-placeholder,input[type=date].disabled::-moz-placeholder,input[type=date]:disabled::-moz-placeholder,.disabled input[type=datetime]::-moz-placeholder,input[type=datetime].disabled::-moz-placeholder,input[type=datetime]:disabled::-moz-placeholder,.disabled input[type=datetime-local]::-moz-placeholder,input[type=datetime-local].disabled::-moz-placeholder,input[type=datetime-local]:disabled::-moz-placeholder,.disabled input[type=month]::-moz-placeholder,input[type=month].disabled::-moz-placeholder,input[type=month]:disabled::-moz-placeholder,.disabled input[type=week]::-moz-placeholder,input[type=week].disabled::-moz-placeholder,input[type=week]:disabled::-moz-placeholder,.disabled input[type=email]::-moz-placeholder,input[type=email].disabled::-moz-placeholder,input[type=email]:disabled::-moz-placeholder,.disabled input[type=number]::-moz-placeholder,input[type=number].disabled::-moz-placeholder,input[type=number]:disabled::-moz-placeholder,.disabled input[type=search]::-moz-placeholder,input[type=search].disabled::-moz-placeholder,input[type=search]:disabled::-moz-placeholder,.disabled input[type=tel]::-moz-placeholder,input[type=tel].disabled::-moz-placeholder,input[type=tel]:disabled::-moz-placeholder,.disabled input[type=time]::-moz-placeholder,input[type=time].disabled::-moz-placeholder,input[type=time]:disabled::-moz-placeholder,.disabled input[type=url]::-moz-placeholder,input[type=url].disabled::-moz-placeholder,input[type=url]:disabled::-moz-placeholder,.disabled input[type=color]::-moz-placeholder,input[type=color].disabled::-moz-placeholder,input[type=color]:disabled::-moz-placeholder,.disabled textarea::-moz-placeholder,textarea.disabled::-moz-placeholder,textarea:disabled::-moz-placeholder{color:#fcfcfc}.disabled input:-ms-input-placeholder,input.disabled:-ms-input-placeholder,input:disabled:-ms-input-placeholder,.disabled input[type=text]:-ms-input-placeholder,input[type=text].disabled:-ms-input-placeholder,input[type=text]:disabled:-ms-input-placeholder,.disabled input[type=password]:-ms-input-placeholder,input[type=password].disabled:-ms-input-placeholder,input[type=password]:disabled:-ms-input-placeholder,.disabled input[type=date]:-ms-input-placeholder,input[type=date].disabled:-ms-input-placeholder,input[type=date]:disabled:-ms-input-placeholder,.disabled input[type=datetime]:-ms-input-placeholder,input[type=datetime].disabled:-ms-input-placeholder,input[type=datetime]:disabled:-ms-input-placeholder,.disabled input[type=datetime-local]:-ms-input-placeholder,input[type=datetime-local].disabled:-ms-input-placeholder,input[type=datetime-local]:disabled:-ms-input-placeholder,.disabled input[type=month]:-ms-input-placeholder,input[type=month].disabled:-ms-input-placeholder,input[type=month]:disabled:-ms-input-placeholder,.disabled input[type=week]:-ms-input-placeholder,input[type=week].disabled:-ms-input-placeholder,input[type=week]:disabled:-ms-input-placeholder,.disabled input[type=email]:-ms-input-placeholder,input[type=email].disabled:-ms-input-placeholder,input[type=email]:disabled:-ms-input-placeholder,.disabled input[type=number]:-ms-input-placeholder,input[type=number].disabled:-ms-input-placeholder,input[type=number]:disabled:-ms-input-placeholder,.disabled input[type=search]:-ms-input-placeholder,input[type=search].disabled:-ms-input-placeholder,input[type=search]:disabled:-ms-input-placeholder,.disabled input[type=tel]:-ms-input-placeholder,input[type=tel].disabled:-ms-input-placeholder,input[type=tel]:disabled:-ms-input-placeholder,.disabled input[type=time]:-ms-input-placeholder,input[type=time].disabled:-ms-input-placeholder,input[type=time]:disabled:-ms-input-placeholder,.disabled input[type=url]:-ms-input-placeholder,input[type=url].disabled:-ms-input-placeholder,input[type=url]:disabled:-ms-input-placeholder,.disabled input[type=color]:-ms-input-placeholder,input[type=color].disabled:-ms-input-placeholder,input[type=color]:disabled:-ms-input-placeholder,.disabled textarea:-ms-input-placeholder,textarea.disabled:-ms-input-placeholder,textarea:disabled:-ms-input-placeholder{color:#fcfcfc}textarea{resize:vertical;min-height:auto}input[type=number]{display:inline-block}.transparent input{border:1px solid rgba(0,0,0,0);background-color:rgba(0,0,0,0);box-shadow:none;transition:background-color ease-in-out .15s,border ease-in-out .15s}.transparent input:focus{border:1px solid #4688f1;background-color:#fff}.transparent input:hover{border:1px solid #bbb;background-color:#fff}.disabled input,input.disabled,input:disabled{background-color:#fcfcfc;color:#4e4e4e;border:1px solid #fff;box-shadow:none;pointer-events:none;font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.disabled input::-webkit-input-placeholder,input.disabled::-webkit-input-placeholder,input:disabled::-webkit-input-placeholder{color:#fcfcfc}.disabled input:-moz-placeholder,input.disabled:-moz-placeholder,input:disabled:-moz-placeholder{color:#fcfcfc}.disabled input::-moz-placeholder,input.disabled::-moz-placeholder,input:disabled::-moz-placeholder{color:#fcfcfc}.disabled input:-ms-input-placeholder,input.disabled:-ms-input-placeholder,input:disabled:-ms-input-placeholder{color:#fcfcfc}.inline-label{margin-bottom:0}.inline-label .form-label{font-size:1rem}.inline-label input{margin-bottom:0}.inline-label.prefix .form-label{border-right:0;border-radius:5px 0 0 5px}.inline-label.prefix input{border-top-left-radius:0;border-bottom-left-radius:0}.inline-label.suffix .form-label{border-left:0;border-radius:0 5px 5px 0}.inline-label.suffix input{border-top-right-radius:0;border-bottom-right-radius:0}select{color:#222234;min-height:45px;border-color:#cacaca;border-radius:.1875rem;line-height:1.5;box-shadow:none;padding-right:1.875rem;background-color:#fff !important}select::-ms-expand{display:none}select:hover{background-color:#fff}select:focus{border:1px solid #4688f1 !important;box-shadow:0 0 0 5px rgba(70,136,241,.15) !important}input.taskname{font-size:2rem;padding:1rem}input.disabled,input:disabled{background-color:#fcfcfc;color:#4e4e4e;border:1px solid #fff;box-shadow:none;pointer-events:none;font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}input.disabled::-webkit-input-placeholder,input:disabled::-webkit-input-placeholder{color:#fcfcfc}input.disabled:-moz-placeholder,input:disabled:-moz-placeholder{color:#fcfcfc}input.disabled::-moz-placeholder,input:disabled::-moz-placeholder{color:#fcfcfc}input.disabled:-ms-input-placeholder,input:disabled:-ms-input-placeholder{color:#fcfcfc}textarea.disabled,textarea:disabled{background-color:#fcfcfc;color:#4e4e4e;border:1px solid #fff;box-shadow:none;pointer-events:none;font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}textarea.disabled::-webkit-input-placeholder,textarea:disabled::-webkit-input-placeholder{color:#fcfcfc}textarea.disabled:-moz-placeholder,textarea:disabled:-moz-placeholder{color:#fcfcfc}textarea.disabled::-moz-placeholder,textarea:disabled::-moz-placeholder{color:#fcfcfc}textarea.disabled:-ms-input-placeholder,textarea:disabled:-ms-input-placeholder{color:#fcfcfc}.inline-submit{margin-bottom:0}.inline-submit input{margin-right:.625rem}label.required abbr[title]{color:#ff513d;border-bottom:none;text-decoration:none}p.form-help{margin-top:-10px}label.checkbox{font-weight:normal;line-height:22px;color:#4e4e4e;display:inline-block;min-height:25px;padding-left:0;margin-right:32px;position:relative;cursor:pointer}label.radio{line-height:22px;display:inline-block;min-height:25px;padding-left:32px;margin-right:32px;position:relative;cursor:pointer}label.radio h3{margin:0}input[type=radio],input[type=checkbox]{display:none}label.radio:before,input[type=radio]:checked+label.radio:after{content:"";display:inline-block;position:absolute;border-radius:50%}label.radio:before{width:24px;height:24px;margin-right:10px;top:-2px;left:0;border:1px solid #cacaca;background-color:#fff}input[type=radio]:checked+label.radio:after{width:12px;height:12px;top:4px;left:6px;background-color:#4688f1}label.checkbox:before{content:"";display:inline-block;width:25px;height:25px;margin-right:12px;position:absolute;top:-2px;left:0;border:1px solid #cacaca;border-radius:5px;background-color:#fff}input[type=checkbox]:checked+label.checkbox:before{content:"";font-family:"iconic-lg";font-size:15px;line-height:25px;color:#fff;text-align:center;border:0;background-color:#4688f1}div.error{padding-bottom:1.1rem}div.error input{margin-bottom:5px;border-style:solid;border-color:#ff513d}div.error label,div.error small{font-weight:normal;color:#ff513d}div.error small{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.iconic-property-fill,.iconic-property-text{stroke:none !important}.iconic-property-stroke{fill:none !important}svg.iconic.iconic-fluid{height:100% !important;width:100% !important}svg.iconic.iconic-lg:not(.iconic-size-sm):not(.iconic-size-md):not(.iconic-size-lg),svg.iconic.iconic-size-xs,.iconic.iconic-size-xs svg{width:10px;height:10px}svg.iconic.iconic-sm:not(.iconic-size-md):not(.iconic-size-lg):not(.iconic-size-xs),svg.iconic.iconic-size-sm,.iconic.iconic-size-sm svg{width:16px;height:16px}svg.iconic.iconic-md:not(.iconic-size-sm):not(.iconic-size-lg):not(.iconic-size-xs),svg.iconic.iconic-size-md,.iconic.iconic-size-md svg{width:32px;height:32px}svg.iconic.iconic-lg:not(.iconic-size-sm):not(.iconic-size-md):not(.iconic-size-xs),svg.iconic.iconic-size-lg,.iconic.iconic-size-lg svg{width:128px;height:128px}svg.iconic-sm>g.iconic-md,svg.iconic-sm>g.iconic-lg,svg.iconic-md>g.iconic-sm,svg.iconic-md>g.iconic-lg,svg.iconic-lg>g.iconic-sm,svg.iconic-lg>g.iconic-md{display:none}svg.iconic.iconic-icon-sm>g.iconic-lg,svg.iconic.iconic-icon-md>g.iconic-lg{display:none}svg.iconic-sm:not(.iconic-icon-md):not(.iconic-icon-lg)>g.iconic-sm,svg.iconic-md.iconic-icon-sm>g.iconic-sm,svg.iconic-lg.iconic-icon-sm>g.iconic-sm{display:inline}svg.iconic-md:not(.iconic-icon-sm):not(.iconic-icon-lg)>g.iconic-md,svg.iconic-sm.iconic-icon-md>g.iconic-md,svg.iconic-lg.iconic-icon-md>g.iconic-md{display:inline}svg.iconic-lg:not(.iconic-icon-sm):not(.iconic-icon-md)>g.iconic-lg,svg.iconic-sm.iconic-icon-lg>g.iconic-lg,svg.iconic-md.iconic-icon-lg>g.iconic-lg{display:inline}img.iconic{visibility:hidden}.iconic.iconic-file[data-file-extension=doc] *,.iconic.iconic-file[data-file-extension=docx] *{fill:#4e8ce3;stroke:#4e8ce3}.iconic.iconic-file[data-file-extension=xlsx] *,.iconic.iconic-file[data-file-extension=csv] *{fill:#19a764;stroke:#19a764}.iconic.iconic-file[data-file-extension=pdf] *,.iconic.iconic-file[data-file-extension=jpg] *,.iconic.iconic-file[data-file-extension=png] *,.iconic.iconic-file[data-file-extension=jpeg] *{fill:#df493d;stroke:#df493d}.icon{vertical-align:middle;display:inline-block;position:relative}.button .icon,button .icon{margin-right:.375rem;margin-left:.375rem;top:-0.0625rem}.button .icon *,button .icon *{fill:#fff;stroke:#fff}.button.secondary .icon *,button.secondary .icon *{fill:#fff;stroke:#fff}.button.text .icon *,button.text .icon *{fill:#cacaca;stroke:#cacaca}.button.disabled .icon *,button.disabled .icon *{fill:#cacaca;stroke:#cacaca}.plan-slot-item .icon.fi-flag{color:#f57f34;margin-right:.125rem}.plan-slot-item-actions>.icon{display:none}@media only screen and (min-width: 0em)and (max-width: 50rem){.plan-slot-item-actions>.icon{display:block}}.btn_edit_plan .icon,.btn_delete_plan .icon{color:#4688f1}.btn_edit_plan .icon{margin-right:.3125rem}.icon.is-positive *{fill:#12c17d;stroke:#12c17d}.icon.is-negative *{fill:#f57f34;stroke:#f57f34}/*! Hint.css - v2.3.1 - 2016-06-05
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour; Licensed  */[class*=hint--]{position:relative;display:inline-block}[class*=hint--]:before,[class*=hint--]:after{position:absolute;transform:translate3d(0, 0, 0);visibility:hidden;opacity:0;z-index:15;pointer-events:none;transition:.3s ease;transition-delay:0ms}[class*=hint--]:hover:before,[class*=hint--]:hover:after,.hint__container:hover [class*=hint--]:before,.hint__container:hover [class*=hint--]:after{visibility:visible;opacity:1;transition-delay:100ms}[class*=hint--]:before{content:"";position:absolute;background:rgba(0,0,0,0);border:6px solid rgba(0,0,0,0);z-index:16}[class*=hint--]:after{background:#222234;color:#fff;padding:7px 9px;font-size:13px !important;text-transform:none !important;font-family:"Inter",Helvetica,Arial,sans-serif !important;line-height:18px;border-radius:4px;white-space:nowrap}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label=""]:before,[aria-label=""]:after,[data-hint=""]:before,[data-hint=""]:after{display:none !important}.hint--capitalize:after{text-transform:capitalize !important}.hint--top-left:before{border-top-color:#222234}.hint--top-right:before{border-top-color:#222234}.hint--top:before{border-top-color:#222234}.hint--bottom-left:before{border-bottom-color:#222234}.hint--bottom-right:before{border-bottom-color:#222234}.hint--bottom:before{border-bottom-color:#222234}.hint--left:before{border-left-color:#222234}.hint--right:before{border-right-color:#222234}.hint--top:before{margin-bottom:-11px}.hint--top:before,.hint--top:after{bottom:100%;left:50%}.hint--top:before{left:calc(50% - 6px)}.hint--top:after{transform:translateX(-50%)}.hint--top:hover:before{transform:translateY(-8px)}.hint--top:hover:after{transform:translateX(-50%) translateY(-8px)}.hint--bottom:before{margin-top:-11px}.hint--bottom:before,.hint--bottom:after{top:100%;left:50%}.hint--bottom:before{left:calc(50% - 6px)}.hint--bottom:after{transform:translateX(-50%)}.hint--bottom:hover:before{transform:translateY(8px)}.hint--bottom:hover:after{transform:translateX(-50%) translateY(8px)}.hint--right:before{margin-left:-11px;margin-bottom:-6px}.hint--right:after{margin-bottom:-14px}.hint--right:before,.hint--right:after{left:100%;bottom:50%}.hint--right:hover:before{transform:translateX(8px)}.hint--right:hover:after{transform:translateX(8px)}.hint--right-center:hover:after{transform:translate(8px, 25%)}.hint--left:before{margin-right:-11px;margin-bottom:-6px}.hint--left:after{margin-bottom:-14px}.hint--left:before,.hint--left:after{right:100%;bottom:50%}.hint--left:hover:before{transform:translateX(-8px)}.hint--left:hover:after{transform:translateX(-8px)}.hint--top-left:before{margin-bottom:-11px}.hint--top-left:before,.hint--top-left:after{bottom:100%;left:50%}.hint--top-left:before{left:calc(50% - 6px)}.hint--top-left:after{transform:translateX(-100%)}.hint--top-left:after{margin-left:12px}.hint--top-left:hover:before{transform:translateY(-8px)}.hint--top-left:hover:after{transform:translateX(-100%) translateY(-8px)}.hint--top-right:before{margin-bottom:-11px}.hint--top-right:before,.hint--top-right:after{bottom:100%;left:50%}.hint--top-right:before{left:calc(50% - 6px)}.hint--top-right:after{transform:translateX(0)}.hint--top-right:after{margin-left:-12px}.hint--top-right:hover:before{transform:translateY(-8px)}.hint--top-right:hover:after{transform:translateY(-8px)}.hint--bottom-left:before{margin-top:-11px}.hint--bottom-left:before,.hint--bottom-left:after{top:100%;left:50%}.hint--bottom-left:before{left:calc(50% - 6px)}.hint--bottom-left:after{transform:translateX(-100%)}.hint--bottom-left:after{margin-left:12px}.hint--bottom-left:hover:before{transform:translateY(8px)}.hint--bottom-left:hover:after{transform:translateX(-100%) translateY(8px)}.hint--bottom-right:before{margin-top:-11px}.hint--bottom-right:before,.hint--bottom-right:after{top:100%;left:50%}.hint--bottom-right:before{left:calc(50% - 6px)}.hint--bottom-right:after{transform:translateX(0)}.hint--bottom-right:after{margin-left:-12px}.hint--bottom-right-creator:after{margin-left:-50px}.hint--bottom-right:hover:before{transform:translateY(8px)}.hint--bottom-right:hover:after{transform:translateY(8px)}.hint--small:after,.hint--medium:after,.hint--large:after{white-space:normal;line-height:1.4em}.hint--small:after{width:85px}.hint--medium:after{width:150px}.hint--large:after{width:300px}[class*=hint--]:after{box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.03)}.hint--error:after{background-color:#ff513d}.hint--error.hint--top-left:before{border-top-color:#ff513d}.hint--error.hint--top-right:before{border-top-color:#ff513d}.hint--error.hint--top:before{border-top-color:#ff513d}.hint--error.hint--bottom-left:before{border-bottom-color:#ff513d}.hint--error.hint--bottom-right:before{border-bottom-color:#ff513d}.hint--error.hint--bottom:before{border-bottom-color:#ff513d}.hint--error.hint--left:before{border-left-color:#ff513d}.hint--error.hint--right:before{border-right-color:#ff513d}.hint--warning:after{background-color:#ff9100}.hint--warning.hint--top-left:before{border-top-color:#ff9100}.hint--warning.hint--top-right:before{border-top-color:#ff9100}.hint--warning.hint--top:before{border-top-color:#ff9100}.hint--warning.hint--bottom-left:before{border-bottom-color:#ff9100}.hint--warning.hint--bottom-right:before{border-bottom-color:#ff9100}.hint--warning.hint--bottom:before{border-bottom-color:#ff9100}.hint--warning.hint--left:before{border-left-color:#ff9100}.hint--warning.hint--right:before{border-right-color:#ff9100}.hint--info:after{background-color:#222234}.hint--info.hint--top-left:before{border-top-color:#222234}.hint--info.hint--top-right:before{border-top-color:#222234}.hint--info.hint--top:before{border-top-color:#222234}.hint--info.hint--bottom-left:before{border-bottom-color:#222234}.hint--info.hint--bottom-right:before{border-bottom-color:#222234}.hint--info.hint--bottom:before{border-bottom-color:#222234}.hint--info.hint--left:before{border-left-color:#222234}.hint--info.hint--right:before{border-right-color:#222234}.hint--success:after{background-color:#13bf1f}.hint--success.hint--top-left:before{border-top-color:#13bf1f}.hint--success.hint--top-right:before{border-top-color:#13bf1f}.hint--success.hint--top:before{border-top-color:#13bf1f}.hint--success.hint--bottom-left:before{border-bottom-color:#13bf1f}.hint--success.hint--bottom-right:before{border-bottom-color:#13bf1f}.hint--success.hint--bottom:before{border-bottom-color:#13bf1f}.hint--success.hint--left:before{border-left-color:#13bf1f}.hint--success.hint--right:before{border-right-color:#13bf1f}.hint--blocked:after{background-color:#ffd635;color:#222234}.hint--blocked.hint--top-left:before{border-top-color:#ffd635}.hint--blocked.hint--top-right:before{border-top-color:#ffd635}.hint--blocked.hint--top:before{border-top-color:#ffd635}.hint--blocked.hint--bottom-left:before{border-bottom-color:#ffd635}.hint--blocked.hint--bottom-right:before{border-bottom-color:#ffd635}.hint--blocked.hint--bottom:before{border-bottom-color:#ffd635}.hint--blocked.hint--left:before{border-left-color:#ffd635}.hint--blocked.hint--right:before{border-right-color:#ffd635}.hint--upsell:after{background-color:#fd4382;border-color:#fd4382}.hint--upsell.hint--top-left:before{border-top-color:#fd4382}.hint--upsell.hint--top-right:before{border-top-color:#fd4382}.hint--upsell.hint--top:before{border-top-color:#fd4382}.hint--upsell.hint--bottom-left:before{border-bottom-color:#fd4382}.hint--upsell.hint--bottom-right:before{border-bottom-color:#fd4382}.hint--upsell.hint--bottom:before{border-bottom-color:#fd4382}.hint--upsell.hint--left:before{border-left-color:#fd4382}.hint--upsell.hint--right:before{border-right-color:#fd4382}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{transform:translateY(-8px)}.hint--always.hint--top:after{transform:translateX(-50%) translateY(-8px)}.hint--always.hint--top-left:before{transform:translateY(-8px)}.hint--always.hint--top-left:after{transform:translateX(-100%) translateY(-8px)}.hint--always.hint--top-right:before{transform:translateY(-8px)}.hint--always.hint--top-right:after{transform:translateY(-8px)}.hint--always.hint--bottom:before{transform:translateY(8px)}.hint--always.hint--bottom:after{transform:translateX(-50%) translateY(8px)}.hint--always.hint--bottom-left:before{transform:translateY(8px)}.hint--always.hint--bottom-left:after{transform:translateX(-100%) translateY(8px)}.hint--always.hint--bottom-right:before{transform:translateY(8px)}.hint--always.hint--bottom-right:after{transform:translateY(8px)}.hint--always.hint--left:before{transform:translateX(-8px)}.hint--always.hint--left:after{transform:translateX(-8px)}.hint--always.hint--right:before{transform:translateX(8px)}.hint--always.hint--right:after{transform:translateX(8px)}.hint--no-animate:before,.hint--no-animate:after{transition-duration:0ms}.hint--bounce:before,.hint--bounce:after{transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(0.71, 1.7, 0.77, 1.24)}.react-datepicker__year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-left:-8px;position:absolute}.react-datepicker__year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{box-sizing:content-box;position:absolute;border:8px solid rgba(0,0,0,0);height:0;width:1px}.react-datepicker__year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{content:"";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#f4f4f5}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{border-top:none;border-bottom-color:#fff}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{top:-1px;border-bottom-color:#f4f4f5}.react-datepicker__year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker__year-read-view--down-arrow,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{border-bottom:none;border-top-color:#fff}.react-datepicker__year-read-view--down-arrow::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{bottom:-1px;border-top-color:#f4f4f5}.react-datepicker{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;background-color:#fff;color:#222234;border:1px solid #f4f4f5;border-radius:.1875rem;display:inline-block;position:relative;box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.react-datepicker{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{margin-top:10px}.react-datepicker-popper[data-placement^=top]{margin-bottom:10px}.react-datepicker-popper[data-placement^=right]{margin-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{margin-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#fff;border-bottom:1px solid #f4f4f5;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;padding-top:8px;padding-bottom:3px;position:relative}.react-datepicker__header .react-datepicker__day-name{margin-top:8px;color:#222234;cursor:auto !important;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.react-datepicker__header__dropdown--select{margin-top:-16px}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select{display:inline-block;margin:0 2px}.react-datepicker__current-month{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;margin-top:0;color:#000}.react-datepicker__current-month--hasYearDropdown{margin-bottom:16px}.react-datepicker__navigation{line-height:1.7rem;text-align:center;cursor:pointer;position:absolute;top:10px;width:0;border:.45rem solid rgba(0,0,0,0);z-index:1}.react-datepicker__navigation--previous{left:10px;border-right-color:#222234}.react-datepicker__navigation--previous:hover{border-right-color:#0e0e15}.react-datepicker__navigation--next{right:10px;border-left-color:#222234}.react-datepicker__navigation--next:hover{border-left-color:#0e0e15}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#222234}.react-datepicker__navigation--years-previous:hover{border-top-color:#0e0e15}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#222234}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#0e0e15}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__week-number{color:#cacaca;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__day-name,.react-datepicker__day{display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__day{cursor:pointer}.react-datepicker__day:hover{border-radius:.1875rem;background-color:#fff;text-decoration:underline}.react-datepicker__day--today{font-weight:bold}.react-datepicker__day--highlighted{border-radius:.1875rem;background-color:#13bf1f;color:#fff}.react-datepicker__day--highlighted:hover{background-color:#11a81b}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range{border-radius:.1875rem;background-color:#222234;color:#fff}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover{background-color:#181825}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range){background-color:rgba(34,34,52,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range){background-color:#fff;color:#222234}.react-datepicker__day--disabled{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;cursor:default;color:#cacaca;width:1.7rem;line-height:1.7rem !important}.react-datepicker__day--disabled:hover{background-color:rgba(0,0,0,0)}.react-datepicker__input-container{position:relative;display:inline-block}.react-datepicker__year-read-view{width:50%;left:25%;position:absolute;bottom:25px;border:1px solid rgba(0,0,0,0);border-radius:.1875rem}.react-datepicker__year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow{border-top-color:#b1b1b1}.react-datepicker__year-read-view--down-arrow{border-top-color:#cacaca;margin-bottom:3px;left:5px;top:9px;position:relative;border-width:.45rem}.react-datepicker__year-read-view--selected-year{right:.45rem;position:relative}.react-datepicker__year-dropdown{background-color:#fff;position:absolute;width:50%;left:25%;top:30px;text-align:center;border-radius:.1875rem;border:1px solid #f4f4f5}.react-datepicker__year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type{border-top-left-radius:.1875rem;border-top-right-radius:.1875rem}.react-datepicker__year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;user-select:none;border-bottom-left-radius:.1875rem;border-bottom-right-radius:.1875rem}.react-datepicker__year-option:hover{background-color:#cacaca}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b1b1b1}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b1b1b1}.react-datepicker__year-option--selected{position:absolute;left:30px}.react-datepicker__close-icon{background-color:rgba(0,0,0,0);border:0;cursor:pointer;display:inline-block;height:0;outline:0;padding:0;vertical-align:middle}.react-datepicker__close-icon::after{background-color:#222234;border-radius:50%;bottom:0;box-sizing:border-box;color:#fff;content:"×";cursor:pointer;font-size:12px;height:16px;width:16px;line-height:1;margin:-8px auto 0;padding:2px;position:absolute;right:7px;text-align:center;top:50%}.react-datepicker__today-button{background:#fff;border-top:1px solid #f4f4f5;color:#4688f1;cursor:pointer;text-align:center;font-weight:bold;padding:10px 0}.react-datepicker-popper{z-index:26}.date-input-wrapper .date-picker-input{width:auto;padding-left:1.9375rem}.date-input-wrapper .date-picker-icon{position:absolute;top:30%;left:.625rem;width:1rem;height:1rem;fill:#4e4e4e}.DayPicker{display:block}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) *{outline:none}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Day{border-radius:3px}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Months{justify-content:space-between}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month{border-collapse:separate;border-spacing:8px;margin:0;width:49%;min-width:290px;table-layout:fixed}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton{right:0;top:0}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton:before{content:"";width:6px;height:3px;display:block;position:absolute;top:50%;margin-top:-2px;left:-1px}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton.DayPicker-NavButton--prev{left:0;right:auto}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton.DayPicker-NavButton--prev:before{left:15px}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Caption div{text-align:center;font-weight:bold}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled){font-weight:bold;box-sizing:border-box;font-size:14px;padding:1px 0 0 0;height:33px}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):hover{box-shadow:none}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled):empty{visibility:hidden}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayHasPassed{opacity:.5;cursor:default}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected,.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected:hover{border:none}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected:hover{box-shadow:none}.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot,.showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot:hover{border:none;cursor:default}html.maxw_320 .showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Months,html.maxw_480 .showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Months{justify-content:space-around}html.maxw_320 .showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month,html.maxw_480 .showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month{min-width:290px}html.maxw_320 .showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month:nth-of-type(1),html.maxw_480 .showtime-daypicker .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month:nth-of-type(1){margin-bottom:1em}.showtime-daypicker--status{padding:15px;display:flex;justify-content:center}.showtime-daypicker--status .DayPicker{max-width:290px}.showtime-daypicker--status .DayPicker-Day--disabled{color:#cacaca}.showtime-daypicker--status .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton{color:#000}.showtime-daypicker--status .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton:before{background:#7f8d8d}.showtime-daypicker--status .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled){color:#222234;border:solid 1px rgba(0,0,0,0)}.showtime-daypicker--status .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):hover{background-color:#fff;border-color:#222234;color:#222234}.showtime-daypicker--status .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected,.showtime-daypicker--status .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected:hover{background:#f3fcf4;border:1px solid #13bf1f;color:#13bf1f}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month:nth-of-type(1){margin-left:-8px}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Month:nth-of-type(2){margin-right:-8px}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton{color:#000}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-NavButton:before{background:#7f8d8d}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled),.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):hover{background-color:#f3fcf4;border:1px solid #13bf1f;color:#13bf1f}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected{position:relative}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected::before{content:"";width:3px;height:29px;position:absolute;top:0;right:-2px;background:#ff513d;opacity:.35;transform:skewX(-45deg);transform-origin:0 0}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected::after{content:"";width:3px;height:29px;position:absolute;top:0;left:-2px;opacity:.35;background:#ff513d;transform:skewX(-315deg);transform-origin:0 0}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected,.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--selected:hover{background-color:#fff6f5;border:2px solid #ff513d;color:#ff513d}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot,.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot:hover{background:#f7f7f8;border:1px solid #f7f7f8;color:#646470}.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot::before,.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot::after,.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot:hover::before,.showtime-daypicker--closed-days .DayPicker:not(.DayPicker--interactionDisabled) .DayPicker-Week .DayPicker-Day:not(.DayPicker-Day--disabled).DayPicker-Day--dayIsClosedDueToTimeslot:hover::after{display:none}html,body{height:100%;background-color:#f4f4f5;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23072848' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E")}.showtime-app{height:100%}@media print{.showtime-message--offline{display:none !important}}.showtime-app--page-users,.showtime-app--page-sites,.showtime-app--page-trail-admin-trail,.showtime-app--page-trail-nav-trail,.showtime-app--page-trail-nav-both,.showtime-app--page-task-planner{display:flex;flex-direction:column;position:relative}.showtime-app--page-users .showtime-app__page,.showtime-app--page-sites .showtime-app__page,.showtime-app--page-trail-admin-trail .showtime-app__page,.showtime-app--page-trail-nav-trail .showtime-app__page,.showtime-app--page-trail-nav-both .showtime-app__page,.showtime-app--page-task-planner .showtime-app__page{display:flex;flex-direction:column;flex:1;overflow:auto;position:relative}.showtime-app--page-trail-admin-trail .showtime-app__page,.showtime-app--page-trail-nav-trail .showtime-app__page,.showtime-app--page-trail-nav-both .showtime-app__page{overflow:visible}.showtime-app--page-trail-nav-both .showtime-navigation-trail-info{background-color:#fff}.showtime-app--page-trail-nav-both .showtime-navigation-trail-info .showtime-navigation-trail__name{color:#222234;margin-top:10px}.showtime-app--page-task-planner .showtime-grid-container{max-width:100%}@media print{.showtime-app--page-task-planner .showtime-app__header,.showtime-app--page-task-planner .showtime-layout-admin-management__filters,.showtime-app--page-task-planner .showtime-layout-admin-management__actions,.showtime-app--page-task-planner .showtime-task-planner-task__actions{display:none}.showtime-app--page-task-planner .showtime-app__page,.showtime-app--page-task-planner .showtime-layout-admin-management,.showtime-app--page-task-planner .showtime-layout-admin-management__container,.showtime-app--page-task-planner .showtime-layout-admin-management__listing{display:block;overflow:visible}}.showtime-app--page-authentication{background-color:#f3f6fa}.showtime-app--page-setup-guide{height:100%}.showtime-app--page-setup-guide .showtime-app__header{display:none}.showtime-app--shadowing{padding-top:2.5rem}.showtime-grid-container{max-width:640px;margin:0 auto}.showtime-navigation__settings-menu{position:relative}.showtime-navigation__help-menu{position:relative;margin-right:10px}@media only screen and (max-width: 31.1875em){.showtime-navigation__help-menu{margin-right:0}}.showtime-navigation__org-settings .showtime-button{margin-right:0}#HW_frame_cont{margin-top:0 !important;position:static !important;box-shadow:none !important;min-height:100% !important;max-height:0;min-width:100% !important;max-width:100% !important}#HW_frame_cont iframe{height:100% !important;width:100% !important}.release-notes-visible{height:300px;overflow-y:auto}.release-notes-visible #HW_frame_cont{max-height:9999px}.showtime-app--page-trail-nav-both .showtime-navigation-admin{position:fixed;top:0;width:100%;z-index:17}.shadowing .showtime-app--page-trail-nav-both .showtime-navigation-admin{top:40px}@media only screen and (max-width: 63.9375em){.shadowing .showtime-app--page-trail-nav-both .showtime-navigation-admin{top:0}}@media only screen and (max-width: 63.9375em){.showtime-app--page-trail-nav-both .showtime-navigation-admin{position:relative}}.showtime-app--page-trail-nav-both .showtime-navigation-trail{margin-top:64px}@media only screen and (max-width: 63.9375em){.showtime-app--page-trail-nav-both .showtime-navigation-trail{margin-top:0}}.showtime-navigation-admin{background-color:#072843;display:flex;align-items:center;justify-content:space-between;height:4rem;padding:0 .1875rem}@media only screen and (min-width: 22.5em){.showtime-navigation-admin{padding:0 .625rem}}@media only screen and (min-width: 50.0625em){.showtime-navigation-admin{padding:0 1.25rem}}@media only screen and (max-width: 44.3125em){.showtime-navigation-admin .showtime-button--admin-navigation{display:flex;flex-direction:column;padding:0 7px;height:64px;border-radius:0}.showtime-navigation-admin .showtime-button--admin-navigation .showtime-button__icon{margin-right:0;width:18px;height:18px}.showtime-navigation-admin .showtime-button--admin-navigation .showtime-button__icon svg{width:18px;height:18px}.showtime-navigation-admin .showtime-button__text{margin-top:6px;font-size:13px !important}}@media only screen and (max-width: 22.4375em){.showtime-navigation-admin .showtime-button--admin-navigation{padding:0 2px}}.showtime-navigation-admin__info{display:flex;align-items:center;justify-content:space-between}.showtime-navigation-admin__logo{color:rgba(255,255,255,.6);margin-right:1.25rem}.showtime-navigation-admin__logo:hover,.showtime-navigation-admin__logo:focus{color:#fff}@media only screen and (max-width: 44.3125em){.showtime-navigation-admin__logo{display:none}}.showtime-navigation-admin__logo-icon{height:1.5625rem;width:3.125rem}.showtime-navigation-admin__logo-icon svg{margin-top:.125rem;height:1.5625rem;width:3.125rem}.showtime-navigation-admin__logo-icon svg *{fill:currentColor}.showtime-navigation-admin__links-list{display:flex}@media only screen and (max-width: 44.3125em){.showtime-navigation-admin__links-list{flex-wrap:nowrap}}.showtime-navigation-admin__links-list__item{margin-right:.625rem}.showtime-navigation-admin__links-list__item:last-child{margin-right:0}@media only screen and (max-width: 44.3125em){.showtime-navigation-admin__links-list__item{margin-right:0}}@media only screen and (max-width: 44.3125em){.showtime-navigation-admin__actions-container .showtime-button__text{display:none}}@media only screen and (max-width: 22.4375em){.showtime-navigation-admin__actions-container .showtime-button--admin-navigation{padding:0;min-width:34px}}.showtime-navigation-admin__links-overflow{display:none}.showtime-navigation-admin__actions-container{display:flex;align-items:center;justify-content:space-between}.showtime-navigation-trail{background-color:#fff;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-navigation-trail{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-navigation-trail-info{display:flex;align-items:center;flex:1 0 auto;padding:.3125rem;background-color:#072843}@media only screen and (min-width: 22.5em){.showtime-navigation-trail-info{padding:.3125rem .625rem}}@media only screen and (min-width: 50.0625em){.showtime-navigation-trail-info{padding:.3125rem 1.25rem}}.showtime-navigation-trail__logo-wrapper{height:2.5rem;display:flex;flex:0 0 auto;align-items:center;padding-right:.3125rem}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__logo-wrapper{padding-right:.625rem}}@media only screen and (min-width: 50.0625em){.showtime-navigation-trail__logo-wrapper{padding-right:1.25rem}}.showtime-navigation-trail__logo{color:rgba(255,255,255,.8)}.showtime-navigation-trail__logo:hover,.showtime-navigation-trail__logo:focus{color:#fff}.showtime-navigation-trail__logo-icon{height:1.25rem;width:2.1875rem}.showtime-navigation-trail__logo-icon svg{margin-top:.3125rem;height:1.25rem;width:2.1875rem}.showtime-navigation-trail__logo-icon svg *{fill:currentColor}.showtime-navigation-trail__name{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:rgba(255,255,255,.8);display:flex;flex:1 1 auto;align-items:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.showtime-navigation-trail__user-menu{align-items:center;display:flex;padding-left:.3125rem}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__user-menu{padding-left:.625rem}}.showtime-navigation-trail__date-filters{display:flex;flex:1 0 100%;align-items:center;height:4rem;padding:0 .3125rem}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__date-filters{padding:0 .625rem}}@media only screen and (min-width: 50.0625em){.showtime-navigation-trail__date-filters{padding:0 1.25rem}}@media only screen and (max-width: 24.3125em){.showtime-navigation-trail__date-filters .showtime-button--small{padding-left:10px;padding-right:10px}}.showtime-navigation-trail__date{align-items:center;display:flex;flex:1 1 auto}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__date{flex:0 1 auto}}.showtime-navigation-trail__date-view-today{padding-right:.3125rem}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__date-view-today{padding-right:.625rem}}@media only screen and (max-width: 28.0625em){.showtime-navigation-trail__datepicker-container{width:100%}}.showtime-navigation-trail__datepicker-container>.showtime-button:last-child{margin-left:-2px}.showtime-navigation-trail__datepicker-container .showtime-navigation-trail__datepicker{border-radius:0;margin-left:-1px}.showtime-navigation-trail__datepicker-container .showtime-navigation-trail__datepicker:hover{z-index:1}@media only screen and (max-width: 28.0625em){.showtime-navigation-trail__datepicker-container .showtime-navigation-trail__datepicker{border-radius:3px}}@media only screen and (max-width: 20.25em){.showtime-navigation-trail__datepicker-container .showtime-navigation-trail__datepicker .showtime-button__icon{display:none}}@media only screen and (max-width: 28.0625em){.showtime-navigation-trail__datepicker-container .showtime-navigation-trail__date-arrow{display:none}}@media only screen and (min-width: 28.125em){.showtime-navigation-trail__datepicker-container .showtime-navigation-trail__date-arrow{width:auto}}.showtime-navigation-trail__datepicker-container .react-datepicker__input-container{width:100%}@media only screen and (max-width: 42.4375em){.showtime-navigation-trail__date-day-prefix{display:none}}.showtime-navigation-trail__filters{padding-left:.3125rem;position:relative}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__filters{padding-left:.625rem}}.showtime-navigation-trail__filters .showtime-tag{padding:.3125rem .625rem}.showtime-navigation-trail__search{padding-left:.3125rem}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__search{padding-left:.625rem}}.showtime-navigation-trail__add-task{padding-left:.3125rem;margin-left:auto;max-width:8.75rem}@media only screen and (min-width: 22.5em){.showtime-navigation-trail__add-task{padding-left:.625rem}}@media only screen and (max-width: 31.8125em){.showtime-navigation-trail__add-task .showtime-button .showtime-button__text{display:none}.showtime-navigation-trail__add-task .showtime-button .showtime-button__icon{margin:0}}h3.showtime-layout-admin-management_title-small{text-transform:none !important}.showtime-layout-admin-management{display:flex;flex:1;min-width:0;min-height:0;flex-direction:column}@media only screen and (min-width: 47.8125em){.showtime-layout-admin-management__filters{overflow-y:auto;overflow-x:hidden;padding-bottom:3.125rem}}.showtime-layout-admin-management__filter-sidebar{display:none}.showtime-layout-admin-management__filters-button-show-hide{margin:.625rem}@media only screen and (min-width: 47.8125em){.showtime-layout-admin-management__filters-button-show-hide{display:none}}.showtime-layout-admin-management__filters-sidebar{display:none}@media only screen and (max-width: 47.75em){.showtime-layout-admin-management__filters-sidebar.is-visible{display:block;padding:.9375rem;border:.0625rem solid rgba(100,100,112,.2);margin:.9375rem .625rem;border-radius:.1875rem}.showtime-layout-admin-management__filters-sidebar.is-visible .showtime-layout-admin-management__filter-group{padding:0;margin-bottom:.625rem;width:100%}}@media only screen and (min-width: 47.8125em){.showtime-layout-admin-management__filters-sidebar{display:block}}.showtime-layout-admin-management__filter-group{display:block;flex:0 0 auto;width:15.625rem;min-width:0;min-height:0;padding:1.875rem 1.25rem 0 1.25rem;overflow-y:hidden;overflow-x:hidden}.showtime-layout-admin-management__filter-group{position:relative}.showtime-layout-admin-management__filter-group--trails{padding-right:0}.showtime-layout-admin-management__filter-group--trails .showtime-layout-admin-management__filter-group-header,.showtime-layout-admin-management__filter-group--trails .showtime-layout-admin-management__filter-group-inner-scroll{padding-right:.9375rem}.showtime-layout-admin-management__filter-group-link{margin:.9375rem 0}.showtime-layout-admin-management__filter-group-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:.3125rem}.showtime-layout-admin-management__filter-group-header .showtime-link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-layout-admin-management__filter-group-inner{position:relative}.showtime-layout-admin-management__filter-group-inner-scroll{max-height:15.3125rem;overflow-y:auto;overflow-x:hidden;padding:.625rem 0 1.5625rem}.showtime-layout-admin-management__filter-group-inner-scroll::after{content:"";position:absolute;bottom:0;width:100%;height:25px;background:linear-gradient(rgba(244, 244, 245, 0.001), #F4F4F5);pointer-events:none}.showtime-layout-admin-management_filter-title{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#4e4e4e;margin:0;display:flex;align-items:center}.showtime-layout-admin-management__filter-subtitle{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#4e4e4e;margin:0 0 .3125rem}.showtime-layout-admin-management__filters-help{height:.875rem;width:.875rem;margin-left:.3125rem;color:#cacaca;vertical-align:middle}.showtime-layout-admin-management__filters-help:hover{cursor:help;color:#222234}.showtime-layout-admin-management__filters-help .showtime-icon{display:flex}.showtime-layout-admin-management__filter-item{margin-top:.3125rem;display:flex;align-items:center;justify-content:space-between}.showtime-layout-admin-management__filter-item:first-child{margin-top:0}.showtime-layout-admin-management__filter-item--trail .showtime-checkbox{flex:1}.showtime-layout-admin-management__filter-item--trail .showtime-checkbox .showtime-checkbox__label{flex:1;display:flex;justify-content:space-between}.showtime-layout-admin-management__filter-item--trail .showtime-checkbox--disabled{pointer-events:none}.showtime-layout-admin-management__filter-item--trail .showtime-checkbox--disabled .showtime-checkbox__label-primary{color:#646470}.showtime-layout-admin-management__filter-item--task-planner-selected{flex-wrap:wrap}.showtime-layout-admin-management__filter-item--task-planner-selected .showtime-link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;flex:1 0 100%;margin:.3125rem 0 .625rem 1.6875rem}.showtime-layout-admin-management__clear-filters{margin-top:.9375rem}.showtime-layout-admin-management__filter-group-clear{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin-top:10px}.showtime-layout-admin-management__filter-group-clear .showtime-link{visibility:hidden;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-layout-admin-management__filter-group-clear .showtime-link.is-visible{visibility:visible}.showtime-layout-admin-management__container{overflow:hidden;display:flex;flex:1;min-width:0;min-height:0;flex-direction:row}@media only screen and (max-width: 47.75em){.showtime-layout-admin-management__container{flex-direction:column;overflow:auto;-webkit-overflow-scrolling:touch}.showtime-layout-admin-management__container .showtime-layout-admin-management__listing{padding-top:.625rem}.showtime-layout-admin-management__container .showtime-layout-admin-management__listing--no-padding-top{padding-top:0}.showtime-layout-admin-management__container .showtime-layout-admin-management__content{padding-top:.625rem}.showtime-layout-admin-management__container.has-active-sidebar .showtime-layout-admin-management__listing{overflow:visible}.showtime-layout-admin-management__container.has-active-sidebar .showtime-layout-admin-management__listing .showtime-table{overflow:auto}}.showtime-layout-admin-management__container{padding:0 15px}@media only screen and (max-width: 59.9375em){.showtime-layout-admin-management__container{padding:0 10px}}.showtime-layout-admin-management__action-bar{display:flex;flex:0 0 auto;flex-wrap:wrap;min-width:0;min-height:0;padding:0 20px;justify-content:space-between;align-items:center;background-color:#fff;z-index:8;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-layout-admin-management__action-bar{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-layout-admin-management__action-bar .showtime-button--default{background-color:#fff}.showtime-layout-admin-management__action-bar .showtime-select{max-width:10rem}.showtime-layout-admin-management__action-bar.is-selected{background-color:#ecf3fe;padding-top:12px;padding-bottom:12px;justify-content:flex-start}.showtime-layout-admin-management__action-bar .showtime-tabs-underline{overflow:auto}.showtime-layout-admin-management__action-bar .showtime-tabs-underline--with-tooltip{overflow:initial}.showtime-layout-admin-management__action-bar .showtime-tabs-underline-headers-item{white-space:nowrap}@media only screen and (max-width: 59.9375em){.showtime-layout-admin-management__action-bar{padding:0 15px}.showtime-layout-admin-management__action-bar .showtime-layout-admin-management__bulk-actions,.showtime-layout-admin-management__action-bar .showtime-layout-admin-management__actions{order:1;flex-basis:100%;padding-top:15px;padding-bottom:10px}.showtime-layout-admin-management__action-bar .showtime-tabs-underline{order:2}}@media only screen and (max-width: 22.4375em){.showtime-layout-admin-management__action-bar{padding:0 10px}}.showtime-layout-admin-management__action-bar__ad-hoc{padding:0 0 0 20px}@media only screen and (max-width: 59.9375em){.showtime-layout-admin-management__action-bar__ad-hoc{padding:0 15px}.showtime-layout-admin-management__action-bar__ad-hoc .showtime-layout-admin-management__bulk-actions,.showtime-layout-admin-management__action-bar__ad-hoc .showtime-layout-admin-management__actions{order:1;flex-basis:100%;padding-top:15px;padding-bottom:10px}.showtime-layout-admin-management__action-bar__ad-hoc .showtime-tabs-underline{order:2}}@media only screen and (max-width: 22.4375em){.showtime-layout-admin-management__action-bar__ad-hoc{padding:0 10px}}.showtime-layout-admin-management__action-bar--no-tabs{padding:12px 20px}@media only screen and (max-width: 59.9375em){.showtime-layout-admin-management__action-bar--no-tabs{padding-left:15px;padding-right:15px}}@media only screen and (max-width: 22.4375em){.showtime-layout-admin-management__action-bar--no-tabs{padding-left:10px;padding-right:10px}}.showtime-layout-admin-management_selected-count{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#000}.showtime-layout-admin-management_total-count{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#4e4e4e}.showtime-layout-admin-management__tasks-help{height:.875rem;width:.875rem;margin-left:.625rem;color:#cacaca}.showtime-layout-admin-management__tasks-help:hover{cursor:help;color:#222234}.showtime-layout-custom-role___tasks-tab-help{height:.875rem;width:.875rem;margin-left:-0.3125rem;color:#cacaca}.showtime-layout-custom-role___tasks-tab-help:hover{cursor:help;color:#222234}.showtime-layout-admin-management_action-text{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding-right:1.25rem}.showtime-layout-admin-management__select-all{display:flex;align-items:center;margin-right:.625rem}.showtime-layout-admin-management__select-all-divider{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;padding:0 .3125rem}.showtime-layout-admin-management__preview-all{padding-right:.9375rem}@media only screen and (max-width: 59.9375em){.showtime-layout-admin-management__preview-all{display:none}}.showtime-layout-admin-management__preview-all .showtime-button{border-color:rgba(0,0,0,0);color:#646470}.showtime-layout-admin-management__bulk-actions,.showtime-layout-admin-management__actions{display:flex}.showtime-layout-admin-management__bulk-actions .showtime-menu,.showtime-layout-admin-management__actions .showtime-menu{width:310px}.showtime-layout-admin-management__bulk-actions .showtime-form-section,.showtime-layout-admin-management__actions .showtime-form-section{padding:10px}.showtime-layout-admin-management__bulk-actions .showtime-input--margin-bottom,.showtime-layout-admin-management__actions .showtime-input--margin-bottom{margin-bottom:10px}.showtime-layout-admin-management__bulk-actions .showtime-list__item,.showtime-layout-admin-management__actions .showtime-list__item{padding:10px 0 !important;margin:0;border:none}.showtime-layout-admin-management__bulk-actions .showtime-form-section__item--fixed-height-overflow,.showtime-layout-admin-management__actions .showtime-form-section__item--fixed-height-overflow{padding:0;max-height:147px}.showtime-layout-admin-management__bulk-actions{justify-content:space-between;flex-grow:1}.showtime-layout-admin-management__bulk-actions-more-menu .showtime-menu{width:115px}.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--with-all-buttons.showtime-menu{margin-top:82px;width:310px}@media screen and (max-width: 767px){.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--with-all-buttons.showtime-menu{margin-top:102px}}.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--no-unassign.showtime-menu,.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--no-remove-tag.showtime-menu{margin-top:44px;width:310px}@media screen and (max-width: 767px){.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--no-unassign.showtime-menu,.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--no-remove-tag.showtime-menu{margin-top:54px}}.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--no-unassign-no-remove-tag.showtime-menu{margin-top:43px;width:310px}@media screen and (max-width: 767px){.showtime-layout-admin-management__bulk-actions-archive_bulk-tagging--no-unassign-no-remove-tag.showtime-menu{margin-top:54px}}.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--with-all-buttons.showtime-menu{margin-top:82px;width:310px}@media screen and (max-width: 767px){.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--with-all-buttons.showtime-menu{margin-top:102px}}.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--no-unassign.showtime-menu,.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--no-remove-tag.showtime-menu{margin-top:44px;width:310px}@media screen and (max-width: 767px){.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--no-unassign.showtime-menu,.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--no-remove-tag.showtime-menu{margin-top:54px}}.showtime-layout-admin-management__bulk-actions-delete_bulk-tagging--no-unassign-no-remove-tag.showtime-menu{margin-top:5px;width:310px}.showtime-layout-admin-management__search{margin-right:.9375rem}.showtime-layout-admin-management__search--no-margin{margin:0}.showtime-layout-admin-management__buttons{display:flex;align-items:center}.showtime-layout-admin-management__buttons .showtime-button--default{margin-right:.625rem}.showtime-layout-admin-management__buttons .showtime-layout-admin-management__button .showtime-button.is-disabled{pointer-events:auto;cursor:default}.showtime-layout-admin-management__listing{overflow:auto;-webkit-overflow-scrolling:touch;flex:1;width:100%;min-width:0;min-height:0;padding-top:1.875rem;padding-bottom:12.5rem}.showtime-layout-admin-management__listing .showtime-empty-state__icon svg{width:14.375rem;height:14.375rem}.showtime-layout-admin-management__listing .showtime-callout-help{margin-bottom:15px}.showtime-layout-admin-management__listing .showtime-callout-help__row-item p{padding:0;margin:0}.showtime-layout-admin-management__listing--no-padding-top{padding-top:0}.showtime-layout-admin-management__content{padding-top:1.875rem}.showtime-layout-activity{display:flex;justify-content:center}.showtime-layout-activity__container{padding:.625rem .9375rem 3.125rem .9375rem;width:100%}@media only screen and (min-width: 50em){.showtime-layout-activity__container{max-width:50rem}}.showtime-layout-activity__time-range{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470}.showtime-layout-activity__list{margin-bottom:1.25rem}.showtime-layout-activity__load-more{display:flex;justify-content:center}.showtime-notification h2,.showtime-notification h3,.showtime-notification h4,.showtime-notification p{margin:0;text-decoration:none;text-transform:none}.showtime-notification{display:flex;flex-grow:1;flex-direction:column;background-color:#fff;border-radius:.1875rem;padding:.625rem .9375rem .3125rem .9375rem;margin-bottom:1.5625rem;box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06);border-left:.1875rem solid #4688f1}@media screen and (min-width: 64rem){.showtime-notification{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}.showtime-notification--banner{margin-top:1.5625rem;border-left:.1875rem solid #13bf1f}.showtime-notification--skeleton{height:2.8125rem;box-shadow:none;border-left:.1875rem solid #cacaca}.showtime-notification--skeleton-1{opacity:.8}.showtime-notification--skeleton-2{opacity:.6}.showtime-notification--skeleton-3{opacity:.4}.showtime-notification--skeleton-4{opacity:.2}.showtime-notification__banner-info{padding-top:.3125rem}.showtime-notification__banner-info-title{color:#222234;padding-bottom:.625rem !important}@media screen and (min-width: 0){.showtime-notification__banner-info-title{font-size:1.1875rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-notification__banner-info-title{font-size:1.3125rem !important;line-height:1.5rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-notification__banner-info-title{font-size:1.5rem !important;line-height:1.6875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-notification__banner-info-title{font-size:1.5rem !important;line-height:1.6875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.showtime-notification__banner-help-title{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;padding-bottom:.9375rem}.showtime-notification__banner-help-subtitle{font-size:.875rem !important;line-height:1.125rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding-bottom:.3125rem}.showtime-notification__banner-help-description{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding-bottom:.9375rem;padding-left:1.5625rem;max-width:28.125rem}.showtime-notification__chrome{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.625rem}.showtime-notification__subject{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-right:.625rem}.showtime-notification__chrome-type-and-timestamp{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:flex;align-items:center;margin-bottom:.625rem;color:#646470}.showtime-notification__chrome-type{margin-right:.4375rem}.showtime-notification__chrome-timestamp{margin-right:.75rem}.showtime-notification__chrome-actions{display:flex;align-items:center}.showtime-notification__chrome-priority{margin-right:.625rem}.showtime-notification__body{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;position:relative;color:#222234;background-color:#f7f7f8;padding:.9375rem;border-radius:.1875rem;margin-bottom:.625rem}.showtime-notification__actions{margin-bottom:.625rem;display:flex;flex-wrap:wrap}.showtime-task-wizard__section{padding:15px 0}.showtime-task-wizard__section .showtime-edit-section{margin-left:auto;margin-right:auto;max-width:735px;width:100%}.showtime-task-wizard__section .showtime-edit-section:first-child{margin-top:0}.showtime-task-wizard__section .showtime-edit-section:last-child{margin-bottom:0}.showtime-task-wizard__section .showtime-widget-preview{padding-bottom:0}.showtime-task-wizard__section .showtime-label--subtitle{display:flex;width:100%}.showtime-task-wizard__section .showtime-label--subtitle .showtime-link{margin-left:auto;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-task-wizard__section .showtime-form-section--small-padding-bottom+.showtime-callout-help{margin-top:0}.showtime-task-wizard__section .showtime-callout-help:not(.showtime-widget-tasks){margin-top:12px}.showtime-task-wizard__section .showtime-widget-code{width:100%}.showtime-task-wizard__section .showtime-widget-code .showtime-callout-help{margin-top:0}.showtime-task-wizard__section:last-child .showtime-callout-help{margin:0}.showtime-task-wizard__section .showtime-tabs-underline-headers{border-bottom:1px solid #f4f4f5;margin-bottom:15px}.showtime-task-wizard__section .showtime-tabs-underline-headers-item{padding-top:10px;padding-bottom:7px}.showtime-task-wizard__section-title{padding:5px 0 15px 0}@media screen and (min-width: 0){.showtime-task-wizard__section-title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-task-wizard__section-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-task-wizard__section-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-task-wizard__section-title{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media only screen and (max-width: 43.6875em){.showtime-task-wizard__section-title{padding:0 0 5px 0}}.showtime-task-wizard__section-description{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}@media only screen and (max-width: 43.6875em){.showtime-task-wizard__section-description{padding-bottom:20px}}.showtime-task-wizard__widget-reuse-list .showtime-menu{margin-top:-50px;margin-left:10px}.showtime-task-wizard__action-template-list-unselected .showtime-menu{margin-top:-50px;margin-left:10px}.showtime-task-wizard__action-template-list-selected .showtime-menu{margin-top:-30px;margin-left:10px}main{overflow:hidden}.app-container{height:100vh}@media only screen and (max-width: 50em){.app-container{position:relative}}@media only screen and (min-width: 50.0625em){.app-container{width:100%;position:fixed;top:0;right:0;bottom:0;left:0}}.pane_center{height:100vh;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:scrollbar}.pane_center.centered{margin-right:0;margin-left:0;transform:translateX(0)}.view_plan{width:100%}@media only screen and (max-width: 50em){.view_plan{padding-top:3.125rem;padding-bottom:3.125rem}}@media only screen and (min-width: 50.0625em){.view_plan{padding-top:3.4375rem;padding-bottom:3.4375rem}}.showtime-login-container input{box-shadow:none}.showtime-login-container input[type=submit]:focus{border:0}.showtime-login-container .showtime-input .error{display:none}.showtime-login-container h2.showtime-login-form__section-page-title{margin:0}.showtime-login-container p.showtime-login-form__section-page-subtitle{margin-bottom:0;margin-top:.3125rem}.showtime-login-container{display:flex;flex-direction:column;flex:1;align-items:center;justify-content:center;padding:1.25rem}.showtime-login-form{z-index:1;align-items:center;display:flex;flex-direction:column;width:100%;margin:0;border:solid 1px rgba(0,0,0,.1);border-radius:4px;max-width:550px;padding:1.875rem .9375rem;background-color:#fff;box-shadow:1px 1px 20px 0 rgba(0,0,0,.1)}@media only screen and (min-width: 28.125em){.showtime-login-form{padding:1.25rem 2.5rem}}.showtime-login-form__section{margin-bottom:1.5625rem;width:100%}.showtime-login-form__section .showtime-form__input-container .showtime-label__text{color:#646470}.showtime-login-form__section-page-title{color:#222234;text-align:center}@media screen and (min-width: 0){.showtime-login-form__section-page-title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-login-form__section-page-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-login-form__section-page-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-login-form__section-page-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.showtime-login-form__section-page-subtitle{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;text-align:center}.showtime-login-form__link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-login-form__link--centered{text-align:center}.showtime-login-form__section--logo{text-align:center}.showtime-login-form__section--logo *{fill:#000;fill:#222234;height:26px;width:auto}.showtime-login-form__section--logo svg{width:100%}.showtime-login-form__section--links{align-items:center;display:flex;justify-content:space-between}.showtime-login-form__section--info{margin:1rem 0 0 0;text-align:center}.showtime-login-form__separator{width:100%;text-align:center;border-bottom:1px solid #cacaca;line-height:.1rem;margin:1rem 0 2rem}.showtime-login-form__separator-text{background-color:#fff;padding:0 .5rem}.showtime-login-form__access-logo{width:auto;height:20px;margin-right:5px}.showtime-reports{justify-content:center}@media screen and (min-width: 709px){.showtime-reports{padding-bottom:42px}}.showtime-reports-navigation{display:flex;background-color:#fff;justify-content:center;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-reports-navigation{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (max-width: 31.1875em){.showtime-reports-navigation{overflow:auto;justify-content:flex-start;padding:0 10px}.showtime-reports-navigation .showtime-tabs-underline-headers-item{white-space:nowrap}}.showtime-reports-size-warning{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;background-color:#ffffe5;color:#222234;padding:20px;text-align:center}@media only screen and (min-width: 44.375em){.showtime-reports-size-warning{display:none}}.org-bar{padding:.9375rem .9375rem 0 .9375rem}.title-area{padding-top:1.25rem;padding-bottom:1.25rem;overflow-y:visible}.org-settings-title{color:#000}@media screen and (min-width: 0){.org-settings-title{font-size:1.4375rem !important;line-height:1.625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.org-settings-title{font-size:1.5625rem !important;line-height:1.75rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.org-settings-title{font-size:1.625rem !important;line-height:1.8125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.org-settings-title{font-size:1.75rem !important;line-height:1.9375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.org-settings-subtitle{color:#4e4e4e;margin-bottom:.625rem}@media screen and (min-width: 0){.org-settings-subtitle{font-size:1.1875rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.org-settings-subtitle{font-size:1.3125rem !important;line-height:1.5rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.org-settings-subtitle{font-size:1.5rem !important;line-height:1.6875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.org-settings-subtitle{font-size:1.5rem !important;line-height:1.6875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.org-settings{padding-top:1.25rem}.org-settings .card{border:none;padding:1rem 0;margin-top:1px;margin-bottom:50px;box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.org-settings .card{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}@media only screen and (min-width: 50.0625em){.org-settings .card{padding:1rem}}.org-settings .card .card-section{padding:1rem}.org-settings .CodeMirror{height:250px}.org-settings-tabs{background-color:#fff;display:flex;justify-content:center;align-items:center;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.org-settings-tabs{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.file-viewer{width:100%;height:100vh}@media only screen and (min-width: 50.0625em){.file-viewer{overflow:hidden;padding-bottom:8.125rem;position:relative}.file-viewer.video{padding-bottom:0}}.viewer-header{overflow:hidden;padding:1.125rem;border-bottom:1px solid #ccc;background:#eee}.viewer-header .button,.viewer-header button{float:left}.viewer-header .button>span,.viewer-header button>span{display:inline-block}.viewer-header .download-file{float:right}.viewer-title{line-height:32px;text-align:center;text-overflow:ellipsis;white-space:nowrap;width:calc(100% - 340px);overflow:hidden;padding-left:10px;float:left}@media only screen and (max-width: 74.9375em){.viewer-title{width:calc(100% - 180px)}}@media only screen and (max-width: 50em){.viewer-title{font-size:.875rem}}.viewer-controls{text-align:center;overflow:hidden;padding:1.125rem;border-bottom:1px solid #ccc;background:#eee}@media only screen and (min-width: 50.0625em){.viewer-controls{position:absolute;right:0;bottom:0;left:0}.viewer-controls .control-page{margin-left:6.25rem}.viewer-controls .control-zoom{float:right}}@media only screen and (max-width: 50em){.viewer-controls .button,.viewer-controls button{padding:.5rem .6875rem}}.viewer-controls input{vertical-align:middle;display:inline-block;max-width:50px;min-height:35px}.viewer-controls .control-page,.viewer-controls .control-zoom{vertical-align:middle;display:inline-block}@media only screen and (min-width: 50.0625em){.viewer-controls .control-zoom{margin-right:6.25rem}}.viewer-controls .button,.viewer-controls button,.viewer-controls .icon{margin:0}.viewer-controls .button,.viewer-controls button{top:-0.0625rem}@media only screen and (min-width: 50.0625em){.viewer-content{height:100%;overflow:scroll}.file-viewer.video .viewer-content{overflow:hidden}}.file-viewer.video .viewer-content{height:100vh;position:relative}.file-viewer.video .viewer-content::before{content:"";display:block;padding-top:56.25%}.file-viewer.video .viewer-content iframe{width:100%;height:100%;position:absolute;top:0;left:0}.user-site-access .showtime-form-section__item{margin-top:1.25rem}.user-site-access .showtime-utility-font-body-small{margin-bottom:.9375rem}.user-site-access .showtime-utility-warning{font-weight:700 !important;color:#ff9100}.user-site-access .showtime-input--search .showtime-link{right:1rem}.showtime-form__input-container{margin-bottom:1.25rem}.showtime-input input{color:#000;min-height:0;margin:0;box-shadow:none}.showtime-input input:hover{background-color:#fff}.showtime-input input:disabled,.showtime-input.is-disabled input{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#cacaca;border:.0625rem solid #cacaca}.showtime-input input:disabled::-webkit-input-placeholder,.showtime-input.is-disabled input::-webkit-input-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:disabled:-moz-placeholder,.showtime-input.is-disabled input:-moz-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:disabled::-moz-placeholder,.showtime-input.is-disabled input::-moz-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:disabled:-ms-input-placeholder,.showtime-input.is-disabled input:-ms-input-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:focus,.showtime-input.is-focused input,.showtime-input.showtime-input--transparent input:focus{box-shadow:none}.showtime-input{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#cacaca;display:inline-flex;align-items:center;height:2.8125rem;position:relative}.showtime-input input{font-size:inherit;line-height:inherit;min-width:3.125rem;height:100%;padding:0 .9375rem;border-color:#cacaca;border-radius:.1875rem;background-color:#fff;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1)}.showtime-input input::-webkit-input-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-input input::-webkit-input-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-input input::-webkit-input-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-input input::-webkit-input-placeholder{line-height:1.375rem}}.showtime-input input:-moz-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-input input:-moz-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-input input:-moz-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-input input:-moz-placeholder{line-height:1.375rem}}.showtime-input input::-moz-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-input input::-moz-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-input input::-moz-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-input input::-moz-placeholder{line-height:1.375rem}}.showtime-input input:-ms-input-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-input input:-ms-input-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-input input:-ms-input-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-input input:-ms-input-placeholder{line-height:1.375rem}}.showtime-input input:hover{color:#222234;border-color:#222234}.showtime-input input:focus,.showtime-input.is-focused input,.showtime-input.showtime-input--transparent input:focus{color:#222234;border-color:#4688f1;box-shadow:0 0 0 4px rgba(70,136,241,.15);outline:none}.showtime-input input:focus::-webkit-input-placeholder,.showtime-input.is-focused input::-webkit-input-placeholder,.showtime-input.showtime-input--transparent input:focus::-webkit-input-placeholder{opacity:0}.showtime-input input:focus:-moz-placeholder,.showtime-input.is-focused input:-moz-placeholder,.showtime-input.showtime-input--transparent input:focus:-moz-placeholder{opacity:0}.showtime-input input:focus::-moz-placeholder,.showtime-input.is-focused input::-moz-placeholder,.showtime-input.showtime-input--transparent input:focus::-moz-placeholder{opacity:0}.showtime-input input:focus:-ms-input-placeholder,.showtime-input.is-focused input:-ms-input-placeholder,.showtime-input.showtime-input--transparent input:focus:-ms-input-placeholder{opacity:0}.showtime-input input:disabled,.showtime-input.is-disabled input{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;pointer-events:none}.showtime-input input:disabled::-webkit-input-placeholder,.showtime-input.is-disabled input::-webkit-input-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:disabled:-moz-placeholder,.showtime-input.is-disabled input:-moz-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:disabled::-moz-placeholder,.showtime-input.is-disabled input::-moz-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input input:disabled:-ms-input-placeholder,.showtime-input.is-disabled input:-ms-input-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-input.has-error input{border-color:#ff513d}.showtime-input.has-error input:focus,.showtime-input.is-focused.has-error input{border-color:#ff513d}.showtime-input.is-valid input{border-color:#13bf1f}.showtime-input.is-valid input:focus,.showtime-input.is-focused.is-valid input{border-color:#13bf1f}.showtime-input__subtext{color:#646470;padding-top:5px;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-input--margin-bottom{margin-bottom:20px}.showtime-input--narrow{margin-top:10px}.showtime-input--narrow .showtime-label{padding-left:8px;display:flex;flex-direction:column;line-height:1.3}.showtime-input--narrow input[type=number]{width:80px;margin-right:10px}.showtime-input--narrow .showtime-label__secondary-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-input--button-options{display:flex;flex-wrap:wrap;margin:0 -5px}.showtime-input--button-options .showtime-button--record-selected,.showtime-input--button-options .showtime-button--default{margin:5px}@media only screen and (max-width: 25.875em){.showtime-input--button-options .showtime-button--record-selected,.showtime-input--button-options .showtime-button--default{flex-basis:100%}}.showtime-input--button-options .showtime-button--default{background-color:#fff}.showtime-input--button-options .showtime-button--default:focus{box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-input--button-options .showtime-button--default:focus{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-input--button-options .showtime-button__text{white-space:nowrap !important;overflow:hidden !important;text-overflow:ellipsis !important}.showtime-input__icon{color:#222234;pointer-events:none;padding:0 .9375rem;border:1px solid #cacaca;background-color:#f4f4f5;display:flex;align-items:center;height:100%}.showtime-input__icon svg{width:1rem;height:1rem}.showtime-input__icon svg *{fill:currentColor}.showtime-input--icon-left .showtime-input__icon{border-right:0;border-top-left-radius:.1875rem;border-bottom-left-radius:.1875rem}.showtime-input--icon-left input{border-top-left-radius:0;border-bottom-left-radius:0}.showtime-input--icon-right .showtime-input__icon{border-left:0;border-top-right-radius:.1875rem;border-bottom-right-radius:.1875rem}.showtime-input--icon-right input{border-top-right-radius:0;border-bottom-right-radius:0}.showtime-input__prefix,.showtime-input__suffix{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;pointer-events:none;padding:0 .9375rem;border:1px solid #cacaca;background-color:#f4f4f5;display:flex;align-items:center;height:100%}.showtime-input--prefix .showtime-input__prefix{border-right:0;border-top-left-radius:.1875rem;border-bottom-left-radius:.1875rem}.showtime-input--prefix input{border-top-left-radius:0;border-bottom-left-radius:0}.showtime-input--suffix .showtime-input__suffix{border-left:0;border-top-right-radius:.1875rem;border-bottom-right-radius:.1875rem}.showtime-input--suffix input{border-top-right-radius:0;border-bottom-right-radius:0}.showtime-input--button{display:flex;align-items:center}.showtime-input--button input{flex:1 1 auto}.showtime-input--button .showtime-button{flex:0 0 auto}.showtime-input--button-left input{border-top-left-radius:0;border-bottom-left-radius:0}.showtime-input--button-right input{border-top-right-radius:0;border-bottom-right-radius:0}.showtime-input--transparent input{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);box-shadow:none}.showtime-input--spinner .showtime-button:first-child{margin-right:.3125rem}.showtime-input--spinner .showtime-button:last-child{margin-left:.3125rem}.showtime-input--obscured input{color:rgba(0,0,0,0);text-shadow:0 0 4px rgba(0,0,0,.5);transition:text-shadow .2s ease-in-out}.showtime-input--obscured:hover input,.showtime-input--obscured:focus input,.showtime-input--obscured:focus-within input,.showtime-input--obscured:active input{color:#222234;text-shadow:none}.showtime-input--small{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;height:2.1875rem}.showtime-input--small input{min-width:2.8125rem;padding:0 .625rem}.showtime-input--small input::-webkit-input-placeholder{font-size:inherit;font-weight:normal !important;line-height:.9375rem}@media only screen and (min-width: 50.0625em){.showtime-input--small input::-webkit-input-placeholder{line-height:.8125rem}}@media only screen and (min-width: 90em){.showtime-input--small input::-webkit-input-placeholder{line-height:.9375rem}}@media only screen and (min-width: 120em){.showtime-input--small input::-webkit-input-placeholder{line-height:1.1875rem}}.showtime-input--small input:-moz-placeholder{font-size:inherit;font-weight:normal !important;line-height:.9375rem}@media only screen and (min-width: 50.0625em){.showtime-input--small input:-moz-placeholder{line-height:.8125rem}}@media only screen and (min-width: 90em){.showtime-input--small input:-moz-placeholder{line-height:.9375rem}}@media only screen and (min-width: 120em){.showtime-input--small input:-moz-placeholder{line-height:1.1875rem}}.showtime-input--small input::-moz-placeholder{font-size:inherit;font-weight:normal !important;line-height:.9375rem}@media only screen and (min-width: 50.0625em){.showtime-input--small input::-moz-placeholder{line-height:.8125rem}}@media only screen and (min-width: 90em){.showtime-input--small input::-moz-placeholder{line-height:.9375rem}}@media only screen and (min-width: 120em){.showtime-input--small input::-moz-placeholder{line-height:1.1875rem}}.showtime-input--small input:-ms-input-placeholder{font-size:inherit;font-weight:normal !important;line-height:.9375rem}@media only screen and (min-width: 50.0625em){.showtime-input--small input:-ms-input-placeholder{line-height:.8125rem}}@media only screen and (min-width: 90em){.showtime-input--small input:-ms-input-placeholder{line-height:.9375rem}}@media only screen and (min-width: 120em){.showtime-input--small input:-ms-input-placeholder{line-height:1.1875rem}}.showtime-input--small .showtime-input__prefix,.showtime-input--small .showtime-input__suffix{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;padding:0 .625rem}.showtime-input--small .showtime-input__icon svg{width:.875rem;height:.875rem}.showtime-input--block{width:100%}.showtime-input--search{position:relative}.showtime-input--search.email-search{margin-left:15px}.showtime-input--search .showtime-input__search-icon{color:#cacaca;position:absolute;left:.625rem;top:calc(50% - 8px)}.showtime-input--search .showtime-input__search-icon svg{width:.875rem;height:.875rem}.showtime-input--search .showtime-input__search-icon svg *{fill:currentColor}.showtime-input--search input{border-radius:9999px;padding:0 1.875rem}.showtime-input--search .showtime-link{position:absolute;right:.5rem;top:calc(50% - 9px)}.ie .showtime-input--search input::-ms-clear{display:none}.showtime-input--add{position:relative}.showtime-input--add input{border-radius:.1875rem;padding:10px 30px 10px 0;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);box-shadow:none;transition:padding 150ms,background-color 150ms}.showtime-input--add input::-webkit-input-placeholder{color:#4688f1;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-input--add input:-moz-placeholder{color:#4688f1;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-input--add input::-moz-placeholder{color:#4688f1;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-input--add input:-ms-input-placeholder{color:#4688f1;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-input--add input:hover{border-color:rgba(0,0,0,0);background-color:#ecf3fe;padding-left:10px}.showtime-input--add input:hover::-webkit-input-placeholder{color:#4688f1}.showtime-input--add input:hover:-moz-placeholder{color:#4688f1}.showtime-input--add input:hover::-moz-placeholder{color:#4688f1}.showtime-input--add input:hover:-ms-input-placeholder{color:#4688f1}.showtime-input--add input:focus{border-color:#4688f1;box-shadow:0 0 0 4px rgba(70,136,241,.15);padding-left:10px;background-color:#fff}.showtime-input--add .showtime-link{position:absolute;right:.5rem;top:calc(50% - 9px)}.ie .showtime-input--add input::-ms-clear{display:none}.showtime-textarea{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;display:inline-flex;align-items:center;width:100%}.showtime-textarea textarea{font-size:inherit;line-height:inherit;padding:.5rem .625rem;border-color:#cacaca;border-radius:.1875rem;background-color:#fff;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1);margin:0;resize:vertical}.showtime-textarea textarea::-webkit-input-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-textarea textarea::-webkit-input-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-textarea textarea::-webkit-input-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-textarea textarea::-webkit-input-placeholder{line-height:1.375rem}}.showtime-textarea textarea:-moz-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-textarea textarea:-moz-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-textarea textarea:-moz-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-textarea textarea:-moz-placeholder{line-height:1.375rem}}.showtime-textarea textarea::-moz-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-textarea textarea::-moz-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-textarea textarea::-moz-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-textarea textarea::-moz-placeholder{line-height:1.375rem}}.showtime-textarea textarea:-ms-input-placeholder{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;color:#cacaca;line-height:1.25rem}@media only screen and (min-width: 50.0625em){.showtime-textarea textarea:-ms-input-placeholder{line-height:1rem}}@media only screen and (min-width: 75em){.showtime-textarea textarea:-ms-input-placeholder{line-height:1.125rem}}@media only screen and (min-width: 120em){.showtime-textarea textarea:-ms-input-placeholder{line-height:1.375rem}}.showtime-textarea textarea:hover{color:#222234;border-color:#222234;background-color:#fff}.showtime-textarea textarea:focus,.showtime-textarea.is-focused textarea,.showtime-textarea.showtime-textarea--transparent textarea:focus{color:#222234;border-color:#4688f1;box-shadow:0 0 0 4px rgba(70,136,241,.15);outline:none}.showtime-textarea textarea:focus::-webkit-input-placeholder,.showtime-textarea.is-focused textarea::-webkit-input-placeholder,.showtime-textarea.showtime-textarea--transparent textarea:focus::-webkit-input-placeholder{opacity:0}.showtime-textarea textarea:focus:-moz-placeholder,.showtime-textarea.is-focused textarea:-moz-placeholder,.showtime-textarea.showtime-textarea--transparent textarea:focus:-moz-placeholder{opacity:0}.showtime-textarea textarea:focus::-moz-placeholder,.showtime-textarea.is-focused textarea::-moz-placeholder,.showtime-textarea.showtime-textarea--transparent textarea:focus::-moz-placeholder{opacity:0}.showtime-textarea textarea:focus:-ms-input-placeholder,.showtime-textarea.is-focused textarea:-ms-input-placeholder,.showtime-textarea.showtime-textarea--transparent textarea:focus:-ms-input-placeholder{opacity:0}.showtime-textarea textarea:disabled,.showtime-textarea.is-disabled textarea{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;pointer-events:none}.showtime-textarea textarea:disabled::-webkit-input-placeholder,.showtime-textarea.is-disabled textarea::-webkit-input-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-textarea textarea:disabled:-moz-placeholder,.showtime-textarea.is-disabled textarea:-moz-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-textarea textarea:disabled::-moz-placeholder,.showtime-textarea.is-disabled textarea::-moz-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-textarea textarea:disabled:-ms-input-placeholder,.showtime-textarea.is-disabled textarea:-ms-input-placeholder{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470 !important}.showtime-textarea.has-error textarea{border-color:#ff513d}.showtime-textarea.has-error textarea:focus,.showtime-textarea.is-focused.has-error textarea{border-color:#ff513d}.showtime-textarea.is-valid textarea{border-color:#13bf1f}.showtime-textarea.is-valid textarea:focus,.showtime-textarea.is-focused.is-valid textarea{border-color:#13bf1f}.showtime-select{color:#222234;min-height:0;margin:0;box-shadow:none}.showtime-select:hover{background-color:#fff;cursor:pointer}.showtime-select:focus,.showtime-select.is-focused,.showtime-select.showtime-select--transparent:focus{box-shadow:none}select.showtime-select{padding:0 1.875rem 0 .9375rem}select.showtime-select:disabled{font-weight:normal;color:#222234;border:.0625rem solid #cacaca;background-color:#fff;box-shadow:none}.showtime-select{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;width:100%;min-width:3.125rem;height:2.8125rem;padding:0 1.875rem 0 .9375rem;padding-right:2.1875rem;border-color:#cacaca;border-radius:.1875rem;background:#fff;-webkit-appearance:none;-moz-appearance:none;appearance:none}.touchevents .showtime-select{height:3.4375rem}.showtime-select::-ms-expand{display:none}.showtime-select:hover{border-color:#222234;box-shadow:none}.showtime-select:focus,.showtime-select.is-focused,.showtime-select.showtime-select--transparent:focus{border-color:#4688f1 !important;box-shadow:0 0 0 4px rgba(70,136,241,.15);outline:none}.showtime-select:disabled,.showtime-select.is-disabled{opacity:.5;pointer-events:none;resize:none}.showtime-select.has-error{border-color:#ff513d}.showtime-select.has-error:focus,.showtime-select.is-focused.has-error{border-color:#ff513d !important}.showtime-select.is-valid{border-color:#13bf1f}.showtime-select.is-valid:focus,.showtime-select.is-focused.is-valid{border-color:#13bf1f !important}.showtime-select-wrapper{position:relative;display:inline-block;width:100%;margin-bottom:.9375rem}.showtime-select__icon{position:absolute;right:.625rem;top:50%;transform:translateY(-50%);pointer-events:none;width:1rem;height:1rem}.showtime-select--small{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;height:2.1875rem;min-width:11.25rem;margin-left:.625rem;padding:0 1.875rem 0 .625rem;background:#fff url(asset-path("nucleo/mini/arrows/arrows-16px-3_small-down.svg")) right .625rem center no-repeat}.showtime-select--transparent{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}.showtime-checkbox{display:inline-flex;margin-bottom:0}.showtime-checkbox.showtime-checkbox--disabled .showtime-checkbox__tick{opacity:.4}.showtime-checkbox.is-selected .showtime-checkbox__tick{border:.0625rem solid #222234;background:#222234;box-shadow:none}.showtime-checkbox.is-selected .showtime-checkbox__tick .showtime-checkbox__tick-icon{opacity:1}.showtime-checkbox.is-selected-disabled{pointer-events:none}.showtime-checkbox.is-selected-disabled .showtime-checkbox__tick{border:.0625rem solid #cacaca;background:#cacaca}.showtime-checkbox.is-selected-disabled .showtime-checkbox__tick .showtime-checkbox__tick-icon{opacity:1}.showtime-checkbox.is-completed .showtime-checkbox__tick{border:.0625rem solid #13bf1f;background:#13bf1f}.showtime-checkbox.is-completed .showtime-checkbox__tick .showtime-checkbox__tick-icon--not-completed,.showtime-checkbox.is-completed .showtime-checkbox__tick .showtime-checkbox__tick-icon--not-applicable{display:none}.showtime-checkbox.is-completed .showtime-checkbox__tick svg *{fill:#fff}.showtime-checkbox.is-not-completed .showtime-checkbox__tick{border:.0625rem solid #ff513d;background:#ff513d}.showtime-checkbox.is-not-completed .showtime-checkbox__tick .showtime-checkbox__tick-icon--completed,.showtime-checkbox.is-not-completed .showtime-checkbox__tick .showtime-checkbox__tick-icon--not-applicable{display:none}.showtime-checkbox.is-not-completed .showtime-checkbox__tick svg *{fill:#fff}.showtime-checkbox.is-not-applicable .showtime-checkbox__tick{border:.0625rem solid #222234;background:#222234}.showtime-checkbox.is-not-applicable .showtime-checkbox__tick .showtime-checkbox__tick-icon--not-completed,.showtime-checkbox.is-not-applicable .showtime-checkbox__tick .showtime-checkbox__tick-icon--completed{display:none}.showtime-checkbox.is-not-applicable .showtime-checkbox__tick svg *{fill:#fff}.showtime-checkbox--stacked .showtime-checkbox__label-primary{display:flex;flex-direction:column}.showtime-checkbox--linethrough.is-selected .showtime-checkbox__label-primary,.showtime-checkbox--linethrough .showtime-checkbox__input:checked~.showtime-checkbox__label .showtime-checkbox__label-primary{text-decoration:line-through}.showtime-checkbox__input{width:1px;height:1px;overflow:hidden;padding:0;margin:-1px;clip:rect(0 0 0 0);position:absolute;border:0}.showtime-checkbox__input:checked+.showtime-checkbox__tick{border:.0625rem solid #222234;background:#222234}.showtime-checkbox__input:checked+.showtime-checkbox__tick .showtime-checkbox__tick-icon{opacity:1}.showtime-checkbox__tick{pointer-events:none;color:#222234;width:1.5rem;min-width:1.5rem;height:1.5rem;min-height:1.5rem;margin-right:.625rem;border:.0625rem solid #cacaca;border-radius:.1875rem;display:flex;align-items:center;justify-content:center;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1)}.showtime-checkbox__tick-icon{width:1rem;height:1rem;color:#fff;opacity:0}.showtime-checkbox__tick-icon svg{display:inline-block;width:1rem;height:1rem}.showtime-checkbox__label{pointer-events:none;color:#222234;margin-top:.125rem}.showtime-checkbox__label-primary{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-right:.75rem}.showtime-checkbox__label-secondary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-checkbox--inline{width:100%}.showtime-checkbox--inline .showtime-checkbox__label{display:flex;align-self:center;align-items:baseline;justify-content:space-between;flex-wrap:wrap;width:100%}.showtime-checkbox--inline .showtime-checkbox__label-secondary{padding-right:5px}.showtime-checkbox--small.is-selected .showtime-checkbox__tick-icon svg{margin-bottom:.125rem}.showtime-checkbox--small .showtime-checkbox__label{margin-top:0}.showtime-checkbox--small .showtime-checkbox__tick{width:1.0625rem;min-width:1.0625rem;height:1.0625rem;min-height:1.0625rem}.showtime-checkbox--small .showtime-checkbox__tick .showtime-checkbox__tick-icon{width:.6875rem;height:.6875rem}.showtime-checkbox--small .showtime-checkbox__tick .showtime-checkbox__tick-icon svg{width:.6875rem;height:.6875rem}.showtime-checkbox--small .showtime-checkbox__label-primary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-checkbox--small .showtime-checkbox__label-secondary{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-checkbox--emphasis .showtime-checkbox__label-primary{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-switch{display:inline-flex;margin-bottom:0;min-width:0;min-height:0}.no-touchevents .showtime-switch:hover{cursor:pointer}.no-touchevents .showtime-switch:hover .showtime-switch__rocker{box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.no-touchevents .showtime-switch:hover .showtime-switch__rocker{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-switch:focus .showtime-switch__rocker,.showtime-switch.is-focused .showtime-switch__rocker{box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-switch:focus .showtime-switch__rocker,.showtime-switch.is-focused .showtime-switch__rocker{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-switch--stacked .showtime-switch__label-primary{display:flex;flex-direction:column}.showtime-switch__input{border:0;clip:rect(0 0 0 0);height:.0625rem;margin:-0.0625rem;overflow:hidden;padding:0;position:absolute;width:.0625rem}.showtime-switch__plate{pointer-events:none;position:relative;min-width:2.25rem;min-height:1.125rem;width:2.25rem;height:1.125rem;border-radius:1.25rem;margin-top:.25rem;margin-right:.75rem;transition:all .15s ease-out;border:.125rem solid #cacaca}.showtime-switch__rocker{display:block;position:absolute;top:-0.3125rem;left:-0.1875rem;min-width:1.5rem;min-height:1.5rem;width:1.5rem;height:1.5rem;border-radius:1.5rem;transition:all .15s ease-out;background-color:#cacaca}.showtime-switch__input:checked~.showtime-switch__plate .showtime-switch__rocker{background-color:#222234;left:.75rem;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-switch__input:checked~.showtime-switch__plate .showtime-switch__rocker{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-switch__input:checked~.showtime-switch__plate .showtime-switch__rocker--disabled{background-color:#cacaca}.showtime-switch__label{pointer-events:none;color:#222234;display:block;margin-top:.1875rem}.showtime-switch__label-primary{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-right:.75rem}.showtime-switch__label-secondary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-switch__secondary-action .showtime-button{margin-left:25px;margin-top:5px}.showtime-radio-button{display:inline-flex;margin-bottom:0;min-width:0;min-height:0}.no-touchevents .showtime-radio-button:hover{cursor:pointer}.no-touchevents .showtime-radio-button:hover .showtime-radio-button__icon{border:.0625rem solid #222234}.no-touchevents .showtime-radio-button:hover .showtime-radio-button__input:checked+.showtime-radio-button__icon{border:.0625rem solid #222234;background:#222234}.no-touchevents .showtime-radio-button:hover .showtime-radio-button__label-primary{color:#222234}.showtime-radio-button:focus .showtime-radio-button__icon,.showtime-radio-button.is-focused .showtime-radio-button__icon{border:.0625rem solid #222234}.showtime-radio-button:focus .showtime-radio-button__input:checked+.showtime-radio-button__icon,.showtime-radio-button.is-focused .showtime-radio-button__input:checked+.showtime-radio-button__icon{border:.0625rem solid #222234;background:#222234}.showtime-radio-button:focus .showtime-radio-button__label-primary,.showtime-radio-button.is-focused .showtime-radio-button__label-primary{color:#222234}.showtime-radio-button.is-disabled{pointer-events:none}.showtime-radio-button.is-disabled .showtime-radio-button__icon{border:.0625rem solid #cacaca}.showtime-radio-button.is-disabled .showtime-radio-button__input:checked+.showtime-radio-button__icon{border:.0625rem solid #cacaca;background:#cacaca}.showtime-radio-button--stacked .showtime-radio-button__label-primary{display:flex;flex-direction:column}.showtime-radio-button__input{width:.0625rem;height:.0625rem;clip:rect(0 0 0 0);overflow:hidden;padding:0;margin:-0.0625rem;position:absolute;border:0}.showtime-radio-button__icon{color:#222234;pointer-events:none;width:1.5rem;min-width:1.5rem;height:1.5rem;min-height:1.5rem;margin-right:.75rem;border:.0625rem solid #cacaca;border-radius:1.5rem;background-color:#fff;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1)}.showtime-radio-button__input:checked+.showtime-radio-button__icon{border:.0625rem solid #222234;background:#222234;box-shadow:inset 0 0 0 2px #fff}.showtime-radio-button__label{pointer-events:none;color:#222234;display:block;margin-top:3px}.showtime-radio-button__label-primary{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-right:.75rem}.showtime-radio-button__label-secondary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}@media only screen and (max-width: 37.4375em){.intercom-launcher{display:none !important}.intercom-launcher-frame{display:none !important}}#clone-indy{min-height:270px;max-height:270px;overflow-y:scroll}#clone-indy .showtime-list__item{display:flex;justify-content:space-between;align-items:flex-start}#clone-indy .showtime-list__item-left{padding-right:2rem;font-size:.8rem;line-height:1.1rem}#clone-indy .showtime-list__item-content{flex-grow:1}#clone-indy .showtime-list__item-action{position:relative}#clone-indy .showtime-list__item-action .showtime-loader{transform:scale(0.72);transform-origin:top right;position:absolute;top:0;right:0;padding:0}#clone-indy .showtime-list__item-action .showtime-loader .showtime-loader__text{display:none}.showtime-button--white-svgs svg path{fill:#fff}.showtime-attachment{display:flex;justify-content:space-between}.showtime-attachment.is-link{border:.0625rem solid #646470;border-radius:.1875rem}.no-touchevents .showtime-attachment.is-link:hover{border-color:#222234;cursor:pointer}.showtime-attachment.is-link:active{opacity:.5}.showtime-attachment.is-link .showtime-attachment__indicator{padding:.625rem .3125rem .625rem .9375rem}.showtime-attachment.is-link .showtime-attachment__info{padding:.625rem}.showtime-attachment--editable{padding-bottom:15px;margin-bottom:10px;border-bottom:1px solid #cacaca}.showtime-attachment--editable .showtime-attachment__indicator{align-items:flex-start;padding-top:20px;flex-basis:50px}.showtime-attachment__indicator{align-items:center;display:flex;flex:0 0 auto;justify-content:center;padding-right:.625rem}.showtime-attachment__indicator-preview{border:.0625rem solid #cacaca;border-radius:.1875rem;width:4rem}.showtime-attachment__info{display:flex;flex:1 1 auto;flex-flow:column nowrap;justify-content:center;word-break:break-all}.ie .showtime-attachment__info{overflow:hidden}.showtime-attachment__info-footer{display:flex;align-items:center}.showtime-attachment__info-footer .showtime-button{margin-left:auto}.showtime-attachment__info-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;padding-bottom:.1875rem}.showtime-attachment__info-title:only-child{padding-bottom:0}.showtime-attachment__info-title-label{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;margin-bottom:3px}.showtime-attachment__info-path{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;display:flex;overflow:hidden;height:1.125rem}.showtime-attachment__indicator-icon{height:30px;width:30px}.showtime-attachment__indicator-icon svg{height:30px;width:30px}.showtime-attachment__info-path-icon{height:.625rem;margin-left:.3125rem;width:.625rem}.showtime-attachment__info-path-icon svg{display:inline-block;height:.625rem;width:.625rem}.showtime-attachment__info-path-icon svg *{fill:currentColor}.showtime-attachment__info-link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding-top:.3125rem}[data-react-class=Button]{display:inline}[data-react-class=Button]+[data-react-class=Button]{margin-left:.3125rem}button.showtime-button{margin:0;vertical-align:baseline}.showtime-button{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;text-align:center;white-space:nowrap;position:relative;height:2.8125rem;min-width:2.5rem;padding:0 1.25rem;text-decoration:none;border:1px solid rgba(0,0,0,0);background-color:rgba(0,0,0,0);border-radius:.1875rem;transition:all 200ms ease;touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;user-select:none}@media screen and (min-width: 0){.showtime-button{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-button{font-size:.9375rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.mac.safari .showtime-button{transition:none}.showtime-button:disabled,.showtime-button.is-disabled{opacity:.3;pointer-events:none;filter:grayscale(100%)}.showtime-button.is-disabled--no-pointer-events{pointer-events:none}.showtime-button.is-disabled-publish{cursor:default;background-color:rgba(19,191,31,.3)}.showtime-button.is-disabled-publish:hover{background-color:rgba(19,191,31,.3);box-shadow:none !important}.showtime-button.is-disabled-highlight{cursor:default;background-color:rgba(70,136,241,.3)}.showtime-button.is-disabled-highlight:hover{background-color:rgba(70,136,241,.3);box-shadow:none !important}.showtime-button.is-disabled-with-click{opacity:.3;filter:grayscale(100%)}.showtime-button:focus,.showtime-button:hover{outline:none}.no-touchevents .showtime-button:hover{opacity:.9;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.no-touchevents .showtime-button:hover{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-button:active,.showtime-button.is-active{opacity:.5;text-decoration:none;box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-button:active,.showtime-button.is-active{box-shadow:0 0 2px rgba(0,0,0,.03),0 2px 2px rgba(0,0,0,.06)}}.showtime-button.is-loading{pointer-events:none}.showtime-button.is-loading .showtime-button__text{color:rgba(0,0,0,0)}.showtime-button.is-loading .showtime-button__icon svg *{fill:rgba(0,0,0,0)}.showtime-button.is-loading .showtime-button__count{color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}.showtime-button.is-loading:after{position:absolute;top:50%;left:50%;animation-name:button-loader-spin;animation-duration:1250ms;animation-iteration-count:infinite;animation-timing-function:linear;border-radius:624.9375rem;content:"";display:block;border:.125rem solid currentColor;border-right-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0);margin-top:-0.5625rem;margin-left:-0.5625rem;height:1.0625rem;width:1.0625rem}.showtime-button__text{-webkit-user-select:none;-moz-user-select:none;user-select:none}.showtime-button__icon{margin-left:.625rem;height:1rem;width:1rem}.showtime-button__icon svg{display:inline-block;height:1rem;width:1rem}.showtime-button__icon svg *{fill:currentColor}.showtime-button__icon:first-child{margin-left:0;margin-right:.3125rem}.showtime-button__icon:only-of-type{margin-left:0;margin-right:0}.showtime-button--link{color:#4688f1 !important;border:none}.showtime-button--link-set_live--nowrap{flex-wrap:nowrap;display:flex;align-items:baseline}.showtime-button__count{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding:.0625rem .3125rem;border-radius:62.4375rem;margin-left:.3125rem;background-color:currentColor}.showtime-button__count:first-child{margin-left:0;margin-right:.3125rem}.showtime-button__count:only-of-type{margin-left:0;margin-right:0}.showtime-button__count-text{color:#fff;height:1rem;width:1rem}.showtime-button__count-text svg{height:1rem;width:1rem}.showtime-button__count-text svg *{fill:currentColor}.showtime-button__count+.showtime-button__icon,.showtime-button__icon+.showtime-button__count{margin-left:0;margin-right:0}.showtime-button--default{color:#222234;border-color:#cacaca}.showtime-button--default:hover,.showtime-button--default:active,.showtime-button--default.is-active{color:#222234;border-color:#cacaca}.showtime-button--default:disabled,.showtime-button--default.is-disabled,.showtime-button--default.is-disabled-with-click{color:#cacaca}.showtime-button--default:disabled svg *,.showtime-button--default.is-disabled svg *,.showtime-button--default.is-disabled-with-click svg *{fill:currentColor}.showtime-button--menu-close{background-color:#072843;color:#fff;margin-bottom:10px}.showtime-button--panel-close{color:#222234;background-color:#fff;border-color:#cacaca;border-radius:999px}.showtime-button--panel-close:hover,.showtime-button--panel-close:active,.showtime-button--panel-close.is-active{color:#222234;border-color:#cacaca}.showtime-button--highlight{color:#fff;background-color:#4688f1}.showtime-button--highlight:hover,.showtime-button--highlight:active,.showtime-button--highlight.is-active{color:#fff;background-color:#4688f1}.showtime-button--highlight .showtime-button__count-text{color:#fff}.showtime-button--highlight-alt{color:#fff;background-color:#222234}.showtime-button--highlight-alt:hover,.showtime-button--highlight-alt:active,.showtime-button--highlight-alt.is-active{color:#fff;background-color:#222234}.showtime-button--highlight-alt .showtime-button__count-text{color:#fff}.showtime-button--highlight-subtle{color:#222234;background-color:#f4f4f5}.showtime-button--highlight-subtle:hover,.showtime-button--highlight-subtle:active,.showtime-button--highlight-subtle.is-active{color:#222234;background-color:#f4f4f5}.showtime-button--highlight-subtle .showtime-button__count-text{color:#fff}.showtime-button--lowlight{color:#4688f1}.no-touchevents .showtime-button--lowlight:hover{background-color:#fff}.showtime-button--lowlight:hover,.showtime-button--lowlight:active,.showtime-button--lowlight.is-active{color:#4688f1}.showtime-button--lowlight-alt{color:#222234}.no-touchevents .showtime-button--lowlight-alt:hover{background-color:#fff}.showtime-button--lowlight-alt:hover,.showtime-button--lowlight-alt:active,.showtime-button--lowlight-alt.is-active{color:#222234}.showtime-button--lowlight-close{color:#222234;border-color:#cacaca}.no-touchevents .showtime-button--lowlight-close:hover{background-color:#fff}.showtime-button--lowlight-close:hover,.showtime-button--lowlight-close:active,.showtime-button--lowlight-close.is-active{border-color:#cacaca;color:#222234}.showtime-button--lowlight-subtle{color:#646470}.no-touchevents .showtime-button--lowlight-subtle:hover{background-color:#fff}.showtime-button--lowlight-subtle:hover,.showtime-button--lowlight-subtle:active,.showtime-button--lowlight-subtle.is-active{color:#646470}.showtime-button--lowlight-confirm{color:#13bf1f}.showtime-button--lowlight-confirm:hover,.showtime-button--lowlight-confirm:active,.showtime-button--lowlight-confirm.is-active{color:#13bf1f}.showtime-button--lowlight-delete{color:#ff513d}.showtime-button--lowlight-delete:hover,.showtime-button--lowlight-delete:active,.showtime-button--lowlight-delete.is-active{color:#ff513d}.showtime-button--delete-confirm{color:#fff;background-color:#ff513d}.showtime-button--delete-confirm:hover,.showtime-button--delete-confirm:active,.showtime-button--delete-confirm.is-active{color:#fff;background-color:#ff513d}.showtime-button--create{color:#fff;background-color:#fd4382}.showtime-button--create:hover,.showtime-button--create:active,.showtime-button--create.is-active{color:#fff;background-color:#fd4382}.showtime-button--create .showtime-button__count-text{color:#fff}.showtime-button--warning{color:#fff;background-color:#ff9100}.showtime-button--warning:hover,.showtime-button--warning:active,.showtime-button--warning.is-active{color:#fff;background-color:#ff9100}.showtime-button--attention{color:#fff;background-color:#13bf1f}.showtime-button--attention:hover,.showtime-button--attention:active,.showtime-button--attention.is-active{color:#fff;background-color:#13bf1f}.showtime-button--upsell{opacity:.3;border:1px solid rgba(202,202,202,.25);color:#646470;background-color:#fcfcfc}.showtime-button--upsell:hover,.showtime-button--upsell:active,.showtime-button--upsell.is-active{color:#fff;background-color:#13bf1f}.showtime-button--upsell-with-prompt{opacity:1;color:#13bf1f;background-color:#f3fcf4;border:solid 1px #13bf1f}.showtime-button--inverse{color:#fff;border-color:rgba(255,255,255,.6)}.showtime-button--inverse:hover,.showtime-button--inverse:active,.showtime-button--inverse.is-active{color:#222234;background-color:#fff;border-color:#fff}.showtime-button--add-field{white-space:normal;height:auto;flex-wrap:wrap;padding-top:15px;padding-bottom:15px;justify-content:flex-start;color:#4688f1;border-radius:0}.showtime-button--add-field:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.showtime-button--add-field:hover{box-shadow:none !important;background-color:#ecf3fe}.showtime-button--add-field .showtime-button__text{color:#222234}.showtime-button--add-field .showtime-button__secondary-text{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;text-align:left;flex-basis:100%;color:#646470;padding-left:22px;padding-top:5px}.showtime-button--admin-navigation{color:rgba(255,255,255,.8);padding:0 .625rem;height:2.1875rem;border-radius:999px}@media screen and (min-width: 0){.showtime-button--admin-navigation{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-button--admin-navigation{font-size:.9375rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-button--admin-navigation .showtime-button__icon{height:.875rem;width:.875rem;color:rgba(255,255,255,.6)}.showtime-button--admin-navigation .showtime-button__icon svg{height:.875rem;width:.875rem}.showtime-button--admin-navigation.is-selected,.showtime-button--admin-navigation.is-selected:hover{color:#fff;background-color:rgba(255,255,255,.15)}.showtime-button--admin-navigation.is-selected .showtime-button__icon,.showtime-button--admin-navigation.is-selected:hover .showtime-button__icon{color:#fff}.showtime-button--admin-navigation:hover,.showtime-button--admin-navigation:focus,.showtime-button--admin-navigation:active,.showtime-button--admin-navigation.is-active{background-color:#fff;color:#072843;opacity:1 !important}.showtime-button--admin-navigation:hover .showtime-button__icon,.showtime-button--admin-navigation:focus .showtime-button__icon,.showtime-button--admin-navigation:active .showtime-button__icon,.showtime-button--admin-navigation.is-active .showtime-button__icon{color:#072843}.showtime-button--settings-menu .showtime-button__text{overflow:hidden;text-overflow:ellipsis;max-width:70px}@media only screen and (min-width: 20em){.showtime-button--settings-menu .showtime-button__text{max-width:90px}}@media only screen and (min-width: 32.5em){.showtime-button--settings-menu .showtime-button__text{max-width:150px}}@media only screen and (min-width: 37.5em){.showtime-button--settings-menu .showtime-button__text{max-width:250px}}@media only screen and (min-width: 44.375em){.showtime-button--settings-menu .showtime-button__text{max-width:150px}}@media only screen and (min-width: 54.375em){.showtime-button--settings-menu .showtime-button__text{max-width:250px}}@media only screen and (min-width: 64em){.showtime-button--settings-menu .showtime-button__text{max-width:425px}}.showtime-button--record-action{color:#fff;height:25px !important;padding:0 10px !important}.showtime-button--record-action:hover,.showtime-button--record-action:active,.showtime-button--record-action.is-active{color:#222234;background-color:#fff}.showtime-button--record-table-nav{color:#646470;background-color:#fff;overflow:hidden;height:auto !important;padding:.625rem !important;text-align:left !important}.showtime-button--record-table-nav .showtime-button__count{color:#f4f4f5;margin-right:.625rem}@media only screen and (min-width: 39.6875em){.showtime-button--record-table-nav .showtime-button__count{display:none}}.showtime-button--record-table-nav .showtime-button__count-text{color:#222234;overflow:hidden}.showtime-button--record-table-nav:hover,.showtime-button--record-table-nav:active{color:#222234}.showtime-button--record-table-nav.is-active{color:#fff;background-color:#222234;opacity:1}.showtime-button--record-table-nav.is-active .showtime-button__count{color:#fff}.showtime-button--record-table-nav .showtime-button__icon{display:none;margin-right:.625rem;width:18px !important;height:18px !important}.showtime-button--record-table-nav .showtime-button__icon svg{width:18px !important;height:18px !important}.showtime-button--record-table-nav.is-invalid .showtime-button__count{display:none}.showtime-button--record-table-nav.is-invalid .showtime-button__icon{color:#ff513d;display:block}.showtime-button--record-table-nav.is-valid .showtime-button__icon{color:#13bf1f;display:block}.showtime-button--record-table-nav .showtime-button__text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;flex:1 1 auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}@media only screen and (max-width: 59.3125em){.showtime-button--admin-navigation-hide-small{display:none !important}}.showtime-button--guide{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;height:auto;padding-top:15px;padding-bottom:15px;border-radius:6px;box-shadow:1px 1px 15px 0px rgba(0,0,0,.1)}.no-touchevents .showtime-button--guide:hover{box-shadow:1px 1px 20px 0px rgba(0,0,0,.2)}.showtime-button--guide .showtime-button__text{white-space:pre-wrap;text-align:left}.showtime-button--guide .showtime-button__icon-guide{margin-right:10px;display:flex}.showtime-button--guide .showtime-button__icon-guide svg{height:auto;width:auto}.showtime-button--guide.is-selected{background-color:#222234;color:#fff}.showtime-button--guide-continue{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#fff;background-color:#4688f1;height:auto;padding-top:15px;padding-bottom:15px;border-radius:6px;box-shadow:1px 1px 15px 0px rgba(0,0,0,.1)}.showtime-button--guide-continue:hover{box-shadow:1px 1px 20px 0px rgba(0,0,0,.2) !important}.showtime-button--guide-continue:active{color:#fff}.showtime-button--record-selected{color:#222234;background-color:#fff;border-color:#4688f1;outline:1px #4688f1 solid !important;outline-offset:-2px;transition:none}.showtime-button--record-selected:hover,.showtime-button--record-selected:active,.showtime-button--record-selected.is-active{color:#222234;background-color:#fff}.showtime-button--small{padding:0 .9375rem;height:2.1875rem}.showtime-button--small .showtime-button__icon{height:.875rem;width:.875rem}.showtime-button--small .showtime-button__icon svg{height:.875rem;width:.875rem}.showtime-button--small.is-loading:after{border:.125rem solid currentColor;border-right-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0);margin-top:-0.4375rem;margin-left:-0.4375rem;height:.875rem;width:.875rem}.showtime-button--input-file input{display:none}.showtime-button--input-file{box-shadow:none !important;min-width:30px;height:2.1875rem;margin-bottom:0;color:#222234}.showtime-button--input-file:hover,.showtime-button--input-file:active,.showtime-button--input-file.is-active{color:#222234}.showtime-button--input-file .showtime-button__icon{height:1.25rem;width:1.25rem}.showtime-button--input-file .showtime-button__icon svg{display:inline-block;height:1.25rem;width:1.25rem}.showtime-button--input-file.showtime-button--default{height:2.8125rem}.showtime-button--no-border{border:none}.showtime-button--block{width:100%}.showtime-button--block-left{width:100%;justify-content:flex-start}.showtime-button--block-right{width:100%;justify-content:flex-end}@media only screen and (max-width: 28.0625em){.showtime-button--block-responsive-450-down{width:100%}}.showtime-button--block-responsive-450-down+.showtime-button--block-responsive-450-down{margin-left:.3125rem}@media only screen and (max-width: 28.0625em){.showtime-button--block-responsive-450-down+.showtime-button--block-responsive-450-down{margin-top:.625rem;margin-left:0}}.showtime-button--adjacent+.showtime-button--adjacent{margin-left:.625rem}@media only screen and (max-width: 39.625em){.showtime-button--collapse-icon .showtime-button__icon{display:none}.showtime-button--collapse-text .showtime-button__icon{margin-left:0 !important;margin-right:0 !important}.showtime-button--collapse-text .showtime-button__count{margin-left:0 !important;margin-right:0 !important}.showtime-button--collapse-text .showtime-button__text{display:none}}.showtime-button--no-radius-left-side{border-top-left-radius:0;border-bottom-left-radius:0}.showtime-button--no-radius-right-side{border-top-right-radius:0;border-bottom-right-radius:0}.showtime-button--no-padding{padding:0}.showtime-button--no-shadow:hover{box-shadow:none !important}.showtime-button--margin-top{margin-top:5px}.showtime-button--margin-bottom{margin-bottom:.9375rem}.showtime-button--margin-right{margin-right:.625rem}.showtime-button--multiline{height:auto;padding:.3125rem .9375rem .3125rem 2.3125rem;display:block;text-align:left;background-color:#fff;position:relative}.showtime-button--multiline .showtime-button__icon{color:#646470;position:absolute;left:15px;top:15px}.showtime-button--multiline .showtime-button__secondary-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:block;color:#646470}.showtime-button--multiline.is-disabled{opacity:1;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);color:rgba(100,100,112,.6)}.showtime-button--multiline.is-disabled .showtime-button__secondary-text,.showtime-button--multiline.is-disabled .showtime-button__icon{color:rgba(100,100,112,.6)}.showtime-button--flexible-lines{height:auto;background-color:#fff}.showtime-button--flexible-lines .showtime-button__icon{color:#646470;position:absolute;left:15px;top:18px}.showtime-button--flexible-lines .showtime-button__text{line-height:25px !important}.showtime-button--flexible-lines .showtime-button__secondary-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:block;color:#646470}.showtime-setLive-button--margin{margin-left:20px}.showtime-button--text-ellipsis .showtime-button__text{text-align:left;overflow:hidden;text-overflow:ellipsis;width:100%;margin-left:0 !important}.showtime-button--text-ellipsis .showtime-button__text:nth-child(2){padding-left:24px}.showtime-button-group{display:inline-flex}.showtime-button-group .showtime-button--group-member+.showtime-button--group-member,.showtime-button-group [data-react-class=Button]+[data-react-class=Button]{margin-left:-1px}.showtime-button-group>.showtime-button--group-member:not(:first-child):not(:last-child),.showtime-button-group>[data-react-class=Button]:not(:first-child):not(:last-child) .showtime-button{border-radius:0}.showtime-button-group>.showtime-button--group-member:first-child,.showtime-button-group>[data-react-class=Button]:first-child .showtime-button{margin-left:0}.showtime-button-group>.showtime-button--group-member:first-child:not(:last-child),.showtime-button-group>[data-react-class=Button]:first-child:not(:last-child) .showtime-button{border-top-right-radius:0;border-bottom-right-radius:0}.showtime-button-group>.showtime-button--group-member:last-child:not(:first-child),.showtime-button-group>[data-react-class=Button]:last-child:not(:first-child) .showtime-button{border-top-left-radius:0;border-bottom-left-radius:0}.showtime-button-group .showtime-button--group-member .showtime-button:hover{z-index:1}.showtime-button-group .showtime-button+.showtime-button{margin-left:-1px}.showtime-button-group>.showtime-button:not(:first-child):not(:last-child){border-radius:0}.showtime-button-group>.showtime-button:first-child{margin-left:0}.showtime-button-group>.showtime-button:first-child:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.showtime-button-group>.showtime-button:last-child:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.showtime-button-group .showtime-button:hover{z-index:1}.showtime-button-group--block{width:100%}.showtime-loader{align-items:center;display:flex;flex-direction:column;justify-content:center;padding-top:6.25rem;padding-bottom:6.25rem}.showtime-loader--padding-reduced{padding-top:3.125rem;padding-bottom:3.125rem}.showtime-loader--padding-small-bottom{padding-top:0;padding-bottom:.9375rem}.showtime-loader--no-padding{padding:0}.showtime-loader svg{animation:loader-rotate 1.5s linear infinite}@keyframes loader-rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.showtime-loader__text{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;display:block;margin-top:.9375rem}.showtime-overlay h2{margin:0}.showtime-overlay p{margin:0}.showtime-overlay h3{text-transform:none;margin:0}body.showtime-overlay-active{overflow:hidden}@media print{body.showtime-overlay-active .showtime-trail,body.showtime-overlay-active .showtime-app__header,body.showtime-overlay-active .showtime-app--page-task-planner .showtime-layout-admin-management{display:none}body.showtime-overlay-active .showtime-app,body.showtime-overlay-active .showtime-app__page,body.showtime-overlay-active .showtime-overlay__content-inner{display:block}}.showtime-overlay,.showtime-overlay-header{opacity:0;visibility:hidden;width:100%;position:fixed;top:0;left:0;transition:visibility 200ms,opacity 200ms cubic-bezier(0.2, 0.8, 0.5, 1) .1s}.showtime-overlay.is-visible,.showtime-overlay-header.is-visible{opacity:1;visibility:visible;overflow-y:auto}:not(.ie) .showtime-overlay.is-visible,:not(.safari) .showtime-overlay.is-visible,:not(.ie) .showtime-overlay-header.is-visible,:not(.safari) .showtime-overlay-header.is-visible{transform:translateZ(0)}@media print{.showtime-overlay,.showtime-overlay-header{position:initial}}.showtime-overlay-header.showtime-overlay-header--inline{position:initial;top:initial;left:initial;overflow-y:initial;overflow:initial;z-index:initial}.shadowing .showtime-overlay,.shadowing .showtime-overlay-header{top:2.5rem}.shadowing .showtime-overlay{height:unset}.showtime-overlay{z-index:19;height:100%;background-color:#f4f4f5;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23072848' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");right:0;bottom:0;left:0}.showtime-overlay--flex{display:flex}.showtime-overlay__inner{width:100%;height:auto;padding-top:0;margin-top:3.375rem}.showtime-overlay-header{z-index:20;background-color:#fff;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-overlay-header{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media print{.showtime-overlay-header{position:relative}}.showtime-overlay-header-inner,.showtime-overlay__content-container{display:flex;width:100%;padding-right:.625rem;padding-left:.625rem;align-items:center}@media only screen and (min-width: 50.0625em){.showtime-overlay-header-inner,.showtime-overlay__content-container{padding-right:0;padding-left:0}}@media only screen and (max-width: 49.9375em){.showtime-overlay-header-inner,.showtime-overlay__content-container{flex-wrap:wrap}}.showtime-overlay-header-close{padding:12px 10px 9px 0;flex:0 0 auto}.showtime-overlay-header--primary{display:flex;align-items:center;flex:0 auto;padding-right:10px;flex-basis:33%}@media only screen and (max-width: 49.9375em){.showtime-overlay-header--primary{flex-basis:55%}}@media only screen and (max-width: 31.1875em){.showtime-overlay-header--primary{flex-basis:45%}}@media only screen and (max-width: 24.9375em){.showtime-overlay-header--primary{flex-basis:auto}}.showtime-overlay-header-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}.showtime-overlay-header-actions{display:flex;padding:7px 10px 7px;white-space:nowrap;align-items:center;margin-left:auto;flex-shrink:0}.showtime-overlay-header--secondary{flex:0 0 auto;padding:0;flex-basis:33%}.showtime-overlay-header--secondary .showtime-tabs-underline{height:100%;display:flex;justify-content:center}@media only screen and (max-width: 49.9375em){.showtime-overlay-header--secondary{order:1;flex-basis:100%}.showtime-overlay-header--secondary .showtime-tabs-underline-headers{flex-basis:100%;justify-content:center}}@media only screen and (max-width: 31.1875em){.showtime-overlay-header--secondary .showtime-tabs-underline-headers-item-icon{display:none}}@media only screen and (max-width: 21.8125em){.showtime-overlay-header--secondary .showtime-tabs-underline-headers-item{margin:0 3px;padding-left:7px;padding-right:7px}}.showtime-overlay--absolute{position:absolute;z-index:auto}:not(.ie) .showtime-overlay--absolute,:not(.safari) .showtime-overlay--absolute{transform:none !important}:not(.ie) .showtime-overlay--absolute .showtime-overlay-header,:not(.safari) .showtime-overlay--absolute .showtime-overlay-header{transform:none !important}.showtime-grid-container--wide{max-width:100%}.showtime-grid-container--full-height{height:100%}.showtime-overlay__content-inner--full-height{height:100%}.showtime-grid-container--reports{padding-bottom:12.5rem}.showtime-overlay--conversation .showtime-overlay__inner{max-width:600px;background-color:#fff}.showtime-overlay--find-a-task .showtime-grid-container{max-width:940px}.showtime-overlay--find-a-task .showtime-layout-admin-management_page-title{display:flex}.showtime-overlay--find-a-task .showtime-layout-admin-management_selected-count{padding-right:8px}.showtime-overlay--find-a-task .showtime-layout-admin-management__action-bar{border-bottom:none;background-color:rgba(0,0,0,0);box-shadow:none;margin-top:1.5625rem;padding-bottom:0}.showtime-overlay--find-a-task .showtime-layout-admin-management__filters{border-right:none}.showtime-overlay--find-a-task .showtime-layout-admin-management__container{background-color:rgba(0,0,0,0)}.showtime-overlay--find-a-task .showtime-task-planner-task__actions{display:flex !important}.showtime-overlay--find-a-task .showtime-task-planner-section-title{padding:0 .625rem .3125rem .625rem}.showtime-overlay--find-a-task .showtime-task-planner-task:not(.is-editable) .showtime-task-planner-task__primary-title{color:#cacaca}.showtime-overlay--find-a-task .showtime-task-planner-list{padding:0 .625rem}.ie .showtime-overlay--find-a-task .showtime-layout-admin-management{flex:1 0 auto}.ie .showtime-overlay--find-a-task .showtime-layout-admin-management__filters{flex:0 0 auto}.ie .showtime-overlay--find-a-task .showtime-layout-admin-management__container{flex:1 0 auto}.showtime-overlay--file-viewer .showtime-grid-container,.showtime-overlay--link-viewer .showtime-grid-container{max-width:none}.showtime-overlay--link-viewer .showtime-overlay__inner{height:calc(100% - 54px)}.showtime-overlay--link-viewer iframe,.showtime-overlay--link-viewer .showtime-overlay__content,.showtime-overlay--link-viewer .showtime-overlay__content-inner,.showtime-overlay--link-viewer .showtime-grid-container{height:100%}.showtime-overlay--file-viewer.is-visible{overflow-y:initial}.showtime-overlay--file-viewer .showtime-overlay__inner,.showtime-overlay--file-viewer .showtime-grid-container,.showtime-overlay--file-viewer .showtime-overlay__content,.showtime-overlay--file-viewer .showtime-overlay__content-inner{height:100%}.showtime-overlay--file-viewer #filestack_previewer{height:calc(100% - 54px);overflow:hidden}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.showtime-overlay--file-viewer #filestack_previewer{height:100%}}@media screen and (max-height: 500px){.showtime-overlay--file-viewer .showtime-overlay-header{display:none}.showtime-overlay--file-viewer .showtime-overlay__inner{margin-top:0}.showtime-overlay--file-viewer #filestack_previewer{height:100%}}.showtime-overlay--task-history .showtime-grid-container{max-width:940px}.showtime-overlay--task-history .showtime-overlay__content{padding:1.875rem 0 9.375rem}.showtime-overlay--task-history .showtime-task__subtasks-add{display:none}@media only screen and (max-width: 24.9375em){.showtime-overlay--task-editor .showtime-overlay-header-title{display:none}}.showtime-overlay--no-clipping .grid-block{overflow:visible}.showtime-overlay--lightweight h2{margin:0}.showtime-overlay--lightweight p{margin:0}.showtime-overlay--lightweight h3{text-transform:none;margin:0}.showtime-overlay--lightweight{z-index:19;height:100%;top:0;right:0;bottom:0;left:0;opacity:0;visibility:hidden;width:100%;position:fixed;background-color:rgba(202,202,202,.85);background-image:none;padding-top:3.125rem;transition:visibility 200ms,opacity 200ms cubic-bezier(0.2, 0.8, 0.5, 1) .1s}.showtime-overlay--lightweight.is-visible{opacity:1;visibility:visible;overflow-y:auto}:not(.ie) .showtime-overlay--lightweight.is-visible,:not(.safari) .showtime-overlay--lightweight.is-visible{transform:translateZ(0)}.showtime-overlay--lightweight.showtime-overlay-header-container{z-index:20;background-color:rgba(0,0,0,0);height:0}@media print{.showtime-overlay--lightweight{position:initial}}.showtime-overlay--lightweight .showtime-overlay__inner{width:100%;height:auto;padding-top:0;display:block;margin:0 auto}.showtime-overlay--lightweight .showtime-overlay-header{z-index:20;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06);position:fixed;top:0;left:0;right:0;height:3.125rem;width:37.5rem;margin:0 auto;background-color:#222234}@media screen and (min-width: 64rem){.showtime-overlay--lightweight .showtime-overlay-header{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media print{.showtime-overlay--lightweight .showtime-overlay-header{position:relative}}@media only screen and (max-width: 37.4375em){.showtime-overlay--lightweight .showtime-overlay-header{width:100%}}.showtime-overlay--lightweight .showtime-overlay-header-inner{display:flex;width:100%;justify-content:space-between;padding-right:.625rem;padding-left:.625rem;align-items:center}@media only screen and (min-width: 50.0625em){.showtime-overlay--lightweight .showtime-overlay-header-inner{padding-right:0;padding-left:0}}.showtime-overlay--lightweight .showtime-overlay-header-title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#fff;flex:1 1 auto}.showtime-overlay--lightweight .showtime-overlay-header-actions{white-space:nowrap;padding-left:.625rem;flex:0 0 auto}.showtime-overlay--lightweight .showtime-overlay-header-close{flex:0 0 auto;padding-right:0}.showtime-overlay--lightweight .showtime-overlay-header-close .showtime-button{color:#fff;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}.showtime-overlay--lightweight .showtime-overlay-header-close .showtime-button:hover,.showtime-overlay--lightweight .showtime-overlay-header-close .showtime-button:active,.showtime-overlay--lightweight .showtime-overlay-header-close .showtime-button.is-active{color:#ecf3fe;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0)}.showtime-empty-state{display:flex;align-items:center;justify-content:center;padding-top:1.25rem;padding-bottom:.9375rem}@media only screen and (min-width: 58.75em){.showtime-empty-state{padding-top:2.5rem}}.showtime-empty-state__inner{display:flex;flex-direction:column;align-items:center;justify-content:center}.showtime-empty-state__icon{margin-bottom:.9375rem}.showtime-empty-state__icon svg{width:4.25rem;height:4.25rem}.showtime-empty-state__gif{height:9.0625rem;margin-bottom:.9375rem;border:.3125rem solid #fff}@media only screen and (min-width: 58.75em){.showtime-empty-state__gif{height:13.75rem}}.showtime-empty-state__title{color:#4e4e4e;text-align:center}@media screen and (min-width: 0){.showtime-empty-state__title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-empty-state__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-empty-state__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-empty-state__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.showtime-empty-state__description{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#4e4e4e;text-align:center;padding-top:.1875rem}.showtime-empty-state__action{padding-top:1.25rem}.showtime-label{color:inherit;display:inline;font-size:inherit;font-weight:inherit;margin:0}p.showtime-label{line-height:inherit}.showtime-label{color:#222234;display:inline-block;padding-bottom:.4375rem;padding-top:.25rem}.showtime-label--subtle{color:#646470}.showtime-label--subtle .showtime-label__icon{color:#cacaca}.showtime-label--emphasis .showtime-label__text{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-label--block{display:block}.showtime-label--prefix{padding-right:5px;color:#646470}.showtime-label--suffix{padding-left:5px;color:#646470}.showtime-label__text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-label__text--required{color:#ff513d}.showtime-label__secondary-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-label__icon{vertical-align:middle;display:inline-block;height:.875rem;width:.875rem;margin-top:-2px}.showtime-label__icon svg{height:.875rem;width:.875rem}.showtime-label__icon svg *{fill:currentColor}.showtime-label__icon+.showtime-label__text{margin-left:.3125rem}.showtime-label__text+.showtime-label__icon{margin-left:.3125rem}.showtime-label--small{padding-bottom:.125rem;padding-top:.125rem}.showtime-label--small .showtime-label__text{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-label--small .showtime-label__secondary-text{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-label--small .showtime-label__icon{height:.75rem;width:.75rem}.showtime-label--small .showtime-label__icon svg{height:.75rem;width:.75rem}.showtime-label--validation-error{color:#ff513d}.showtime-label--validation-error .showtime-label__icon{color:#ff513d}.showtime-label--status{margin-right:.625rem}.showtime-label--status .showtime-label__text{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:rgba(255,255,255,.7)}.showtime-label--pill{background-color:#222234;border-radius:624.9375rem;color:#fff;padding:.25rem .625rem;white-space:nowrap}.showtime-label--pill.showtime-label--small{padding:.125rem .625rem .25rem}.showtime-label--pill.is-muted{background-color:#f4f4f5;color:#222234}.showtime-label--pill.is-important{background-color:#ff513d;color:#fff}.showtime-label--subtitle{color:#646470}.showtime-label--subtitle .showtime-label__text{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-message p{margin:0;color:inherit;line-height:inherit;font-size:inherit}.showtime-message{padding:.9375rem 1.25rem;color:#222234;background-color:#f6f6f6;border-radius:.1875rem;display:flex;align-items:baseline}.showtime-message__inner{display:flex;flex-direction:column;flex:1 1 100%}.showtime-message__body{display:flex;align-items:baseline}.showtime-message__icon{flex:0 0 auto;padding-right:.5rem}.showtime-message__icon svg{height:1rem;margin-bottom:-0.1875rem;width:1rem}.showtime-message__icon svg *{fill:currentColor}.showtime-message__text-item{flex:1 1 auto;padding-bottom:.3125rem;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-message__text-item:last-child{padding-bottom:0}.showtime-message__button{flex:0 0 auto;padding-top:.9375rem;padding-left:0}.showtime-message--toast{z-index:29;position:fixed;border-radius:0;top:0;left:0;width:100%;padding:.9375rem;justify-content:center;box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-message--toast{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}@media only screen and (min-width: 48em){.showtime-message--toast{left:20%;width:60%;border-bottom-left-radius:.1875rem;border-bottom-right-radius:.1875rem}}.showtime-message--toast .showtime-message__inner{flex-direction:row;max-width:37.5rem;align-items:baseline;justify-content:center}.showtime-message--toast .showtime-message__text-item{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-message--toast .showtime-message__button{padding-top:0;padding-left:1.25rem}.showtime-message--toast.slide-enter{transform:translateY(-100%)}.showtime-message--toast.slide-enter.slide-enter-active{transform:translateY(0%);transition:transform 250ms ease-in-out}.showtime-message--toast.slide-leave{transform:translateY(0%)}.showtime-message--toast.slide-leave.slide-leave-active{transform:translateY(-100%);transition:transform 250ms ease-in-out}.showtime-message--undo{color:#fff;background-color:#222234}.showtime-message--success{color:#fff;background-color:#13bf1f}.showtime-message--error{color:#fff;background-color:#ff513d}.showtime-message--warning{color:#fff;background-color:#ff9100}.showtime-message--info{color:#fff;background-color:#646470}.showtime-message--help{background-color:#fffdf5;border:.0625rem solid #cacaca}.showtime-message--offline{z-index:28;color:#222234;background-color:#ffd635;transform:translateY(-200%);transition:transform 250ms ease-in-out;padding:.3125rem .9375rem;width:90%;left:5%;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-message--offline{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (min-width: 48em){.showtime-message--offline{left:20%;width:60%}}@media only screen and (min-width: 64em){.showtime-message--offline{left:30%;width:40%}}.showtime-message--offline .showtime-message__text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-message--offline.is-offline{transform:translateY(0%)}.showtime-menu{border:.0625rem solid #f4f4f5;border-radius:.125rem;background-color:#fff;position:absolute;margin-top:.3125rem;max-width:20.625rem;box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06);z-index:24}@media screen and (min-width: 64rem){.showtime-menu{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}.showtime-menu.is-collapsed{display:none}.showtime-menu.is-expanded{display:block}.showtime-menu--search{margin:.625rem .625rem .3125rem}@media only screen and (max-width: 44.3125em){.showtime-menu--fullscreen{position:fixed;border-radius:0;border-width:0;box-shadow:none;left:0;max-width:100%;right:0;top:0;bottom:0;margin:0;overflow:auto;border:15px solid #fff}.shadowing .showtime-menu--fullscreen{top:40px}}.showtime-menu-close{position:sticky;top:0;z-index:1}@media only screen and (min-width: 44.375em){.showtime-menu-close{display:none}}.showtime-menu__info{padding:.625rem .9375rem;border-bottom:.0625rem solid #f6f6f6}.showtime-menu__info-item{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#4e4e4e;padding:0;margin:0}.showtime-menu__info-item:first-child{color:#222234}.showtime-menu__info-item--strong{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-menu__feedback{padding:15px 15px 0 15px;border-bottom:.0625rem solid #f6f6f6}.showtime-menu__feedback:last-child{border-bottom:none}.showtime-menu__feedback .showtime-button{margin-bottom:15px}.showtime-menu__feedback-item{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;padding:0 0 15px 0;margin:0}.showtime-menu__feedback-label{display:inline-block;padding:3px 5px;border-radius:999px;min-width:38px;color:#fff;margin-right:10px;text-align:center;font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-menu__feedback-label--ontime{background-color:#13bf1f}.showtime-menu__feedback-label--late{background-color:#ff9100}.showtime-menu__feedback-label--missed{background-color:#ff513d}.showtime-menu__feedback-label--total{background-color:#222234;margin-right:0}.showtime-menu__feedback-item--strong{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-menu__list{list-style:none;margin:0;padding:0}.showtime-menu__list-item{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;border-bottom:.0625rem solid #f6f6f6;white-space:nowrap}.showtime-menu__list-item:last-child{border-bottom:none}.showtime-menu__list-item .showtime-icon{margin-right:.3125rem}.showtime-menu__list-item #HW_badge{top:0px;left:-2px}.showtime-menu__list-item--selectable .showtime-button__icon{margin-left:auto}.showtime-menu__list-item-text{min-width:9.375rem}.showtime-menu__list-item-text{min-width:9.375rem}.showtime-menu__list--no-border .showtime-menu__list-item{border-bottom:none}.showtime-menu__list-item__divider{padding:.9375rem 0 0 .9375rem;border-top:1px solid #f6f6f6;color:#9999a4;font-size:.75rem;line-height:1.125rem;margin-top:.625rem;font-weight:600;text-transform:uppercase}@media only screen and (min-width: 59.375em){.showtime-menu__list-item--hide-large{display:none}}.showtime-menu__list-item--top-divider{border-top:.0625rem solid #f6f6f6}@media only screen and (min-width: 44.375em){.showtime-menu--complete-tasks{min-width:17.5rem;max-height:20.625rem;overflow-y:auto}}.showtime-menu--grow-right{left:0}.showtime-menu--grow-left{right:0}.showtime-filter .showtime-menu{padding:10px 15px;min-width:300px}.showtime-filter .showtime-input--search{margin-bottom:13px}.showtime-filter .showtime-form-section{display:flex;justify-content:center}.showtime-filter__dates .showtime-button{padding:9px 7px;height:auto}.showtime-filter__summary{display:inline-flex;border:1px solid #cacaca;border-radius:3px;padding:9px 7px;align-items:center}.showtime_filter__remove-tooltip{top:1px}.showtime_filter__remove-tooltip::before,.showtime_filter__remove-tooltip::after{z-index:25}.showtime-filter__remove-icon{margin-left:5px}.showtime-filter__remove-icon svg{height:13px;width:13px;background-color:#cacaca;border-radius:50%;padding:3px}.showtime-filter__remove-icon svg path{fill:#fff}.showtime-filter__remove-icon:hover svg{background-color:#4688f1}.showtime-filter__summary-label-primary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;margin-right:4px}.showtime-filter__summary-label-secondary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-filter__summary-label{display:flex;max-width:200px}.showtime-filter__summary-label .showtime-icon{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin-right:4px}.showtime-filter__summary-label .showtime-icon path{fill:#222234 !important}.showtime-list{list-style:none;padding:0;margin:0 0 1.25rem;line-height:inherit}.showtime-list:last-child{margin-bottom:0}.showtime-list.is-disabled{pointer-events:none}.showtime-list>.showtime-radio-button{display:flex}.showtime-list--bulleted{list-style-type:disc}.showtime-list__item{padding-bottom:.625rem;margin-bottom:.625rem;border-bottom:.0625rem solid #cacaca}.showtime-list__item:last-child{margin-bottom:0;padding-bottom:0;border-color:rgba(0,0,0,0)}.showtime-list__item.task-priority{border-bottom:none}.showtime-list__item-hp{width:100%;max-width:100%;padding-bottom:.625rem;border-bottom:.0625rem solid #cacaca}.showtime-list--group-border-bottom{border-bottom:.0625rem solid #cacaca}.showtime-list--group-border-bottom .showtime-list__item{border-color:rgba(0,0,0,0)}.showtime-menu__list .showtime-form-section__item:last-child .showtime-list--group-border-bottom{border-color:rgba(0,0,0,0)}.showtime-form-section__item--fixed-height-overflow .showtime-list__item:last-child{padding-bottom:.625rem}.showtime-list__item--subtle{border-bottom:none}.showtime-list--widgets .showtime-list__item{display:flex;justify-content:space-between;align-items:center}.showtime-list--bulleted{list-style-type:disc}.showtime-task-list{list-style:none;padding:0;margin:0}.showtime-task-list__item{display:flex;justify-content:space-between;align-items:center;padding-bottom:1.25rem;margin-bottom:1.25rem;border-bottom:.0625rem solid #f6f6f6}.showtime-task-list__item:last-child{margin-bottom:0;border-color:rgba(0,0,0,0)}.showtime-task-list__item-contents{padding-right:.9375rem;flex:1 1 auto}.showtime-task-list__item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-bottom:.3125rem}.showtime-task-list__item-help-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;margin-bottom:0}.showtime-task-list__item-action{flex:0 0 auto}.showtime-tag-list{list-style:none;padding:.4375rem 0;margin:0;line-height:inherit;max-height:18.75rem;overflow-y:auto}.showtime-tag-list__item{padding:.4375rem .9375rem;display:flex;align-items:center;justify-content:space-between}.showtime-tag-list__item:last-child{border-top:.0625rem solid #cacaca;padding-top:.9375rem;margin-top:.625rem}.showtime-tag-list__item:only-child{border-top:none;padding-top:.4375rem;margin-top:0}.showtime-tag-list__item .showtime-tag{flex:1 0 auto}.showtime-tag-list__item-assigned-to-me{padding:.4375rem .9375rem;display:flex;align-items:center;justify-content:space-between}.showtime-tag-list__item-assigned-to-me:first-child{border-top:.0625rem solid #cacaca;border-bottom:.0625rem solid #cacaca;padding-top:.9375rem;padding-bottom:.9375rem;margin-bottom:.625rem;flex:1 0 auto}.showtime-tag-list__item-assigned-to-me .showtime-tag{flex:1 0 auto}.showtime-tag-list__tick{visibility:hidden;margin-left:.625rem;height:.875rem;width:.875rem}.showtime-tag-list__tick svg{height:.875rem;width:.875rem}.showtime-tag-list__tick svg *{fill:#222234}.showtime-tag-list__tick.is-loading{pointer-events:none;position:relative;visibility:visible}.showtime-tag-list__tick.is-loading svg *{fill:rgba(0,0,0,0)}.showtime-tag-list__tick.is-loading:after{position:absolute;top:50%;left:50%;animation-name:button-loader-spin;animation-duration:1250ms;animation-iteration-count:infinite;animation-timing-function:linear;border-radius:624.9375rem;content:"";display:block;border:.125rem solid #222234;border-right-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0);margin-top:-0.4375rem;margin-left:-0.4375rem;height:.875rem;width:.875rem}.showtime-tag-list__tick.is-selected{visibility:visible}.showtime-link{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:inherit;line-height:inherit;text-decoration:none}.no-touchevents .showtime-link:hover{text-decoration:underline}.showtime-link:active{opacity:.7;text-decoration:none}.showtime-link--disabled{pointer-events:none}.showtime-link--default{color:#222234}.showtime-link--default:active{color:#222234}.showtime-link--highlight{color:#4688f1}.showtime-link--highlight:active{color:#4688f1}.showtime-link--alternate{color:#646470}.showtime-link--alternate:active{color:#646470}.showtime-link--positive{color:#13bf1f}.showtime-link--positive:active{color:#13bf1f}.showtime-link--block{display:block}.showtime-link--centered{justify-content:center}.showtime-link--underline{text-decoration:underline !important}.no-touchevents .showtime-link--underline:hover{text-decoration:underline !important}.showtime-link--emphasis{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-link--small{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-link--expand{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;pointer-events:auto;background:linear-gradient(to top, rgba(247, 247, 248, 0) 0%, #f7f7f8 50%) repeat-x top left;background-image:linear-gradient(to bottom, rgba(247, 247, 248, 0) 0%, #f7f7f8 50%);border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;display:block;text-align:center;width:100%;position:absolute;padding-top:1.875rem;padding-bottom:.625rem;bottom:0;left:0}.showtime-link--collapse{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;pointer-events:auto;display:block;text-align:center;width:100%;padding-top:.625rem;padding-bottom:.625rem}.showtime-link--menu-item{white-space:initial;display:flex;align-items:flex-start;min-width:13.75rem;padding:.625rem .9375rem;text-decoration:none !important}@media screen and (min-width: 0){.showtime-link--menu-item{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-link--menu-item{font-size:.9375rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-link--menu-item-auto-width{min-width:auto}.showtime-link--menu-item .showtime-menu__list-item-text{margin-right:15px}.showtime-link--menu-item .showtime-callout{margin-left:auto}.showtime-link--menu-item:hover{text-decoration:none}.showtime-link--menu-item:hover .showtime-menu__list-item-text{text-decoration:underline}@media only screen and (max-width: 47.9375em){.showtime-link--menu-item{padding:.9375rem}}.showtime-link__icon{display:inline-block;height:.875rem;width:.875rem}.showtime-link__icon svg{height:.875rem;margin-bottom:-0.125rem;width:.875rem}.showtime-link__icon svg *{fill:currentColor}.showtime-link__icon--left{margin-right:.4375rem}.showtime-link__icon--right{margin-left:.4375rem}.showtime-link--margin-left{margin-left:.3125rem}.showtime-trail h2,.showtime-trail h3{color:inherit;text-transform:none;margin:0}.showtime-trail p{margin:0}.showtime-trail{display:flex;min-height:100%;flex-direction:column}.showtime-trail__future-day{padding:30px 7px;display:flex;align-items:center;justify-content:center;background-color:#ff9100;color:#fff}.showtime-trail__future-day-heading{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;padding-left:7px;color:#fff}.showtime-trail__future-day--is_stuck{z-index:4}.showtime-trail__banner{margin-top:1.5625rem;margin-left:.3125rem;margin-right:.3125rem;text-align:center}@media only screen and (min-width: 22.5em){.showtime-trail__banner{margin-left:.9375rem;margin-right:.9375rem}}.showtime-trail__banner-inner{max-width:58.75rem;background-color:#fff;border:1px solid rgba(202,202,202,.5);border-radius:.1875rem;margin:0 auto;text-align:left;padding:.9375rem;display:flex;justify-content:space-between}.showtime-trail__banner-info{flex:1 1 auto}.showtime-trail__banner-status{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-bottom:.9375rem}.showtime-trail__banner-message{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-trail__banner-button{margin-right:auto}.showtime-trail__section{display:flex;justify-content:center;flex:0 0 auto;min-height:5rem}.showtime-trail__section:last-child .showtime-trail__section-inner.is-expanded{padding-bottom:9.375rem}.showtime-trail__section.is-expanded.showtime-trail__section--done{background-color:rgba(243,252,244,.5);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23072848' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E")}.showtime-trail__section.is-expanded.showtime-trail__section--done .showtime-trail__tasks-header{display:none}.showtime-trail__section.showtime-trail__section--later-today{min-height:8.125rem}.showtime-trail__section--now .showtime-empty-state{padding-bottom:0}.showtime-trail__section--now .showtime-empty-state__icon svg{width:14.375rem;height:14.375rem}.showtime-trail__section--now,.showtime-trail__section--start-end-day{flex:1 0 auto}.showtime-trail__section--today .showtime-task,.showtime-trail__section--later-today .showtime-task,.showtime-trail__section--after-today .showtime-task{margin-bottom:-0.0625rem;border-radius:0;border-bottom:.125rem solid #f6f6f6}.showtime-trail__section--today .showtime-task.is-expanded,.showtime-trail__section--later-today .showtime-task.is-expanded,.showtime-trail__section--after-today .showtime-task.is-expanded{margin-top:1.25rem;margin-bottom:1.25rem;border-bottom-color:rgba(0,0,0,0)}.showtime-trail__section--today .showtime-task.is-expanded:first-child,.showtime-trail__section--later-today .showtime-task.is-expanded:first-child,.showtime-trail__section--after-today .showtime-task.is-expanded:first-child{margin-top:0}.showtime-trail__section--today .showtime-task:last-child,.showtime-trail__section--later-today .showtime-task:last-child,.showtime-trail__section--after-today .showtime-task:last-child{border-bottom-color:rgba(0,0,0,0)}.showtime-trail__section--later-today .showtime-trail__section-header{padding-top:0}.showtime-trail__section-inner{width:100%;position:relative}@media only screen and (min-width: 58.75em){.showtime-trail__section-inner{max-width:58.75rem}}.showtime-trail__section-inner.is-expanded{padding-bottom:1.875rem}.showtime-trail__line{content:"";width:.125rem;height:100%;position:absolute;top:0;left:1.3125rem;background-color:rgba(0,0,0,.1)}@media only screen and (min-width: 22.5em){.showtime-trail__line{left:1.875rem}}@media only screen and (min-width: 58.75em){.showtime-trail__line{left:1.5625rem}}.showtime-trail__section-header{color:#222234;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 0;position:relative}.showtime-trail__section-header-trigger{padding:.625rem 1.25rem .625rem 0;margin:0 .3125rem;border-radius:.1875rem;background-color:#fff;color:#222234;align-items:center;display:flex;flex:1 1 auto;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-trail__section-header-trigger{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (min-width: 22.5em){.showtime-trail__section-header-trigger{margin:0 .9375rem}}@media only screen and (min-width: 58.75em){.showtime-trail__section-header-trigger{margin:0;flex:0 0 auto}}.showtime-trail__section-header-trigger .showtime-trail__section-header-title{color:#222234;padding-left:0}.no-touchevents .showtime-trail__section-header-trigger:hover{cursor:pointer;text-decoration:underline}.showtime-trail__section-header-trigger--done{touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:#13bf1f}.showtime-trail__section-header-trigger--done .showtime-trail__section-header-title{color:#13bf1f}.showtime-trail__section-header-trigger--done.is-expanded{color:#fff;background-color:#13bf1f}.showtime-trail__section-header-trigger--done.is-expanded .showtime-trail__section-header-title{color:#fff}.showtime-trail__section-header-trigger--later-today{touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.9375rem 1.25rem .9375rem 0}.showtime-trail__section-header-toggle{margin-right:.5rem;margin-left:.5625rem}@media only screen and (min-width: 58.75em){.showtime-trail__section-header-toggle{margin-right:1rem;margin-left:1.0625rem}}.showtime-trail__section-header-now{display:inline-flex;align-items:center}.showtime-trail__section-header-title{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;padding-left:2.375rem}@media only screen and (min-width: 22.5em){.showtime-trail__section-header-title{padding-left:2.9375rem}}@media only screen and (min-width: 58.75em){.showtime-trail__section-header-title{padding-left:3.125rem}}.showtime-trail__section-header-actions{margin-right:.3125rem}@media only screen and (min-width: 22.5em){.showtime-trail__section-header-actions{margin-right:.9375rem}}@media only screen and (min-width: 58.75em){.showtime-trail__section-header-actions{margin-right:0}}.showtime-trail__section-contents{position:relative}.showtime-trail__tasks-header{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;padding:.625rem 0 1.0625rem 2.5rem}@media only screen and (min-width: 22.5em){.showtime-trail__tasks-header{padding-left:3.125rem}}@media only screen and (min-width: 58.75em){.showtime-trail__tasks-header{padding-left:3.3125rem}}@media only screen and (max-width: 47.9375em){.showtime-trail .showtime-task__header .showtime-task__header-actions-button .showtime-button__text{display:none}}.showtime-trail__filter{display:flex;align-items:center;flex-wrap:wrap;padding-left:2.5rem;padding-right:.625rem}@media only screen and (min-width: 22.5em){.showtime-trail__filter{padding-left:3.125rem;padding-right:.9375rem}}@media only screen and (min-width: 58.75em){.showtime-trail__filter{padding:0 3.3125rem}}.showtime-trail__filter-tags{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;line-height:1.875rem !important;flex:0 1 auto}.showtime-trail__filter-tags .showtime-tag{margin-left:.3125rem}.showtime-trail__filter-tags .showtime-tag:hover{cursor:default !important}.showtime-task h4{margin:initial}.showtime-task{margin:0 .3125rem .9375rem;border-radius:.1875rem;background-color:#fff;transition:all 150ms linear;box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-task{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}@media only screen and (min-width: 22.5em){.showtime-task{margin:0 .9375rem 1.25rem}}@media only screen and (min-width: 58.75em){.showtime-task{margin:0 0 1.25rem}}.showtime-task .showtime-task__body,.showtime-task .showtime-task__footer{display:none}.showtime-task.is-expanded{margin-bottom:3.125rem;box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-task.is-expanded{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}@media only screen and (max-width: 58.6875em){.showtime-task.is-expanded{margin-right:0;margin-bottom:2.1875rem;margin-left:0;border-right:0;border-left:0;border-radius:0}}@media only screen and (min-width: 65em){.showtime-task.is-expanded{margin-right:-1.875rem;margin-left:-1.875rem}}.showtime-task.is-expanded .showtime-task__header-container--is-stuck{z-index:3}.showtime-task.is-expanded .showtime-task__header-container--is-stuck .showtime-task__header{border-bottom:1px solid rgba(202,202,202,.3)}.showtime-task.is-expanded .showtime-task__header-meta--not-in-head{padding:.9375rem;padding-top:0}.showtime-task.is-expanded .showtime-task__header{padding:.9375rem 0;flex-wrap:nowrap}@media only screen and (max-width: 47.9375em){.showtime-task.is-expanded .showtime-task__header{padding:10px 0;flex-wrap:nowrap !important}.showtime-task.is-expanded .showtime-task__header .showtime-task__close{flex:0 0 auto}.showtime-task.is-expanded .showtime-task__header .showtime-task__info{padding-top:0;padding-left:0;order:0;overflow:hidden;flex:1 1 auto}.showtime-task.is-expanded .showtime-task__header .showtime-task__title{overflow:hidden;text-overflow:ellipsis;width:100%;white-space:nowrap}}@media only screen and (min-width: 58.75em){.showtime-task.is-expanded .showtime-task__header{padding:1.25rem .3125rem}}@media only screen and (max-width: 47.9375em){.showtime-task.is-expanded .showtime-task__header{flex-wrap:wrap}}@media only screen and (min-width: 65em){.showtime-task.is-expanded .showtime-task__header{padding:1.25rem .9375rem}}.showtime-task.is-expanded .showtime-task__permissions{display:flex}@media only screen and (max-width: 47.9375em){.showtime-task.is-expanded .showtime-task__close{flex:1 1 auto}}.showtime-task.is-expanded .showtime-task__pip{visibility:hidden;position:absolute;left:-9999px}.showtime-task.is-expanded .showtime-task__info{flex:1 0 100%;padding-top:.9375rem;padding-right:.9375rem;padding-left:.625rem;order:1}@media only screen and (min-width: 22.5em){.showtime-task.is-expanded .showtime-task__info{padding-left:.9375rem}}@media only screen and (min-width: 48em){.showtime-task.is-expanded .showtime-task__info{flex:1 1 auto;padding-top:0;padding-right:2.375rem;padding-left:.3125rem;order:0;border-top:0}}@media screen and (min-width: 0){.showtime-task.is-expanded .showtime-task__title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-task.is-expanded .showtime-task__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-task.is-expanded .showtime-task__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-task.is-expanded .showtime-task__title{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-task.is-expanded .showtime-task__header-meta{padding-top:.3125rem}.showtime-task.is-expanded .showtime-task__pip-container{opacity:0;width:0;padding-right:0;padding-left:0}.showtime-task.is-expanded .showtime-task__pip-container .showtime-task__pip{opacity:0;width:0;padding-right:0;padding-left:0}.showtime-task.is-expanded .showtime-task__header-actions{display:flex;padding-right:0;align-items:flex-start}.showtime-task.is-expanded .showtime-task__body{display:flex;flex-direction:column}.showtime-task.is-expanded .showtime-task__footer{display:flex}.showtime-task .showtime-task__priority-expanded{margin-top:10px;margin-bottom:-5px}.showtime-task .showtime-task__priority-collapsed{margin-right:5px}.showtime-task.is-locked .showtime-task__body-item--checklist,.showtime-task.is-locked .showtime-task__body-item--widget{opacity:.8;pointer-events:none}.showtime-task.is-locked .showtime-task-action{opacity:1;pointer-events:auto}.showtime-task.is-locked .showtime-task__body-item--widget-v2{pointer-events:auto}.showtime-task.is-locked .showtime-task__conversation-button{pointer-events:auto}.showtime-task.is-locked .showtime-task__body-item--conversation{pointer-events:auto}.showtime-task.is-historical{margin-bottom:1.25rem;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-task.is-historical{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (max-width: 58.6875em){.showtime-task.is-historical{margin-right:.625rem;margin-bottom:.9375rem;margin-left:.625rem;border-radius:.1875rem}}@media only screen and (min-width: 58.75em){.showtime-task.is-historical{margin-right:.9375rem;margin-left:.9375rem}}@media only screen and (min-width: 65em){.showtime-task.is-historical{margin-bottom:.9375rem}}.showtime-task.is-historical .showtime-task__header{padding:.3125rem .9375rem}.showtime-task.is-historical .showtime-task__close{display:none}.showtime-task.is-historical .showtime-task__info{padding:.3125rem 0}.showtime-task.is-historical .showtime-task__info:hover{cursor:default}.showtime-task.is-historical .showtime-task__body-item{margin-bottom:.625rem}.showtime-task.is-historical .showtime-task__body-item:first-child{margin-top:.625rem}.showtime-task.is-historical .showtime-task__footer{padding:.3125rem}.showtime-task.is-historical.showtime-task--completed .showtime-task__subtasks-item{margin-bottom:.25rem}.showtime-task.is-historical.showtime-task--completed .showtime-attachment__indicator{display:none}.showtime-task.is-historical.showtime-task--completed .showtime-attachment__info{padding:.25rem}.showtime-task.is-historical.showtime-task--completed .showtime-attachment__info-path{display:none}.showtime-task.is-historical.showtime-task--completed .light-notch{display:none}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget{padding:0}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget .widget-header{border-top-left-radius:0;border-top-right-radius:0}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget .widget-body td{padding:0}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table th{padding:.3125rem}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td{font-size:.875rem;padding:.3125rem}@media only screen and (max-width: 49.9375em){.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td{margin:0;padding:.3125rem}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td.notes{padding:.3125rem}}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td input{min-height:inherit;border:none;box-shadow:none;padding:0}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td button{padding:0}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td .form-label{border:none;background:rgba(0,0,0,0)}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td select{background:#fff;border:none;padding:0;min-height:inherit;box-shadow:none}@media only screen and (max-width: 49.9375em){.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget .cell-title{padding:.125rem .625rem;min-height:auto}}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td:first-child,.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table th:first-child{border-left:none !important}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table td:last-child,.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget table th:last-child{border-right:none !important}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget tfoot{display:none}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget .row-addanother{display:none}.showtime-task.is-historical.showtime-task--completed .showtime-task__body-item--widget .widget .remove-row{display:none}@media print{.showtime-task.is-historical .showtime-task__tags,.showtime-task.is-historical .showtime-task__header-actions{display:none}.showtime-task.is-historical .showtime-task__info{border-top:none}}.showtime-task.is-highlighted{border-top-color:#ffd635 !important}.showtime-task.is-highlighted .showtime-task__header,.showtime-task.is-highlighted .showtime-task__header-meta{background-color:#fffdf5 !important}.showtime-task.is-highlighted .showtime-task__header .showtime-label--pill,.showtime-task.is-highlighted .showtime-task__header-meta .showtime-label--pill{background-color:#222234 !important}@media only screen and (min-width: 58.75em){.showtime-trail__section--today .showtime-task__header,.showtime-trail__section--later-today .showtime-task__header,.showtime-trail__section--after-today .showtime-task__header{padding-top:.5625rem;padding-bottom:.5625rem}}.showtime-trail__section--today .showtime-task .showtime-task__title,.showtime-trail__section--later-today .showtime-task .showtime-task__title,.showtime-trail__section--after-today .showtime-task .showtime-task__title{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-trail__section--today .showtime-task .showtime-task__header-meta,.showtime-trail__section--later-today .showtime-task .showtime-task__header-meta,.showtime-trail__section--after-today .showtime-task .showtime-task__header-meta{padding-top:.1875rem !important}.showtime-trail__section--today .showtime-task .showtime-task__status,.showtime-trail__section--later-today .showtime-task .showtime-task__status,.showtime-trail__section--after-today .showtime-task .showtime-task__status{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}@media screen and (min-width: 0){.showtime-trail__section--today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--later-today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--after-today .showtime-task.is-expanded .showtime-task__title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-trail__section--today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--later-today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--after-today .showtime-task.is-expanded .showtime-task__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-trail__section--today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--later-today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--after-today .showtime-task.is-expanded .showtime-task__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-trail__section--today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--later-today .showtime-task.is-expanded .showtime-task__title,.showtime-trail__section--after-today .showtime-task.is-expanded .showtime-task__title{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-trail__section--today .showtime-task.is-expanded .showtime-task__header-meta,.showtime-trail__section--later-today .showtime-task.is-expanded .showtime-task__header-meta,.showtime-trail__section--after-today .showtime-task.is-expanded .showtime-task__header-meta{padding-top:.3125rem !important}.showtime-trail__section--today .showtime-task.is-expanded .showtime-task__status,.showtime-trail__section--later-today .showtime-task.is-expanded .showtime-task__status,.showtime-trail__section--after-today .showtime-task.is-expanded .showtime-task__status{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-trail__section--today .showtime-task__pip-container,.showtime-trail__section--later-today .showtime-task__pip-container,.showtime-trail__section--after-today .showtime-task__pip-container{padding-top:.25rem}.no-touchevents .showtime-task--ondemand:hover .showtime-task__header{background-color:#ecf3fe}.showtime-task--ondemand.is-expanded{border-top:.1875rem solid #4688f1}.no-touchevents .showtime-task--ondemand.is-expanded:hover{border-top-color:#4688f1}.showtime-task--ondemand.is-expanded .showtime-task__header,.showtime-task--ondemand.is-expanded .showtime-task__header-meta{background-color:#ecf3fe}.showtime-task--ondemand .showtime-task__header-icon{color:#4688f1}.no-touchevents .showtime-task--action:hover .showtime-task__header{background-color:#ecf3fe}.showtime-task--action.is-expanded{border-top:.1875rem solid #4688f1}.no-touchevents .showtime-task--action.is-expanded:hover{border-top-color:#4688f1}.showtime-task--action.is-expanded .showtime-task__header,.showtime-task--action.is-expanded .showtime-task__header-meta{background-color:#ecf3fe}.showtime-task--action .showtime-task__header-icon{color:#4688f1}.no-touchevents .showtime-task--automated:hover .showtime-task__header{background-color:#ecf3fe}.showtime-task--automated.is-expanded{border-top:.1875rem solid #4688f1}.no-touchevents .showtime-task--automated.is-expanded:hover{border-top-color:#4688f1}.showtime-task--automated.is-expanded .showtime-task__header,.showtime-task--automated.is-expanded .showtime-task__header-meta{background-color:#ecf3fe}.showtime-task--automated .showtime-task__header-icon{color:#4688f1}.showtime-task--completed .showtime-task__subtasks-item-toggle,.showtime-task--flagged .showtime-task__subtasks-item-toggle{display:none}.no-touchevents .showtime-task--completed:hover .showtime-task__header{background-color:#f3fcf4}.showtime-task--completed.is-expanded{border-top:.1875rem solid #13bf1f}.no-touchevents .showtime-task--completed.is-expanded:hover{border-top-color:#13bf1f}.showtime-task--completed.is-expanded .showtime-task__header,.showtime-task--completed.is-expanded .showtime-task__header-meta{background-color:#f3fcf4}.showtime-task--completed .showtime-task__header-icon{color:#13bf1f}.no-touchevents .showtime-task--flagged:hover .showtime-task__header{background-color:#f7f7f8}.showtime-task--flagged.is-expanded{border-top:.1875rem solid #646470}.no-touchevents .showtime-task--flagged.is-expanded:hover{border-top-color:#646470}.showtime-task--flagged.is-expanded .showtime-task__header,.showtime-task--flagged.is-expanded .showtime-task__header-meta{background-color:#f7f7f8}.showtime-task--flagged .showtime-task__header-icon{color:#646470}.no-touchevents .showtime-task--completed-late:hover .showtime-task__header{background-color:#fff9f2}.showtime-task--completed-late.is-expanded{border-top:.1875rem solid #ff9100}.no-touchevents .showtime-task--completed-late.is-expanded:hover{border-top-color:#ff9100}.showtime-task--completed-late.is-expanded .showtime-task__header,.showtime-task--completed-late.is-expanded .showtime-task__header-meta{background-color:#fff9f2}.showtime-task--completed-late .showtime-task__header-icon{color:#ff9100}.showtime-task--completed-late .showtime-task__status-late .showtime-label--pill{background-color:#ff9100}.showtime-task--missed{border-top:.1875rem solid #ff513d}.no-touchevents .showtime-task--missed:hover{border-top-color:#ff513d}.showtime-task--missed.is-expanded{border-top-color:#ff513d}.showtime-task--missed.is-expanded .showtime-task__header,.showtime-task--missed.is-expanded .showtime-task__header-meta{background-color:#fff6f5}.showtime-task--missed .showtime-task__header-icon{color:#ff513d}.showtime-task--overdue{border-top:.1875rem solid #ff9100}.no-touchevents .showtime-task--overdue:hover{border-top-color:#ff9100}.no-touchevents .showtime-task--overdue:hover .showtime-task__header{background-color:#fff9f2}.showtime-task--overdue.is-expanded{border-top-color:#ff9100}.showtime-task--overdue.is-expanded .showtime-task__header,.showtime-task--overdue.is-expanded .showtime-task__header-meta{background-color:#fff9f2}.showtime-task--overdue .showtime-task__header-icon{color:#ff9100}.no-touchevents .showtime-task--todo:hover .showtime-task__header{background-color:#ecf3fe}.showtime-task--todo.is-expanded{border-top:.1875rem solid #4688f1}.no-touchevents .showtime-task--todo.is-expanded:hover{border-top-color:#4688f1}.showtime-task--todo.is-expanded .showtime-task__header,.showtime-task--todo.is-expanded .showtime-task__header-meta{background-color:#ecf3fe}.showtime-task--todo .showtime-task__pip{background-color:#4688f1}.no-touchevents .showtime-task--later:hover .showtime-task__header,.no-touchevents .showtime-task--ongoing:hover .showtime-task__header{background-color:#ecf3fe}.showtime-task--later.is-expanded,.showtime-task--ongoing.is-expanded{border-top:.1875rem solid #4688f1}.no-touchevents .showtime-task--later.is-expanded:hover,.no-touchevents .showtime-task--ongoing.is-expanded:hover{border-top-color:#4688f1}.showtime-task--later.is-expanded .showtime-task__header,.showtime-task--later.is-expanded .showtime-task__header-meta,.showtime-task--ongoing.is-expanded .showtime-task__header,.showtime-task--ongoing.is-expanded .showtime-task__header-meta{background-color:#ecf3fe}.showtime-task--later .showtime-task__pip,.showtime-task--ongoing .showtime-task__pip{background-color:#4688f1}.showtime-task--skeleton:hover{border-color:rgba(0,0,0,0);pointer-events:none;cursor:default}.showtime-task--skeleton .showtime-task__pip{background-color:#f6f6f6}.showtime-task--skeleton .showtime-task__pip,.showtime-task--skeleton .showtime-task__info{animation:flash 3000ms infinite}.showtime-task__header{display:flex;width:100%;padding-top:.6875rem;padding-bottom:.6875rem;justify-content:space-between;-webkit-user-select:none;-moz-user-select:none;user-select:none}@media only screen and (min-width: 58.75em){.showtime-task__header{padding-top:.9375rem;padding-bottom:.9375rem}}@media only screen and (min-width: 22.5em){.showtime-task__close{margin-left:.5rem}}@media only screen and (min-width: 22.5em){.showtime-task__close{margin-left:0}}.showtime-task__pip-container{padding-top:.4375rem;padding-right:.625rem;padding-left:.625rem}@media only screen and (min-width: 58.75em){.showtime-task__pip-container{padding-right:1rem;padding-left:1.1875rem}}.showtime-task__pip-container--no-icon{padding-right:.6875rem;padding-left:.6875rem}@media only screen and (min-width: 58.75em){.showtime-task__pip-container--no-icon{padding-right:1.1875rem;padding-left:1.3125rem}}.showtime-task__pip{display:block;width:.625rem;height:.625rem;border-radius:9999px}.showtime-task__header-icon{display:inline-block}.showtime-task__header-icon svg{width:.75rem;height:.75rem}@media only screen and (min-width: 58.75em){.showtime-task__header-icon svg{width:.875rem;height:.875rem}}.showtime-task__header-icon svg *{fill:currentColor}.showtime-task__info{padding-right:1.25rem;flex:1 1 auto;align-self:center}.no-touchevents .showtime-task__info:hover{cursor:pointer}.showtime-task__title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}.showtime-task__header-meta{padding-top:.3125rem !important}.showtime-task__title--skeleton{text-indent:-9999px;width:60%;height:1rem;border-radius:.1875rem;background-color:#f6f6f6}.showtime-task__status{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-task__status:nth-child(2){padding-top:5px}.showtime-task__status-late{margin-top:.3125rem}.showtime-task__status-icon{margin-right:.3125rem}.showtime-task__status--skeleton{text-indent:-9999px;width:30%;height:.75rem;margin-top:.4375rem !important;border-radius:.1875rem;background-color:#f6f6f6}.showtime-task__tags{display:flex;margin-top:.3125rem;cursor:default;flex-wrap:wrap}.showtime-task__tags .showtime-tag{margin-right:.3125rem;margin-top:.3125rem}.showtime-task__permissions{display:none;align-items:center;justify-content:center;background-color:#222234;padding:10px}.showtime-task__permissions-icon{color:#fff}.showtime-task__permissions-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#fff}.showtime-task__body:empty{border-top:0}.showtime-task__header-actions{padding-right:.9375rem;flex:0 0 auto}@media only screen and (min-width: 58.75em){.showtime-task__header-actions{padding-right:1.25rem}}.showtime-task__header-actions-collapsed{padding-right:.9375rem;flex:0 0 auto;display:flex;align-items:baseline}@media only screen and (min-width: 58.75em){.showtime-task__header-actions-collapsed{padding-right:1.25rem}}.showtime-task__header-flag-menu{right:-45px}@media only screen and (min-width: 22.5em){.showtime-task__header-flag-menu{right:0}}.showtime-task__body-item{padding:0 .625rem;margin-bottom:.9375rem}.showtime-task__body-item:first-child{margin-top:1.25rem}@media only screen and (min-width: 22.5em){.showtime-task__body-item{padding:0 .9375rem;margin-bottom:.625rem}.showtime-task__body-item:first-child{margin-top:.9375rem}}.showtime-task__body-item:only-child{border-top:0 !important}.showtime-task__body-item--widget{padding:0 !important;margin:0 !important}.showtime-task__help-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-task__subtasks{display:flex;flex-direction:column}.showtime-task__subtasks-added .showtime-task__subtasks-item:first-child{padding:25px 0 10px 0;margin-top:25px;border-top:.125rem solid #cacaca}.showtime-task__subtasks-added .showtime-task__subtasks-item.is-expanded:first-child{padding:25px 10px 10px}@media only screen and (min-width: 22.5em){.showtime-task__subtasks-added .showtime-task__subtasks-item.is-expanded:first-child{padding-left:15px;padding-right:15px}}.showtime-task__subtasks-item{padding:.625rem 0}.showtime-task__subtasks-item.is-expanded{padding:.625rem;margin-left:-0.625rem;margin-right:-0.625rem;background-color:#f7f7f8}@media only screen and (min-width: 22.5em){.showtime-task__subtasks-item.is-expanded{padding:.625rem .9375rem;margin-left:-0.9375rem;margin-right:-0.9375rem}}.showtime-task__subtasks-item:last-child{margin-bottom:0;border-bottom:0}.showtime-task__subtasks-item--heading{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding:25px 0 10px}.showtime-task__subtasks-item--heading:first-child{padding-top:10px}.showtime-task__subtasks-actions{display:flex;margin-left:auto;padding-left:.625rem;align-items:center}.showtime-task__subtasks-actions>div,.showtime-task__subtasks-actions .showtime-task__conversation-button{padding-left:.625rem;max-width:40px}.showtime-task__subtasks-item-toggle{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;padding:1.125rem 0 1.125rem .3125rem;cursor:pointer;display:flex;flex-direction:row;align-items:center}.showtime-task__subtasks-item-toggle:active{text-decoration:none}.showtime-task__subtasks-item-toggle .showtime-link__icon-container{display:inline-block;transition:all .2s ease}.showtime-task__subtasks-item-toggle .showtime-link__icon-container--expanded{transform:translateY(2px)}.showtime-task__subtasks-item-toggle .showtime-link__icon-container--collapsed{transform:translateY(1px)}.showtime-task__subtasks-item-toggle .showtime-link__icon{margin-right:.625rem}.showtime-task__subtasks-checkbox{flex:1 0 auto;display:flex;align-items:center}.showtime-task__subtasks-comment{flex:0 0 auto;margin-left:.3125rem}.showtime-task__subtasks-add{display:flex;align-items:center;padding:.625rem 0}.showtime-task__subtasks-add.is-focused{padding:.9375rem;flex-wrap:wrap;margin-left:-0.625rem;margin-right:-0.625rem;background-color:#f7f7f8}@media only screen and (min-width: 22.5em){.showtime-task__subtasks-add.is-focused{margin-left:-0.9375rem;margin-right:-0.9375rem}}.showtime-task__subtasks-add.is-focused .showtime-task__subtasks-add-save{display:block}.showtime-task__subtasks-add.is-focused .showtime-task__subtasks-add-repeat{display:flex;padding-top:.625rem}.showtime-task__subtasks-add-input{flex:1 1 auto}.showtime-task__subtasks-add-save{display:none;margin-left:.625rem}.showtime-task__subtasks-add-repeat{display:none;flex:1 0 100%}.showtime-task__subtask-recurring-help{margin-left:.9375rem;color:#cacaca}.showtime-task__subtask-recurring-help:hover{cursor:help;color:#222234}.showtime-task__task-report-help{margin-left:.3125rem;transform:translateY(3px);color:#cacaca}.showtime-task__task-report-help:hover{cursor:help;color:#222234}.showtime-task__task-report-help:before{margin-bottom:-4px}.showtime-task__task-report-help:after{white-space:nowrap;width:unset}@media only screen and (max-width: 40.5em){.showtime-task__task-report-help{margin-left:0;margin-right:.3125rem}.showtime-task__task-report-help:after{white-space:unset;width:210px}}.showtime-task__attachments{display:flex;flex-wrap:wrap;justify-content:space-between;pointer-events:auto}.showtime-task__attachment{flex:1 1 100%;margin-bottom:.9375rem}@media only screen and (min-width: 37.5em){.showtime-task__attachment{flex:0 0 49%}}.showtime-task__attachment:last-child{margin-bottom:0}.showtime-task__widget .widget{margin:0 !important}.showtime-task__widget .widget .legacy-table thead tr th:first-child{border-left:1px solid #cacaca !important}.showtime-task__widget .widget .legacy-table thead tr th:last-child{border-right:1px solid #cacaca !important}.showtime-task__widget .widget.forecast .widget-content,.showtime-task__widget .widget .legacy-table tbody,.showtime-task__widget .widget .legacy-table tfoot{border-right:1px solid #cacaca !important;border-left:1px solid #cacaca !important}.showtime-task__widget .widget .widget-header{border:1px solid #cacaca;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem}.showtime-task__widget .widget .widget-footer{border:1px solid #cacaca;border-bottom-left-radius:.1875rem;border-bottom-right-radius:.1875rem}.showtime-task__widget .widget .forecast .widget-content{border-right:1px solid #cacaca;border-left:1px solid #cacaca}.showtime-task__widget .widget .widget-body .widget-section{border-right:1px solid #cacaca;border-bottom:1px solid #cacaca;border-left:1px solid #cacaca}.showtime-task__comments .comment-container{padding:0 !important;margin:0 !important;border:none}.showtime-task__body-item--conversation .showtime-conversation__comment-box-inline{padding-left:0;padding-right:0}.showtime-task__conversation-inline-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding:15px 10px;border-top:2px solid #cacaca;margin:20px 0 10px 0 !important}.showtime-task__conversation-button{padding-left:20px;margin-left:auto;max-width:40px}.no-touchevents .showtime-task__conversation-button:hover{background-color:inherit;box-shadow:none}.showtime-task__footer-wrapper{display:none;width:100%;overflow:hidden;position:fixed;pointer-events:none;bottom:0}.showtime-task__footer-wrapper.in-view{pointer-events:auto}@media only screen and (max-width: 58.6875em){.showtime-task__footer-wrapper.in-view{box-shadow:0 -4px 7px 0 rgba(0,0,0,.1)}.ios:not(.ipad_app) .showtime-task__footer-wrapper.in-view{margin-bottom:1.25rem;box-shadow:0 -4px 7px 0 rgba(0,0,0,.1),0 20px 0 0 #fff}}@media only screen and (min-width: 58.75em){.showtime-task__footer-wrapper{max-width:58.75rem;margin-left:-0.0625rem}}@media only screen and (min-width: 65em){.showtime-task__footer-wrapper{max-width:62.5rem;margin-left:-0.0625rem}}.showtime-task__footer{flex-direction:column;padding:.9375rem;align-items:center;justify-content:center}@media only screen and (min-width: 22.5em){.showtime-task__footer{padding:.9375rem .9375rem}}.showtime-task__footer-actions{width:100%;display:flex;flex-direction:column}@media only screen and (min-width: 28.125em){.showtime-task__footer-actions{max-width:18.75rem}}.showtime-task__footer-actions--has-snooze .showtime-task__footer-snooze-wrapper{margin-bottom:.625rem}@media only screen and (min-width: 58.75em){.showtime-task__footer-actions--has-snooze{flex-direction:row;max-width:37.5rem}.showtime-task__footer-actions--has-snooze .showtime-task__footer-snooze-wrapper{margin-right:.625rem;margin-bottom:0}}.showtime-task__footer--fixed{position:relative;left:100%;border-bottom:.1875rem solid rgba(0,0,0,0);background-color:#fff}.showtime-task__footer--fixed.in-view{left:0}.showtime-overlay-active .showtime-task.is-locked .showtime-task__body-item--widget{opacity:1}.showtime-task__secondary-actions{display:none}.showtime-task__status-icon{margin-left:5px}.showtime-task__save-status{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#13bf1f;margin-bottom:-0.3125rem}.showtime-task__save-status.is-saving{color:#222234}.showtime-task__lock-status{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-task__pin-status{padding-bottom:10px}.showtime-task__lock-status,.showtime-task__pin-status{color:#222234;display:flex;margin-bottom:.625rem}.showtime-task__lock-status-text,.showtime-task__pin-status-text{padding-left:.3125rem}.showtime-task-action__header{display:flex;align-items:center}.showtime-task-action-modal{position:absolute !important;background-color:#fff;width:400px;right:0}.showtime-task-action .showtime-empty-state__icon svg{height:40px;width:40px}.showtime-task-action.showtime-stacked-modal-padded{min-width:400px}.showtime-task-action__scheduler.showtime-scheduling{margin:20px 0}.showtime-task-action__scheduler.showtime-scheduling .showtime-radio-button__label-primary{font-size:13px !important}.showtime-task-action__scheduler.showtime-scheduling .showtime-radio-button{margin-right:15px}.showtime-task-action__scheduler.showtime-scheduling .showtime-button{display:flex;justify-content:center;padding:0 10px;background-color:#fff}.showtime-task-action__scheduler-title{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;margin-bottom:10px}.showtime-task-action__scheduler-title .showtime-icon{margin-right:8px}.showtime-task-action__metadata{width:80%}@media screen and (max-width: 767px){.showtime-task-action__metadata{width:100%}}.showtime-task-action__title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;overflow:hidden;text-overflow:ellipsis;width:100%;white-space:nowrap}.showtime-task-action__input,.showtime-task-action__file-textarea{margin-bottom:15px}.showtime-task-action__file-textarea .showtime-conversation__comment-box-inline-textarea{min-height:100px}.showtime-task-action__file-textarea .showtime-conversation__comment-box-inline{padding:0}.showtime-task-action__file-textarea .showtime-conversation__comment-box-inline-input-wrapper{background-color:#fff}.showtime-task-action__file-textarea .showtime-conversation__comment-box-inline-input-wrapper.is-disabled{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;opacity:.3;color:#cacaca;pointer-events:none}.showtime-task-action__subtitle{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-task-action__content{padding:20px 10px 10px 10px}.showtime-task-action__submit{margin-top:20px}.showtime-task-preview{width:100%;border-bottom-left-radius:3px;border-bottom-right-radius:3px;position:relative}.showtime-task-preview:hover{cursor:not-allowed}.showtime-task-preview.is-warning .showtime-task-preview__content{filter:grayscale(100%);opacity:.5;position:relative}.showtime-task-preview__warning{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;z-index:1;position:sticky;top:-30px;opacity:1 !important}.showtime-task-preview__warning .showtime-icon{margin-right:10px;margin-top:-2px}.showtime-task-preview__warning:hover{cursor:pointer !important}.showtime-task-preview__warning--upsell .showtime-task-preview__warning-title{background-color:#fd4382;display:flex;align-items:center}.showtime-task-preview__warning-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#fff;background-color:#ff9100;padding:8px}.showtime-task-preview__warning-description{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;background-color:#fff;color:#222234;padding:8px;border-bottom:1px solid rgba(202,202,202,.3)}.showtime-task-preview__content{pointer-events:none;background-color:#fff}.showtime-task-preview__content .showtime-task__header{border-top:.1875rem solid #4688f1;background-color:#ecf3fe;padding-left:15px;border-top-left-radius:3px;border-top-right-radius:3px;margin-top:15px}.showtime-task-preview__content .showtime-task__title{margin-top:0}.showtime-task-preview__content .showtime-task__body{border-top:0;background-color:#fff}.showtime-task-preview__content .showtime-task__body-item{padding:.625rem}@media only screen and (min-width: 22.5em){.showtime-task-preview__content .showtime-task__body-item{padding:.9375rem;margin:0 !important}}.showtime-task-preview__content .showtime-task__body-item--widget{margin-bottom:0;padding:15px !important;background:none;border-top:none}.showtime-task-preview__content .showtime-task__body-item--widget .showtime-widget__header{padding-bottom:1.25rem}.showtime-task-preview__content .showtime-task__body-item--widget tfoot,.showtime-task-preview__content .showtime-task__body-item--widget .save-status{display:none}.showtime-task-preview__content .showtime-input--button-options{display:flex;flex-wrap:wrap;margin:0 -5px}.showtime-task-preview__content .showtime-input--button-options .showtime-button{margin:5px;flex-basis:100%}@media only screen and (min-width: 25.9375em){.showtime-app--page-task-planner .showtime-task-planner-section .showtime-task-preview__content .showtime-input--button-options .showtime-button{flex-basis:auto}}.showtime-task-preview__content .showtime-task__subtasks-actions{display:none}.showtime-task-preview__content .showtime-task__help-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-task-preview__content .showtime-task__subtasks{display:flex;flex-direction:column}.showtime-task-preview__content .showtime-task__subtasks-item{display:flex;justify-content:space-between}.showtime-task-preview__content .showtime-task__subtasks-item:last-child{margin-bottom:0}.showtime-task-preview__content .showtime-task__subtasks-item .showtime-checkbox__tick{border-color:#cacaca}.showtime-task-preview__content .showtime-task__subtasks-checkbox{flex:1 1 auto}.showtime-task-preview__content .showtime-task__attachments{display:flex;flex-wrap:wrap;justify-content:space-between;pointer-events:auto}.showtime-task-preview__content .showtime-task__attachment{flex:1 1 100%;margin-bottom:.625rem}.showtime-task-preview__content .showtime-task__attachment:last-child{margin-bottom:0}.showtime-task-preview__content .showtime-attachment{background-color:rgba(0,0,0,0) !important}.showtime-task-preview__content .showtime-attachment__indicator-icon svg{width:1.5rem;height:1.5rem}.showtime-task-preview__content .showtime-attachment__indicator,.showtime-task-preview__content .showtime-attachment__info{background-color:rgba(0,0,0,0) !important}.showtime-task-preview__content .showtime-attachment__indicator{padding-left:0 !important}.showtime-task-preview__content .showtime-attachment__info-title{color:#4e4e4e}.showtime-task-preview__content .showtime-attachment__info-path{margin:0}.showtime-task-preview__content .showtime-task__body-item--conversation{display:none}.business-hours__preview{position:relative;margin-top:35px;flex:1 50%;flex-shrink:0}.business-hours__timeline{position:relative;width:100%}.business-hours__hour:last-child .business-hours__hour-half{border-top:none}.business-hours__hour-label{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:rgba(100,100,112,.7);height:30px;display:flex;align-items:center;width:100%;margin-top:-15px}.business-hours__hour-label:after,.business-hours__hour-half{border-top:1px solid rgba(100,100,112,.3)}.business-hours__hour-label:after{content:"";display:block;flex-grow:1;margin-left:10px}.business-hours__toggle{margin:25px 10px 0px 0px}.business-hours__hour-half{margin-top:15px;height:30px}.business-hours__timeslots{position:absolute;top:0;margin:0 0 0 60px;width:min(100% - 60px,180px)}.business-hours__timeslot_container{position:relative}.business-hours__timeslot{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;display:block;width:100%;height:calc(100% - 10px);box-shadow:0 .0625rem .25rem rgba(0,0,0,.45);background-color:#f6f6f6;align-content:center;text-align:center;border-radius:5px;padding:10px}.business-hours{display:flex;flex-direction:column}.business-hours__editor{flex:1 50%;padding:20px 10px 10px 25px}.business-hours__editor{position:sticky;height:100%;top:0px}.showtime-panel .business-hours__editor{top:45px}.business-hours__info{flex:1 50%;display:flex;padding-left:10px;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.business-hours__info .showtime-button{text-wrap:wrap}.business-hours__info-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;margin-bottom:10px}.business-hours__info-paragraph{margin-bottom:20px;line-height:1.5}.business-hours__timeslot--focused{border:2px solid #029ae6}.business-hours__editor-title{padding-bottom:10px;margin-bottom:20px;display:flex}.business-hours__editor-timeslot-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin-bottom:20px}.business-hours__select-label{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;margin-bottom:8px}.business-hours__editor-timeslot-close [class^=showtime-utility-font-]{margin-bottom:10px}.business-hours__editor-timeslot-close .showtime-button{margin-top:10px}.business-hours__select-label{margin-bottom:8px}label.business-hours__select{margin-bottom:25px !important}.business-hours__timeslot_container--thin .business-hours__timeslot{padding:0;border-radius:15px}.business-hours__timeslot_container--error{z-index:1;height:36px !important;max-height:36px !important;margin:-13px 0;position:absolute;width:100%}.business-hours__timeslot_container--error .business-hours__timeslot{position:absolute;background-color:#fff6f5;border:2px solid #ff513d;border-radius:15px;padding:0;color:#ff513d}.business-hours__timeslot_container--error:nth-child(1){z-index:9}.business-hours__timeslot_container--error:nth-child(2){z-index:8}.business-hours__timeslot_container--error:nth-child(3){z-index:7}.business-hours__timeslot_container--error:nth-child(4){z-index:6}.business-hours__timeslot_container--error:nth-child(5){z-index:5}.business-hours__timeslot_container--error:nth-child(6){z-index:4}.business-hours__timeslot_container--error:nth-child(7){z-index:3}.business-hours__timeslot_container--error:nth-child(8){z-index:2}.business-hours__timeslot_container--error:nth-child(9){z-index:1}.business-hours__timeslot_container--error:nth-child(10){z-index:0}.business-hours__row{display:flex}.business-hours__closed{margin:30px}.business-hours__closed-timeslot-name{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;padding:10px;border-radius:5px;background-color:rgba(100,100,112,.3);min-width:120px;display:flex;justify-content:center;align-items:center}.business-hours__closed-timeslot{display:flex;margin-bottom:10px}.business-hours__closed-list{padding:15px 0}.business-hours__closed-timeslot-button{margin-left:10px}.business-hours__closed-header-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;margin-bottom:10px}.business-hours__timeslot_container--thin .business-hours__timeslot{padding:0;border-radius:15px}.business-hours__editor-warning{display:flex;background-color:#fff6f5;padding:15px;margin-bottom:10px}.business-hours__editor-warning-svg{margin-right:10px}.business-hours__editor-warning-svg path{fill:#ff513d}.business-hours__timeslot-markers{position:absolute;width:100%;top:0px}.business-hours__timeslot_marker-line-container{display:flex}.business-hours__timeslot_marker-line{flex-grow:1;border:solid 2px #d591a6;border-radius:4px;margin-left:50px}@media only screen and (min-width: 34.375em){.business-hours__timeslot_marker-line{margin-left:60px}}.business-hours__timeslot_marker{position:absolute;width:min(100%,240px);z-index:1}@media only screen and (min-width: 34.375em){.business-hours__timeslot_marker{width:calc(min(100%,240px) + 10px)}}.business-hours__timeslot_marker-sign{position:absolute;color:#fff;background-color:#d591a6;font-weight:bold;padding:5px 10px;left:10px;border-radius:3px;top:12px}@media only screen and (min-width: 34.375em){.business-hours__timeslot_marker-sign{left:calc(60px + min(100% - 60px,180px) - 10px)}}.business-hours__timeslot_marker:first-child .business-hours__timeslot_marker-sign{transform:rotate(7deg)}.business-hours__timeslot_marker:last-child .business-hours__timeslot_marker-sign{transform:rotate(-6deg)}.business-hours__timeslot_marker-sign::after{content:"";position:absolute;height:20px;width:20px;top:-10px;transform:rotate(45deg);left:33%;background-image:radial-gradient(circle at center, #D591A6 3px, transparent 3px);background-size:6px 6px;background-position:top left;background-repeat:no-repeat}.business-hours__timeslot_marker-sign:before{border-top:1px solid #d591a6;border-left:1px solid #d591a6;content:"";position:absolute;transform:rotate(45deg);height:20px;width:20px;top:-6px;left:33%}.showtime-edit-section h4{margin:0}.showtime-edit-section p{font-size:inherit;margin:0}.showtime-edit-section h3{text-transform:none;margin:0}.showtime-edit-section .check-role-responsibility{margin-bottom:1.11875rem}.showtime-edit-sections.is-disabled{opacity:.5;pointer-events:none}.showtime-edit-section{margin-top:.9375rem;background-color:#fff;box-shadow:0 .0625rem .25rem rgba(0,0,0,.15);border-left-width:0;border-right-width:0}.showtime-edit-section:first-child{margin-top:2.5rem}.showtime-edit-section:last-child{margin-bottom:1.25rem}@media only screen and (min-width: 26em){.showtime-edit-section{border-width:.0625rem;border-radius:.1875rem}}.showtime-edit-section--transparent{margin-left:.625rem;margin-right:.625rem;background-color:rgba(0,0,0,0);border-color:rgba(0,0,0,0);box-shadow:none}.showtime-edit-section--transparent:first-child{margin-top:.9375rem}.showtime-edit-section--margin-bottom{margin-bottom:12.5rem}.showtime-edit-section--margin-bottom:last-child{margin-bottom:12.5rem}.showtime-edit-section__header{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#4e4e4e;padding-bottom:.9375rem;display:flex;align-items:center}.showtime-edit-section__item{margin-bottom:1.875rem;padding:.9375rem}.showtime-edit-section__item:last-child{margin-bottom:0}.showtime-edit-section__item .showtime-button+.showtime-callout-help{margin-top:12px}.showtime-edit-section__item--permissions{margin-bottom:1.875rem;padding:.9375rem}.showtime-edit-section__item--permissions:last-child{margin-bottom:0}.showtime-edit-section__item--permissions .showtime-button+.showtime-callout-help{margin-top:12px}.showtime-edit-section__item--permissions .hint--bottom{position:relative;top:-2px}.showtime-edit-section__checklist{margin-bottom:.625rem;padding:.625rem 0}.showtime-edit-section__checklist:last-child{margin-bottom:0}.showtime-edit-section__item--time-zone{border-top:.0625rem solid #f4f4f5;padding-top:1.25rem;margin-top:1.25rem}.showtime-edit-section__extra{padding:.9375rem;margin:.9375rem 0}@media only screen and (min-width: 25.9375em){.showtime-edit-section__extra{padding-left:1.25rem;padding-right:1.25rem}}.showtime-edit-section__extra-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#4e4e4e;padding-bottom:.9375rem;margin-bottom:.9375rem !important;border-bottom:.0625rem solid #f6f6f6}.showtime-edit-section__item-subheading{color:#4e4e4e;padding-bottom:1.25rem}@media screen and (min-width: 0){.showtime-edit-section__item-subheading{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-edit-section__item-subheading{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-edit-section__item-subheading{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-edit-section__item-subheading{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.showtime-edit-section__item-subtitle{padding-bottom:.375rem;font-weight:600 !important}@media screen and (min-width: 0){.showtime-edit-section__item-subtitle{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-edit-section__item-subtitle{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-edit-section__item-subtitle{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-edit-section__item-subtitle{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-edit-section__item-help-message{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding-left:1.75rem;color:#4e4e4e}.showtime-edit-section__item-help-message--padding-bottom{padding-bottom:.625rem}.showtime-edit-section__item-trigger{margin-top:.625rem}.showtime-edit-section__item-trigger:first-child{margin-top:0}.showtime-edit-section__item-trigger-button{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding:.9375rem;display:flex;align-items:center;border-radius:.1875rem}.showtime-edit-section__item-trigger-button:hover{cursor:pointer;text-decoration:underline}.showtime-edit-section__item-trigger-button .showtime-icon{margin-right:.625rem;color:#646470}.showtime-edit-section__item-trigger-add-another{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;text-decoration:underline;display:flex;padding-top:.9375rem;align-items:center;border-radius:.1875rem}.showtime-edit-section__item-trigger-add-another:active{color:#222234}.showtime-edit-section__item-trigger-add-another:hover{cursor:pointer;text-decoration:underline}.showtime-edit-section__item-stack-subgroup{margin-top:.625rem}.showtime-edit-section__item-stack-subgroup:first-child{margin-top:0}.showtime-edit-section__item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;flex:1 1 auto;display:flex;align-items:center}.showtime-edit-section__item-title .showtime-icon--size-16{margin-right:.625rem;color:#646470}.showtime-edit-section__item-title .showtime-button,.showtime-edit-section__item-title .showtime-link{margin-left:auto}.showtime-edit-section__item-title .showtime-unlink-button,.showtime-edit-section__item-title .showtime-link{margin-left:5px}.showtime-edit-section__item-title-right{margin-left:auto}.showtime-edit-section__item-title-right .showtime-link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}.showtime-edit-section__item-description{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:flex;padding:5px 0 0 28px;margin-bottom:10px}.showtime-edit-section__item-description-unpadded{padding:0}.showtime-edit-section__item-title--settings{padding-bottom:.9375rem}.showtime-edit-section__item-title-help{height:.875rem;width:.875rem;margin-left:.3125rem;color:#cacaca}.showtime-edit-section__item-title-help:hover{cursor:help;color:#222234}.showtime-edit-section__item-config{margin:.625rem 0 1.875rem;border:1px solid #f7f7f8;border-radius:3px}.showtime-edit-section__item-action-bar{display:flex;padding-top:.9375rem;justify-content:space-between;align-items:center;flex-wrap:wrap}.showtime-edit-section__item-action-bar-save{flex:1 0 auto}.showtime-edit-section__item-action-bar-cancel{flex:0 0 auto}.showtime-edit-section__item-action-bar-delete{flex:0 0 auto}@media only screen and (max-width: 28.6875em){.showtime-edit-section__item-action-bar-delete .showtime-button-group{margin-top:.625rem}}.showtime-edit-section__item-summary{display:flex;align-items:center;padding:.9375rem;border-left:.25rem solid #13bf1f;background-color:#f3fcf4;border-radius:.1875rem;margin-top:.625rem}.showtime-edit-section__item-summary:hover{text-decoration:underline;cursor:pointer}.showtime-edit-section__item-summary:first-child{margin-top:0}.showtime-edit-section__item-summary-valid{color:#13bf1f;margin-right:.9375rem;display:flex}.showtime-edit-section__item-summary-description{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}.showtime-edit-section__item-summary-description-secondary{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding-top:.3125rem;color:#646470}.showtime-edit-section__item-content{padding:.9375rem;margin-top:.625rem}.showtime-edit-section__item-content--padding-top{padding-top:.9375rem}.showtime-edit-section__item-content-stacked{margin-top:.625rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.showtime-edit-section__item-content-stacked.showtime-edit-section__item-content-stacked--no-padding{padding:0}.showtime-edit-section__item-content-stacked:first-child{margin-top:0}.showtime-edit-section__item-status .showtime-callout{margin-bottom:15px}.showtime-edit-section__item-status .react-datepicker-wrapper{margin-bottom:15px}.showtime-edit-section__item-status p{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;margin-bottom:5px}.showtime-edit-section__item-status p:only-child{margin-bottom:0}.showtime-edit-section__item-archive{background-color:#f7f7f8;border-radius:3px;margin-top:15px;padding:15px}.showtime-edit-section__item-archive .showtime-link{display:inline-block;margin-bottom:10px}.showtime-edit-section__faux-disabled-textbox{background-color:#fcfcfc;color:#4e4e4e;box-shadow:none;display:block;margin:0 0 1.1rem 0;padding:.5rem}.showtime-form-section{display:flex;padding-bottom:.9375rem;flex-direction:column}@media only screen and (min-width: 37.5em){.showtime-form-section{flex-direction:row;flex-wrap:wrap;align-items:center;padding-bottom:1.875rem}}.showtime-form-section:only-child:not(.showtime-form-section--padding-bottom),.showtime-form-section:last-child:not(.showtime-form-section--padding-bottom){padding-bottom:0}.showtime-form-section .showtime-tabs-underline{margin-bottom:10px}.showtime-form-section .showtime-markdown-task{min-height:190px;padding:.5rem .625rem}.showtime-form-section__multi-item{display:flex;flex-direction:row;max-width:100%}@media only screen and (min-width: 37.5em){.showtime-form-section__multi-item{flex:1 0 auto;max-width:50%}}.showtime-form-section--divider{margin-bottom:1.875rem;border-bottom:.0625rem solid #cacaca}.showtime-form-section__item{margin-bottom:.9375rem}.showtime-form-section__item:last-child{margin-bottom:0}.showtime-form-section__item.is-hidden{display:none}@media only screen and (min-width: 37.5em){.showtime-form-section__item{margin-bottom:0}}.showtime-form-section__item--label{margin-bottom:.3125rem}@media only screen and (min-width: 37.5em){.showtime-form-section__item--label{flex:0 0 100%}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--grow{flex:1 1 auto}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--shrink{flex-shrink:1}}.showtime-form-section__item--justify-between{display:flex;justify-content:space-between;flex:1 1 auto}.showtime-form-section__item--full-width{width:100%;max-width:100%}@media only screen and (min-width: 37.5em){.showtime-form-section__item--full-width{flex-grow:1;flex-basis:100%}}@media only screen and (max-width: 37.4375em){.showtime-form-section__item--overflow{overflow-x:auto;padding:.0625rem}}@media only screen and (min-width: 37.5em){.showtime-form-section--fixed-height-overflow{position:relative}.showtime-form-section--fixed-height-overflow::after{content:"";position:absolute;bottom:0;width:100%;height:25px;background:linear-gradient(rgba(255, 255, 255, 0.2), white);pointer-events:none}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--fixed-height-overflow{max-height:9.375rem;overflow-y:auto;margin-top:.9375rem;transform:translateZ(0)}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--margin-left{margin-left:1.875rem}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--margin-right{margin-right:1.875rem}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--padding-left{padding-left:1.875rem}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--padding-right{padding-right:1.875rem}}.showtime-form-section__item--margin-right-small{margin-right:12px}@media only screen and (min-width: 37.5em){.showtime-form-section__item--margin-bottom{margin-bottom:1.875rem}.showtime-form-section__item--margin-bottom:last-child{margin-bottom:1.875rem}}.showtime-form-section__item--margin-bottom-small{margin-bottom:12px}.showtime-form-section__item--padding-top-small{padding-top:.3125rem}.showtime-form-section__item--padding-top{padding-top:.625rem}.showtime-form-section__item--padding-bottom{padding-bottom:.625rem}.showtime-form-section__item--padding-bottom-large{padding-bottom:1.5625rem}.showtime-form-section--small-padding-bottom{padding-bottom:12px}.showtime-form-section--small-padding-bottom:last-child{padding-bottom:12px}@media only screen and (min-width: 37.5em){.showtime-form-section__item--margin-top{margin-top:1.875rem}}@media only screen and (min-width: 37.5em){.showtime-form-section__item--margin-top-small{margin-top:12px}}.showtime-conversation__message{display:flex;flex:1 0 auto;margin-bottom:1.5625rem}.showtime-conversation__message:last-child{margin-bottom:0}.showtime-conversation__message-contents{max-width:80%;display:flex;flex-direction:column}.showtime-conversation__message-converted-header{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-conversation__message-id{margin-top:.1875rem;color:#646470}.showtime-conversation__message-username{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-conversation__message-timestamp{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-conversation__message-body{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;padding:.625rem;border-radius:10px 15px;margin:.5rem 0}.showtime-conversation__message--you{justify-content:flex-end}.showtime-conversation__message--you .showtime-conversation__message-contents{align-items:flex-end}.showtime-conversation__message--you .showtime-conversation__message-body{background-color:rgba(34,34,52,.15);border-top-right-radius:0}.showtime-conversation__message--not-you{justify-content:flex-start}.showtime-conversation__message--not-you .showtime-conversation__message-contents{align-items:flex-start}.showtime-conversation__message--not-you .showtime-conversation__message-body{background-color:#f4f4f5;border-top-left-radius:0}.showtime-conversation__comment-box-inline{display:flex;flex-direction:column;padding:.9375rem}.showtime-conversation__comment-box-inline--file-only .showtime-conversation__comment-box-inline-input{padding-left:15px}@media only screen and (max-width: 28.0625em){.showtime-conversation__comment-box-inline--file-only .showtime-conversation__comment-box-inline-input{padding-left:0}}.showtime-conversation__comment-box-inline-inner{display:flex;flex:1 1 auto;flex-direction:column;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1);border:.0625rem solid #cacaca;height:auto;border-radius:.1875rem;background-color:#fff}.showtime-conversation__comment-box-inline-inner.is-focused{border-color:#4688f1;box-shadow:0 0 0 4px rgba(70,136,241,.15)}.showtime-conversation__comment-box-inline-inner.has-error{border-color:#ff513d}.showtime-conversation__comment-box-inline-inner.is-focused.has-error{border-color:#ff513d}.showtime-conversation__comment-box-inline-input-wrapper{display:flex;flex:1 1 100%}@media only screen and (max-width: 28.0625em){.showtime-conversation__comment-box-inline-input-wrapper{flex-wrap:wrap}}.showtime-conversation__comment-box-inline--stacked .showtime-conversation__comment-box-inline-input-wrapper{flex-wrap:wrap}.showtime-conversation__comment-box-inline--stacked .showtime-conversation__comment-box-inline-input{flex-basis:100%;order:0}.showtime-conversation__comment-box-inline--stacked .showtime-conversation__comment-box-inline-camera{order:1}.showtime-conversation__comment-box-inline--stacked .showtime-conversation__comment-box-inline-file-picker{order:2}.showtime-conversation__comment-box-inline-camera{display:flex;flex:0 0 auto;padding:.625rem 0;justify-content:flex-start;align-items:flex-end}@media only screen and (max-width: 28.0625em){.showtime-conversation__comment-box-inline-camera{order:2}}.showtime-conversation__comment-box-inline-file-picker{display:flex;flex:0 0 auto;padding:.625rem 0;justify-content:flex-start;align-items:flex-end}@media only screen and (max-width: 28.0625em){.showtime-conversation__comment-box-inline-file-picker{order:3;flex-grow:1}}.showtime-conversation__comment-box-inline-input{flex:1 0 auto}@media only screen and (max-width: 28.0625em){.showtime-conversation__comment-box-inline-input{order:1;flex-basis:100%}}.showtime-conversation__comment-box-inline-textarea{background-color:rgba(0,0,0,0) !important;border:none !important;box-shadow:none !important;margin:0;padding:1.125rem 0 0 0}.showtime-conversation__comment-box-inline-textarea:hover{border:none;background-color:rgba(0,0,0,0)}@media only screen and (max-width: 28.0625em){.showtime-conversation__comment-box-inline-textarea{padding:1.25rem 1.25rem 0 1.25rem}}.showtime-conversation__comment-box-inline-save{padding:.625rem;display:flex;align-items:flex-end}@media only screen and (max-width: 39.3125em){.showtime-conversation__comment-box-inline-save .showtime-interaction-blocker,.showtime-conversation__comment-box-inline-save .showtime-button{width:100%}}.showtime-file-preview__image-overlay,.showtime-progress{display:flex;align-items:center;justify-content:center}.showtime-progress__circle{transition:stroke-dashoffset .35s;transform:rotate(-90deg);transform-origin:50% 50%}.showtime-file-preview{margin:1.25rem 0 .625rem 0;position:relative;display:inline-flex;max-width:15rem}@media only screen and (max-width: 28.0625em){.showtime-file-preview{margin:1.25rem 1.25rem 0 1.25rem}}.showtime-file-preview__image-overlay{padding-top:0;padding-bottom:0;position:absolute;width:100%;height:100%;max-height:100%}.showtime-file-preview__image--blur{filter:blur(3px)}.showtime-file-preview__image-container{border-radius:.1875rem;overflow:hidden}.showtime-file-preview__error{background-color:rgba(255,255,255,.5);position:absolute;width:100%;height:100%;max-height:100%}.showtime-file-preview__error .showtime-interaction-blocker{position:inherit;display:inherit;height:100%;width:100%}.showtime-file-preview__error a{height:100%;width:100%;display:flex;justify-content:center;align-items:center;color:#222234;font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-file-preview__image{max-height:5rem}.showtime-file-preview__attachment{border-radius:.1875rem;border:1px #222234 solid;padding:.3125rem .625rem}.showtime-file-preview__button{display:flex;align-items:center;justify-content:center;border-radius:.8125rem;background-color:#222234;border:2px #fff solid;padding:.3125rem;max-width:1.625rem;max-height:1.625rem;position:absolute;top:-10px;right:-10px}.showtime-file-preview__button-icon{display:flex;align-items:center;justify-content:center}.showtime-file-preview__button-icon svg *{fill:#fff}.showtime-file-preview__button-icon svg{width:.625rem;height:.625rem;padding:0;margin:0}.showtime-conversation__message-attachment{margin-bottom:.625rem}.showtime-conversation__message-attachment .showtime-attachment{background-color:#fcfcfc}.showtime-conversation__message-attachment img{display:block;max-width:100% !important;width:auto !important;border-radius:7px}@media only screen and (min-width: 37.5em){.showtime-conversation__message-attachment img{max-width:31.25rem !important}}.ie .showtime-conversation__message-attachment img{max-width:12.5rem !important}@media only screen and (min-width: 25em){.ie .showtime-conversation__message-attachment img{max-width:18.75rem !important}}@media only screen and (min-width: 37.5em){.ie .showtime-conversation__message-attachment img{max-width:31.25rem !important}}.showtime-conversation__message-attachment img:hover{cursor:pointer}.showtime-widget{background-color:#f7f7f8;border-radius:.1875rem}.showtime-widget__header{padding:1.25rem 1.25rem 0 1.25rem;display:flex;align-items:center;justify-content:space-between;color:#222234;flex-wrap:wrap}.showtime-widget__title-and-icon{display:flex;align-items:center}.showtime-widget__icon{flex-shrink:1;margin:0 .5rem .0625rem 0}.showtime-widget__title{font-size:.8125rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;flex-grow:1}.showtime-widget__status{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}@media only screen and (max-width: 31.1875em){.showtime-widget__status{flex-basis:100%;padding-top:.625rem}}.showtime-widget__body{padding:1.25rem}.showtime-widget__action-bar{padding:1.25rem}.showtime-expandable-container{max-height:8.125rem;overflow:hidden;position:relative}.showtime-expandable-container.is-expanded{max-height:none}.showtime-table--full-width{width:100%}.showtime-table--sticky .showtime-table__header-cell{z-index:1;background-color:#f4f4f5;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23072848' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");position:sticky;top:0}.showtime-table__header-cell{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;white-space:nowrap;text-align:left;padding:.625rem .9375rem;color:#646470;background-color:#fff;border-bottom:.0625rem solid #f6f6f6}.showtime-table__header-cell--emphasis{color:#222234}.showtime-table__header-cell--filled-background{background-color:#f4f4f5;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23072848' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E")}.showtime-table__row--highlight{background-color:#f4f4f5}.showtime-table__row--selected .showtime-table__cell:not(.showtime-table__cell--checkbox){background-color:#ecf3fe}.showtime-table__row--highlight-hover:hover{cursor:pointer;background-color:#f4f4f5}.showtime-table__row--highlight-hover-no-click:hover{background-color:#f4f4f5}.showtime-table__cell{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;background-color:#fff;border-bottom:.0625rem solid #f6f6f6;text-align:left;padding:.625rem .9375rem;color:#646470}.showtime-table__cell--checkbox{background-color:rgba(0,0,0,0)}.showtime-table__cell--large{padding:.9375rem}.showtime-table__cell--emphasis{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}.showtime-table__cell--nowrap{white-space:nowrap}.showtime-table__cell--center{text-align:center}.showtime-tags{display:flex;flex-wrap:wrap}.showtime-tags .showtime-tag{margin-right:.3125rem;margin-bottom:.3125rem}.showtime-tags--summary{margin-top:.625rem}.showtime-tag{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding:.125rem .4375rem;display:inline-flex;flex:0 1 auto;align-items:center;border-radius:624.9375rem;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:.0625rem solid rgba(0,0,0,0)}.showtime-tag--default{background-color:#fff;border-color:#cacaca;color:#222234}.showtime-tag--default.is-link:hover{cursor:pointer;border-color:#222234;color:#222234}.showtime-tag--selected{background-color:#222234;color:#fff}.showtime-tag--selected.is-link:hover{cursor:pointer;background-color:#222234}.showtime-tag__remove{margin-left:.3125rem;margin-bottom:-0.125rem}.showtime-tag__remove svg{width:.75rem;height:.75rem}.showtime-tag__remove svg *{fill:currentColor}.showtime-tag-management-overlay .showtime-tag-management-overlay__description{flex:1 0 100%;color:#222234}@media screen and (min-width: 0){.showtime-tag-management-overlay .showtime-tag-management-overlay__description{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 31.1875rem){.showtime-tag-management-overlay .showtime-tag-management-overlay__description{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 50rem){.showtime-tag-management-overlay .showtime-tag-management-overlay__description{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}@media screen and (min-width: 75rem){.showtime-tag-management-overlay .showtime-tag-management-overlay__description{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}}.showtime-tags-table-container{overflow:visible}.showtime-tags-table{display:flex;flex-direction:column;width:100%}.showtime-tags-table__header,.showtime-tags-table__row{display:flex;flex-direction:row;border-bottom:.0625rem solid #f6f6f6}.showtime-tags-table__header-cell{width:100%;padding:.625rem .9375rem;font-size:.8125rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-tags-table__column{display:flex;flex-direction:column}.showtime-tags-table__cell{display:flex;width:100%;text-align:left;padding:.625rem .9375rem;color:#646470;align-items:center;justify-content:space-between}.showtime-tags-table__cell--half{width:50%}@media only screen and (max-width: 25.9375em){.showtime-tags-table__cell--expand-mobile{width:100%}}@media only screen and (max-width: 25.9375em){.showtime-tags-table__column--mobile{flex-direction:column}}@media only screen and (max-width: 25.9375em){.showtime-tags-table__header-cell:not(:first-child){display:none}}.showtime-markdown h1,.showtime-markdown h2,.showtime-markdown h3,.showtime-markdown h4,.showtime-markdown h5,.showtime-markdown h6,.showtime-markdown p,.showtime-markdown strong,.showtime-markdown em,.showtime-markdown a,.showtime-markdown ul,.showtime-markdown ol,.showtime-markdown li,.showtime-markdown img,.showtime-markdown blockquote,.showtime-markdown br,.showtime-markdown hr{padding:0 !important;margin:0 !important;color:#222234 !important}.showtime-markdown h1,.showtime-markdown h2,.showtime-markdown h3,.showtime-markdown h4,.showtime-markdown h5,.showtime-markdown h6{margin-bottom:.3125rem !important}@media screen and (min-width: 0){.showtime-markdown h1,.showtime-markdown h2,.showtime-markdown h3,.showtime-markdown h4,.showtime-markdown h5,.showtime-markdown h6{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-markdown h1,.showtime-markdown h2,.showtime-markdown h3,.showtime-markdown h4,.showtime-markdown h5,.showtime-markdown h6{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-markdown h1,.showtime-markdown h2,.showtime-markdown h3,.showtime-markdown h4,.showtime-markdown h5,.showtime-markdown h6{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-markdown h1,.showtime-markdown h2,.showtime-markdown h3,.showtime-markdown h4,.showtime-markdown h5,.showtime-markdown h6{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-markdown h1{font-size:22px !important;font-style:normal;font-weight:bold;line-height:150% !important}.showtime-markdown h2{font-size:20px !important;font-style:normal;font-weight:bold;line-height:200% !important}.showtime-markdown h3{font-size:20px !important;font-style:normal;font-weight:bold;line-height:200% !important}.showtime-markdown h4{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;line-height:175% !important;margin:10px 0 !important}.showtime-markdown p{margin:0 0 10px 0 !important;padding:0 !important;line-height:26px !important}.showtime-markdown strong{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-markdown em{color:#9b9b9b !important;font-size:13px;font-style:normal}.showtime-markdown a{text-decoration:underline;color:#4688f1 !important}.no-touchevents .showtime-markdown a:hover{color:#1f838a}.showtime-markdown a:active{opacity:.5;text-decoration:none}.showtime-markdown ul{list-style-type:disc;padding-left:1.25rem !important;padding-bottom:.625rem !important}.showtime-markdown ol{list-style-type:decimal;padding-left:1.5625rem !important;padding-bottom:.625rem !important}.showtime-markdown li{padding-bottom:.3125rem !important;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;line-height:150% !important}.showtime-markdown img{padding-bottom:.625rem !important}.showtime-markdown blockquote{padding-left:15px !important;border-left:4px solid #d8d8d8;margin-top:-10px !important;margin-bottom:20px !important}.showtime-markdown blockquote p{color:#9b9b9b !important;line-height:150% !important;margin-top:0 !important}.showtime-markdown br{padding-bottom:.625rem !important}.showtime-markdown hr{margin:15px 0 !important;border:0 !important;height:1px !important;background:#d8d8d8 !important}.showtime-markdown-task h1,.showtime-markdown-task h2,.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6,.showtime-markdown-task p,.showtime-markdown-task strong,.showtime-markdown-task em,.showtime-markdown-task a,.showtime-markdown-task ul,.showtime-markdown-task ol,.showtime-markdown-task li,.showtime-markdown-task img,.showtime-markdown-task blockquote,.showtime-markdown-task br,.showtime-markdown-task hr{padding:0 !important;margin:0 !important;color:#222234 !important}.showtime-markdown-task h1,.showtime-markdown-task h2,.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6{margin-bottom:.3125rem !important}@media screen and (min-width: 0){.showtime-markdown-task h1,.showtime-markdown-task h2,.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-markdown-task h1,.showtime-markdown-task h2,.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-markdown-task h1,.showtime-markdown-task h2,.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-markdown-task h1,.showtime-markdown-task h2,.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-markdown-task h1{font-size:24px !important;font-style:normal;font-weight:normal;line-height:150% !important}.showtime-markdown-task h2{font-size:20px !important;font-style:normal;font-weight:normal;line-height:150% !important}.showtime-markdown-task h3,.showtime-markdown-task h4,.showtime-markdown-task h5,.showtime-markdown-task h6{font-size:16px !important;font-style:normal;font-weight:normal;line-height:150% !important}.showtime-markdown-task p{margin:0 0 10px 0 !important;padding:0 !important;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-markdown-task p:only-child{margin-bottom:0 !important}.showtime-markdown-task strong{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-markdown-task em{font-style:italic}.showtime-markdown-task s,.showtime-markdown-task strike,.showtime-markdown-task del{text-decoration:line-through}.showtime-markdown-task a{text-decoration:underline;color:#4688f1 !important;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.no-touchevents .showtime-markdown-task a:hover{color:#4688f1}.showtime-markdown-task a:active{opacity:.5;text-decoration:none}.showtime-markdown-task ul{list-style-type:disc;padding-left:1.25rem !important;padding-bottom:.625rem !important}.showtime-markdown-task ol{list-style-type:decimal;padding-left:1.25rem !important;padding-bottom:.625rem !important}.showtime-markdown-task li{padding-bottom:.3125rem !important;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-markdown-task img{padding-bottom:.625rem !important}.showtime-markdown-task blockquote{padding-left:15px !important;border-left:4px solid #d8d8d8;margin-top:-10px !important;margin-bottom:20px !important}.showtime-markdown-task blockquote p{color:#9b9b9b !important;line-height:150% !important;margin-top:0 !important}.showtime-markdown-task br{padding-bottom:.625rem !important}.showtime-markdown-task hr{margin:15px 0 !important;border:0 !important;height:1px !important;background:#d8d8d8 !important}.showtime-markdown-task code,.showtime-markdown-task pre{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;background-color:#fcfcfc !important;border-radius:3px !important;padding:3px !important}.showtime-markdown-task code{line-height:26px !important}.showtime-confirmation-modal{width:100%;display:flex;flex-direction:column;padding:.9375rem}.showtime-confirmation-modal .showtime-confirmation-modal__title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin-top:0;margin-bottom:.9375rem;color:#222234}.showtime-confirmation-modal .showtime-confirmation-modal__description{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin-top:0;margin-bottom:.9375rem;white-space:normal;overflow:auto}.showtime-confirmation-modal .showtime-confirmation-modal__actions{display:flex;flex-direction:row}.showtime-stacked-modal-padded{min-width:17.5rem;padding:.9375rem .75rem}.showtime-stacked-modal-padded .showtime-stacked-modal__actions{margin-top:.625rem;margin-bottom:.3125rem}.showtime-stacked-modal-padded .showtime-conversation__comment-box-inline{padding:0}.showtime-stacked-modal__actions{display:flex;flex-direction:column}.showtime-stacked-modal__actions .showtime-button:last-child{margin-top:.5rem}.showtime-stacked-modal__actions .showtime-button__icon-left{display:flex;border-bottom:1px solid #d3d3d3}.showtime-stacked-modal__actions .showtime-button__icon-left:last-child{border-bottom:none;margin-top:0}.showtime-stacked-modal__actions .showtime-button__icon-left .showtime-button__text{flex:auto;text-align:left;padding-left:.3125rem}.showtime-task-planner-section{margin:1.875rem auto 0}.showtime-task-planner-section:first-child{margin-top:0}.showtime-task-planner-section-title{color:#646470;padding:0 .625rem;display:flex}@media only screen and (min-width: 22.5em){.showtime-task-planner-section-title{padding:0 .9375rem}}@media only screen and (min-width: 40.5625em){.showtime-task-planner-section-title{padding:0 2.625rem}}@media only screen and (min-width: 58.75em){.showtime-task-planner-section-title{padding:0 2.9375rem}}.showtime-task-planner-section-title-emphasis{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-task-planner-section-title-small{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin-left:.3125rem}.showtime-task-planner-list{justify-content:space-between;padding:.9375rem .625rem}@media only screen and (min-width: 22.5em){.showtime-task-planner-list{padding:.9375rem .9375rem}}@media only screen and (min-width: 58.75em){.showtime-task-planner-list{padding:.9375rem 1.25rem}}.showtime-task-planner-task{display:flex;align-items:center}.showtime-task-planner-task.is-editable .showtime-task-planner-task__title{color:#222234}.showtime-task-planner-task.is-editable .showtime-task-planner-task__checkbox{visibility:visible}.no-touchevents .showtime-task-planner-taska.is-editable .showtime-task-planner-task__inner:hover{border-color:rgba(34,34,52,.5);cursor:pointer;z-index:1}.showtime-task-planner-task.is-preview .showtime-task-planner-task__inner{border-color:#4688f1 !important;box-shadow:0 0 0 4px rgba(70,136,241,.15);z-index:1}.showtime-task-planner-task.is-expanded{margin:1.25rem 0 2.5rem;box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06);flex-direction:column}@media screen and (min-width: 64rem){.showtime-task-planner-task.is-expanded{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}.showtime-task-planner-task.is-expanded:first-child{margin-top:0}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__inner{margin-bottom:0;box-shadow:none;border-top:.25rem solid #4688f1 !important;border-left:none;border-right:none;border-bottom:none;border-top-left-radius:.1875rem;border-top-right-radius:.1875rem;background-color:#ecf3fe;width:100%}.no-touchevents .showtime-task-planner-task.is-expanded .showtime-task-planner-task__inner:hover{cursor:default}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__primary{padding-bottom:0}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__secondary{display:block}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__secondary-meta{align-items:flex-start}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__secondary-assignment-group{display:block}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__tags{align-items:flex-start}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__tags .showtime-tag{margin:0 5px 5px 0}.showtime-task-planner-task.is-expanded .showtime-task-planner-task__preview{display:flex;background-color:#fff}.showtime-task-planner-task:first-child .showtime-task-planner-task__inner{border-top-left-radius:.1875rem;border-top-right-radius:.1875rem}.showtime-task-planner-task:last-child .showtime-task-planner-task__inner{border-bottom-left-radius:.1875rem;border-bottom-right-radius:.1875rem}.showtime-task-planner-task__sortable-list{display:flex;align-items:center}.showtime-task-planner-task__sortable-item{flex:1}.showtime-task-planner-task__drag-handle{transform:rotate(90deg);margin-left:.625rem}.showtime-task-planner-task__drag-handle path{fill:#646470}.showtime-task-planner-task__drag-handle--dragging{pointer-events:none}.showtime-task-planner-task--selected .showtime-task-planner-task__inner{background-color:#ecf3fe}.showtime-task-planner-task--selected .showtime-task-planner-task__checkbox{opacity:1}.no-touchevents .showtime-task-planner-task--selected .showtime-task-planner-task__checkbox{opacity:1}.showtime-task-planner-task__inner{color:#646470;background-color:#fff;display:flex;flex-direction:column;flex:1 1 auto;min-height:3.75rem;margin-top:-1px;border:1px solid rgba(202,202,202,.45)}.showtime-task-planner-task__checkbox{display:none;padding-top:.125rem}@media only screen and (min-width: 40.5625em){.showtime-task-planner-task__checkbox{display:block;visibility:hidden}}.showtime-task-planner-task__primary{display:flex;flex:1;justify-content:space-between;align-items:center;padding:10px 15px 5px 15px}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__primary{display:block}}.showtime-task-planner-task__primary-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__primary-title{padding-bottom:10px}}.showtime-task-planner-task__secondary{display:flex;justify-content:space-between;align-items:flex-start;padding:5px 15px 5px}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__secondary{flex-direction:column-reverse}}.showtime-task-planner-task__secondary-assignment{display:flex;flex:1 0 55%;flex-direction:column}.showtime-task-planner-task__secondary-assignment-group{display:flex}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__secondary-assignment-group{display:block}}.showtime-task-planner-task__secondary-meta{display:flex;flex:1 0 45%;flex-direction:column;align-items:flex-end}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__secondary-meta{align-items:flex-start}}.showtime-task-planner-task__schedule,.showtime-task-planner-task__permissions,.showtime-task-planner-task__notifications,.showtime-task-planner-task__assigned-sites{padding-bottom:5px}.showtime-task-planner-task__schedule,.showtime-task-planner-task__permissions,.showtime-task-planner-task__notifications,.showtime-task-planner-task__assigned-sites,.showtime-task-planner-task__tags{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;display:flex}.showtime-task-planner-task__schedule .showtime-icon,.showtime-task-planner-task__permissions .showtime-icon,.showtime-task-planner-task__notifications .showtime-icon,.showtime-task-planner-task__assigned-sites .showtime-icon,.showtime-task-planner-task__tags .showtime-icon{margin-top:1px;color:rgba(100,100,112,.4)}.showtime-task-planner-task__assigned-sites{min-width:75px;padding-right:10px}.showtime-task-planner-task__permissions{padding-right:10px}.showtime-task-planner-task__tags{flex-wrap:wrap;justify-content:flex-end}.showtime-task-planner-task__tags .showtime-tag{color:#646470;border-color:rgba(202,202,202,.5);margin:0 0 5px 5px}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__tags{justify-content:flex-start}.showtime-task-planner-task__tags .showtime-tag{margin:0 5px 5px 0}}.showtime-task-planner-task__actions{margin-left:.625rem;flex:0 0 auto;min-width:2.875rem}@media only screen and (max-width: 40.5em){.showtime-task-planner-task__actions{display:none}}.showtime-scheduling__container{border-radius:3px;overflow:hidden}.showtime-scheduling__content{border-top:1px solid rgba(202,202,202,.5);padding:15px}.showtime-scheduling__content--empty{padding:0}.showtime-scheduling__shortcuts{display:flex;flex-direction:column;padding:15px 15px 0}.showtime-scheduling{display:flex;flex-direction:column;width:100%}.showtime-scheduling .showtime-scheduling__input-row{padding:8px 0}.showtime-scheduling .showtime-scheduling__input-row .showtime-button--scheduling{min-width:70px}.showtime-scheduling .showtime-scheduling__input-row:first-child{padding-top:0}.showtime-scheduling .showtime-selection-list__item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-scheduling .showtime-callout-help{margin:0 15px 15px 15px}.showtime-scheduling .showtime-radio-button:last-child{margin-right:0}@media only screen and (min-width: 28.75em){.showtime-scheduling .showtime-radio-button{margin-right:30px}}.showtime-scheduling .showtime-scheduling__content .showtime-callout-help{margin:0}.showtime-scheduling .showtime-scheduling__input-range{display:flex;padding:8px 0}@media only screen and (max-width: 28.6875em){.showtime-scheduling .showtime-scheduling__input-range{flex-direction:column}}.showtime-scheduling .showtime-scheduling__input-range .showtime-scheduling__input-range--input{flex:1 0 40%}@media only screen and (max-width: 28.6875em){.showtime-scheduling .showtime-scheduling__input-range .showtime-scheduling__input-range--input:first-child{margin-bottom:10px}}.showtime-scheduling .showtime-scheduling__input-range .showtime-scheduling__arrow{padding:0 .9375rem;align-self:center}@media only screen and (max-width: 28.6875em){.showtime-scheduling .showtime-scheduling__input-range .showtime-scheduling__arrow{display:none}}.showtime-scheduling .showtime-scheduling__input-range .react-datepicker__input-container{display:block}.showtime-scheduling .showtime-scheduling__input-range .react-datepicker__input-container .showtime-button.has-error{border-color:#ff513d}.showtime-scheduling .react-datepicker__input-container .showtime-button__text{text-transform:none}.showtime-scheduling .showtime-scheduling__timeslot-range{padding:20px 0 0}.showtime-scheduling .showtime-scheduling__timeslot-range [class*=hint--]{width:100%}.showtime-scheduling .showtime-scheduling__timeslot-select{margin-bottom:.9375rem}.showtime-scheduling .showtime-scheduling__timeslot-specific-time{display:flex;flex-direction:row}@media only screen and (max-width: 28.6875em){.showtime-scheduling .showtime-scheduling__timeslot-specific-time{margin-bottom:.9375rem}}.showtime-scheduling .showtime-scheduling__timeslot-specific-time .showtime-select{width:75px;margin-right:.9375rem}.showtime-scheduling .showtime-scheduling__recurrence{display:flex;align-items:center;padding-top:4px}@media only screen and (min-width: 28.75em){.showtime-scheduling .showtime-scheduling__recurrence .showtime-select--max-width{width:46%}}.showtime-scheduling .showtime-link{cursor:pointer}.showtime-scheduling .showtime-scheduling__label-text{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin-bottom:8px}.showtime-scheduling .showtime-scheduling__recurrence-input input{width:75px;text-align:right;margin-right:.3125rem}.showtime-scheduling .showtime-scheduling__summary{display:flex;padding:.9375rem 0}.showtime-scheduling .showtime-scheduling__summary p,.showtime-scheduling .showtime-scheduling__summary .showtime-link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;margin-bottom:.3125rem;color:inherit}.showtime-scheduling .showtime-scheduling__summary p:last-child,.showtime-scheduling .showtime-scheduling__summary .showtime-link:last-child{margin-bottom:0}.showtime-scheduling .showtime-scheduling__summary .showtime-link{padding-left:10px;text-decoration:underline}.showtime-scheduling .showtime-scheduling__next-instances{padding-top:4px;padding-bottom:20px}.showtime-scheduling .showtime-scheduling__next-instances .showtime-scheduling__next-instances--then{padding:0 0 10px 10px;align-self:flex-end}.showtime-org-bar{padding:.9375rem;background-color:#fffdf5;border-bottom:.0625rem solid #cacaca}.showtime-org-bar .search-container{order:3;margin-top:.9375rem;width:100%;padding-left:0}.showtime-org-bar .search-container .showtime-input{width:100%}@media only screen and (min-width: 37.5em){.showtime-org-bar .search-container{order:unset;flex-grow:2;margin-top:0;width:unset;padding-left:.9375rem}.showtime-org-bar .search-container .showtime-input{width:unset}}.showtime-org-bar .table-legend{margin-top:.9375rem}.showtime-org-bar .table-legend label{display:none;margin-right:.625rem;vertical-align:middle}@media only screen and (min-width: 31.25em){.showtime-org-bar .table-legend label{display:inline-block}}.showtime-org-bar .table-legend .showtime-checkbox{transform:scale(0.75);transform-origin:0}@media only screen and (min-width: 25em){.showtime-org-bar .table-legend .showtime-checkbox{transform:scale(0.9)}}.showtime-org-bar .table-legend .showtime-checkbox__label{-webkit-user-select:none;-moz-user-select:none;user-select:none}.showtime-org-bar .showtime-table{margin-top:.9375rem;border-top:.0625rem solid #f6f6f6}.showtime-org-bar .showtime-table tbody>tr:hover{background-color:#f4f4f5}.showtime-org-bar .showtime-table .admin-site-count{display:none}@media only screen and (min-width: 43.75em){.showtime-org-bar .showtime-table .admin-site-count{display:table-cell}}.showtime-org-bar .showtime-table .admin-shadow-link span{display:none}@media only screen and (min-width: 43.75em){.showtime-org-bar .showtime-table .admin-shadow-link span{display:inline}}.showtime-org-bar__org-picker{display:flex;justify-content:space-between;flex-wrap:wrap}.showtime-org-bar__org-picker .list-visible .showtime-button__icon{transform:scaleY(-1)}.showtime-table__cell--narrow{width:1px}.showtime-table__cell--nowrap{white-space:nowrap}.showtime-star{cursor:pointer}.showtime-star:hover{color:#4688f1}.showtime-star:hover:before,.showtime-star.showtime-star__filled:before{content:"★";position:absolute}.showtime-star:hover:before{color:#cacaca}.showtime-star.showtime-star__filled:before{color:#072843}.showtime-callout{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;display:inline-block;padding:5px 10px 5px 24px;border-radius:999px;border:1px solid rgba(0,0,0,0);white-space:nowrap;position:relative}.showtime-callout:after{content:"";display:block;height:10px;width:10px;border-radius:999px;background-color:rgba(0,0,0,0);position:absolute;top:8px;left:8px}.showtime-callout--no-dot{padding:5px 10px}.showtime-callout--no-dot:after{display:none}.showtime-callout--info{border-color:rgba(70,136,241,.25);color:#4688f1;background-color:#ecf3fe}.showtime-callout--info svg,.showtime-callout--info svg path,.showtime-callout--info svg rect,.showtime-callout--info svg circle,.showtime-callout--info svg polygon{fill:#4688f1}.showtime-callout--info:after{background-color:#4688f1}.showtime-callout--warning{border-color:rgba(255,145,0,.25);color:#ff9100;background-color:#fff9f2}.showtime-callout--warning svg,.showtime-callout--warning svg path,.showtime-callout--warning svg rect,.showtime-callout--warning svg circle,.showtime-callout--warning svg polygon{fill:#ff9100}.showtime-callout--warning:after{background-color:#ff9100}.showtime-callout--inactive{border-color:rgba(100,100,112,.25);color:#646470;background-color:#f7f7f8}.showtime-callout--inactive svg,.showtime-callout--inactive svg path,.showtime-callout--inactive svg polygon{fill:#646470}.showtime-callout--inactive:after{background-color:#646470}.showtime-callout--active{border-color:rgba(19,191,31,.25);color:#13bf1f;background-color:#f3fcf4}.showtime-callout--active svg,.showtime-callout--active svg path,.showtime-callout--active svg polygon{fill:#13bf1f}.showtime-callout--active:after{background-color:#13bf1f}.showtime-callout--upsell{border-color:#fff5f9;color:#fd4382;background-color:#fff5f9}.showtime-callout--upsell svg,.showtime-callout--upsell svg path,.showtime-callout--upsell svg rect,.showtime-callout--upsell svg circle,.showtime-callout--upsell svg polygon{fill:#fd4382}.showtime-callout--upsell:after{background-color:#fd4382}.showtime-callout--mandatory{border-color:rgba(255,81,61,.25);color:#ff513d;background-color:#fff6f5}.showtime-callout--mandatory svg,.showtime-callout--mandatory svg path,.showtime-callout--mandatory svg polygon{fill:#ff513d}.showtime-callout--mandatory:after{background-color:#ff513d}.showtime-callout--margin-right{margin-right:5px}@media only screen and (max-width: 74.9375em){.showtime-callout--desktop-only{display:none}}.showtime-callout__icon{position:relative;top:2px}.showtime-callout__icon svg{width:14px;height:14px;margin-right:5px}.showtime-callout-external{background-color:#f2fafe;border-left:.25rem solid #029ae6;border-radius:.1875rem;padding:.9375rem;display:flex;align-items:center}.showtime-callout-external:hover{background-color:#f7f7f8;border-color:#222234;cursor:pointer}.showtime-callout-external:hover .showtime-callout-external__icon{color:#222234}.showtime-callout-external:hover .showtime-callout-external__text{color:#222234;text-decoration:underline}.showtime-callout-external__icon{display:flex;margin-right:.9375rem;color:#029ae6}.showtime-callout-external__icon.showtime-icon--size-14{margin-top:.0625rem}.showtime-callout-external__text{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#029ae6;padding-right:.3125rem;text-shadow:0 .0625rem .0625rem rgba(0,0,0,.05)}.showtime-callout-help{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:flex;padding:.625rem;border-radius:.1875rem;word-break:break-word}.showtime-callout-help .showtime-callout-help__rows{flex-direction:row}.showtime-callout-help .showtime-callout-help__row-item{padding-bottom:10px}.showtime-callout-help .showtime-callout-help__row-item:last-child{padding:0}.showtime-callout-help .showtime-callout-help__row-item .unlink-record-log{margin-top:10px}.showtime-callout-help .showtime-link{padding:0 15px 0 0;display:inline-flex}.showtime-callout-help .showtime-link:last-child{padding:0}.showtime-callout-help .showtime-link .showtime-icon{display:inline-flex}.showtime-callout-help--vertical-align{display:flex;align-content:center}.showtime-callout-help--info{color:#222234;background-color:#f2fafe;border-left:.25rem solid #029ae6}.showtime-callout-help--upsell{color:#222234;background-color:#fff5f9;border-left:.25rem solid #fd4382;margin-bottom:15px}.showtime-callout-help--attention{color:#222234;background-color:#fffdf5;border-left:.25rem solid #ffd635}.showtime-callout-help--error{color:#222234;background-color:#fff6f5;border-left:.25rem solid #ff513d}.showtime-callout-help--success{color:#222234;background-color:#f3fcf4;border-left:.25rem solid #13bf1f}.showtime-callout-help--margin-bottom{margin-bottom:.9375rem}.showtime-tabs-pill-headers-item{text-decoration:none}.showtime-tabs-pill-headers-item:active{text-decoration:none}.showtime-tabs-pill{margin-bottom:.9375rem}.showtime-tabs-pill-headers{display:flex;flex-wrap:nowrap;overflow:auto}.showtime-tabs-pill-headers-item{border-radius:999px;padding:6px 12px;margin:0 5px;color:#646470;display:flex}@media screen and (min-width: 0){.showtime-tabs-pill-headers-item{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-tabs-pill-headers-item{font-size:.9375rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.no-touchevents .showtime-tabs-pill-headers-item:active,.no-touchevents .showtime-tabs-pill-headers-item:hover{color:#072843}.no-touchevents .showtime-tabs-pill-headers-item:active .showtime-tabs-pill-headers-item-icon path,.no-touchevents .showtime-tabs-pill-headers-item:hover .showtime-tabs-pill-headers-item-icon path{fill:#072843}.showtime-tabs-pill-headers-item.is-active,.showtime-tabs-pill-headers-item.is-active:hover{background-color:#072843;color:#fff}.showtime-tabs-pill-headers-item.is-active .showtime-tabs-pill-headers-item-icon path,.showtime-tabs-pill-headers-item.is-active:hover .showtime-tabs-pill-headers-item-icon path{fill:#fff}.showtime-tabs-pill-headers-item.is-disabled{opacity:.3;pointer-events:none;filter:grayscale(100%)}.showtime-tabs-pill-headers-item:first-child{margin-left:0}.showtime-tabs-pill-headers-item-icon{margin-right:.3125rem;height:.875rem;width:.875rem}.showtime-tabs-pill-headers-item-icon svg{display:inline-block;height:.875rem;width:.875rem}.showtime-tabs-pill-headers-item-icon svg *{fill:currentColor}.showtime-tabs-pill-contents-item{display:flex;flex-direction:column}.showtime-tabs-pill-contents-item.is-active{display:flex}.showtime-tabs-pill-contents-item.is-inactive{display:none}.showtime-tabs-underline-headers-item{text-decoration:none}.showtime-tabs-underline-headers-item:active{text-decoration:none}.showtime-tabs-underline-headers{display:flex;flex-wrap:nowrap;overflow:auto}@media only screen and (max-width: 34em){.showtime-tabs-underline--fit-screen{display:flex}.showtime-tabs-underline--fit-screen .showtime-tabs-underline-headers{flex-grow:1;justify-content:space-between}.showtime-tabs-underline--fit-screen .showtime-tabs-underline-headers-item{padding:20px 0;margin:0 5px}}.showtime-tabs-underline-headers--with-tooltip{display:flex;flex-wrap:nowrap;overflow:initial}.showtime-tabs-underline-headers-item{padding:20px 5px 17px;margin:0 10px;color:rgba(100,100,112,.7);display:flex;border-bottom:3px solid rgba(0,0,0,0)}@media screen and (min-width: 0){.showtime-tabs-underline-headers-item{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-tabs-underline-headers-item{font-size:.9375rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.no-touchevents .showtime-tabs-underline-headers-item:active,.no-touchevents .showtime-tabs-underline-headers-item:hover{border-color:#072843;color:#072843}.no-touchevents .showtime-tabs-underline-headers-item:active .showtime-tabs-underline-headers-item-icon path,.no-touchevents .showtime-tabs-underline-headers-item:hover .showtime-tabs-underline-headers-item-icon path{fill:#072843}.showtime-tabs-underline-headers-item.is-active,.showtime-tabs-underline-headers-item.is-active:hover{border-color:#4688f1;color:#222234}.showtime-tabs-underline-headers-item.is-active .showtime-tabs-underline-headers-item-icon path,.showtime-tabs-underline-headers-item.is-active:hover .showtime-tabs-underline-headers-item-icon path{fill:#222234}.showtime-tabs-underline-headers-item.is-disabled{opacity:.3;pointer-events:none;filter:grayscale(100%)}.showtime-tabs-underline-headers-item:first-child{margin-left:0}.showtime-tabs-underline-headers-item-icon{margin-right:.3125rem;height:.875rem;width:.875rem}.showtime-tabs-underline-headers-item-icon svg{display:inline-block;height:.875rem;width:.875rem}.showtime-tabs-underline-headers-item-icon svg *{fill:currentColor}.showtime-tabs-underline-contents-item{display:flex;flex-direction:column}.showtime-tabs-underline-contents-item.is-active{display:flex}.showtime-tabs-underline-contents-item.is-inactive{display:none}.showtime-floatification__container{z-index:30;padding:.625rem .9375rem;position:fixed;right:0;top:0;display:flex;flex-direction:column;align-items:flex-end}.shadowing .showtime-floatification__container{top:2.5rem}.showtime-floatification{box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06);border-radius:.1875rem;color:#fff;margin-bottom:.625rem}@media screen and (min-width: 64rem){.showtime-floatification{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-floatification--error{background-color:#ff513d}.showtime-floatification--info{background-color:#cacaca;color:#222234}.showtime-floatification--success{background-color:#13bf1f}.showtime-floatification--warning{background-color:#ffd635;color:#222234}.showtime-floatification--online{background-color:#029ae6}.showtime-floatification--dismissible .showtime-floatification__inner{padding-right:0}.showtime-floatification--expandable{cursor:pointer;width:18.75rem}.showtime-floatification--expandable .showtime-floatification__inner{padding-right:0}.showtime-floatification--expandable:active{color:inherit;text-decoration:none}.showtime-floatification__inner{-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;display:flex;padding:.3125rem .625rem}.showtime-floatification__expanded{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;background-color:#f4f4f5;color:#222234;padding:10px}.showtime-floatification__message{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;flex:0 0 auto;color:inherit;margin:0}.showtime-floatification__icon{flex:0 0 auto;padding-right:.5rem;opacity:.7}.showtime-floatification__icon svg{height:1rem;margin-bottom:-0.1875rem;width:1rem}.showtime-floatification__icon svg *{fill:currentColor}.showtime-floatification__icon--right{margin-left:auto}.showtime-floatification__icon--closed svg{transform:rotate(-90deg)}.showtime-floatification__dismiss-button{flex:0 0 auto;color:inherit;height:1rem;min-width:1.875rem;padding:0}@media only screen and (max-width: 31.1875em){.showtime-floatification__container,.showtime-floatification,.showtime-floatification--expandable{width:100%}}.showtime-modal-alert__active{height:100%;overflow:hidden;position:fixed;width:100%}.showtime-modal-alert__container{z-index:31;background:rgba(34,34,52,.75);bottom:0;display:block;height:100%;left:0;overflow:hidden;position:absolute;right:0;top:0;width:100%}.showtime-modal-alert__container__inner{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.showtime-modal-alert{box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06);border-radius:3px;background:#fff;flex:none;max-width:17.5rem;overflow:hidden}@media screen and (min-width: 64rem){.showtime-modal-alert{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}@media only screen and (min-width: 25.9375em){.showtime-modal-alert--wider{max-width:22.5rem}}.showtime-modal-alert__header{align-items:center;display:flex;flex-direction:row;margin-bottom:.9375rem;padding:.625rem .9375rem}.showtime-modal-alert__header h1{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;flex:0 1 auto}.showtime-modal-alert__header--error{background-color:#ff513d}.showtime-modal-alert__header--info{background-color:#029ae6}.showtime-modal-alert__header--success{background-color:#13bf1f}.showtime-modal-alert__header--warning{background-color:#ffd635}.showtime-modal-alert__icon{flex:0 0 auto;padding-right:.5rem}.showtime-modal-alert__icon svg{height:1rem;margin-bottom:-0.1875rem;width:1rem}.showtime-modal-alert__icon svg *{fill:#222234}.showtime-modal-alert__body{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin:0;padding:0 .9375rem 1.25rem}.showtime-interaction-blocker{cursor:default;position:relative}.showtime-interaction-blocker>*{pointer-events:none}.showtime-interaction-blocker--block{width:100%}.showtime-interaction-blocker--inline{display:inline}.showtime-standalone-alert{flex:none;max-width:300px;overflow:hidden;padding:100px 25px 0}.showtime-standalone-alert__logo{margin-bottom:30px;display:flex;flex:1 0 auto;justify-content:center}.showtime-standalone-alert__container{flex-direction:column;border-radius:3px;box-shadow:0 0 8px 0 rgba(0,0,0,.03),0 8px 8px 0 rgba(0,0,0,.06);background-color:#fff;padding-bottom:15px}.showtime-standalone-alert__header{display:flex;line-height:1.375;margin-bottom:15px;padding:15px;background-color:#ffd635;border-top-left-radius:3px;border-top-right-radius:3px}.showtime-standalone-alert__header h1{flex:1 1 auto;margin:0;font-size:17px;font-weight:600;text-align:center}.showtime-standalone-alert__text{color:#222234;font-size:13px;line-height:1.375;margin-bottom:5px;padding:0 15px;text-align:center}.showtime-standalone-alert__button{margin:15px 15px 0 15px;cursor:pointer;display:flex;flex:1 0 auto;align-items:center;justify-content:center;text-align:center;white-space:nowrap;height:45px;padding:0 15px;text-decoration:none;border:1px solid #cacaca;background-color:#fff;border-radius:3px;transition:all 200ms ease;touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:#222234;text-transform:uppercase;font-size:13px;font-weight:600}.showtime-standalone-alert__button:focus,.showtime-standalone-alert__button:hover{outline:none;opacity:.9;border:1px solid #222234}.showtime-standalone-alert__button:active{opacity:.5;text-decoration:none}.showtime-standalone-alert__link{color:#222234}.showtime-widget-preview{width:100%;padding:0 0 25px}.showtime-widget-preview:hover{cursor:not-allowed}.showtime-widget-preview .widget{margin:5px 0 15px;pointer-events:none;opacity:.7}.showtime-widget-preview label{display:flex}.showtime-widget-preview label .showtime-label__text{align-self:center}.showtime-widget-preview label .showtime-button{margin-left:auto}.showtime-widget-preview tfoot,.showtime-widget-preview .save-status{display:none !important}.showtime-widget-tasks{width:100%;margin-bottom:12px;line-height:1.5 !important}.showtime-widget-tasks .showtime-list{padding:10px 0 0 10px;margin-left:8px;margin-bottom:5px}.showtime-widget-v2__container{background-color:#f7f7f8;border-radius:3px;padding:.9375rem}.showtime-widget-v2__list-fields .showtime-menu{max-width:100%}@media only screen and (min-width: 31.25em){.showtime-widget-v2__list-fields .showtime-menu{z-index:2}}.showtime-widget-v2__header{align-items:center;color:#222234;display:flex;justify-content:space-between;padding-bottom:.625rem}.showtime-widget-v2__title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}.showtime-widget-v2__settings{margin-bottom:.625rem}.showtime-widget-v2__mode-toggle{align-items:center;border:none;display:flex;flex:0 0 auto;flex-direction:row;justify-content:space-between;margin:0;padding:0}.showtime-widget-v2__mode-toggle .showtime-widget-v2__mode-toggle-title{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;margin-right:.5625rem}.showtime-widget-v2__mode-toggle-label{align-items:center;cursor:pointer;display:inline-flex;height:1.875rem;justify-content:center;margin:0;padding:0;width:1.875rem;border-radius:3px}.showtime-widget-v2__mode-toggle-label:hover{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06);background-color:#fff}@media screen and (min-width: 64rem){.showtime-widget-v2__mode-toggle-label:hover{box-shadow:0 0 2px rgba(0,0,0,.03),0 2px 2px rgba(0,0,0,.06)}}.showtime-widget-v2__mode-toggle-label:hover svg *{fill:#222234}.showtime-widget-v2__mode-toggle-label--active{box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06);background:#222234;cursor:default;pointer-events:none}@media screen and (min-width: 64rem){.showtime-widget-v2__mode-toggle-label--active{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-widget-v2__mode-toggle-label--active svg *{fill:#fff}.showtime-widget-v2__mode-toggle-label-text{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.showtime-widget-v2__mode-toggle-label-icon{cursor:pointer;display:block;height:.875rem;width:.875rem}.showtime-widget-v2__tooltip{height:.875rem;width:.875rem;margin-left:.625rem;color:#cacaca}.showtime-widget-v2__tooltip:hover{cursor:help;color:#222234}.showtime-widget-v2__list{display:flex}.showtime-widget-v2__list-nav{margin-right:.9375rem;flex:0 1 auto;max-width:20%}.showtime-widget-v2__list-nav .showtime-button--lowlight-alt{padding-left:.625rem !important;padding-right:.625rem !important}.touchevents .showtime-widget-v2__list-nav .showtime-button{height:3.125rem !important}.showtime-widget-v2__list-nav-items{margin-bottom:.625rem}.showtime-widget-v2__list-nav-item{display:block;margin-bottom:.625rem;overflow:visible}.showtime-widget-v2__list-content{align-self:flex-start;background:#fff;border-radius:3px;overflow:hidden;flex:1 1 auto;margin-bottom:1.25rem}.showtime-widget-v2__list-content .showtime-widget-v2__list-section-title-container--is-stuck .showtime-widget-v2__list-section-title{background-color:#fff}.showtime-widget-v2__list-content--single-record{background-color:rgba(0,0,0,0);border:0}.showtime-widget-v2__list-content--single-record .showtime-widget-v2__list-section-title-container--is-stuck .showtime-widget-v2__list-section-title{background-color:#f7f7f8}.showtime-widget-v2__list-content--single-record .showtime-widget-v2__list-last-updated,.showtime-widget-v2__list-content--single-record .showtime-widget-v2__list-fields,.showtime-widget-v2__list-content--single-record .showtime-widget-v2__list-field{padding-left:0;padding-right:0;border-color:rgba(0,0,0,0) !important}.showtime-widget-v2__list-section-title-container--is-stuck{z-index:1}.showtime-widget-v2__list-content-header{display:flex;justify-content:space-between;align-items:center;padding:.5rem .375rem .5rem .9375rem;background-color:#222234}.showtime-widget-v2__list-last-updated{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;display:block;padding:.9375rem;border:1px solid rgba(34,34,52,.1);border-top:0;border-bottom:0}.showtime-widget-v2__list-section-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding:15px 20px 10px 15px;border-bottom:1px solid rgba(202,202,202,.3)}.showtime-widget-v2__list-section-title .showtime-record-log-score--section{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;float:right}.showtime-widget-v2__list-content--single-record .showtime-widget-v2__list-section-title{margin:0;padding:10px 10px 10px 0}.showtime-widget-v2__list-fields{border:1px solid rgba(34,34,52,.1);border-top:0;border-bottom:0}.showtime-widget-v2__list-field{display:block;padding:.625rem .9375rem;border-bottom:2px solid #fff}.touchevents .showtime-widget-v2__list-field .showtime-input,.touchevents .showtime-widget-v2__list-field .showtime-input--options select{height:3.4375rem;font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.touchevents .showtime-widget-v2__list-field .showtime-textarea textarea{min-height:3.4375rem !important;font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-widget-v2__list-field .showtime-textarea textarea{padding-top:12px;padding-bottom:11px;min-height:2.8125rem !important}.showtime-widget-v2__list-field.is-empty .showtime-label--repeating{display:none}.showtime-widget-v2__list-field.is-empty:hover{background-color:#f2fafe}.showtime-widget-v2__list-field.is-empty:hover .showtime-label--restricted{color:#029ae6}.showtime-widget-v2__list-field.is-empty:hover .showtime-label--restricted .showtime-label__icon{color:#222234}.showtime-widget-v2__list-field.is-empty select,.showtime-widget-v2__list-field.is-empty input,.showtime-widget-v2__list-field.is-empty textarea{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;pointer-events:none;color:#646470;background:repeating-linear-gradient(315deg, #FFFFFF, #FFFFFF 5px, #F5F5F5 5px, #F5F5F5 10px) !important}.showtime-widget-v2__list-field.is-restricted .showtime-label--repeating,.showtime-widget-v2__list-field.is-restricted .showtime-label--restricted{display:none}.showtime-widget-v2__list-field.is-restricted:hover{background-color:#f2fafe}.showtime-widget-v2__list-field.is-restricted:hover .showtime-label--restricted{color:#029ae6;display:block}.showtime-widget-v2__list-field.is-restricted:hover .showtime-label--restricted .showtime-label__icon{color:#222234}.showtime-widget-v2__list-field.is-restricted select,.showtime-widget-v2__list-field.is-restricted input{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;pointer-events:none;color:#222234 !important;background-color:#fff !important;border-color:rgba(202,202,202,.5)}.showtime-widget-v2__list-field.is-restricted .showtime-input__prefix,.showtime-widget-v2__list-field.is-restricted .showtime-input__suffix{border-color:rgba(202,202,202,.5)}.showtime-widget-v2__list-field.is-disabled{border:none;box-shadow:none}.showtime-widget-v2__list-field.is-disabled input,.showtime-widget-v2__list-field.is-disabled textarea{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;pointer-events:none;color:#222234 !important;background-color:#fff !important;border-color:rgba(202,202,202,.5)}.showtime-widget-v2__list-field.is-invalid{background-color:#fff6f5 !important}.showtime-widget-v2__list-field.is-invalid .showtime-label{color:#ff513d}.showtime-widget-v2__list-field.is-invalid input{border-color:#ff513d}.showtime-widget-v2__list-field.is-invalid .showtime-task__conversation-button svg{color:#ff513d}.showtime-widget-v2__list-field.is-invalid .showtime-button__count{background-color:#ff513d}.showtime-widget-v2__list-field.is-warning{background-color:#fff9f2 !important;color:#ff9100}.showtime-widget-v2__list-field.is-warning .showtime-label{color:#ff9100}.showtime-widget-v2__list-field.is-warning input{border-color:#ff9100}.showtime-widget-v2__list-field.is-warning .showtime-task__conversation-button svg{color:#ff9100}.showtime-widget-v2__list-field.is-warning .showtime-button__count{background-color:#ff9100}.showtime-widget-v2__list-field .showtime-input--text{display:flex}.showtime-widget-v2__list-field .showtime-input--text input{width:100%}@media only screen and (min-width: 50.0625em){.showtime-widget-v2__list-field .showtime-input--text input{width:70%}}.showtime-widget-v2__list-field .showtime-input--time{display:flex}.showtime-widget-v2__list-field .showtime-input--time input{display:flex;width:auto;min-width:6.875rem;padding-left:1.9375rem;padding-right:0}.showtime-widget-v2__list-field .showtime-input--time input::-webkit-calendar-picker-indicator{display:none}.showtime-widget-v2__list-field .showtime-input--time input::-webkit-date-and-time-value{text-align:left}.showtime-widget-v2__list-field .showtime-input--time .time-icon{position:absolute;top:30%;left:.625rem;width:1rem;height:1rem;fill:#4e4e4e;cursor:default}.showtime-widget-v2__list-field .showtime-input--date{display:flex;flex-wrap:wrap;align-content:center;align-items:center}.showtime-widget-v2__list-field .showtime-input--date .date-picker-input{max-width:9.3125rem;margin-right:.3125rem}.showtime-widget-v2__list-field .showtime-input--date .date-picker-input:disabled{opacity:1;box-shadow:none}.showtime-widget-v2__list-field .showtime-input--datetime{margin-bottom:.3125rem}.showtime-widget-v2__list-field .showtime-input--datetime input{min-height:2.8125rem}.showtime-widget-v2__list-field .showtime-input--number{display:flex}.showtime-widget-v2__list-field .showtime-input--number input{width:100%}@media only screen and (min-width: 28.1875em){.showtime-widget-v2__list-field .showtime-input--number input{width:70%}}@media only screen and (min-width: 50.0625em){.showtime-widget-v2__list-field .showtime-input--number input{width:40%}}.showtime-widget-v2__list-field .showtime-input--files{display:flex}.showtime-widget-v2__list-field .showtime-input--options{display:flex}.showtime-widget-v2__list-field .showtime-input--options select{width:100%;margin-bottom:5px}@media only screen and (min-width: 28.1875em){.showtime-widget-v2__list-field .showtime-input--options select{width:70%}}@media only screen and (min-width: 50.0625em){.showtime-widget-v2__list-field .showtime-input--options select{width:40%}}.showtime-widget-v2__list-field .showtime-input--button-options{display:flex}.showtime-widget-v2__list-field .showtime-input--button-options .showtime-task__conversation-button{margin:5px;margin-left:auto}.showtime-widget-v2__list-field .showtime-input--options--collapsed select{margin-bottom:0}.showtime-widget-v2__list-actions{display:flex;padding:.9375rem .9375rem 1.875rem;border:1px solid rgba(34,34,52,.1);border-top:0}.showtime-widget-v2__overview{position:relative;background-color:#fff}.showtime-widget-v2__overview-inner{overflow-x:auto;padding-bottom:.625rem;border:1px solid rgba(34,34,52,.1);border-radius:3px;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-widget-v2__overview-inner{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-widget-v2__overview-inner .showtime-table{border-radius:3px}.showtime-widget-v2__overview-inner .showtime-table tbody{vertical-align:top}.showtime-widget-v2__overview__cell .showtime-button__icon{display:inline-block}.showtime-widget-v2__overview__cell.is-invalid{color:#ff513d}.showtime-widget-v2__overview__cell.is-invalid *{color:#ff513d}.showtime-widget-v2__overview__cell.is-invalid .showtime-widget-v2__cell-comment-content{color:#222234}.showtime-widget-v2__overview__cell.is-invalid .showtime-label--pill.is-muted{background:rgba(0,0,0,0);padding-left:0;padding-right:0}.showtime-widget-v2__overview__cell.is-warning{color:#ff9100}.showtime-widget-v2__overview__cell.is-warning *{color:#ff9100}.showtime-widget-v2__overview__cell.is-warning .showtime-widget-v2__cell-comment-content{color:#222234}.showtime-widget-v2__overview__cell.is-valid .showtime-button__icon{color:#13bf1f}.showtime-widget-v2__overview__cell .showtime-table__cell__error-prefix{margin-right:10px}.showtime-widget-v2__cell-comment td{padding-bottom:10px}.showtime-widget-v2__cell-comment:first-child td{padding-top:10px}.showtime-widget-v2__cell-comment-signature{padding-left:10px;white-space:nowrap}.showtime-widget-v2__cell-comment-content{border-left:3px solid #646470;padding-left:4px}.showtime-table-files{display:flex;flex-wrap:wrap;max-width:18.75rem;margin-left:-0.3125rem;margin-bottom:.3125rem}.showtime-table-files__image{position:relative;margin:.3125rem;max-width:5.8125rem}.showtime-table-files__image img{border-radius:3px;border:.0625rem solid #cacaca;width:100%}@media only screen and (min-width: 23.4375em){.showtime-table-files__image{max-width:121px}}@media only screen and (min-width: 25.6875em){.showtime-table-files__image{max-width:139px}}@media only screen and (min-width: 31.25em){.showtime-table-files__image{max-width:50px}}.showtime-table-files__file{position:relative;margin:.3125rem;width:18.125rem}.showtime-record-log-score--overall{text-align:right;color:#222234;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-record-log-score__percent{padding-top:8px;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-record-log-score--padding-top{padding-top:20px}.showtime-widget-v2__list-content .showtime-task__conversation{padding:.625rem .9375rem}.showtime-widget-v2__list-content--single-record .showtime-task__conversation{padding:0}.showtime-widget-v2__list .showtime-record-log-score--record{text-align:right;padding:.625rem .9375rem;border:1px solid rgba(34,34,52,.1);border-top:0;border-bottom:0}.showtime-selection-list__item{display:flex;align-items:flex-start;padding:15px;margin:0;flex-direction:column}.showtime-selection-list__item-link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;margin-left:auto}.showtime-selection-list__item-title{display:flex;width:100%;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}.showtime-selection-list__item-title svg{margin-right:10px;height:1rem;width:1rem}.showtime-selection-list__item-description{padding:5px 0 0 27px;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;text-align:left;display:flex}.showtime-selection-list__item-description .showtime-selection-list__item-right-content{margin-left:auto;display:inline-flex}.showtime-selection-list__item-right-content{margin-left:auto;padding-left:10px}.showtime-selection-list__item-left-content{flex:100}.showtime-selection-list__item-top-content{flex-direction:row;width:100%;display:flex}.showtime-selection-list__item-bottom-content{width:100%;padding-top:10px;display:flex}.showtime-selection-list__item--disabled{filter:grayscale(100%);opacity:.8}.showtime-selection-list__item--clickable{margin-bottom:15px;border-radius:3px;border:1px solid rgba(202,202,202,.5)}.showtime-selection-list__item--clickable .showtime-selection-list__item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-selection-list__item--clickable:hover,.showtime-selection-list__item--clickable:active,.showtime-selection-list__item--clickable:focus{outline:none;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-selection-list__item--clickable:hover,.showtime-selection-list__item--clickable:active,.showtime-selection-list__item--clickable:focus{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-selection-list__item--clickable:hover .showtime-selection-list__item-title,.showtime-selection-list__item--clickable:active .showtime-selection-list__item-title,.showtime-selection-list__item--clickable:focus .showtime-selection-list__item-title{text-decoration:underline}.showtime-selection-list__item--no-margin-bottom{margin-bottom:0}.showtime-selection-list__item--dropdown-menu{transition:none}.showtime-selection-list__item--dropdown-menu .isvg{color:#222234}.showtime-selection-list__item--dropdown-menu svg{margin-top:-2px;margin-left:-3px;height:1.125rem !important;width:1.125rem !important}.showtime-selection-list__item--dropdown-menu .showtime-button__text{font-size:16px;height:20px;line-height:20px;margin-top:-2px;margin-bottom:5px}.showtime-selection-list__item--dropdown-menu .showtime-button__text,.showtime-selection-list__item--dropdown-menu .showtime-button__secondary-text{margin-left:25px;font-size:16px}.showtime-selection-list__item--dropdown-menu:hover .showtime-button__text{text-decoration:underline}.showtime-scores-header{display:flex;align-items:center;margin:0 0 15px}.showtime-scores-header__icon{padding:11px;background-color:rgba(100,100,112,.05);border-radius:9999px;color:#646470;margin-right:10px;display:flex;align-items:center;justify-content:center}.showtime-scores-header__icon .showtime-icon{height:16px}.showtime-scores-header__text{color:#222234;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-scores-summary{padding:15px;display:flex;flex-wrap:wrap}@media only screen and (min-width: 50em){.showtime-scores-summary{padding:30px}}.showtime-scores-summary .is-empty{opacity:.8;filter:grayscale(100%)}.showtime-scores-summary__score{display:flex;flex-wrap:wrap}@media only screen and (min-width: 50em){.showtime-scores-summary__score{flex-wrap:nowrap}}.showtime-scores-summary__average{background-color:#fff;border-radius:3px;padding:20px;display:flex;width:100%;flex-direction:column;justify-content:space-between;margin-bottom:30px;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-scores-summary__average{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (min-width: 50em){.showtime-scores-summary__average{width:calc(50% - 20px);margin-bottom:0}}@media only screen and (min-width: 75em){.showtime-scores-summary__average{width:calc(33.3% - 20px)}}.showtime-scores-summary__average .showtime-link{position:relative}.showtime-scores-summary__average-stats{display:flex;margin-bottom:20px}.showtime-scores-summary__average-donut{height:100px;padding-right:15px}.showtime-scores-summary__average-donut-svg{width:auto;height:100%}.showtime-scores-summary__average-donut-ring{stroke:rgba(202,202,202,.5)}.showtime-scores-summary__average-donut-segment{stroke:#cacaca}.showtime-scores-summary__average-donut--high .showtime-scores-summary__average-donut-ring{stroke:#dcf5dd}.showtime-scores-summary__average-donut--high .showtime-scores-summary__average-donut-segment{stroke:#13bf1f}.showtime-scores-summary__average-donut--medium .showtime-scores-summary__average-donut-ring{stroke:#ffe9cc}.showtime-scores-summary__average-donut--medium .showtime-scores-summary__average-donut-segment{stroke:#ff9100}.showtime-scores-summary__average-donut--low .showtime-scores-summary__average-donut-ring{stroke:#ffcfc9}.showtime-scores-summary__average-donut--low .showtime-scores-summary__average-donut-segment{stroke:#ff513d}.showtime-scores-summary__average-values{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center}.showtime-scores-summary__average-now{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;font-size:50px;margin:0;padding-bottom:5px}.showtime-scores-summary__average-change{color:#222234;margin:0;padding-bottom:2px;font-size:.65rem}.showtime-scores-summary__average-change-icon{margin-right:5px}.showtime-scores-summary__average-change-value{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin-right:5px;white-space:nowrap}.showtime-scores-summary__average-change-previous{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-scores-summary__trends{background-color:#fff;border-radius:3px;padding:20px;width:100%;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-scores-summary__trends{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (min-width: 50em){.showtime-scores-summary__trends{margin-left:30px;display:flex;flex:1;flex-direction:column}}.showtime-scores-summary__trends.is-empty .showtime-scores-summary__chart-line--faint{stroke:rgba(202,202,202,.3)}.showtime-scores-summary__trends.is-empty .showtime-scores-summary__chart-line--strong{stroke:#cacaca}.showtime-scores-summary__chart{display:flex;flex:1;height:129px;align-items:center;position:relative;padding:6px 0 20px 30px}.showtime-scores-summary__chart svg{overflow:visible}.showtime-scores-summary__chart-info{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}.showtime-scores-summary__chart-info .showtime-scores-header{margin-bottom:0}.showtime-scores-summary__chart-legend{display:flex}.showtime-scores-summary__chart-legend-item{display:flex;align-items:center;padding-left:15px;margin:0}.showtime-scores-summary__chart-legend-item-color{height:5px;width:15px;border-radius:3px}.showtime-scores-summary__chart-legend-item-color--strong{background-color:#4688f1}.showtime-scores-summary__chart-legend-item-color--faint{background-color:rgba(70,136,241,.3)}.showtime-scores-summary__chart-legend-item-text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding-left:5px}.showtime-scores-summary__chart-svg{width:100%;height:102px;border-top:1px dashed #e9e9eb;border-bottom:1px solid #e9e9eb}.showtime-scores-summary__chart-label{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:rgba(34,34,52,.5);text-align:right;min-width:20px}.showtime-scores-summary__chart-label--vertical-end{position:absolute;top:0;left:0}.showtime-scores-summary__chart-label--vertical-middle{position:absolute;top:48px;left:0}.showtime-scores-summary__chart-label--vertical-start{position:absolute;bottom:13px;left:0}.showtime-scores-summary__chart-label--horizontal-start{position:absolute;bottom:0;left:30px;text-align:left}.showtime-scores-summary__chart-label--horizontal-end{position:absolute;bottom:0;right:0}.showtime-scores-summary__chart-gradient{position:absolute;top:6px;right:0;bottom:18px;left:28px;background:linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 35%, rgba(255, 255, 255, 0) 70%)}.showtime-scores-summary__chart-axis{fill:none;stroke:#e9e9eb;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:2 3;vector-effect:non-scaling-stroke}.showtime-scores-summary__chart-line{fill:none;stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke}.showtime-scores-summary__chart-line--faint{stroke:rgba(70,136,241,.3);stroke-width:2px}.showtime-scores-summary__chart-line--strong{stroke:#4688f1;stroke-width:4px}.showtime-scores-table-wrapper{margin-top:20px;padding-bottom:120px;background-color:#fff}.showtime-scores-table-wrapper.is-empty{filter:grayscale(100%);opacity:.8}.showtime-scores-table-wrapper.is-empty .showtime-scores-table__average{background-color:#cacaca;text-shadow:1px 1px rgba(34,34,52,.25)}.showtime-scores-sticky-header{position:sticky;background-color:#fff;top:0;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06);z-index:9}@media screen and (min-width: 64rem){.showtime-scores-sticky-header{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.shadowing .showtime-scores-sticky-header{top:40px}.showtime-scores-controls{padding:15px 30px}@media only screen and (max-width: 31.1875em){.showtime-scores-controls .showtime-button-group{display:none}}.showtime-scores-controls .showtime-filter{padding-right:10px}.showtime-scores-controls__header{display:flex;align-items:center;justify-content:space-between}.showtime-scores-controls__header .showtime-copy-to-clipboard__value{z-index:1}.showtime-scores-controls__filters{display:flex;align-items:center;padding-top:15px}.showtime-scores-controls__filters-item{margin-right:5px}.showtime-scores-controls__filters-item-menu{padding:15px;min-width:260px}.showtime-scores-controls__filters-item-menu--no-padding{padding:0}.showtime-scores-controls__filters-item-menu .react-datepicker__input-container{display:block}.showtime-scores-controls__filters-item-date:first-child{margin-top:-4px;margin-bottom:10px}.showtime-scores-table{padding:0;background-color:#fff;position:relative}.showtime-scores-table__header,.showtime-scores-table__entries{direction:rtl}.showtime-scores-table__header{position:relative;padding-right:30px;overflow:hidden}.showtime-scores-table__header .showtime-scores-table__row{will-change:transform}.showtime-scores-table__header .showtime-scores-table__row:after{content:"";padding-left:10px}.showtime-scores-table__header .showtime-scores-table__score{color:#646470;padding:10px;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-scores-table__header .showtime-scores-table__score span{display:block;font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-scores-table__locations{position:absolute;background:#fff;padding:0 15px 0 30px;box-sizing:border-box;width:300px;left:0;top:0;bottom:0;z-index:1}.showtime-scores-table__locations:after{content:"";position:absolute;right:-10px;top:0;bottom:0;width:10px;height:100%;background:linear-gradient(90deg, white, rgba(255, 255, 255, 0.001));pointer-events:none}.showtime-scores-table__locations .showtime-scores-table__row{justify-content:space-between}.showtime-scores-table__row{display:flex}.showtime-scores-table__row--average,.showtime-scores-table__row--area,.showtime-scores-table__row--location{margin-top:30px}.showtime-scores-table__row--area~.showtime-scores-table__row--area,.showtime-scores-table__row--location~.showtime-scores-table__row--location{margin-top:0}.showtime-scores-table__score{min-width:100px;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin:2px 2px 0 0;text-align:center;color:#fff;text-decoration:none}.showtime-scores-table__location{padding:10px 10px 10px 0;margin:2px 2px 0 0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.showtime-scores-table__entries{overflow-x:scroll;margin-left:300px;padding-right:30px}.showtime-scores-table__entries .showtime-scores-table__row:after{content:"";padding-left:10px}.showtime-score-item{padding:10px;border-radius:3px}.showtime-score-item.is-link:hover{box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06);z-index:1}@media screen and (min-width: 64rem){.showtime-score-item.is-link:hover{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}.showtime-score-item--setup{filter:grayscale(1);opacity:.8}.showtime-score-item--na{color:#646470;background-color:#fafafa}.showtime-score-item--low{color:#fff;text-shadow:1px 1px rgba(255,81,61,.25)}.showtime-score-item--low.is-link:hover{background-color:#ff513d;color:#fff;cursor:pointer}.showtime-score-item--0-to-1{background-color:#ff5441}.showtime-score-item--1-to-2{background-color:#ff604e}.showtime-score-item--2-to-3{background-color:#ff6a5a}.showtime-score-item--3-to-4{background-color:#ff7565}.showtime-score-item--4-to-5{background-color:#ff8071}.showtime-score-item--5-to-6{background-color:#ff8a7d}.showtime-score-item--6-to-7{background-color:#ff9489}.showtime-score-item--7-to-7-5{background-color:#ffa298}.showtime-score-item--medium{color:#ff9100;text-shadow:1px 1px rgba(255,145,0,.25)}.showtime-score-item--medium.is-link:hover{background-color:#ff9100;color:#fff;cursor:pointer}.showtime-score-item--7-5-to-8{background-color:#ffd399}.showtime-score-item--8-to-8-5{background-color:#ffdbac}.showtime-score-item--8-5-to-9{background-color:#ffe1b9}.showtime-score-item--9-to-9-5{background-color:#ffe9cb}.showtime-score-item--high{background-color:#d1fad4;color:#13bf1f;text-shadow:1px 1px rgba(19,191,31,.25)}.showtime-score-item--high.is-link:hover{background-color:#13bf1f;color:#fff;cursor:pointer}.showtime-scores-table-simplified{background-color:#fff}.showtime-scores-table-simplified .showtime-scores-table__score{min-width:38px;flex:1}.showtime-scores-table-simplified .showtime-scores-table__row{direction:rtl}.showtime-scores-table-simplified__dates-header{background-color:#fff;border-bottom:1px solid rgba(202,202,202,.3);position:sticky;top:0;padding:10px 20px;z-index:9}.showtime-scores-table-simplified__dates-header .showtime-scores-table__score{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}.showtime-scores-table-simplified__dates-header .showtime-scores-table__score span{font-size:.75rem !important;line-height:.9375rem !important;letter-spacing:.015625rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:block}.shadowing .showtime-scores-table-simplified__dates-header{top:40px}.showtime-scores-table-simplified__title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;margin:0;padding:10px 0 15px;text-align:center}.showtime-scores-table-simplified__row-item{background-color:#f7f7f8;border-radius:3px;margin:10px;padding:10px}.showtime-scores-table-simplified__row-item .showtime-scores-table__row--average,.showtime-scores-table-simplified__row-item .showtime-scores-table__row--area,.showtime-scores-table-simplified__row-item .showtime-scores-table__row--location{margin-top:0}.showtime-scores-table-simplified__row-item .showtime-score-item{padding:8px 0}.showtime-scores-table-simplified__row-item .showtime-score-item--na{background-color:#fff}.showtime-scores-table-simplified__row-item--average,.showtime-scores-table-simplified__row-item--area,.showtime-scores-table-simplified__row-item--location{margin-top:30px}.showtime-scores-table-simplified__row-item--area~.showtime-scores-table-simplified__row-item--area,.showtime-scores-table-simplified__row-item--location~.showtime-scores-table-simplified__row-item--location{margin-top:0}.showtime-scores-table-simplified__row-item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;margin:0 0 10px}.showtime-scores-empty-state{display:flex;justify-content:center;padding:50px 15px 50px;margin:40px 0 20px;background-color:#fff;position:relative}@media only screen and (max-width: 26.8125em){.showtime-scores-empty-state{padding:30px 35px}}.showtime-scores-empty-state__item{display:flex;border-radius:3px;align-items:flex-start}@media only screen and (max-width: 26.8125em){.showtime-scores-empty-state__item{flex-direction:column;width:100%}}.showtime-scores-empty-state__svg{padding:10px 13px 8px 13px;border:2px solid rgba(202,202,202,.6);border-top-width:4px;border-radius:3px;width:100%;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-scores-empty-state__svg{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (min-width: 26.875em){.showtime-scores-empty-state__svg{width:200px}}.showtime-scores-empty-state__info{padding-right:30px;max-width:300px;color:#222234}@media only screen and (max-width: 26.8125em){.showtime-scores-empty-state__info{padding:0 0 20px 0}}.showtime-scores-empty-state__title{margin:0;padding:10px 0 5px}@media screen and (min-width: 0){.showtime-scores-empty-state__title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-scores-empty-state__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-scores-empty-state__title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-scores-empty-state__title{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media only screen and (max-width: 26.8125em){.showtime-scores-empty-state__title{padding-top:0}}.showtime-scores-empty-state__description{margin:0;padding-top:10px;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.shadowing .showtime-panel,.shadowing .showtime-panel__inner{top:2.5rem}.shadowing .showtime-panel__inner{height:calc(100% - 40px)}body.showtime-panel-active .showtime-panel__inner{animation:panel-slide-in 150ms forwards}.ie body.showtime-panel-active .showtime-panel__inner{animation:none;transform:translateX(0%)}.ie body:not(.showtime-panel-active){transform:translate3d(0, 0, 0)}body.showtime-panel-active--block-page{overflow:hidden}body.showtime-panel-active--block-page .showtime-panel{left:0}body.showtime-panel-active--block-page #trail-navigation,body.showtime-panel-active--block-page #trail-organization,body.showtime-panel-active--block-page .org-settings-tabs,body.showtime-panel-active--block-page .showtime-overlay,body.showtime-panel-active--block-page .showtime-trail,body.showtime-panel-active--block-page .showtime-layout-admin-management,body.showtime-panel-active--block-page .showtime-grid-container,body.showtime-panel-active--block-page .showtime-setup-guide-button,body.showtime-panel-active--block-page access-button{animation:blur-animation 150ms forwards;pointer-events:none}@keyframes blur-animation{0%{filter:blur(0)}100%{filter:blur(5px)}}@keyframes panel-slide-in{100%{transform:translateX(0%)}}.showtime-panel{z-index:21;position:fixed;top:0;right:0;bottom:0;background-color:rgba(34,34,52,.6)}@media print{.showtime-panel{position:initial}}.showtime-panel--wide .showtime-panel__inner{width:100%}@media only screen and (min-width: 43.75em){.showtime-panel--wide .showtime-panel__inner .showtime-button--panel-close .showtime-button__icon{transform:rotate(0deg)}}@media only screen and (min-width: 50em){.showtime-panel--wide .showtime-panel__inner{width:90%}.showtime-panel--wide .showtime-panel__inner .showtime-button--panel-close .showtime-button__icon{transform:rotate(180deg)}}@media only screen and (min-width: 80em){.showtime-panel--wide .showtime-panel__inner{width:80%}}@media only screen and (min-width: 90em){.showtime-panel--wide .showtime-panel__inner{width:70%}}.showtime-panel__inner{z-index:22;background-color:#f4f4f5;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23072848' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");position:fixed;top:0;bottom:0;right:0;overflow-y:auto;height:100%;width:100%;transform:translateX(100%)}@media only screen and (min-width: 43.75em){.showtime-panel__inner{width:640px;border-left:1px solid rgba(202,202,202,.3);box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06)}}@media only screen and (min-width: 43.75em)and (min-width: 64rem){.showtime-panel__inner{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}@media only screen and (min-width: 43.75em){.showtime-panel__inner .showtime-button--panel-close .showtime-button__icon{transform:rotate(180deg)}}@media print{.showtime-panel__inner{position:initial}}.showtime-panel__header{background-color:#fff;position:sticky;top:0;border-bottom:1px solid rgba(202,202,202,.3);z-index:23}@media print{.showtime-panel__header{position:relative}}.showtime-panel__header-inner{display:flex;flex-wrap:wrap;padding:15px}@media only screen and (max-width: 31.1875em){.showtime-panel__header-inner{padding:15px 10px}.showtime-panel__header-inner .showtime-button{padding-left:10px;padding-right:10px}.showtime-panel__header-inner .showtime-panel__header-actions-more{margin:0 5px}.showtime-panel__header-inner .showtime-panel__header-actions-more .showtime-button{min-width:30px}.showtime-panel__header-inner .showtime-button--adjacent+.showtime-button--adjacent{margin-left:5px}}@media only screen and (max-width: 23.6875em){.showtime-panel__header-inner{padding:15px 5px}.showtime-panel__header-inner .showtime-button{padding-left:5px;padding-right:5px}.showtime-panel__header-inner .showtime-button.showtime-button--panel-close{min-width:28px !important}}.showtime-panel__header-actions{display:flex;white-space:nowrap;justify-content:flex-end;margin-left:auto;flex-basis:70%;margin-bottom:10px}.showtime-panel__header-actions-more{position:relative;margin-right:10px}.showtime-panel__header-actions-more .showtime-link--menu-item{white-space:nowrap;min-width:0}.showtime-panel__header-title{padding:8px 15px 0 0;flex-basis:70%;max-width:600px}@media only screen and (max-width: 28.0625em){.showtime-panel__header-title{max-width:40%}}.showtime-panel__header-title--primary{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}.showtime-panel__header-title--secondary{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding-top:5px}.showtime-panel__header-close+.showtime-panel__header-title{padding-left:15px}.showtime-panel__header-status{margin-left:auto;align-items:center;display:flex}.showtime-panel__header-secondary{display:flex;justify-content:center;border-top:1px solid rgba(202,202,202,.3);padding:0 10px}.showtime-panel__header-secondary .showtime-tabs-underline{margin:0}.showtime-panel__header-secondary .showtime-tabs-underline-headers-item{margin:0 5px}@media only screen and (max-width: 49.9375em){.showtime-panel__header-secondary .showtime-tabs-underline-headers-item{margin:0 3px}}@media only screen and (max-width: 31.1875em){.showtime-panel__header-secondary .showtime-tabs-underline-headers-item-icon{display:none}}.showtime-panel__content{display:flex;justify-content:center;padding:15px}@media only screen and (max-width: 31.1875em){.showtime-panel__content{padding-left:0;padding-right:0}}.showtime-panel__content-inner{flex:1}.showtime-panel__content-inner .showtime-edit-section:first-child{margin-top:0}.showtime-panel--task-preview .showtime-panel__inner{overflow:hidden}@media only screen and (min-width: 43.75em){.showtime-panel--task-preview .showtime-panel__inner{width:430px}.showtime-panel--task-preview .showtime-panel__inner .showtime-task-preview .showtime-widget-v2__list-nav .showtime-button--lowlight-alt .showtime-button__text{display:none}}.showtime-panel--task-preview .showtime-panel__content{height:calc(100% - 104px);overflow:auto}.showtime-panel--task-preview .showtime-task-preview__warning{top:-15px}.showtime-panel--search-tasks .showtime-layout-admin-management__filters-button-show-hide,.showtime-panel--search-tasks .showtime-layout-admin-management__filters-sidebar,.showtime-panel--search-tasks .showtime-layout-admin-management_page-title,.showtime-panel--search-tasks .showtime-task-planner-task__tags{display:none}.showtime-panel--search-tasks .showtime-layout-admin-management__action-bar{padding:0;background-color:rgba(0,0,0,0);box-shadow:none}.showtime-panel--search-tasks .showtime-layout-admin-management{filter:none !important;animation:none !important;pointer-events:auto !important}.showtime-panel--search-tasks .showtime-layout-admin-management__actions,.showtime-panel--search-tasks .showtime-layout-admin-management__search,.showtime-panel--search-tasks .showtime-input--search{width:100%}.showtime-panel--search-tasks .showtime-layout-admin-management__search{margin-right:0}@media only screen and (max-width: 31.1875em){.showtime-panel--search-tasks .showtime-layout-admin-management__search{padding-left:15px;padding-right:15px}}.showtime-panel--search-tasks .showtime-task-planner-section-title{padding:0 0 15px 0}@media only screen and (max-width: 31.1875em){.showtime-panel--search-tasks .showtime-task-planner-section-title{padding-left:15px}}.showtime-panel--search-tasks .showtime-task-planner-list{padding:0}.showtime-panel--record-log-changes .showtime-task-planner-task__preview{padding:.625rem}.showtime-panel--record-log-changes .showtime-task-planner-task__preview tfoot{display:none}.showtime-panel--record-log-changes .showtime-task-planner-task__preview-title{padding-left:.625rem}.showtime-panel--record-log-changes .showtime-task-planner-task__preview-content{padding-left:0}.showtime-panel--task-editor .showtime-loader{flex:1}.showtime-panel--task-editor .showtime-panel__inner{overflow:hidden}.showtime-panel--task-editor .showtime-panel__content-inner{display:flex;justify-content:space-between}.showtime-panel--task-editor .showtime-task-preview .showtime-widget-v2__list-nav .showtime-button--lowlight-alt .showtime-button__text{display:none}.showtime-panel--task-editor .showtime-panel__inner{overflow:hidden}.showtime-panel--task-editor .showtime-panel__content{height:calc(100% - 163px);padding:0}.showtime-panel--task-editor .showtime-task__header{margin-top:0}.showtime-panel--task-editor .showtime-task-preview__warning{margin-bottom:15px}.showtime-panel--task-editor .showtime-edit-sections{flex:1;padding:15px;overflow:auto}.showtime-panel--task-editor .showtime-panel__task-editor-preview{display:none;padding:30px 15px 15px;overflow:auto}@media only screen and (min-width: 40.625em){.showtime-panel--task-editor .showtime-panel__task-editor-preview{display:block;width:45%;max-width:400px}}.showtime-panel--task-editor .showtime-panel__task-editor-preview .showtime-callout-help{margin-bottom:15px}.showtime-panel--task-editor .showtime-panel__task-editor-preview--fullwidth{display:block;width:100%;margin-left:auto;margin-right:auto;max-width:735px}.showtime-upsell__upsell-link{padding:.625rem;padding-bottom:0}.showtime-upsell__children--default .showtime-form-section__item{pointer-events:none;overflow-y:hidden;filter:grayscale(100%);opacity:.3}.showtime-checklist-builder-field{display:flex;align-items:center;border-top:1px solid rgba(202,202,202,.3);padding:5px 0;background-color:#fff}.showtime-checklist-builder-field:hover .showtime-checklist-builder-field__drag-handle{visibility:visible}.showtime-checklist-builder-field:hover .showtime-checklist-builder-field__header-actions{display:flex}.showtime-checklist-builder-field--heading .showtime-checklist-builder-field__header-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-checklist-builder-field--heading .showtime-checklist-builder-field__drag-handle{display:none}.showtime-checklist-builder-field--heading:hover .showtime-checklist-builder-field__drag-handle{display:flex}.showtime-checklist-builder-field--heading .showtime-checklist-builder-field__header-action:first-child .showtime-button--lowlight-subtle .showtime-button__icon svg{transform:rotate(180deg)}.showtime-checklist-builder-field--edit .showtime-checklist-builder-field__header-title{padding:0;border:none}.showtime-checklist-builder-field--edit .showtime-checklist-builder-field__drag-handle{display:flex;visibility:visible}.showtime-checklist-builder-field--edit .showtime-checklist-builder-field__header-actions{display:flex}.showtime-checklist-builder-field__drag-handle{display:flex;justify-content:center;visibility:hidden;padding-right:2px}.showtime-checklist-builder-field__drag-handle .showtime-icon{transform:rotate(90deg)}.showtime-checklist-builder-field__drag-handle .showtime-icon *{fill:rgba(202,202,202,.5)}.showtime-checklist-builder-field__drag-handle:hover .showtime-icon *{fill:#222234}.showtime-checklist-builder-field__header{display:flex;flex:1;justify-content:space-between;align-items:center}.showtime-checklist-builder-field__header-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;flex:1;padding:8px 10px;border:1px solid rgba(0,0,0,0);border-radius:3px}.showtime-checklist-builder-field__header-title:hover{cursor:text;background-color:#ecf3fe}.showtime-checklist-builder-field__header-actions{display:none}.showtime-checklist-builder-field__input{flex:1}.showtime-checklist-builder-field-add .showtime-link{color:#222234;display:inline-block;padding:10px 15px;background-color:#fff;border-radius:3px;border:1px dashed #cacaca;margin:15px 0 25px;transition:all 150ms}.showtime-checklist-builder-field-add .showtime-link .showtime-link__icon{color:#4688f1;margin-right:10px;margin-bottom:-1px}.showtime-checklist-builder-field-add .showtime-link .showtime-link__icon svg{border-radius:9999px;height:18px;width:18px;padding:3px}.showtime-checklist-builder-field-add .showtime-link:hover{border-style:solid;color:#4688f1;text-decoration:none !important;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-checklist-builder-field-add .showtime-link:hover{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-checklist-builder-field-add .showtime-link:hover .showtime-link__icon{color:#fff}.showtime-checklist-builder-field-add .showtime-link:hover .showtime-link__icon svg{background-color:#4688f1}.showtime-checklist-builder-field-divider .showtime-link{display:flex;align-items:center;height:0px;margin-top:-1px;opacity:0;padding:0}.showtime-checklist-builder-field-divider .showtime-link .showtime-link__icon{color:#4688f1;margin-left:-3px;margin-top:-3px}.showtime-checklist-builder-field-divider .showtime-link .showtime-link__icon svg{border-radius:9999px;height:18px;width:18px;padding:3px}.showtime-checklist-builder-field-divider .showtime-link:hover{opacity:1;background-color:#ecf3fe;border-color:#ecf3fe;box-shadow:none}.showtime-checklist-builder-field-divider .showtime-link:hover .showtime-link__icon{color:#fff}.showtime-checklist-builder-field-divider .showtime-link:hover .showtime-link__icon svg{background-color:#4688f1}.showtime-checklist-builder-list--dragging{background-color:#ecf3fe}.showtime-checklist-builder-field--dragging{border:1px solid rgba(202,202,202,.3);border-radius:3px;box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-checklist-builder-field--dragging{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}.showtime-checklist-builder-field--dragging.showtime-checklist-builder-field--heading{padding-left:15px}.showtime-checklist-builder-field--dragging .showtime-checklist-builder-field__header-title{margin:0}.showtime-record-log-builder-field{border:1px solid #cacaca;background-color:#fff;border-radius:3px}.showtime-record-log-builder-field:hover .showtime-record-log-builder-field__drag-handle{visibility:visible}.showtime-record-log-builder-field--block-title{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;white-space:nowrap;padding-right:10px}.showtime-record-log-builder-field--block-title .showtime-icon{margin-right:8px}.showtime-record-log-builder-field--block{background-color:#fff;display:flex;padding:10px;margin:10px 0}.showtime-record-log-builder-field--block select{margin-bottom:0}.showtime-record-log-builder-field--block .showtime-record-log-builder-field--block-title,.showtime-record-log-builder-field--block .showtime-utility-font-body-small{margin-top:14px}.showtime-record-log-builder-field--block .showtime-record-log-builder-field--select__wide{width:100%}.showtime-record-log-builder-field--block .showtime-label.showtime-label--validation{display:flex;margin-top:5px}.showtime-record-log-builder-field--block .showtime-label.showtime-label--validation .showtime-label__icon{margin-top:0}.showtime-record-log-builder-field--block .showtime-utility-font-body-small{padding:0 10px}.showtime-record-log-builder-field--column-dropdown{display:flex;align-items:center;border:1px solid #cacaca;border-radius:3px;padding:0 10px}.showtime-record-log-builder-field--column-dropdown__focused{border:1px solid #4688f1 !important;box-shadow:0 0 0 5px rgba(70,136,241,.15) !important}.showtime-record-log-builder-field--column-dropdown__disabled{background-color:#f4f4f5;border:none}.showtime-record-log-builder-field--column-dropdown__disabled .showtime-record-log-builder-field__header-icon *{fill:currentColor}.showtime-record-log-builder-field--column-dropdown__disabled select{background:rgba(0,0,0,0) !important;padding-right:10px}.showtime-record-log-builder-field--column-dropdown select{border:none}.showtime-record-log-builder-field--column-dropdown select:focus{border:none !important;box-shadow:none !important}.showtime-record-log-builder-field--column-dropdown .showtime-record-log-builder-field__header-icon{margin-right:0}.showtime-record-log-builder-field--summary{transition:all 150ms}.showtime-record-log-builder-field--summary:hover{cursor:pointer;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-record-log-builder-field--summary:hover{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-record-log-builder-field--summary:hover .showtime-record-log-builder-field__edit-icon{visibility:visible}.showtime-record-log-builder-field--summary.has-error{border-color:#ff513d}.showtime-record-log-builder-field--summary.has-error .showtime-record-log-builder-field__header-icon *{fill:#ff513d}.showtime-record-log-builder-field--summary.has-error .showtime-record-log-builder-field__header-title{color:#ff513d}.showtime-record-log-builder-field__secondary{display:flex}.showtime-record-log-builder-field--edit{background-color:#f7f7f8;border-color:rgba(202,202,202,.6);box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-record-log-builder-field--edit{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-record-log-builder-field--edit .showtime-record-log-builder-field__drag-handle{visibility:visible}.showtime-record-log-builder-field--edit .showtime-record-log-builder-field__header{padding-top:10px;padding-bottom:15px;border-bottom:1px solid rgba(202,202,202,.3);display:flex;align-items:center}@media only screen and (max-width: 31.1875em){.showtime-record-log-builder-field--edit .showtime-record-log-builder-field__header{flex-direction:column;align-items:stretch}.showtime-record-log-builder-field--edit .showtime-record-log-builder-field__header .showtime-record-log-builder-field__header-title{padding-bottom:5px}.showtime-record-log-builder-field--edit .showtime-record-log-builder-field__header .showtime-record-log-builder-field__header-actions{margin-left:-25px}}.showtime-record-log-builder-field__drag-handle{display:flex;justify-content:center;visibility:hidden;padding-top:3px}.showtime-record-log-builder-field__drag-handle .showtime-icon *{fill:rgba(202,202,202,.5)}.showtime-record-log-builder-field__drag-handle:hover .showtime-icon *{fill:#222234}.showtime-record-log-builder-field__switch .showtime-switch{padding-top:7px}.showtime-record-log-builder-field__header{display:flex;justify-content:space-between;align-items:center;padding:0 15px 18px}.showtime-record-log-builder-field__header-icon{margin-right:10px}.showtime-record-log-builder-field__header-icon *{fill:#4688f1}.showtime-record-log-builder-field__header-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;flex:1}.showtime-record-log-builder-field__header-title-required{display:inline;padding-left:5px;color:#ff513d}.showtime-record-log-builder-field__header-actions{padding-left:10px;display:flex}.showtime-record-log-builder-field__input,.showtime-record-log-builder-field__switch{flex:1;margin-right:10px;margin-top:10px}.showtime-record-log-builder-field__input.is-invalid .showtime-label,.showtime-record-log-builder-field__switch.is-invalid .showtime-label{color:#ff513d}.showtime-record-log-builder-field__input.is-invalid textarea,.showtime-record-log-builder-field__input.is-invalid input,.showtime-record-log-builder-field__switch.is-invalid textarea,.showtime-record-log-builder-field__switch.is-invalid input{border-color:#ff513d}.showtime-record-log-builder-field__input--prefix .showtime-input{z-index:1}.showtime-record-log-builder-field__input--prefix .showtime-input input{border-top-right-radius:0;border-bottom-right-radius:0}.showtime-record-log-builder-field__input--placeholder .showtime-input input{border-radius:0;border-left:0;border-right:0;color:#fff;background-color:#f4f4f5}.showtime-record-log-builder-field__input--suffix .showtime-input input{border-top-left-radius:0;border-bottom-left-radius:0}.showtime-record-log-builder-field__input--narrow{flex:0}.showtime-record-log-builder-field__input--narrow input{width:88px}@media only screen and (min-width: 60.3125em){.showtime-record-log-builder-field__input--narrow input{width:initial}}.showtime-record-log-builder-field__config-row{flex-wrap:wrap;padding:8px 15px 15px;border-bottom:1px solid rgba(202,202,202,.3)}.showtime-record-log-builder-field__config-row .showtime-label{display:none}.showtime-record-log-builder-field__config-row--option:first-child .showtime-label{display:block}.showtime-record-log-builder-field__config-row--option:first-child .showtime-button{margin-top:40px}.showtime-record-log-builder-field__input-wrapper{flex:1;display:flex}.showtime-record-log-builder-field__config-row--option{padding:0 15px 10px;display:flex;align-items:center}@media only screen and (max-width: 60.25em){.showtime-record-log-builder-field__config-row--option{align-items:flex-start}.showtime-record-log-builder-field__config-row--option .showtime-record-log-builder-field__input-wrapper{flex-wrap:wrap;display:flex}.showtime-record-log-builder-field__config-row--option .showtime-button{margin-top:13px}}.showtime-record-log-builder-field__config-row-handle{display:none;padding-right:12px;margin-top:13px}.showtime-record-log-builder-field__config-row-handle .showtime-icon *{fill:rgba(202,202,202,.5)}.showtime-record-log-builder-field__config-row-handle:hover{cursor:grab}.showtime-record-log-builder-field__config-row-handle:hover .showtime-icon *{fill:#222234}.showtime-record-log-builder-field__config-row-count{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;display:inline-block;display:none;color:#222234;margin:0 10px 0 0;text-align:center;min-width:16px}.showtime-record-log-builder-field__config-row-header{display:flex;justify-content:space-between;align-items:center}.showtime-record-log-builder-field__config-row-title{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;margin:0}.showtime-record-log-builder-field__config-row-title--lowlight-subtle{color:#646470}.showtime-record-log-builder-field__config-row-title--light{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-record-log-builder-field__config-ref-value{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;border-radius:3px;display:inline-flex;padding:5px 8px;background-color:rgba(100,100,112,.8);color:#fff;margin:15px 0 5px}.showtime-record-log-builder-field__config-split-input{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}.showtime-record-log-builder-field__config-split-input-divider{padding:43px 15px 0}.showtime-record-log-builder-field__config-links{display:flex;flex-direction:column}.showtime-record-log-builder-field__config-links .showtime-link{padding:15px;border-bottom:1px solid rgba(202,202,202,.3)}.showtime-record-log-builder-field__config-links .showtime-link:hover{background-color:#fff;text-decoration:none !important}.showtime-record-log-builder-field__config-link{display:flex;align-items:center}.showtime-record-log-builder-field__config-link--border-bottom{border-bottom:1px solid rgba(202,202,202,.3)}.showtime-record-log-builder-field__config-link--border-bottom .showtime-link{border-bottom:none}.showtime-record-log-builder-field__config-link>.showtime-link--highlight{flex:1}.showtime-record-log-builder-field__config-link--disabled{color:#646470}.showtime-record-log-builder-field__config-link--disabled a{color:#646470}.showtime-record-log-builder-field__options_exception{width:100%;margin-top:10px}.showtime-record-log-builder-field__options_exception-options{display:flex;margin:0 -15px;flex-wrap:wrap}.showtime-record-log-builder-field__options_exception-options .showtime-checkbox__label{white-space:nowrap}.showtime-record-log-builder-field__config-links--inline{width:100%}.showtime-record-log-builder-field__config-links--inline .showtime-link{border-bottom:0;padding:0}.showtime-record-log-builder-field__config-links--inline .showtime-link:hover{background-color:rgba(0,0,0,0);text-decoration:underline !important}.showtime-record-log-builder-field__settings{display:flex;flex-wrap:wrap}@media only screen and (max-width: 25.875em){.showtime-record-log-builder-field__settings{flex-direction:column}}.showtime-record-log-builder-field__settings-item{padding:15px;display:flex;flex-direction:column}@media only screen and (max-width: 25.875em){.showtime-record-log-builder-field__settings-item{padding:10px 15px}}.showtime-record-log-builder-field__settings-item .showtime-link{margin:3px 0 0 27px}.showtime-record-log-builder-field__settings-message{border-top:1px solid rgba(202,202,202,.3);flex:1 0 100%;padding:5px 15px 15px;width:100%}.showtime-record-log-builder-field__settings-message .showtime-button{margin-bottom:5px}.showtime-record-log-builder-field__settings-message--inline{border-top:none;padding:0}.showtime-record-log-builder-field__settings-message--inline .showtime-button{margin-top:0 !important}.showtime-record-log-builder-field__settings-message-input{flex:1}.showtime-record-log-builder-field-add .showtime-link{color:#222234;display:inline-block;padding:15px;background-color:#fff;border-radius:3px;border:1px dashed #cacaca;margin:15px 0 25px;transition:all 150ms}.showtime-record-log-builder-field-add .showtime-link .showtime-link__icon{color:#4688f1;margin-right:10px;margin-bottom:-1px}.showtime-record-log-builder-field-add .showtime-link .showtime-link__icon svg{border-radius:9999px;height:18px;width:18px;padding:3px}.showtime-record-log-builder-field-add .showtime-link:hover{border-style:solid;color:#4688f1;text-decoration:none !important;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-record-log-builder-field-add .showtime-link:hover{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-record-log-builder-field-add .showtime-link:hover .showtime-link__icon{color:#fff}.showtime-record-log-builder-field-add .showtime-link:hover .showtime-link__icon svg{background-color:#4688f1}.showtime-record-log-builder-field-divider .showtime-link{display:flex;align-items:center;height:12px;margin:4px 0;opacity:0;padding:0;background-color:#ecf3fe;border-color:#ecf3fe;border-radius:3px}.showtime-record-log-builder-field-divider .showtime-link .showtime-link__icon{color:#4688f1;margin-left:15px;margin-top:-3px}.showtime-record-log-builder-field-divider .showtime-link .showtime-link__icon svg{border-radius:9999px;height:18px;width:18px;padding:3px}.showtime-record-log-builder-field-divider .showtime-link .showtime-link__icon-text{margin-left:10px}.showtime-record-log-builder-field-divider .showtime-link:hover{opacity:1;background-color:#ecf3fe;border-color:#ecf3fe;box-shadow:none}.showtime-record-log-builder-field-divider .showtime-link:hover .showtime-link__icon{color:#fff}.showtime-record-log-builder-field-divider .showtime-link:hover .showtime-link__icon svg{background-color:#4688f1}.is-invalid .showtime-record-log-builder-field--column-dropdown{border-color:#ff513d}.is-invalid .showtime-label--validation{color:#ff513d}.is-warning .showtime-label--validation{color:#ff9100}.showtime-record-log-builder-list--dragging{background-color:#ecf3fe}.showtime-record-log-builder-field--dragging{border:1px solid rgba(202,202,202,.3);border-radius:3px;box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-record-log-builder-field--dragging{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}.showtime-record-log-builder-field--dragging .showtime-record-log-builder-field__header-title{margin:0}.showtime-action-template-selection{margin:0}.showtime-action-template-selection .showtime-button{margin-top:0 !important;margin-bottom:0}.showtime-record-log-builder-field__config-row--number .showtime-action-template-selection{margin-top:13px}.showtime-record-log-builder-field__config-row--number .showtime-action-template-selection .showtime-button{margin-bottom:0}.showtime-terms-and-conditions__intro,.showtime-terms-and-conditions__footer{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}.showtime-terms-and-conditions__footer{margin-bottom:0;font-style:italic}.showtime-scorecard{display:inline-flex;flex-direction:column;flex:0 0 auto;background-color:#fff;padding:15px;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06);margin-top:30px;margin-bottom:30px;border-radius:3px}@media screen and (min-width: 64rem){.showtime-scorecard{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}@media only screen and (max-width: 58.6875em){.showtime-scorecard{margin-bottom:.9375rem;margin-left:.625rem;margin-right:.625rem;border-radius:.1875rem}}@media only screen and (min-width: 58.75em){.showtime-scorecard{margin-left:.9375rem;margin-right:.9375rem}}@media only screen and (min-width: 65em){.showtime-scorecard{margin-bottom:.9375rem}}.showtime-scorecard__header{display:flex;align-items:center;padding-bottom:15px}.showtime-scorecard__header-icon{padding:11px;background-color:rgba(70,136,241,.15);border-radius:9999px;color:#4688f1;margin-right:10px;display:flex;align-items:center;justify-content:center}.showtime-scorecard__header-icon .showtime-icon{height:16px}.showtime-scorecard__header-text{color:#222234;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-scorecard__selection{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;background-color:#222234;color:#fff;border-radius:999px;padding:2px 7px}.showtime-scorecard__details{border-radius:3px;background-color:#f4f4f5;display:flex}.showtime-scorecard__total{display:flex;justify-content:center;align-items:center;padding:15px;border-right:1px solid rgba(202,202,202,.3)}.showtime-scorecard__total-value{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-size:53px;color:#222234}.showtime-scorecard__breakdown{display:flex;align-items:center;padding:15px}.showtime-scorecard__donut{height:100px;padding-right:15px}@media only screen and (max-width: 31.1875em){.showtime-scorecard__donut{display:none}}.showtime-scorecard__donut-svg{width:auto;height:100%}.showtime-scorecard__task-counts{margin-right:15px}.showtime-scorecard__task-count-item{padding:3px 0;display:flex;align-items:center}.showtime-scorecard__count{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;border-radius:999px;padding:2px 7px;color:#fff;margin-right:5px}.showtime-scorecard__count--missed{background-color:#ff513d}.showtime-scorecard__count--late{background-color:#ff9100}.showtime-scorecard__count--ontime{background-color:#13bf1f}.showtime-scorecard__count-label{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234}.showtime-scorecard__message{display:flex;align-items:center;justify-content:space-between;margin-top:15px}.showtime-scorecard--skeleton .showtime-scorecard__header{height:38px;width:220px;border-radius:3px;background-color:#f4f4f5;animation:flash 3000ms infinite}.showtime-scorecard--skeleton .showtime-scorecard__details{background-color:rgba(0,0,0,0)}.showtime-scorecard--skeleton .showtime-scorecard__total-value{width:55px;height:50px;border-radius:3px;background-color:#f4f4f5;animation:flash 3000ms infinite}.showtime-scorecard--skeleton .showtime-scorecard__donut{animation:flash 3000ms infinite}.showtime-scorecard--skeleton .showtime-scorecard__count{width:100px;height:18px;border-radius:3px;background-color:#f4f4f5;animation:flash 3000ms infinite}.showtime-scorecard--skeleton .showtime-scorecard__message{width:60%;height:18px;border-radius:3px;background-color:#f4f4f5;animation:flash 3000ms infinite}.showtime-scorecard--skeleton .showtime-scorecard__total{border-right:0}.showtime-billing__billing-loading .showtime-loader{padding:1em}.showtime-billing_read-only-payment-method{background-color:#f7f7f8;border-radius:3px;padding:10px 15px;flex:auto}.showtime-billing_read-only-payment-method .showtime-label__icon{color:#646470}.showtime-billing .showtime-callout-help{margin-top:15px}.showtime-billing__scheduled,.showtime-billing__total-price-summary{background-color:#f7f7f8;border-radius:3px;padding:10px 15px 15px;margin-top:15px}.showtime-billing__scheduled .showtime-table,.showtime-billing__total-price-summary .showtime-table{margin-bottom:10px}.showtime-billing__scheduled .showtime-table__row,.showtime-billing__scheduled .showtime-table__header-cell,.showtime-billing__total-price-summary .showtime-table__row,.showtime-billing__total-price-summary .showtime-table__header-cell{background-color:#f7f7f8}.showtime-billing__scheduled .showtime-table__header-cell,.showtime-billing__total-price-summary .showtime-table__header-cell{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding:5px 10px 15px 10px}.showtime-billing__scheduled .showtime-table__cell,.showtime-billing__total-price-summary .showtime-table__cell{border-bottom:1px solid rgba(34,34,52,.05);padding:15px 10px}.showtime-billing__scheduled .showtime-table__header-cell:first-child,.showtime-billing__scheduled .showtime-table__cell:first-child,.showtime-billing__total-price-summary .showtime-table__header-cell:first-child,.showtime-billing__total-price-summary .showtime-table__cell:first-child{padding-left:0}.showtime-billing__scheduled .showtime-table__header-cell:last-child,.showtime-billing__scheduled .showtime-table__cell:last-child,.showtime-billing__total-price-summary .showtime-table__header-cell:last-child,.showtime-billing__total-price-summary .showtime-table__cell:last-child{padding-right:0}.showtime-billing__scheduled .showtime-table__row:last-child .showtime-table__cell,.showtime-billing__total-price-summary .showtime-table__row:last-child .showtime-table__cell{font-weight:600;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#222234;border-top:2px solid rgba(34,34,52,.05);border-bottom:none}.showtime-billing__scheduled .showtime-table__row:last-child .showtime-table__cell .showtime-billing__next-invoice-tax,.showtime-billing__total-price-summary .showtime-table__row:last-child .showtime-table__cell .showtime-billing__next-invoice-tax{font-weight:400;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-billing__total-price-summary-price{text-align:right}.showtime-billing__paragraph{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding:5px 0}.showtime-billing__prices{margin-top:15px;margin-bottom:15px}.showtime-billing__price{display:flex;align-items:baseline}.showtime-billing__price-read-only{display:flex;margin-top:-15px}.showtime-billing__price-read-only .showtime-icon{margin-right:11px;height:20px}.showtime-billing__price-read-only-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;padding:3px 0;color:#222234}.showtime-billing__price-read-only-label{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding:2px 0}.showtime-billing__scheduled-price-title{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding-top:5px}.showtime-billing__changes-list{list-style:initial;margin-left:30px;margin-top:10px}.showtime-billing__changes-list-item{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin-bottom:5px}.showtime-billing__scheduled-price-changes-date{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin-top:10px}.showtime-billing__price .showtime-radio-button{margin-bottom:15px}.showtime-billing__price .showtime-callout{margin-left:40px}.showtime__sign-up-site-name-add,.showtime-billing__edit-promo{text-decoration:underline;font-size:14px;color:#222234}.showtime-billing .showtime-billing__new-promo .showtime-input{max-width:200px}.showtime-billing__new-promo{display:flex}.showtime-billing__new-promo .showtime-input{width:100%}.showtime-billing__new-promo input{margin-right:10px}.showtime-billing__new-promo-error{color:#ff513d;margin-left:2px;margin-top:.3125rem}.showtime-billing__promo{display:flex;margin-bottom:10px}.showtime-billing__promo .showtime-icon{color:#13bf1f;margin-right:11px;height:20px}.showtime-billing__promo .showtime-icon--error{color:#ff513d}.showtime-billing__promo-name{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;padding:3px 0;color:#222234;margin:0}.showtime-billing__promo-message{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding:2px 0;margin:0}.showtime-billing__promo-error{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#ff513d}.showtime-billing__payment-method-header{display:flex;justify-content:space-between;align-items:flex-end}.showtime-billing__payment-method-error{color:#ff513d;margin-top:12}.showtime-billing__payment-method-title{display:flex;align-items:center;flex:1 1 auto}.showtime-billing__payment-method-title-label{width:100%}.showtime-billing__payment-method-content{display:flex;align-items:center}.showtime-billing__stripe-brand{height:34px;width:150px;opacity:.3;fill:#222234}.StripeElement{border:solid 1px #cacaca;padding:.8rem .5rem;border-radius:.1875rem;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1);font-size:1rem;line-height:1rem;background:#fff;width:100%}.StripeElement:hover{border-color:#222234;background:#fefada;color:#222234}.StripeElement--focus{border-color:#4688f1;box-shadow:0 0 0 4px rgba(70,136,241,.15);outline:0}.StripeElement--focus:hover{border-color:#4688f1}.showtime-billing__billing-details-field{margin-bottom:20px}.showtime-billing__billing-details-field input{margin-bottom:5px}.showtime-billing__billing-details-field-label{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;border-radius:3px;padding:15px;color:#646470;background-color:#f4f4f5;margin-bottom:10px}.showtime-billing__billing-details-field-message{font-size:14px}.showtime-billing__submit-error{margin-top:5px;color:#ff513d}.showtime-billing__scheduled-payment{margin:15px 0}.showtime-billing__scheduled-payment-label{margin-bottom:10px}.showtime-billing__card-details{display:flex;border-radius:3px;width:100%;padding:15px;color:#646470;background-color:#f4f4f5}.showtime-billing__card-brand{text-transform:capitalize;padding-right:5px}.showtime-billing__card-expires{margin-left:auto}.showtime-billing__edit-card-action,.showtime-billing__add-new-coupon{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;text-decoration:underline}.showtime-billing__footer{display:flex;margin:20px 0}@media only screen and (max-width: 43.6875em){.showtime-billing__footer .showtime-button{margin:0 10px}}.showtime-sign-up{display:grid;grid-template-columns:[blank] minmax(190px, 300px) [form] 550px [upsell] minmax(190px, 300px)}.showtime-sign-up--continue{display:flex;justify-content:center;margin-top:1.25rem}.showtime-sign-up__form{grid-column-start:2}.showtime-sign-up__form .showtime-login-form__separator{margin-top:1.875rem}.showtime-login-form__continue img{margin-top:-2px}@media screen and (max-width: 992px){.showtime-sign-up__upsell-panel{display:none}.showtime-sign-up{display:flex}}.showtime-sign-up__upsell-panel{grid-column-start:3;margin-top:3.3125rem;padding-top:20%;margin-left:2.1875rem}.showtime-sign-up__header{padding:1.25rem;text-align:center}.showtime-sign-up__header-title .showtime-label__text{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-sign-up__upsell-panel-title .showtime-label__text{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-sign-up__upsell-panel-subtitle{margin-top:-0.5rem}.showtime-sign-up__upsell-panel-upsell-items{margin-top:.625rem}.showtime-sign-up__upsell-panel-change-plan{margin-top:1.25rem;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding-bottom:1.25rem;border-bottom:solid #cacaca 1px}.showtime-sign-up__form--has-plan .showtime-sign-up__sign-in{display:none}@media screen and (max-width: 992px){.showtime-sign-up__form--has-plan .showtime-sign-up__sign-in{display:block}}.showtime-sign-up__sign-in{margin-top:2.5rem}.showtime-sign-up__sign-in .showtime-label__text{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-sign-up__sign-in .showtime-label__text a{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-sign-up__trusted{max-width:550px}.showtime-sign-up__trusted-message{text-align:center;margin-top:3.125rem}.showtime-sign-up__trusted-brands{display:flex;justify-content:space-between;align-items:center;margin-top:1.875rem}.showtime-sign-up__trusted-brand{flex:1 0 0;padding-right:.9375rem;padding-left:.9375rem}.showtime-sign-up__trusted-brand svg{width:100%;height:100%}.showtime-sign-up__trusted-brand:first-child{padding-left:0}.showtime-sign-up__trusted-brand:last-child{padding-right:0}.showtime-sign-up__promo{margin-top:.625rem}.showtime__sign-up-site-names{width:100%}.showtime__sign-up-site-name{display:flex;align-items:baseline;margin-bottom:.625rem}.showtime__sign-up-site-name-message{margin-bottom:1.25rem}.showtime__sign-up-site-name-add{display:block;margin-bottom:1.25rem}.showtime__sign-up-site-name-input{width:100%}.showtime-sign-up__cookie-consent-buttons{display:flex;align-items:center}.showtime-sign-up__cookie-consent-deny{margin-right:.625rem;margin-left:.625rem;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-sign-up__cookie-consent-deny:active{color:#4688f1}.cc-revoke{display:none}.cc-window{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;position:fixed;bottom:10px;left:0%;right:0%;margin-left:auto;margin-right:auto;z-index:29;display:flex;align-items:center;padding:1rem;width:75%;max-width:820px;background-color:#fff;border-radius:4px;font-size:.9rem;font-weight:300;box-shadow:1px 1px 20px 0 rgba(0,0,0,.1);transition:opacity 200ms ease}@media screen and (max-width: 767px){.cc-window{width:auto;max-width:85%;flex-direction:column;align-items:stretch}.showtime-sign-up__cookie-consent-buttons{text-align:center;flex-direction:column-reverse;margin-top:.625rem}.showtime-sign-up__cookie-consent-buttons .showtime-link,.showtime-sign-up__cookie-consent-buttons .showtime-button{margin-bottom:.625rem;flex-grow:1;width:100%}}.showtime-api-key-intro-block{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;padding-bottom:15px}.showtime-api-key-value{display:flex;align-items:center;margin-bottom:15px}.showtime-plans{padding:15px}.showtime-plans .showtime-selection-list__item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-plans__external-link-icon{margin-left:8px;display:inline-block}.showtime-plans__external-link-icon path{fill:currentColor}.showtime-plans--footer{display:flex;align-items:center}.showtime-plans--title{padding-bottom:20px;color:#222234;font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-plans__plan-price{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-plans__plan-price-unit{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-plans__plan-tooltip{margin-left:8px;color:#cacaca}.showtime-plans__plan-pill-icon{margin-left:6px}.showtime-plans__plan-pill-icon svg{margin-right:-2px;margin-bottom:-2px}.showtime-plans__plan{border:1px solid #eaeaea;border-radius:2px;margin-bottom:20px}.showtime-plans__plan .showtime-selection-list__item-right-content{text-align:right}.showtime-plans__plan .showtime-selection-list__item-title:active{text-decoration:none}.showtime-plans__plan--active{background-color:#f4f4f4;border:1px solid #f4f4f4}.showtime-plans__plan--current{border:none;padding:5px 0 10px}.showtime-plans__plan--current .showtime-selection-list__item-title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-plans__plan-description{max-width:300px}.showtime-plans__plan-pill{padding:2px 8px;border-radius:999px;border:1px solid #eaeaea;text-align:center;display:flex;justify-content:center;margin:0 0 10px 0;white-space:nowrap;background-color:#fff;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-plans__plan-pill--highlight{background-color:#4688f1;color:#fff;border:1px solid #4688f1}.showtime-plans__plan-pill--highlight .showtime-plans__plan-pill-icon{fill:#fff}.showtime-plans__plan-pill--lowlight{background-color:#f9f9fe;border:1px solid #f9f9fe}.showtime-plans__plan-pill--lowlight .showtime-plans__plan-pill-icon{fill:#4688f1}@media only screen and (max-width: 50em){.showtime-selection-list__item-description{padding-left:0px}}.showtime-setup-guide{display:flex;justify-content:center;background-color:#f3f6fa;background-image:url("data:image/svg+xml,%3Csvg width='141' height='112' viewBox='0 0 141 112' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg style='mix-blend-mode:multiply'%3E%3Cpath d='M51.9599 53.9031C50.9901 52.2428 52.1814 50.1554 54.1041 50.1458L98.9474 49.9234C100.887 49.9138 102.097 52.0219 101.11 53.6916L78.492 91.9648C77.5224 93.6055 75.1464 93.5994 74.1852 91.9538L51.9599 53.9031Z' stroke='%23999999' stroke-width='1.24879' stroke-miterlimit='10' stroke-dasharray='2.5 5'/%3E%3C/g%3E%3Cg style='mix-blend-mode:multiply'%3E%3Cpath d='M112.535 5.35714L99.2661 8.96379L95.7706 22.3013L105.537 32.0342L118.806 28.4275L122.302 15.09L112.535 5.35714Z' fill='%23EC92AB'/%3E%3C/g%3E%3Cpath d='M40.9536 26.9097C41.6646 26.6104 41.9984 25.7913 41.6991 25.0802C41.3997 24.3691 40.5806 24.0354 39.8695 24.3347C39.1585 24.634 38.8247 25.4531 39.124 26.1642C39.4234 26.8753 40.2425 27.2091 40.9536 26.9097Z' fill='%23EE93AC'/%3E%3Cpath d='M11.8955 63.1954C12.6065 62.896 12.9403 62.0769 12.641 61.3659C12.3416 60.6548 11.5225 60.321 10.8114 60.6203C10.1004 60.9197 9.76659 61.7388 10.0659 62.4499C10.3653 63.1609 11.1844 63.4947 11.8955 63.1954Z' fill='%232B3239'/%3E%3Cpath d='M37.7155 67.6793C38.4266 67.3799 38.7604 66.5608 38.461 65.8497C38.1617 65.1387 37.3426 64.8049 36.6315 65.1042C35.9204 65.4036 35.5867 66.2227 35.886 66.9338C36.1853 67.6448 37.0044 67.9786 37.7155 67.6793Z' fill='%232B3239'/%3E%3Cpath d='M32.4636 48.8511C33.1746 48.5518 33.5084 47.7327 33.2091 47.0216C32.9097 46.3105 32.0906 45.9768 31.3796 46.2761C30.6685 46.5755 30.3347 47.3946 30.634 48.1056C30.9334 48.8167 31.7525 49.1505 32.4636 48.8511Z' fill='%23EE93AC'/%3E%3C/svg%3E%0A"),url("data:image/svg+xml,%3Csvg width='98' height='90' viewBox='0 0 98 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M47.1307 77.9654C46.3106 77.7995 45.5113 78.3299 45.3454 79.15C45.1795 79.9701 45.7098 80.7694 46.5299 80.9353C47.3501 81.1012 48.1494 80.5709 48.3153 79.7508C48.4812 78.9306 47.9508 78.1313 47.1307 77.9654Z' fill='%234688F1'/%3E%3Cpath d='M95.3319 63.1863C94.5118 63.0204 93.7124 63.5507 93.5465 64.3708C93.3807 65.191 93.911 65.9903 94.7311 66.1562C95.5512 66.3221 96.3505 65.7917 96.5164 64.9716C96.6823 64.1515 96.152 63.3522 95.3319 63.1863Z' fill='%232B3239'/%3E%3Cpath d='M74.9276 43.401C74.1075 43.2351 73.3081 43.7654 73.1422 44.5856C72.9764 45.4057 73.5067 46.205 74.3268 46.3709C75.1469 46.5368 75.9463 46.0064 76.1121 45.1863C76.278 44.3662 75.7477 43.5669 74.9276 43.401Z' fill='%232B3239'/%3E%3Cpath d='M68.138 63.4836C67.3179 63.3177 66.5186 63.8481 66.3527 64.6682C66.1868 65.4883 66.7172 66.2876 67.5373 66.4535C68.3574 66.6194 69.1567 66.0891 69.3226 65.269C69.4885 64.4488 68.9581 63.6495 68.138 63.4836Z' fill='%234688F1'/%3E%3Cpath d='M33.9629 13.2734L12.2527 19.3238L6.66332 41.2205L22.7722 57.0703L44.4824 51.0199L50.0718 29.1231L33.9629 13.2734Z' stroke='%23C2BABA' stroke-width='1.35435' stroke-miterlimit='10' stroke-dasharray='2.71 5.42'/%3E%3C/svg%3E%0A"),url("data:image/svg+xml,%3Csvg width='119' height='114' viewBox='0 0 119 114' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.8' d='M93.0486 64.2221C91.513 65.6357 89.023 64.8568 88.5667 62.8202L84.7885 45.9558C84.3282 43.9014 86.283 42.1292 88.2826 42.7881L104.555 48.1502C106.52 48.7976 107.065 51.3186 105.543 52.7198L93.0486 64.2221Z' fill='%234688F1'/%3E%3Cpath d='M27.9893 81.8316C27.5069 81.1471 26.5608 80.9832 25.8763 81.4656C25.1917 81.9481 25.0278 82.8941 25.5103 83.5787C25.9927 84.2633 26.9387 84.4271 27.6233 83.9447C28.3079 83.4623 28.4718 82.5162 27.9893 81.8316Z' fill='%23EE93AC'/%3E%3Cpath d='M73.2103 104.225C72.7278 103.541 71.7818 103.377 71.0972 103.859C70.4126 104.342 70.2488 105.288 70.7312 105.972C71.2136 106.657 72.1597 106.821 72.8443 106.338C73.5288 105.856 73.6927 104.91 73.2103 104.225Z' fill='%232B3239'/%3E%3Cpath d='M71.9737 75.8047C71.4913 75.1201 70.5452 74.9562 69.8606 75.4387C69.1761 75.9211 69.0122 76.8672 69.4946 77.5517C69.9771 78.2363 70.9231 78.4002 71.6077 77.9177C72.2923 77.4353 72.4561 76.4892 71.9737 75.8047Z' fill='%232B3239'/%3E%3Cpath d='M53.2264 85.7429C52.744 85.0583 51.7979 84.8945 51.1133 85.3769C50.4287 85.8593 50.2649 86.8054 50.7473 87.49C51.2298 88.1745 52.1758 88.3384 52.8604 87.856C53.545 87.3735 53.7088 86.4275 53.2264 85.7429Z' fill='%23EE93AC'/%3E%3Cpath d='M62.8942 25.7242L42.9431 15.1969L23.8215 27.2801L24.6399 49.8848L44.591 60.4121L63.7126 48.3288L62.8942 25.7242Z' stroke='%23C2BABA' stroke-width='1.35558' stroke-miterlimit='10' stroke-dasharray='2.71 5.42'/%3E%3C/svg%3E%0A");background-position:center 15px,65% 90%,20px 70%;background-repeat:no-repeat,no-repeat,no-repeat;height:100%;width:100%;overflow-y:auto}.showtime-setup-guide__wrapper{display:flex;flex-direction:column}@media only screen and (max-width: 62.4375em){.showtime-setup-guide__wrapper{width:100%}}.showtime-setup-guide__header{display:flex;justify-content:space-between;align-items:center;padding:40px 20px}.showtime-setup-guide__logo{color:#222234;height:25px;width:50px}.showtime-setup-guide__logo svg{height:25px;width:50px}.showtime-setup-guide__logo svg *{fill:currentColor}.showtime-setup-guide__content{display:flex;padding:0 20px 100px}@media only screen and (max-width: 44.3125em){.showtime-setup-guide__content{flex-wrap:wrap}}.showtime-setup-guide__page{background-color:#fff;background-position:right center;background-repeat:no-repeat;background-size:contain;border-radius:12px;box-shadow:0px 0px 20px 10px rgba(0,0,0,.05);padding:20px 20px 50px 20px;width:100%}@media only screen and (min-width: 44.375em){.showtime-setup-guide__page{width:auto;padding:30px 30px 50px 30px;max-width:730px}}@media only screen and (min-width: 62.5em){.showtime-setup-guide__page{width:730px;min-width:650px}}.showtime-setup-guide__page .showtime-setup-guide__numbered-list,.showtime-setup-guide__page .showtime-setup-guide__bulleted-list{padding-left:1rem}.showtime-setup-guide__page .showtime-setup-guide__numbered-list li,.showtime-setup-guide__page .showtime-setup-guide__bulleted-list li{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin-bottom:40px}.showtime-setup-guide__page .showtime-setup-guide__bulleted-list{list-style:disc}.showtime-setup-guide__page--loading{background-color:rgba(0,0,0,0);box-shadow:none}@media only screen and (min-width: 34.375em){.showtime-setup-guide__answers{max-width:435px}}.showtime-setup-guide__back{margin-bottom:20px}.showtime-setup-guide__question-title{color:#222234;margin:0 0 10px 0;padding:0}@media screen and (min-width: 0){.showtime-setup-guide__question-title{font-size:1.4375rem !important;line-height:1.625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-setup-guide__question-title{font-size:1.5625rem !important;line-height:1.75rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.showtime-setup-guide__question-title{font-size:1.625rem !important;line-height:1.8125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.showtime-setup-guide__question-title{font-size:1.75rem !important;line-height:1.9375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-setup-guide__question-info{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin:0 0 40px 0;padding:0;max-width:450px}.showtime-setup-guide__screen{background-position:right top;background-repeat:no-repeat;background-size:contain}.showtime-setup-guide__screen-tasks{display:flex;flex-direction:row-reverse}.showtime-setup-guide__screen-tasks__icon{width:320px;margin-right:-70px;margin-top:30px}.showtime-setup-guide__screen-tasks__icon svg{width:100% !important;height:auto !important;display:block}.showtime-setup-guide__screen-tasks__content{flex:1}.showtime-setup-guide__screen-tasks-success__icon{width:300px;margin-bottom:-150px;margin-top:130px}.showtime-setup-guide__screen-tasks-success__icon svg{width:100% !important;height:auto !important;display:block}.showtime-setup-guide__screen-hours{display:flex;flex-direction:row-reverse}.showtime-setup-guide__screen-hours__icon{width:370px;margin-right:-50px}.showtime-setup-guide__screen-hours__icon svg{width:100% !important;height:auto !important;display:block}.showtime-setup-guide__screen-hours__content{flex:1}.showtime-setup-guide__screen-users{display:flex;flex-direction:row-reverse;position:relative}.showtime-setup-guide__screen-users__icon{width:370px;margin-left:-50px;margin-right:-50px;z-index:1}.showtime-setup-guide__screen-users__icon svg{width:100% !important;height:auto !important;display:block}.showtime-setup-guide__screen-users__content{flex:1;z-index:2;width:500px}.showtime-setup-guide__screen-live{display:flex;flex-direction:row-reverse}.showtime-setup-guide__screen-live__icon{width:370px;margin-right:-50px}.showtime-setup-guide__screen-live__icon svg{width:100% !important;height:auto !important;display:block}.showtime-setup-guide__screen-live__content{flex:1}@media(max-width: 767px){.showtime-setup-guide__screen-tasks__icon,.showtime-setup-guide__screen-tasks-success__icon,.showtime-setup-guide__screen-hours__icon,.showtime-setup-guide__screen-live__icon,.showtime-setup-guide__screen-users__icon{display:none}}.showtime-setup-guide__next{margin-top:40px}.showtime-setup-guide__success-image{display:block;margin-top:60px;width:100%}.showtime-setup-guide__success-image svg{width:100%}@media only screen and (min-width: 21.25em){.showtime-setup-guide__success-image{width:auto}.showtime-setup-guide__success-image svg{width:auto}}.showtime-setup-guide__nav{min-width:220px;margin-left:40px}@media only screen and (max-width: 44.3125em){.showtime-setup-guide__nav{flex:1;padding:10px;background-color:#fff;border-radius:12px;margin-left:0}}.showtime-setup-guide__nav-item{display:flex;align-items:center;justify-content:space-between;padding:10px;border-radius:6px;text-decoration:none;transition:all 150ms;border:2px solid rgba(0,0,0,0)}@media only screen and (max-width: 44.3125em){.showtime-setup-guide__nav-item{padding:15px 10px}}.showtime-setup-guide__nav-item:hover{background-color:#fff;box-shadow:0 0 6px rgba(0,0,0,.03),0 6px 6px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-setup-guide__nav-item:hover{box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}}.showtime-setup-guide__nav-item:active{text-decoration:none;opacity:.8}.showtime-setup-guide__nav-item.is-active{background-color:#fff}@media only screen and (max-width: 44.3125em){.showtime-setup-guide__nav-item.is-active{border-color:rgba(202,202,202,.3)}}.showtime-setup-guide__nav-item.is-complete .showtime-setup-guide__nav-item-icon svg *{fill:#64ce8e}.showtime-setup-guide__nav-item-icon{padding-right:10px;margin-bottom:-2px}.showtime-setup-guide__nav-item-icon svg *{fill:#d4d8e1}.showtime-setup-guide__nav-item-label{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;flex:1;color:#222234}.showtime-setup-guide__nav-item-duration{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-setup-guide__activation{display:flex;align-items:flex-end;justify-content:space-between;flex:1;padding:10px;background-color:#fff;border-radius:6px}.showtime-setup-guide__activation .showtime-link{display:block;margin-top:15px}.showtime-setup-guide__activation-info{flex:1}.showtime-setup-guide__activation-label{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234;padding:0;margin:0 0 10px 0}.showtime-setup-guide__activation-trial{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;padding:0;margin:0 0 5px 0}.showtime-setup-guide__activation-bar{background-color:#f4f4f5;width:100%;height:8px;border-radius:999px}.showtime-setup-guide__activation-bar-inner{background-color:#4688f1;height:8px;min-width:8px;border-radius:999px}.showtime-setup-guide__activation-bar-inner--trial-ended{background-color:#cacaca}.showtime-setup-guide__activation-icon{margin:auto;margin-left:.3125rem}.showtime-setup-guide__activation-icon svg{height:51px;width:63px}.showtime-setup-guide-trial-countdown{display:flex;text-decoration:none;border-radius:8px;max-width:250px;margin-bottom:1.25rem}.showtime-setup-guide-trial-countdown:active{text-decoration:none}.showtime-setup-guide-button{background-color:#fff;display:flex;text-decoration:none;border-radius:8px;max-width:260px;border:2px solid rgba(34,34,52,.8);box-shadow:0 0 12px rgba(34,34,52,.45);align-items:center;transition:box-shadow 150ms ease,border-color 150ms ease}@media only screen and (max-width: 37.4375em){.showtime-setup-guide-button{display:none}}.showtime-setup-guide-button:active{text-decoration:none}.showtime-setup-guide-button:hover{border-color:#222234;box-shadow:0 0 18px rgba(34,34,52,.6)}.showtime-setup-guide-nav-menu-button{color:#646470;padding:5px 0 0 0;height:2.1875rem;border-radius:999px}@media screen and (min-width: 0){.showtime-setup-guide-nav-menu-button{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.showtime-setup-guide-nav-menu-button{font-size:.9375rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.showtime-setup-guide-nav-menu-button .showtime-button__icon{height:.875rem;width:.875rem;color:rgba(100,100,112,.6)}.showtime-setup-guide-nav-menu-button .showtime-button__icon svg{height:.875rem;width:.875rem}.showtime-setup-guide-button--floating{position:fixed;bottom:20px;left:15px;z-index:1}.fsp-summary__header{display:none !important}.fsp-grid__label,.fsp-summary__body{padding-top:0 !important}.filepicker__buttons{display:flex}.showtime-task-reports{padding-top:15px;display:flex;flex-direction:row;justify-content:center}@media only screen and (min-width: 28.125em){.showtime-task-reports{padding:15px}}@media only screen and (min-width: 50em){.showtime-task-reports{padding:30px}}.showtime-task-reports__header{background-color:#fff;border-radius:3px;margin-bottom:15px;display:flex;flex-direction:column;max-width:1000px;border:1px solid rgba(202,202,202,.5);position:relative;z-index:6}.showtime-task-reports__header .showtime-copy-to-clipboard__value{z-index:6}@media only screen and (min-width: 50em){.showtime-task-reports__header{margin-bottom:30px}}@media only screen and (max-width: 31.1875em){.showtime-task-reports__header{border-radius:0;border-left:none;border-right:none}.showtime-task-reports__header .showtime-task-reports__header-search{max-width:100%}}.showtime-task-reports__header-icon{padding-right:10px}.showtime-task-reports__header-icon svg path{fill:#646470}.showtime-task-reports__header-count{min-height:25px;padding:8px 0 0 2px;color:#646470;font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:.021875rem !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important}.showtime-task-reports__sidebar{margin-right:40px;min-width:150px}.showtime-task-reports__sidebar .showtime-shortcuts{position:sticky;top:25px}.showtime-task-reports__main{flex-basis:1000px;min-height:600px;overflow:hidden}.showtime-task-reports__header-shortcuts{height:35px;min-height:initial}@media only screen and (min-width: 40.625em){.showtime-task-reports__header-shortcuts{flex:1;margin-right:15px;margin-bottom:0}}.showtime-task-reports__header-title{position:relative;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(202,202,202,.5);padding:15px}.showtime-task-reports__header-title--export-mode{background-color:#ecf3fe}.showtime-task-reports__export-actions{display:flex}.showtime-task-reports__header-title-container{z-index:7}.showtime-task-reports__header-title--stuck-export-mode .showtime-task-reports__header-title--export-mode{border:1px solid rgba(202,202,202,.5)}.showtime-task-reports__bulk-export-button{background-color:#fff;padding:10px;display:flex;border:1px solid #cacaca;border-radius:3px}.showtime-task-reports__bulk-export-button:hover,.showtime-task-reports__bulk-export-button:active{color:#222234;border-color:#cacaca;text-decoration:none;box-shadow:0 0 4px rgba(0,0,0,.03),0 4px 4px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-task-reports__bulk-export-button:hover,.showtime-task-reports__bulk-export-button:active{box-shadow:0 0 2px rgba(0,0,0,.03),0 2px 2px rgba(0,0,0,.06)}}.showtime-task-reports__bulk-export-button .showtime-checkbox{pointer-events:none}.showtime-task-reports__bulk-export-button .is-selected-disabled .showtime-checkbox__tick{border:1px solid #4688f1;background:#4688f1}.showtime-task-reports__bulk-export-button-text{display:flex;flex-direction:column}.showtime-task-reports__bulk-export-button-text .text-bold{padding-bottom:5px;color:#222234}.showtime-task-reports__bulk-export-menu{min-width:200px;padding:0 10px}.showtime-task-reports__header-title-label{width:100%;color:#222234;font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}.showtime-task-reports__header-actions{display:flex;justify-content:space-between}@media only screen and (min-width: 48em){.showtime-task-reports__header-actions{order:2}}@media only screen and (max-width: 40.5em){.showtime-task-reports__header-actions{flex-wrap:wrap}}.showtime-task-reports__header-body{padding:15px;background-color:#fff;z-index:6}.showtime-task-reports__header-body--is-stuck{z-index:6}.showtime-task-reports__header-body--is-stuck .showtime-task-reports__header-body{border:1px solid rgba(202,202,202,.5)}@media only screen and (min-width: 48em){.showtime-task-reports__header-body{display:flex;justify-content:space-between}}.showtime-task-reports__header-filters{display:flex;flex-wrap:wrap;align-items:center;margin-top:-10px}.showtime-task-reports__header-filters .showtime-button{height:38px;margin-top:10px}.showtime-task-reports__header-filters .showtime-filter{margin-top:10px;margin-right:10px}.showtime-task-reports__header-filters .showtime-filter__dates .showtime-button__icon{margin-top:-4px}.showtime-task-reports__header-filters .showtime-filter__dates .showtime-button{margin:0}.showtime-task-reports__header-filters .showtime-filter__dates .showtime-button .showtime-button__text{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#222234}.showtime-task-reports__header-filters .showtime-filter__dates-menu .showtime-menu__list{padding-bottom:15px}.showtime-task-reports__header-filters .showtime-filter__dates-menu .showtime-menu__list .showtime-link--menu-item{padding-left:0;padding-right:0}@media only screen and (min-width: 48em){.showtime-task-reports__header-filters{order:1}}@media only screen and (max-width: 47.875em){.showtime-task-reports__header-filters{padding-top:8px}}@media only screen and (max-width: 47.875em){.showtime-task-reports__header-filters .showtime-filter{margin-top:8px}}.showtime-task-reports__header-search{flex:1}@media only screen and (max-width: 47.875em){.showtime-task-reports__header-search{margin-right:15px}}.showtime-task-reports__actions{display:flex;justify-content:space-between;margin-bottom:.9375rem}.showtime-task-reports__actions .showtime-checkbox{margin-bottom:.3125rem;width:100%}.showtime-task-reports__actions .showtime-menu{padding:.9375rem;min-width:220px}@media only screen and (max-width: 31.1875em){.showtime-task-reports__actions{padding:0 15px;flex-direction:column;margin-top:0;padding-bottom:10px}.showtime-task-reports__actions .showtime-button{margin-right:0;margin-top:15px}}.showtime-task-reports__list.has-content .showtime-task-planner-task{margin:10px 0;border-radius:3px !important}.showtime-task-reports__list-items .showtime-task-planner-task__inner{width:100%;border-radius:0 !important}.showtime-task-reports__list-items .showtime-task-planner-task__inner:hover{border-color:rgba(202,202,202,.5) !important;cursor:default !important}.showtime-task-reports__list-items .showtime-task-planner-task__primary-title--link{display:block;flex:1;text-decoration:none}.showtime-task-reports__list-items .showtime-task-planner-task__primary-title--link:hover{text-decoration:underline;cursor:pointer !important}.showtime-task-reports__list-items .showtime-task-planner-task__secondary-assignment-group{flex-wrap:wrap}.showtime-task-reports__list-items .showtime-task-planner-task__timestamp{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;text-align:right}@media only screen and (max-width: 40.5em){.showtime-task-reports__list-items .showtime-task-planner-task__timestamp{text-align:left}}.showtime-task-reports__list-items .showtime-task-planner-task__flagged-status{margin:5px 0}.showtime-task-reports__list-items .showtime-task-planner-task__early-or-late-duration{display:block}@media only screen and (max-width: 40.5em){.showtime-task-reports__list-items .showtime-task-planner-task__early-or-late-duration{display:flex;align-items:center;flex-direction:row-reverse;justify-content:flex-end;margin:.25rem 0 .3125rem 0}}.showtime-task-reports__list-items .showtime-task-planner-task__report-item{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;display:flex;padding-right:10px;margin-bottom:10px}.showtime-task-reports__list-items .showtime-task-planner-task__report-item .showtime-icon{margin-top:1px;color:rgba(100,100,112,.4)}.showtime-task-reports__list-items .showtime-task-planner-task__report-item-text{white-space:nowrap}.showtime-task-reports__footer{text-align:center;padding:2.8125rem}.showtime-task-reports__end-of-tasks{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470}.showtime-task-reports__task-content-table{overflow-x:auto;padding:10px 15px}.showtime-task-reports__task-content-table .showtime-table__row{border-bottom:1px solid rgba(34,34,52,.05)}.showtime-task-reports__task-content-table .showtime-table__header-cell:first-child{padding-left:0}.showtime-task-reports__task-content-table .showtime-table__header-cell:last-child{padding-right:0}.showtime-task-reports__task-content-table .showtime-table__cell{border-bottom:none;vertical-align:top}.showtime-task-reports__task-content-table .showtime-table__cell:first-child{padding-left:0}.showtime-task-reports__task-content-table .showtime-table__cell:last-child{padding-right:0}.showtime-task-reports__task-content-table-comment{display:flex;flex-direction:column-reverse;color:#222234}.showtime-task-reports__task-content-table-comment.showtime-table__header-cell{color:#646470}.showtime-task-reports__task-content-table-comment .showtime-attachment.is-link{max-width:300px;width:-moz-max-content;width:max-content}.showtime-task-reports__task_comments_content{display:flex;flex-direction:column}.showtime-task-reports__task_comments_content a,.showtime-task-reports__task_comments_content .showtime-attachment{margin-bottom:5px}.showtime-task-reports__task-content-table-checklist{color:#222234}.showtime-task-reports__task-content-table-checklist.showtime-table__header-cell{color:#646470}.showtime-task-reports__task-content-table-metadata{color:#222234}.showtime-task-reports__task-content-table-metadata.showtime-table__header-cell{color:#646470}.showtime-task-reports__task-content-table-metadata table{width:100%}.showtime-task-reports__task-content-table-metadata-header td{padding-bottom:10px}.showtime-task-reports__subtask-status{display:flex;vertical-align:middle}.showtime-task-reports__subtask-status svg{height:15px;width:15px}.showtime-task-reports__subtask-status .showtime-task-reports__subtask-status-text{padding-left:5px}.showtime-task-planner-task__inner--is-stuck{z-index:1}.showtime-task-reports__list-items .showtime-table__header-cell{color:rgba(100,100,112,.7)}.showtime-task-reports__list-items .showtime-task-planner-task.has-content .showtime-task-planner-task__inner{border-radius:3px !important}.showtime-task-reports__list-items .showtime-task-planner-task.has-content .showtime-task-planner-task__primary{border-radius:3px !important;background-color:#fff;z-index:1}.shadowing .showtime-task-reports__list-items .showtime-task-planner-task.has-content .showtime-task-planner-task__primary{top:115px}.showtime-task-reports__list-items .showtime-task-planner-task.showtime-task-planner-task--selected.has-content .showtime-task-planner-task__primary{background-color:#ecf3fe}.showtime-task-reports__list-items .showtime-task-planner-task--selected .showtime-task-planner-task__primary,.showtime-task-reports__list-items .showtime-task-planner-task--selected .showtime-task-planner-task__secondary{background-color:#ecf3fe}.showtime-task-reports__list-items .showtime-task-planner-task--selected .showtime-task-planner-task__inner{background-color:#fff}.showtime-task-reports__list-items .showtime-task-planner-task__inner{max-width:-webkit-fill-available}.showtime-task-reports__list-items .showtime-widget-v2__container{background-color:rgba(0,0,0,0)}.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-widget-v2__list-content{margin-bottom:0}.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-widget-v2__list-field{padding-bottom:0}.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-widget-v2__list-field.is-warning,.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-widget-v2__list-field.is-invalid{padding:10px}.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-widget-v2__overview__cell.is-warning{white-space:nowrap}.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-button.showtime-button--default{border-color:rgba(202,202,202,.3)}.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-input__prefix,.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-input__suffix,.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-input input,.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-textarea textarea,.showtime-task-reports__list-items .showtime-widget-v2__container .showtime-input--options select{box-shadow:none;border-color:rgba(202,202,202,.3)}.showtime-task-reports__list-items .widget{margin:0}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner{border-radius:0;box-shadow:none;padding:0;border:none}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table{padding:15px}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table__header-cell{color:rgba(100,100,112,.7)}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table__header-cell:first-child{padding-left:0}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table__header-cell:last-child{padding-right:0;width:100%}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table__cell{color:#222234}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table__cell:first-child{padding-left:0}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-table__cell:last-child{padding-right:0}.showtime-task-reports__list-items .showtime-widget-v2__overview-inner .showtime-widget-v2__overview__cell.is-warning{color:#ff9100}.showtime-task-reports .showtime-empty-state__icon svg{width:2.8125rem;height:2.8125rem}.showtime-task-reports .showtime-widget-v2__list input,.showtime-task-reports .showtime-widget-v2__list textarea,.showtime-task-reports .showtime-widget-v2__list select,.showtime-task-reports .showtime-widget-v2__list .showtime-input,.showtime-task-reports .showtime-widget-v2__list .showtime-input--button-options,.showtime-task-reports .showtime-widget-v2__list .showtime-label{pointer-events:none}.showtime-shortcuts{max-width:200px}.showtime-shortcuts__label{font-size:.75rem !important;line-height:1rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;display:block;margin:0 0 8px 8px}.showtime-shortcuts__link{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;color:#646470;display:flex;padding:5px 0;margin-bottom:5px}.showtime-shortcuts__link:before{content:"";border-left:3px solid rgba(0,0,0,0)}.showtime-shortcuts__link:hover,.showtime-shortcuts__link.is-selected{color:#222234}.showtime-shortcuts__link:hover:before{border-left-color:#222234}.showtime-shortcuts__link.is-selected:before{border-left-color:#4688f1}.showtime-shortcuts__link-text{margin-left:8px;display:inline-flex}.showtime-copy-to-clipboard__value{position:absolute;right:15px;top:50px;margin-top:.4375rem;min-width:18.75rem;padding:15px;border-radius:3px;background-color:#fff;border:1px solid rgba(202,202,202,.5);box-shadow:0 0 10px rgba(0,0,0,.03),0 10px 10px rgba(0,0,0,.06)}@media screen and (min-width: 64rem){.showtime-copy-to-clipboard__value{box-shadow:0 0 8px rgba(0,0,0,.03),0 8px 8px rgba(0,0,0,.06)}}.showtime-copy-to-clipboard__value .showtime-copy-to-clipboard__divider{margin:7px 10px}.showtime-copy-to-clipboard__value .showtime-input{margin:10px;width:initial;min-width:0}.showtime-copy-to-clipboard__option{display:flex;padding:10px;color:#222234}.showtime-copy-to-clipboard__option:active{color:#222234;text-decoration:none}.showtime-copy-to-clipboard__option .showtime-copy-to-clipboard__icon{margin-right:12px;height:16px;width:16px}.showtime-copy-to-clipboard__option .showtime-copy-to-clipboard__icon svg{height:100%;width:100%;overflow:visible}.showtime-copy-to-clipboard__option .showtime-copy-to-clipboard__icon svg *{stroke:currentColor}.showtime-copy-to-clipboard__option .showtime-copy-to-clipboard__icon svg path[data-color=color-2]{fill:currentColor;stroke:initial}.showtime-copy-to-clipboard__option .showtime-copy-to-clipboard__tooltip{margin-left:8px}a.showtime-copy-to-clipboard__option:hover{text-decoration:underline}.showtime-copy-to-clipboard__value-help{color:#646470;margin-left:2px;padding-bottom:10px;padding-top:5px}.showtime-progress-bar{background-color:#f4f4f5;width:100%;height:8px;border-radius:999px}.showtime-progress-bar__inner{background-color:#4688f1;height:8px;min-width:8px;border-radius:999px}@media screen and (min-width: 860px){.showtime-navigation-admin__access-button-container{margin-right:1.25rem}}.showtime-navigation-admin__access-button-container:empty{margin:0}access-button{z-index:18}button[disabled] access-button-chevron path{fill:#cacaca !important}access-button-chevron path{fill:#73808b !important}[data-react-class=TrailButton]{display:inline}[data-react-class=TrailButton] .isvg{display:inline}.button,button{font-size:.875rem !important;line-height:1.125rem !important;letter-spacing:.01875rem !important;text-transform:uppercase !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;min-height:0;border-radius:.1875rem;background:#4688f1;box-shadow:none;transition:box-shadow .3s ease;text-decoration:none}.button svg *,button svg *{fill:#fff}.button:hover,button:hover{text-decoration:none;outline:none;background:#1f838a}.button:active,button:active{outline:none;opacity:.5;box-shadow:none}.button.secondary,button.secondary{color:#fff;background-color:#4e4e4e}.button.secondary svg *,button.secondary svg *{fill:#fff}.button.secondary:focus,button.secondary:focus{background-color:#4e4e4e}.button.secondary:hover,button.secondary:hover{background-color:#000}.button.secondary:hover svg *,button.secondary:hover svg *{fill:#fff}.button.secondary:active,button.secondary:active{opacity:.5}.button.text,button.text{color:#4e4e4e;background:rgba(0,0,0,0)}.button.text svg *,button.text svg *{fill:#4e4e4e}.button.text:hover,button.text:hover{background:rgba(0,0,0,0);box-shadow:none;color:#4e4e4e}.button.text:hover svg *,button.text:hover svg *{fill:#4e4e4e}.button.text:active,button.text:active{opacity:.5}.button.disabled,button.disabled,.button[disabled],button[disabled]{color:#cacaca;opacity:1;background:rgba(0,0,0,0);cursor:default;pointer-events:none}.button.disabled svg *,button.disabled svg *,.button[disabled] svg *,button[disabled] svg *{fill:#cacaca}.button.text.disabled svg *,button.text.disabled svg *,.button.text[disabled] svg *,button.text[disabled] svg *{fill:#cacaca}.button.expand,button.expand{width:100%}.button.small,button.small{font-size:.875rem;line-height:19px;padding:.5rem .6875rem}.attach-container{list-style:none;padding-top:.5rem;margin:0}@media only screen and (max-width: 50em){.attach-container{padding:0 10px}.attach-container li{overflow:visible;padding-right:0;padding-left:0}}.attach-container .attachment{display:block;width:100%;min-height:50px;overflow:hidden;margin-top:.5rem;margin-bottom:.9rem;border-radius:2px;background:#fff;box-shadow:0 0 3px 0 #cacaca;transition:box-shadow .2s ease,background .2s ease}.attach-container .attachment:hover,.attach-container .attachment:focus{color:#4e4e4e;background:#fcfcfc;box-shadow:0 1px 4px 0 rgba(153,151,130,.5)}.attach-container .attachment:active{background:#cacaca}.attach-container .attachment .img,.attach-container .attachment .name,.attach-container .attachment .icon{vertical-align:middle;display:inline-block}.attach-container .attachment .img,.attach-container .attachment .icon{width:40px;height:40px;margin:5px 10px 5px 5px;-o-object-fit:contain;object-fit:contain}.attach-container .attachment .name{font-size:.8rem;color:#4e4e4e;word-break:break-word;width:calc(100% - 60px);margin:0}@media only screen and (max-width: 50em){.organizationPicker .action-sheet{bottom:3.125rem}}.modal-overlay{height:100%}.modal-overlay.is-transparent{background-color:rgba(0,0,0,0)}.modal-overlay .close-button{padding:0;margin:0}.modal-overlay .close-button:hover{text-decoration:none}.modal-screen{position:fixed;z-index:1;top:0;left:0;right:0;bottom:0}.modal-card{margin:0 auto;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.modal-card__description-title{color:#646470;margin-bottom:10px}@media screen and (min-width: 0){.modal-card__description-title{font-size:1rem !important;line-height:1.125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 31.1875rem){.modal-card__description-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 50rem){.modal-card__description-title{font-size:1.125rem !important;line-height:1.3125rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}@media screen and (min-width: 75rem){.modal-card__description-title{font-size:1.125rem !important;line-height:1.375rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important}}.modal-card__title{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;margin-top:0;margin-bottom:.9375rem;color:#222234;display:flex}.modal-card__close{margin-left:auto;padding:0}.modal-card__description{font-size:1rem !important;line-height:1.1875rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;color:#646470;margin-top:0;margin-bottom:.9375rem;white-space:normal;overflow:auto}.modal-card__actions{display:flex;justify-content:center}.modal-card--pin-confirmation{display:flex;flex-direction:column;justify-content:center}.modal-card--pin-confirmation .modal-card__title{display:flex;margin:10px 20px;font-size:3rem !important;line-height:3rem !important;justify-content:space-evenly}.modal-card--pin-confirmation .modal-card__description{text-align:center}.modal-card--pin-confirmation .modal-card__actions-button{margin-top:0}.modal-card__pin-form{margin-top:.9375rem;display:flex}.modal-card__pin-form .showtime-input{margin-right:9px;display:inline-flex}.modal-card__pin-form .showtime-input input{padding:0;padding-left:10px;min-width:auto;width:41px}.modal-card__pin-form .showtime-input input::-webkit-outer-spin-button,.modal-card__pin-form .showtime-input input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.modal-card__pin-form .showtime-input input[type=number]{-moz-appearance:textfield}.modal-card__upload-status--error{color:#ff513d}.modal-card--import.modal-card__content{width:100%;max-width:500px}.modal-card--import.modal-card__content input[type=file]{display:none}.modal-card--import.modal-card__content .modal-card__description{font-size:.875rem !important;line-height:1.0625rem !important;letter-spacing:normal !important;text-transform:none !important;font-weight:400 !important;font-optical-sizing:auto;font-variation-settings:"wdth" 100;font-family:"Inter",Helvetica,Arial,sans-serif !important;font-weight:600 !important;padding:5px}.modal-card--import.modal-card__content .modal-card__actions{justify-content:right}.modal-card__graphic{margin:0 auto;display:flex;justify-content:center;align-items:center;height:10.625rem}.modal-card__content{background-color:#fff;margin-top:.3125rem;max-width:20.625rem;padding:15px;box-shadow:0 0 18px rgba(0,0,0,.03),0 18px 18px rgba(0,0,0,.06);z-index:24}@media screen and (min-width: 64rem){.modal-card__content{box-shadow:0 0 16px rgba(0,0,0,.03),0 16px 16px rgba(0,0,0,.06)}}.modal-card__content--no-padding{padding:0}.modal-content.voids-refunds img{width:100%}.widget-header .grid-block.save-status{overflow:visible}.widget-header .grid-block.save-status .button,.widget-header .grid-block.save-status button{height:18px}.widget-header .grid-block.save-status .button svg,.widget-header .grid-block.save-status button svg{width:16px;height:16px;overflow:hidden;margin-right:.3125rem}.organization-location-timeslot-configuration .showtime-tabs-underline-headers,.organization-timeslot-configuration .showtime-tabs-underline-headers{max-width:90vw;margin-bottom:20px;border-bottom:1px solid #f4f4f5}.editable-time-slot{display:flex;align-items:flex-start;min-height:2.8125rem;margin-bottom:.9375rem;flex-direction:column}@media only screen and (min-width: 28.125em){.editable-time-slot{align-items:center;flex-direction:row;margin-bottom:0}}.editable-time-slot:last-child{margin-bottom:.625rem}.editable-time-slot.is-closed .editable-time-slot__name .checkbox_primary .text{text-decoration:line-through}.editable-time-slot .checkbox_primary{margin-top:-5px;margin-bottom:0}.editable-time-slot .checkbox_primary .text{margin-left:.3125rem}.editable-time-slot .checkbox_primary::before{display:none !important}.editable-time-slot .checkbox_primary:hover .icon{border-color:#222234}.editable-time-slot .checkbox .icon,.editable-time-slot .checkbox_primary input:checked+.icon{border-radius:3px;border:1px solid #cacaca;background:#fff;height:18px;width:18px;box-shadow:inset 0 .0625rem .1875rem 0 rgba(0,0,0,.1)}.editable-time-slot .checkbox_primary input:checked+.icon{background:#222234;transform:none}.editable-time-slot .editable-start-end-time{display:flex;align-items:center}.editable-time-slot .editable-start-end-time select{height:2.1875rem;min-height:2.1875rem}.editable-time-slot__name{flex:1 0 40%;margin-bottom:.625rem}@media only screen and (min-width: 28.125em){.editable-time-slot__name{margin-bottom:0}}.editable-time-slot__times{flex:1 0 55%}.editable-time-slot-section{margin-top:15px;margin-bottom:15px;font-weight:600}.editable-time-slot-section__name{flex:1 0 40%}.editable-time-slot-section__times{flex:1 0 55%}#organization-locations-closed-days{margin-top:20px}#organization-locations-closed-days p{max-width:500px}#organization-locations-closed-days-editor{text-align:center;padding-top:.9375rem;border-radius:3px;margin-top:.9375rem}#organization-locations-upcoming-closures{background-color:#f7f7f8;padding:.9375rem}#organization-locations-upcoming-closures .no-upcoming-closures{text-align:center;margin:2em 0 1em 0}#organization-locations-upcoming-closures ul{font-size:.95em;list-style-type:disc;margin-top:1em;margin-left:1.2em}#organization-locations-upcoming-closures li{margin:.5em 0}.select-time-picker{display:flex;align-items:center}.select-time-picker select{width:60px;padding:5px;background:#fff url(asset-path("nucleo/mini/arrows/arrows-16px-3_small-down.svg")) right .3125rem center no-repeat !important;padding-right:15px !important;min-height:2.5em;margin:0}.select-time-picker--read-only{border-radius:3px;border:0;color:#000;opacity:.6}.widget{margin:10px}@media only screen and (max-width: 50em){.widget{margin:.625rem 0 0}}.widget-header{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:1rem;border-top:1px solid #cacaca;border-bottom:1px solid #cacaca;background-color:#fcfcfc;box-shadow:0 .0625rem 0 0 #fff;text-align:left;line-height:normal}.widget-header .grid-block{align-items:flex-start;overflow:hidden}.widget-header .grid-block img{max-height:30px;padding-right:20px}@media only screen and (min-width: 50.0625em){.widget-header{border:1px solid #cacaca;border-top-left-radius:5px;border-top-right-radius:5px}}.widget-body{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;background-color:#fcfcfc}.widget-body .widget-section{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding-top:1.1rem;padding-bottom:1.1rem;border-right:1px solid #cacaca;border-bottom:1px solid #cacaca;border-left:1px solid #cacaca}@media only screen and (max-width: 50em){.widget-body .widget-section{border-right:0;border-left:0}}.widget-header~.widget-body table{border-top:0}.widget-header~.widget-body thead th{border-radius:0}.widget-body table input{margin:0}.widget-body table td.cell-action button{margin:0}@media only screen and (min-width: 50.0625em){.widget-body table td.cell-action button{padding:0}}.widget-body table td.cell-time{color:#4e4e4e}.widget-body table .input-warning{color:#f87b78}.widget-body table input.is-negative{color:#4e4e4e;border-color:#f87b78}.widget-body .message{text-align:center;width:100%;padding:1.25rem 1.1875rem}@media only screen and (min-width: 50.0625em){.widget-body .message{border:1px solid #cacaca;border-top:0}}.widget-body .message .icon{margin-bottom:.625rem}.widget-body .message .top-line{margin-bottom:.3125rem}.widget-body .message .top-line .text-xl{color:#4e4e4e}.widget-body .message .bottom-line .text-md{color:#cacaca}.widget-footer{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:column nowrap;align-items:stretch;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:1rem 0 2rem;border-top:1px solid #cacaca;border-bottom-left-radius:5px;border-bottom-right-radius:5px;background-color:#fcfcfc;box-shadow:inset 0 .0625rem 0 0 #fff}@media only screen and (min-width: 50.0625em){.widget-footer{display:flex;height:100vh;position:relative;overflow:hidden;flex:1 1 auto;flex-flow:row wrap;flex-wrap:nowrap;align-items:stretch;justify-content:flex-start;order:0;height:auto;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:1rem 0;border:1px solid #cacaca;border-top:0}}.widget-footer .grid-content{overflow-y:visible}@media only screen and (max-width: 50em){.widget-footer .submitted-note{margin-bottom:1.25rem}}.card-section.widget{padding:0;margin:1.1rem;clear:both}.card-section.widget h3{font-size:1rem;font-weight:lighter;line-height:1rem;color:#769da3;text-transform:uppercase;margin:15px 0 0}.ie .card-section.widget{display:block;width:100%}.ie .card-section.widget .widget{display:block;width:100%}.ie .card-section.widget .grid-block,.ie .card-section.widget .grid-content{-ms-flex-prederred-size:auto;flex-basis:auto}.question-icon,.question-icon>svg{height:1.2rem;width:1.1rem}.question-notes{min-height:2.1875rem}.question-icon.green *{fill:#13bf1f}.question-icon.amber *{fill:#ff9100}.question-icon.red *{fill:#ea6360}.question-answer-box{margin:.5rem;padding:.5rem;border-left:5px solid #646470}.question-comment-box{margin:.5rem;padding:.5rem;border-left:5px solid #646470}.animation-fade-enter{opacity:.01}.animation-fade-enter.animation-fade-enter-active{opacity:1;transition:opacity 200ms ease}.animation-fade-leave{opacity:1}.animation-fade-leave.animation-fade-leave-active{opacity:.01;transition:opacity 200ms ease}.animation-fade-appear{opacity:.01}.animation-fade-appear.animation-fade-appear-active{opacity:1;transition:opacity 200ms ease}@keyframes pulse{from{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.1, 1.1, 1.1)}to{transform:scale3d(1, 1, 1)}}.showtime-animation-pulse{animation:pulse .4s ease;animation-iteration-count:1}@keyframes pulsepip{0%{transform:scale(0.75);opacity:0}50%{transform:scale(1.4);opacity:1}100%{transform:scale(0.75);opacity:0}}.showtime-has-transition{transition:all .2s ease}.showtime-transition-rotate-0{transform:rotate(0deg)}.showtime-transition-rotate-90{transform:rotate(90deg)}.showtime-transition-rotate-180{transform:rotate(180deg)}
