/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.bdt-link-muted,
.bdt-link-muted a,
.bdt-link-toggle .bdt-link-muted {
  color: #999;
}
a.bdt-link-muted:hover,
.bdt-link-muted a:hover,
.bdt-link-toggle:hover .bdt-link-muted {
  color: #666;
}
/* Text
 ========================================================================== */
a.bdt-link-text,
.bdt-link-text a,
.bdt-link-toggle .bdt-link-text {
  color: inherit;
}
a.bdt-link-text:hover,
.bdt-link-text a:hover,
.bdt-link-toggle:hover .bdt-link-text {
  color: #999;
}
/* Heading
 ========================================================================== */
a.bdt-link-heading,
.bdt-link-heading a,
.bdt-link-toggle .bdt-link-heading {
  color: inherit;
}
a.bdt-link-heading:hover,
.bdt-link-heading a:hover,
.bdt-link-toggle:hover .bdt-link-heading {
  color: #1e87f0;
  text-decoration: none;
}
/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.bdt-link-reset,
.bdt-link-reset a {
  color: inherit !important;
  text-decoration: none !important;
}
/* Toggle
 ========================================================================== */
.bdt-link-toggle {
  color: inherit !important;
  text-decoration: none !important;
}
/* ========================================================================
   Component: Divider
 ========================================================================== */
/*
 * 1. Reset default `hr`
 * 2. Set margin if a `div` is used for semantical reason
 */
[class*='bdt-divider'] {
  /* 1 */
  border: none;
  /* 2 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + [class*='bdt-divider'] {
  margin-top: 20px;
}
/* Icon
 ========================================================================== */
.bdt-divider-icon {
  position: relative;
  height: 20px;
  background-image: url("https://brisk.uicore.co/education/wp-content/plugins/bdthemes-element-pack/assets/css/../../images/backgrounds/divider-icon.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.bdt-divider-icon::before,
.bdt-divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  max-width: calc(50% - (50px / 2));
  border-bottom: 1px solid rgba(214, 214, 214, 0.49);
}
.bdt-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}
.bdt-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}
/* Small
 ========================================================================== */
/*
 * 1. Fix height because of `inline-block`
 * 2. Using ::after and inline-block to make `text-align` work
 */
/* 1 */
.bdt-divider-small {
  line-height: 0;
}
/* 2 */
.bdt-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
  vertical-align: top;
}
/* Vertical
 ========================================================================== */
.bdt-divider-vertical {
  width: max-content;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid rgba(214, 214, 214, 0.49);
}
/* ========================================================================
   Component: List
 ========================================================================== */
.bdt-list {
  padding: 0;
  list-style: none;
}
/*
 * Remove margin from the last-child
 */
.bdt-list > * > :last-child {
  margin-bottom: 0;
}
/*
 * Style
 */
.bdt-list > :nth-child(n+2),
.bdt-list > * > ul {
  margin-top: 10px;
}
/* Marker modifiers
 * Moving `::marker` inside `::before` to style it differently
 * To style the `::marker` is currently only supported in Firefox and Safari
 ========================================================================== */
.bdt-list-disc > *,
.bdt-list-circle > *,
.bdt-list-square > *,
.bdt-list-decimal > *,
.bdt-list-hyphen > * {
  padding-left: 30px;
}
/*
 * Type modifiers
 */
.bdt-list-decimal {
  counter-reset: decimal;
}
.bdt-list-decimal > * {
  counter-increment: decimal;
}
.bdt-list-disc > ::before,
.bdt-list-circle > ::before,
.bdt-list-square > ::before,
.bdt-list-decimal > ::before,
.bdt-list-hyphen > ::before {
  content: "";
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  display: list-item;
  list-style-position: inside;
  text-align: right;
}
.bdt-list-disc > ::before {
  list-style-type: disc;
}
.bdt-list-circle > ::before {
  list-style-type: circle;
}
.bdt-list-square > ::before {
  list-style-type: square;
}
.bdt-list-decimal > ::before {
  content: counter(decimal, decimal) '\200A.\00A0';
}
.bdt-list-hyphen > ::before {
  content: '–\00A0\00A0';
}
/*
 * Color modifiers
 */
.bdt-list-muted > ::before {
  color: #999 !important;
}
.bdt-list-emphasis > ::before {
  color: #333 !important;
}
.bdt-list-primary > ::before {
  color: #1e87f0 !important;
}
.bdt-list-secondary > ::before {
  color: #222 !important;
}
/* Image bullet modifier
 ========================================================================== */
.bdt-list-bullet > * {
  padding-left: 30px;
}
.bdt-list-bullet > ::before {
  content: "";
  display: list-item;
  position: relative;
  left: -30px;
  width: 30px;
  height: 1.5em;
  margin-bottom: -1.5em;
  background-image: url("https://brisk.uicore.co/education/wp-content/plugins/bdthemes-element-pack/assets/css/../../images/backgrounds/list-bullet.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.bdt-list-divider > :nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Striped
 */
.bdt-list-striped > * {
  padding: 10px 10px;
}
.bdt-list-striped > :nth-of-type(odd) {
  background: #f8f8f8;
}
.bdt-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* Size modifier
 ========================================================================== */
.bdt-list-large > :nth-child(n+2),
.bdt-list-large > * > ul {
  margin-top: 20px;
}
.bdt-list-collapse > :nth-child(n+2),
.bdt-list-collapse > * > ul {
  margin-top: 0;
}
/*
 * Divider
 */
.bdt-list-large.bdt-list-divider > :nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}
.bdt-list-collapse.bdt-list-divider > :nth-child(n+2) {
  margin-top: 0;
  padding-top: 0;
}
/*
 * Striped
 */
.bdt-list-large.bdt-list-striped > * {
  padding: 20px 10px;
}
.bdt-list-collapse.bdt-list-striped > * {
  padding-top: 0;
  padding-bottom: 0;
}
.bdt-list-large.bdt-list-striped > :nth-child(n+2),
.bdt-list-collapse.bdt-list-striped > :nth-child(n+2) {
  margin-top: 0;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/*
 * Term
 */
.bdt-description-list > dt {
  color: #333;
}
.bdt-description-list > dt:nth-child(n+2) {
  margin-top: 20px;
}
/*
 * Description
 */
/* Style modifier
 ========================================================================== */
/*
 * Line
 */
.bdt-description-list-divider > dt:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Behave like a block element
 * 3. Style
 */
.bdt-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 20px;
}
/* Add margin if adjacent element */
* + .bdt-table {
  margin-top: 20px;
}
/* Header cell
 ========================================================================== */
/*
 * 1. Style
 */
.bdt-table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  /* 1 */
  font-size: 16px;
  font-weight: bold;
  color: #666;
}
/* Cell
 ========================================================================== */
.bdt-table td {
  padding: 16px 12px;
  vertical-align: top;
}
/*
 * Remove margin from the last-child
 */
.bdt-table td > :last-child {
  margin-bottom: 0;
}
/* Footer
 ========================================================================== */
.bdt-table tfoot {
  font-size: 0.875rem;
}
/* Caption
 ========================================================================== */
.bdt-table caption {
  font-size: 0.875rem;
  text-align: left;
  color: #999;
}
/* Alignment modifier
 ========================================================================== */
.bdt-table-middle,
.bdt-table-middle td {
  vertical-align: middle !important;
}
/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.bdt-table-divider > tr:not(:first-child),
.bdt-table-divider > :not(:first-child) > tr,
.bdt-table-divider > :first-child > tr:not(:first-child) {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Striped
 */
.bdt-table-striped > tr:nth-of-type(odd),
.bdt-table-striped tbody tr:nth-of-type(odd) {
  background: #f8f8f8;
}
/*
 * Hover
 */
.bdt-table-hover > tr:hover,
.bdt-table-hover tbody tr:hover {
  background: #ffd;
}
/* Active state
 ========================================================================== */
.bdt-table > tr.bdt-active,
.bdt-table tbody tr.bdt-active {
  background: #ffd;
}
/* Size modifier
 ========================================================================== */
.bdt-table-small th,
.bdt-table-small td {
  padding: 10px 12px;
}
.bdt-table-large th,
.bdt-table-large td {
  padding: 22px 12px;
}
/* Justify modifier
 ========================================================================== */
.bdt-table-justify th:first-child,
.bdt-table-justify td:first-child {
  padding-left: 0;
}
.bdt-table-justify th:last-child,
.bdt-table-justify td:last-child {
  padding-right: 0;
}
/* Cell size modifier
 ========================================================================== */
.bdt-table-shrink {
  width: 1px;
}
.bdt-table-expand {
  min-width: 150px;
}
/* Cell link modifier
 ========================================================================== */
/*
 * Does not work with `bdt-table-justify` at the moment
 */
.bdt-table-link {
  padding: 0 !important;
}
.bdt-table-link > a {
  display: block;
  padding: 16px 12px;
}
.bdt-table-small .bdt-table-link > a {
  padding: 10px 12px;
}
/* Responsive table
 ========================================================================== */
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .bdt-table-responsive,
  .bdt-table-responsive tbody,
  .bdt-table-responsive th,
  .bdt-table-responsive td,
  .bdt-table-responsive tr {
    display: block;
  }
  .bdt-table-responsive thead {
    display: none;
  }
  .bdt-table-responsive th,
  .bdt-table-responsive td {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }
  .bdt-table-responsive th:not(:first-child):not(.bdt-table-link),
  .bdt-table-responsive td:not(:first-child):not(.bdt-table-link),
  .bdt-table-responsive .bdt-table-link:not(:first-child) > a {
    padding-top: 5px !important;
  }
  .bdt-table-responsive th:not(:last-child):not(.bdt-table-link),
  .bdt-table-responsive td:not(:last-child):not(.bdt-table-link),
  .bdt-table-responsive .bdt-table-link:not(:last-child) > a {
    padding-bottom: 5px !important;
  }
  .bdt-table-justify.bdt-table-responsive th,
  .bdt-table-justify.bdt-table-responsive td {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ========================================================================
   Component: Icon
 ========================================================================== */
/*
 * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Remove default `button` padding and background color
 * 8. Style
 * 9. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 10. Let the container fit the height of the icon
 */
.bdt-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background-color: transparent;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}
/* Required for `button`. */
button.bdt-icon:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.bdt-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * Set the fill and stroke color of all SVG elements to the current text color
 */
.bdt-icon:not(.bdt-preserve) [fill*='#']:not(.bdt-preserve) {
  fill: currentcolor;
}
.bdt-icon:not(.bdt-preserve) [stroke*='#']:not(.bdt-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.bdt-icon > * {
  transform: translate(0, 0);
}
/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 * 1. Required for `span` with background image
 * 2. Required for `image`
 */
.bdt-icon-image {
  width: 20px;
  height: 20px;
  /* 1 */
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  /* 2 */
  object-fit: scale-down;
  max-width: none;
}
/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.bdt-icon-link {
  color: #999;
}
.bdt-icon-link:hover {
  color: #666;
}
/* OnClick + Active */
.bdt-icon-link:active,
.bdt-active > .bdt-icon-link {
  color: #595959;
}
/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.bdt-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #f8f8f8;
  color: #999;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* Hover */
.bdt-icon-button:hover {
  background-color: #ebebeb;
  color: #666;
}
/* OnClick + Active */
.bdt-icon-button:active,
.bdt-active > .bdt-icon-button {
  background-color: #dfdfdf;
  color: #666;
}
/* ========================================================================
   Component: Form Range
 ========================================================================== */
/*
 * 1. Remove default style.
 * 2. Define consistent box sizing.
 * 3. Remove `margin` in all browsers.
 * 4. Align to the center of the line box.
 * 5. Prevent content overflow if a fixed width is used.
 * 6. Take the full width.
 * 7. Remove white background in Chrome.
 */
.bdt-range {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  max-width: 100%;
  /* 6 */
  width: 100%;
  /* 7 */
  background: transparent;
}
/* Focus */
.bdt-range:focus {
  outline: none;
}
.bdt-range::-moz-focus-outer {
  border: none;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.bdt-range:not(:disabled)::-webkit-slider-thumb {
  cursor: pointer;
}
.bdt-range:not(:disabled)::-moz-range-thumb {
  cursor: pointer;
}
/*
 * Track
 * 1. Safari doesn't have a focus state. Using active instead.
 */
/* Webkit */
.bdt-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #ebebeb;
}
.bdt-range:focus::-webkit-slider-runnable-track,
.bdt-range:active::-webkit-slider-runnable-track {
  background: #dedede;
}
/* Firefox */
.bdt-range::-moz-range-track {
  height: 3px;
  background: #ebebeb;
}
.bdt-range:focus::-moz-range-track {
  background: #dedede;
}
/*
 * Thumb
 * 1. Reset
 * 2. Style
 */
/* Webkit */
.bdt-range::-webkit-slider-thumb {
  /* 1 */
  -webkit-appearance: none;
  margin-top: -7px;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #666;
}
/* Firefox */
.bdt-range::-moz-range-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  margin-top: -7px;
  border-radius: 500px;
  background: #666;
}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.bdt-input,
.bdt-select,
.bdt-textarea,
.bdt-radio,
.bdt-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}
/*
 * Show the overflow in Edge.
 */
.bdt-input {
  overflow: visible;
}
/*
 * Remove the inheritance of text transform in Firefox.
 */
.bdt-select {
  text-transform: none;
}
/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.bdt-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}
/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.bdt-textarea {
  overflow: auto;
}
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.bdt-input[type="search"]::-webkit-search-cancel-button,
.bdt-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.bdt-input[type="number"]::-webkit-inner-spin-button,
.bdt-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.bdt-input::-moz-placeholder,
.bdt-textarea::-moz-placeholder {
  opacity: 1;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.bdt-radio:not(:disabled),
.bdt-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.bdt-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.bdt-input,
.bdt-textarea {
  -webkit-appearance: none;
}
/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.bdt-input,
.bdt-select,
.bdt-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #f8f8f8;
  color: #666;
  border-radius: 3px;
}
/*
 * Single-line
 * 1. Allow any element to look like an `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically
 */
.bdt-input,
.bdt-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}
/* 2 */
.bdt-input:not(input),
.bdt-select:not(select) {
  line-height: 40px;
}
/*
 * Multi-line
 */
.bdt-select[multiple],
.bdt-select[size],
.bdt-textarea {
  padding-top: 6px;
  padding-bottom: 6px;
  vertical-align: top;
}
.bdt-select[multiple],
.bdt-select[size] {
  resize: vertical;
}
/* Focus */
.bdt-input:focus,
.bdt-select:focus,
.bdt-textarea:focus {
  outline: none;
  background-color: #ebebeb;
  color: #666;
}
/* Disabled */
.bdt-input:disabled,
.bdt-select:disabled,
.bdt-textarea:disabled {
  background-color: #f8f8f8;
  color: #999;
}
/*
 * Placeholder
 */
.bdt-input::placeholder {
  color: #999;
}
.bdt-textarea::placeholder {
  color: #999;
}
/* Style modifier (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Small
 */
.bdt-form-small {
  font-size: 0.875rem;
}
/* Single-line */
.bdt-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Multi-line */
textarea.bdt-form-small,
[multiple].bdt-form-small,
[size].bdt-form-small {
  padding: 5px 8px;
}
.bdt-form-small:not(select):not(input):not(textarea) {
  line-height: 30px;
}
/*
 * Large
 */
.bdt-form-large {
  font-size: 1.25rem;
}
/* Single-line */
.bdt-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}
/* Multi-line */
textarea.bdt-form-large,
[multiple].bdt-form-large,
[size].bdt-form-large {
  padding: 7px 12px;
}
.bdt-form-large:not(select):not(input):not(textarea) {
  line-height: 55px;
}
/* Style modifier (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Error
 */
.bdt-form-danger,
.bdt-form-danger:focus {
  color: #f0506e;
}
/*
 * Success
 */
.bdt-form-success,
.bdt-form-success:focus {
  color: #32d296;
}
/*
 * Blank
 */
.bdt-form-blank {
  background: none;
}
/* Width modifiers (`bdt-input`, `bdt-select` and `bdt-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.bdt-form-width-xsmall {
  width: 50px;
}
select.bdt-form-width-xsmall {
  width: 75px;
}
.bdt-form-width-small {
  width: 130px;
}
.bdt-form-width-medium {
  width: 200px;
}
.bdt-form-width-large {
  width: 500px;
}
/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.bdt-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  padding-right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
/* 3 */
.bdt-select:not([multiple]):not([size]) option {
  color: #666;
}
/*
 * Disabled
 */
.bdt-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}
/* Datalist
 ========================================================================== */
/*
 * 1. Remove default style in Chrome
 */
.bdt-input[list] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.bdt-input[list]:hover,
.bdt-input[list]:focus {
  background-image: url("https://brisk.uicore.co/education/wp-content/plugins/bdthemes-element-pack/assets/css/../../images/backgrounds/form-datalist.svg");
}
/* 1 */
.bdt-input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}
/* Radio and checkbox
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
.bdt-radio,
.bdt-checkbox {
  /* 1 */
  display: inline-block;
  height: 16px;
  width: 16px;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 5 */
  background-color: #ebebeb;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.bdt-radio {
  border-radius: 50%;
}
/* Focus */
.bdt-radio:focus,
.bdt-checkbox:focus {
  background-color: #dedede;
  outline: none;
}
/*
 * Checked
 */
.bdt-radio:checked,
.bdt-checkbox:checked,
.bdt-checkbox:indeterminate {
  background-color: #1e87f0;
}
/* Focus */
.bdt-radio:checked:focus,
.bdt-checkbox:checked:focus,
.bdt-checkbox:indeterminate:focus {
  background-color: #0e6dcd;
}
/*
 * Icons
 */
.bdt-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}
.bdt-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}
.bdt-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}
/*
 * Disabled
 */
.bdt-radio:disabled,
.bdt-checkbox:disabled {
  background-color: #f8f8f8;
}
.bdt-radio:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}
.bdt-checkbox:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}
.bdt-checkbox:disabled:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}
/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.bdt-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.bdt-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}
/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.bdt-form-custom select,
.bdt-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}
.bdt-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}
/* Label
 ========================================================================== */
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.bdt-form-stacked .bdt-form-label {
  display: block;
  margin-bottom: 10px;
}
/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `bdt-form-stacked` */
  .bdt-form-horizontal .bdt-form-label {
    display: block;
    margin-bottom: 10px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-form-horizontal .bdt-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }
  .bdt-form-horizontal .bdt-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .bdt-form-horizontal .bdt-form-controls-text {
    padding-top: 7px;
  }
}
/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.bdt-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 40px;
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #999;
}
/*
 * Required for `a`.
 */
.bdt-form-icon:hover {
  color: #666;
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.bdt-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Input padding
 */
.bdt-form-icon:not(.bdt-form-icon-flip) ~ .bdt-input {
  padding-left: 40px !important;
}
/*
 * Position modifier
 */
.bdt-form-icon-flip {
  right: 0;
  left: auto;
}
.bdt-form-icon-flip ~ .bdt-input {
  padding-right: 40px !important;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Address `overflow` set to `hidden` in IE.
 * 4. Correct `font` properties and `color` not being inherited for `button`.
 * 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 6. Remove default style for `input type="submit"`in iOS.
 * 7. Style
 * 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
 *    Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
 * 9. Align text if button has a width
 * 10. Required for `a`.
 */
.bdt-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6 */
  -webkit-appearance: none;
  border-radius: 0;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 16px;
  /* 8 */
  line-height: 40px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
  border-radius: 3px;
}
.bdt-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.bdt-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Hover */
.bdt-button:hover {
  /* 9 */
  text-decoration: none;
}
/* OnClick + Active */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-button-default {
  background-color: #f8f8f8;
  color: #333;
}
/* Hover */
.bdt-button-default:hover {
  background-color: #ebebeb;
  color: #333;
}
/* OnClick + Active */
.bdt-button-default:active,
.bdt-button-default.bdt-active {
  background-color: #dfdfdf;
  color: #333;
}
/*
 * Primary
 */
.bdt-button-primary {
  background-color: #1e87f0;
  color: #fff;
}
/* Hover */
.bdt-button-primary:hover {
  background-color: #0f7ae5;
  color: #fff;
}
/* OnClick + Active */
.bdt-button-primary:active,
.bdt-button-primary.bdt-active {
  background-color: #0e6dcd;
  color: #fff;
}
/*
 * Secondary
 */
.bdt-button-secondary {
  background-color: #222;
  color: #fff;
}
/* Hover */
.bdt-button-secondary:hover {
  background-color: #151515;
  color: #fff;
}
/* OnClick + Active */
.bdt-button-secondary:active,
.bdt-button-secondary.bdt-active {
  background-color: #080808;
  color: #fff;
}
/*
 * Danger
 */
.bdt-button-danger {
  background-color: #f0506e;
  color: #fff;
}
/* Hover */
.bdt-button-danger:hover {
  background-color: #ee395b;
  color: #fff;
}
/* OnClick + Active */
.bdt-button-danger:active,
.bdt-button-danger.bdt-active {
  background-color: #ec2147;
  color: #fff;
}
/*
 * Disabled
 * The same for all style modifiers
 */
.bdt-button-default:disabled,
.bdt-button-primary:disabled,
.bdt-button-secondary:disabled,
.bdt-button-danger:disabled {
  background-color: #f8f8f8;
  color: #999;
}
/* Size modifiers
 ========================================================================== */
.bdt-button-small {
  padding: 0 15px;
  line-height: 30px;
  font-size: 0.875rem;
}
.bdt-button-large {
  padding: 0 40px;
  line-height: 55px;
  font-size: 1.25rem;
}
/* Text modifiers
 ========================================================================== */
/*
 * Text
 * 1. Reset
 * 2. Style
 */
.bdt-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #333;
}
/* Hover */
.bdt-button-text:hover {
  color: #999;
}
/* Disabled */
.bdt-button-text:disabled {
  color: #999;
}
/*
 * Link
 * 1. Reset
 * 2. Style
 */
.bdt-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #333;
}
/* Hover */
.bdt-button-link:hover {
  color: #999;
  text-decoration: none;
}
/* Disabled */
.bdt-button-link:disabled {
  color: #999;
  text-decoration: none;
}
/* Group
 ========================================================================== */
/*
 * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
 * 2. Behave like button
 * 3. Create position context
 */
.bdt-button-group {
  /* 1 */
  display: inline-flex;
  /* 2 */
  vertical-align: middle;
  /* 3 */
  position: relative;
}
/* ========================================================================
   Component: Section
 ========================================================================== */
/*
 * 1. Make it work with `100vh` and height in general
 */
.bdt-section {
  display: flow-root;
  box-sizing: border-box;
  /* 1 */
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .bdt-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*
 * Remove margin from the last-child
 */
.bdt-section > :last-child {
  margin-bottom: 0;
}
/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.bdt-section-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}
/*
 * Small
 */
.bdt-section-small {
  padding-top: 40px;
  padding-bottom: 40px;
}
/*
 * Large
 */
.bdt-section-large {
  padding-top: 70px;
  padding-bottom: 70px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-section-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
/*
 * XLarge
 */
.bdt-section-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-section-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-section-default {
  background: #fff;
}
/*
 * Muted
 */
.bdt-section-muted {
  background: #f8f8f8;
}
/*
 * Primary
 */
.bdt-section-primary {
  background: #1e87f0;
}
/*
 * Secondary
 */
.bdt-section-secondary {
  background: #222;
}
/* Overlap modifier
 ========================================================================== */
/*
 * Reserved modifier to make a section overlap another section with an border image
 * Implemented by the theme
 */
/* ========================================================================
   Component: Container
 ========================================================================== */
/*
 * 1. Box sizing has to be `content-box` so the max-width is always the same and
 *    unaffected by the padding on different breakpoints. It's important for the size modifiers.
 */
.bdt-container {
  display: flow-root;
  /* 1 */
  box-sizing: content-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.bdt-container > :last-child {
  margin-bottom: 0;
}
/*
 * Remove padding from nested containers
 */
.bdt-container .bdt-container {
  padding-left: 0;
  padding-right: 0;
}
/* Size modifier
 ========================================================================== */
.bdt-container-xsmall {
  max-width: 750px;
}
.bdt-container-small {
  max-width: 900px;
}
.bdt-container-large {
  max-width: 1400px;
}
.bdt-container-xlarge {
  max-width: 1600px;
}
.bdt-container-expand {
  max-width: none;
}
/* Expand modifier
 ========================================================================== */
/*
 * Expand one side only
 */
.bdt-container-expand-left {
  margin-left: 0;
}
.bdt-container-expand-right {
  margin-right: 0;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-container-expand-left.bdt-container-xsmall,
  .bdt-container-expand-right.bdt-container-xsmall {
    max-width: calc(50% + (750px / 2) - 30px);
  }
  .bdt-container-expand-left.bdt-container-small,
  .bdt-container-expand-right.bdt-container-small {
    max-width: calc(50% + (900px / 2) - 30px);
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-container-expand-left,
  .bdt-container-expand-right {
    max-width: calc(50% + (1200px / 2) - 40px);
  }
  .bdt-container-expand-left.bdt-container-xsmall,
  .bdt-container-expand-right.bdt-container-xsmall {
    max-width: calc(50% + (750px / 2) - 40px);
  }
  .bdt-container-expand-left.bdt-container-small,
  .bdt-container-expand-right.bdt-container-small {
    max-width: calc(50% + (900px / 2) - 40px);
  }
  .bdt-container-expand-left.bdt-container-large,
  .bdt-container-expand-right.bdt-container-large {
    max-width: calc(50% + (1400px / 2) - 40px);
  }
  .bdt-container-expand-left.bdt-container-xlarge,
  .bdt-container-expand-right.bdt-container-xlarge {
    max-width: calc(50% + (1600px / 2) - 40px);
  }
}
/* Item
 ========================================================================== */
/*
 * Utility classes to reset container padding on the left or right side
 * Note: It has to be negative margin on the item, because it's specific to the item.
 */
.bdt-container-item-padding-remove-left,
.bdt-container-item-padding-remove-right {
  width: calc(100% + 15px);
}
.bdt-container-item-padding-remove-left {
  margin-left: -15px;
}
.bdt-container-item-padding-remove-right {
  margin-right: -15px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-container-item-padding-remove-left,
  .bdt-container-item-padding-remove-right {
    width: calc(100% + 30px);
  }
  .bdt-container-item-padding-remove-left {
    margin-left: -30px;
  }
  .bdt-container-item-padding-remove-right {
    margin-right: -30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-container-item-padding-remove-left,
  .bdt-container-item-padding-remove-right {
    width: calc(100% + 40px);
  }
  .bdt-container-item-padding-remove-left {
    margin-left: -40px;
  }
  .bdt-container-item-padding-remove-right {
    margin-right: -40px;
  }
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.bdt-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.bdt-grid > * {
  margin: 0;
}
/*
 * Remove margin from the last-child
 */
.bdt-grid > * > :last-child {
  margin-bottom: 0;
}
/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.bdt-grid {
  margin-left: -30px;
}
.bdt-grid > * {
  padding-left: 30px;
}
/* Vertical */
.bdt-grid + .bdt-grid,
.bdt-grid > .bdt-grid-margin,
* + .bdt-grid-margin {
  margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .bdt-grid {
    margin-left: -40px;
  }
  .bdt-grid > * {
    padding-left: 40px;
  }
  /* Vertical */
  .bdt-grid + .bdt-grid,
  .bdt-grid > .bdt-grid-margin,
  * + .bdt-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.bdt-grid-small,
.bdt-grid-column-small {
  margin-left: -15px;
}
.bdt-grid-small > *,
.bdt-grid-column-small > * {
  padding-left: 15px;
}
/* Vertical */
.bdt-grid + .bdt-grid-small,
.bdt-grid + .bdt-grid-row-small,
.bdt-grid-small > .bdt-grid-margin,
.bdt-grid-row-small > .bdt-grid-margin,
* + .bdt-grid-margin-small {
  margin-top: 15px;
}
/*
 * Medium
 */
/* Horizontal */
.bdt-grid-medium,
.bdt-grid-column-medium {
  margin-left: -30px;
}
.bdt-grid-medium > *,
.bdt-grid-column-medium > * {
  padding-left: 30px;
}
/* Vertical */
.bdt-grid + .bdt-grid-medium,
.bdt-grid + .bdt-grid-row-medium,
.bdt-grid-medium > .bdt-grid-margin,
.bdt-grid-row-medium > .bdt-grid-margin,
* + .bdt-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.bdt-grid-large,
.bdt-grid-column-large {
  margin-left: -40px;
}
.bdt-grid-large > *,
.bdt-grid-column-large > * {
  padding-left: 40px;
}
/* Vertical */
.bdt-grid + .bdt-grid-large,
.bdt-grid + .bdt-grid-row-large,
.bdt-grid-large > .bdt-grid-margin,
.bdt-grid-row-large > .bdt-grid-margin,
* + .bdt-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .bdt-grid-large,
  .bdt-grid-column-large {
    margin-left: -70px;
  }
  .bdt-grid-large > *,
  .bdt-grid-column-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .bdt-grid + .bdt-grid-large,
  .bdt-grid + .bdt-grid-row-large,
  .bdt-grid-large > .bdt-grid-margin,
  .bdt-grid-row-large > .bdt-grid-margin,
  * + .bdt-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.bdt-grid-collapse,
.bdt-grid-column-collapse {
  margin-left: 0;
}
.bdt-grid-collapse > *,
.bdt-grid-column-collapse > * {
  padding-left: 0;
}
/* Vertical */
.bdt-grid + .bdt-grid-collapse,
.bdt-grid + .bdt-grid-row-collapse,
.bdt-grid-collapse > .bdt-grid-margin,
.bdt-grid-row-collapse > .bdt-grid-margin {
  margin-top: 0;
}
/* Divider
 ========================================================================== */
.bdt-grid-divider > * {
  position: relative;
}
.bdt-grid-divider > :not(.bdt-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(214, 214, 214, 0.49);
}
/* Vertical */
.bdt-grid-divider.bdt-grid-stack > .bdt-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Default
 */
/* Horizontal */
.bdt-grid-divider {
  margin-left: -60px;
}
.bdt-grid-divider > * {
  padding-left: 60px;
}
.bdt-grid-divider > :not(.bdt-first-column)::before {
  left: 30px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-stack > .bdt-grid-margin {
  margin-top: 60px;
}
.bdt-grid-divider.bdt-grid-stack > .bdt-grid-margin::before {
  top: -30px;
  left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .bdt-grid-divider {
    margin-left: -80px;
  }
  .bdt-grid-divider > * {
    padding-left: 80px;
  }
  .bdt-grid-divider > :not(.bdt-first-column)::before {
    left: 40px;
  }
  /* Vertical */
  .bdt-grid-divider.bdt-grid-stack > .bdt-grid-margin {
    margin-top: 80px;
  }
  .bdt-grid-divider.bdt-grid-stack > .bdt-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-small,
.bdt-grid-divider.bdt-grid-column-small {
  margin-left: -30px;
}
.bdt-grid-divider.bdt-grid-small > *,
.bdt-grid-divider.bdt-grid-column-small > * {
  padding-left: 30px;
}
.bdt-grid-divider.bdt-grid-small > :not(.bdt-first-column)::before,
.bdt-grid-divider.bdt-grid-column-small > :not(.bdt-first-column)::before {
  left: 15px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-small.bdt-grid-stack > .bdt-grid-margin,
.bdt-grid-divider.bdt-grid-row-small.bdt-grid-stack > .bdt-grid-margin {
  margin-top: 30px;
}
.bdt-grid-divider.bdt-grid-small.bdt-grid-stack > .bdt-grid-margin::before {
  top: -15px;
  left: 30px;
}
.bdt-grid-divider.bdt-grid-row-small.bdt-grid-stack > .bdt-grid-margin::before {
  top: -15px;
}
.bdt-grid-divider.bdt-grid-column-small.bdt-grid-stack > .bdt-grid-margin::before {
  left: 30px;
}
/*
 * Medium
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-medium,
.bdt-grid-divider.bdt-grid-column-medium {
  margin-left: -60px;
}
.bdt-grid-divider.bdt-grid-medium > *,
.bdt-grid-divider.bdt-grid-column-medium > * {
  padding-left: 60px;
}
.bdt-grid-divider.bdt-grid-medium > :not(.bdt-first-column)::before,
.bdt-grid-divider.bdt-grid-column-medium > :not(.bdt-first-column)::before {
  left: 30px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-medium.bdt-grid-stack > .bdt-grid-margin,
.bdt-grid-divider.bdt-grid-row-medium.bdt-grid-stack > .bdt-grid-margin {
  margin-top: 60px;
}
.bdt-grid-divider.bdt-grid-medium.bdt-grid-stack > .bdt-grid-margin::before {
  top: -30px;
  left: 60px;
}
.bdt-grid-divider.bdt-grid-row-medium.bdt-grid-stack > .bdt-grid-margin::before {
  top: -30px;
}
.bdt-grid-divider.bdt-grid-column-medium.bdt-grid-stack > .bdt-grid-margin::before {
  left: 60px;
}
/*
 * Large
 */
/* Horizontal */
.bdt-grid-divider.bdt-grid-large,
.bdt-grid-divider.bdt-grid-column-large {
  margin-left: -80px;
}
.bdt-grid-divider.bdt-grid-large > *,
.bdt-grid-divider.bdt-grid-column-large > * {
  padding-left: 80px;
}
.bdt-grid-divider.bdt-grid-large > :not(.bdt-first-column)::before,
.bdt-grid-divider.bdt-grid-column-large > :not(.bdt-first-column)::before {
  left: 40px;
}
/* Vertical */
.bdt-grid-divider.bdt-grid-large.bdt-grid-stack > .bdt-grid-margin,
.bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack > .bdt-grid-margin {
  margin-top: 80px;
}
.bdt-grid-divider.bdt-grid-large.bdt-grid-stack > .bdt-grid-margin::before {
  top: -40px;
  left: 80px;
}
.bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack > .bdt-grid-margin::before {
  top: -40px;
}
.bdt-grid-divider.bdt-grid-column-large.bdt-grid-stack > .bdt-grid-margin::before {
  left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .bdt-grid-divider.bdt-grid-large,
  .bdt-grid-divider.bdt-grid-column-large {
    margin-left: -140px;
  }
  .bdt-grid-divider.bdt-grid-large > *,
  .bdt-grid-divider.bdt-grid-column-large > * {
    padding-left: 140px;
  }
  .bdt-grid-divider.bdt-grid-large > :not(.bdt-first-column)::before,
  .bdt-grid-divider.bdt-grid-column-large > :not(.bdt-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .bdt-grid-divider.bdt-grid-large.bdt-grid-stack > .bdt-grid-margin,
  .bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack > .bdt-grid-margin {
    margin-top: 140px;
  }
  .bdt-grid-divider.bdt-grid-large.bdt-grid-stack > .bdt-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .bdt-grid-divider.bdt-grid-row-large.bdt-grid-stack > .bdt-grid-margin::before {
    top: -70px;
  }
  .bdt-grid-divider.bdt-grid-column-large.bdt-grid-stack > .bdt-grid-margin::before {
    left: 140px;
  }
}
/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.bdt-grid-match > *,
.bdt-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}
.bdt-grid-match > * > :not([class*='bdt-width']),
.bdt-grid-item-match > :not([class*='bdt-width']) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}
/* ========================================================================
   Component: Tile
 ========================================================================== */
.bdt-tile {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-tile {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-tile {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*
 * Remove margin from the last-child
 */
.bdt-tile > :last-child {
  margin-bottom: 0;
}
/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.bdt-tile-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}
/*
 * Small
 */
.bdt-tile-small {
  padding-top: 40px;
  padding-bottom: 40px;
}
/*
 * Large
 */
.bdt-tile-large {
  padding-top: 70px;
  padding-bottom: 70px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-tile-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
/*
 * XLarge
 */
.bdt-tile-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-tile-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-tile-default {
  background-color: #fff;
}
/*
 * Muted
 */
.bdt-tile-muted {
  background-color: #f8f8f8;
}
/*
 * Primary
 */
.bdt-tile-primary {
  background-color: #1e87f0;
}
/*
 * Secondary
 */
.bdt-tile-secondary {
  background-color: #222;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.bdt-card {
  position: relative;
  box-sizing: border-box;
}
/* Sections
 ========================================================================== */
.bdt-card-body {
  display: flow-root;
  padding: 30px 30px;
}
.bdt-card-header {
  display: flow-root;
  padding: 15px 30px;
}
.bdt-card-footer {
  display: flow-root;
  padding: 15px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-card-body {
    padding: 40px 40px;
  }
  .bdt-card-header {
    padding: 20px 40px;
  }
  .bdt-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Remove margin from the last-child
 */
.bdt-card-body > :last-child,
.bdt-card-header > :last-child,
.bdt-card-footer > :last-child {
  margin-bottom: 0;
}
/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.bdt-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Badge
 ========================================================================== */
/*
 * 1. Position
 * 2. Size
 * 3. Style
 * 4. Center child vertically
 */
.bdt-card-badge {
  /* 1 */
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  /* 2 */
  height: 22px;
  padding: 0 10px;
  /* 3 */
  background: #1e87f0;
  color: #fff;
  font-size: 0.875rem;
  /* 4 */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
/*
 * Remove margin from adjacent element
 */
.bdt-card-badge:first-child + * {
  margin-top: 0;
}
/* Hover modifier
 ========================================================================== */
.bdt-card-hover:not(.bdt-card-default):not(.bdt-card-primary):not(.bdt-card-secondary):hover {
  background-color: #f8f8f8;
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.bdt-card-default {
  background-color: #f8f8f8;
  color: #666;
}
.bdt-card-default .bdt-card-title {
  color: #333;
}
.bdt-card-default.bdt-card-hover:hover {
  background-color: #ebebeb;
}
/*
 * Primary
 */
.bdt-card-primary {
  background-color: #1e87f0;
  color: #fff;
}
.bdt-card-primary .bdt-card-title {
  color: #fff;
}
.bdt-card-primary.bdt-card-hover:hover {
  background-color: #0f7ae5;
}
/*
 * Secondary
 */
.bdt-card-secondary {
  background-color: #222;
  color: #fff;
}
.bdt-card-secondary .bdt-card-title {
  color: #fff;
}
.bdt-card-secondary.bdt-card-hover:hover {
  background-color: #151515;
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.bdt-card-small.bdt-card-body,
.bdt-card-small .bdt-card-body {
  padding: 20px 20px;
}
.bdt-card-small .bdt-card-header {
  padding: 13px 20px;
}
.bdt-card-small .bdt-card-footer {
  padding: 13px 20px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-card-large.bdt-card-body,
  .bdt-card-large .bdt-card-body {
    padding: 70px 70px;
  }
  .bdt-card-large .bdt-card-header {
    padding: 35px 70px;
  }
  .bdt-card-large .bdt-card-footer {
    padding: 35px 70px;
  }
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
.bdt-close {
  color: #999;
}
/* Hover */
.bdt-close:hover {
  color: #666;
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
/* SVG
 ========================================================================== */
.bdt-spinner > * {
  animation: bdt-spinner-rotate 1.4s linear infinite;
}
@keyframes bdt-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
/*
 * Circle
 */
.bdt-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: bdt-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}
@keyframes bdt-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}
/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `bdt-icon`
 */
.bdt-totop {
  padding: 5px;
  color: #999;
}
/* Hover */
.bdt-totop:hover {
  color: #666;
}
/* OnClick */
.bdt-totop:active {
  color: #333;
}
/* ========================================================================
   Component: Marker
 ========================================================================== */
/*
 * Addopts `bdt-icon`
 */
.bdt-marker {
  padding: 5px;
  background: #222;
  color: #fff;
}
/* Hover */
.bdt-marker:hover {
  color: #fff;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.bdt-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #f8f8f8;
  color: #666;
}
/* Add margin if adjacent element */
* + .bdt-alert {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.bdt-alert > :last-child {
  margin-bottom: 0;
}
/* Close
 * Adopts `bdt-close`
 ========================================================================== */
.bdt-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
}
/*
 * Remove margin from adjacent element
 */
.bdt-alert-close:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.bdt-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}
/*
 * Success
 */
.bdt-alert-success {
  background: #edfbf6;
  color: #32d296;
}
/*
 * Warning
 */
.bdt-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}
/*
 * Danger
 */
.bdt-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.bdt-badge {
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #1e87f0;
  color: #fff;
  font-size: 11px;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
/*
 * Required for `a`
 */
.bdt-badge:hover {
  text-decoration: none;
}
/* ========================================================================
   Component: Label
 ========================================================================== */
.bdt-label {
  display: inline-block;
  padding: 0 10px;
  background: #1e87f0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}
/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.bdt-label-success {
  background-color: #32d296;
  color: #fff;
}
/*
 * Warning
 */
.bdt-label-warning {
  background-color: #faa05a;
  color: #fff;
}
/*
 * Danger
 */
.bdt-label-danger {
  background-color: #f0506e;
  color: #fff;
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.bdt-overlay {
  padding: 30px 30px;
}
/*
 * Remove margin from the last-child
 */
.bdt-overlay > :last-child {
  margin-bottom: 0;
}
/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.bdt-overlay-default {
  background: rgba(0, 0, 0, 0.5);
}
/*
 * Primary
 */
.bdt-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}
/* ========================================================================
   Component: Article
 ========================================================================== */
.bdt-article {
  display: flow-root;
}
/*
 * Remove margin from the last-child
 */
.bdt-article > :last-child {
  margin-bottom: 0;
}
/* Adjacent sibling
 ========================================================================== */
.bdt-article + .bdt-article {
  margin-top: 70px;
}
/* Title
 ========================================================================== */
.bdt-article-title {
  font-size: 2.23125rem;
  line-height: 1.2;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-article-title {
    font-size: 2.625rem;
  }
}
/* Meta
 ========================================================================== */
.bdt-article-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sections
 ========================================================================== */
.bdt-comment-body {
  display: flow-root;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.bdt-comment-header {
  display: flow-root;
  margin-bottom: 20px;
}
/*
 * Remove margin from the last-child
 */
.bdt-comment-body > :last-child,
.bdt-comment-header > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.bdt-comment-title {
  font-size: 1.25rem;
  line-height: 1.4;
}
/* Meta
 ========================================================================== */
.bdt-comment-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
/* Avatar
 ========================================================================== */
/* List
 ========================================================================== */
.bdt-comment-list {
  padding: 0;
  list-style: none;
}
/* Adjacent siblings */
.bdt-comment-list > :nth-child(n+2) {
  margin-top: 70px;
}
/*
 * Sublists
 * Note: General sibling selector allows reply block between comment and sublist
 */
.bdt-comment-list .bdt-comment ~ ul {
  margin: 70px 0 0 0;
  padding-left: 30px;
  list-style: none;
}
/* Tablet and bigger */
@media (min-width: 960px) {
  .bdt-comment-list .bdt-comment ~ ul {
    padding-left: 100px;
  }
}
/* Adjacent siblings */
.bdt-comment-list .bdt-comment ~ ul > :nth-child(n+2) {
  margin-top: 70px;
}
/* Style modifier
 ========================================================================== */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Reset `form`
 */
.bdt-search {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  margin: 0;
}
/* Input
 ========================================================================== */
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.bdt-search-input::-webkit-search-cancel-button,
.bdt-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.bdt-search-input::-moz-placeholder {
  opacity: 1;
}
/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers
 * 5. Show the overflow in Edge.
 * 6. Remove default style in iOS.
 * 7. Vertical alignment
 * 8. Take the full container width
 * 9. Style
 */
.bdt-search-input {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  /* 5 */
  overflow: visible;
  /* 6 */
  -webkit-appearance: none;
  /* 7 */
  vertical-align: middle;
  /* 8 */
  width: 100%;
  /* 9 */
  border: none;
  color: #666;
}
.bdt-search-input:focus {
  outline: none;
}
/* Placeholder */
.bdt-search-input::placeholder {
  color: #999;
}
/* Icon (Adopts `bdt-icon`)
 ========================================================================== */
/*
 * Position above input
 * 1. Set position
 * 2. Center icon vertically and horizontally
 * 3. Style
 */
.bdt-search .bdt-search-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: #999;
}
/*
 * Required for `a`.
 */
.bdt-search .bdt-search-icon:hover {
  color: #999;
}
/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.bdt-search .bdt-search-icon:not(a):not(button):not(input) {
  pointer-events: none;
}
/*
 * Position modifier
 */
.bdt-search .bdt-search-icon-flip {
  right: 0;
  left: auto;
}
/* Default modifier
 ========================================================================== */
.bdt-search-default {
  width: 240px;
}
/*
 * Input
 */
.bdt-search-default .bdt-search-input {
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background: #f8f8f8;
}
/* Focus */
.bdt-search-default .bdt-search-input:focus {
  background-color: #ebebeb;
}
/*
 * Icon
 */
.bdt-search-default .bdt-search-icon {
  width: 40px;
}
.bdt-search-default .bdt-search-icon:not(.bdt-search-icon-flip) ~ .bdt-search-input {
  padding-left: 40px;
}
.bdt-search-default .bdt-search-icon-flip ~ .bdt-search-input {
  padding-right: 40px;
}
/* Navbar modifier
 ========================================================================== */
.bdt-search-navbar {
  width: 400px;
}
/*
 * Input
 */
.bdt-search-navbar .bdt-search-input {
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}
/* Focus */
/*
 * Icon
 */
.bdt-search-navbar .bdt-search-icon {
  width: 40px;
}
.bdt-search-navbar .bdt-search-icon:not(.bdt-search-icon-flip) ~ .bdt-search-input {
  padding-left: 40px;
}
.bdt-search-navbar .bdt-search-icon-flip ~ .bdt-search-input {
  padding-right: 40px;
}
/* Large modifier
 ========================================================================== */
.bdt-search-large {
  width: 500px;
}
/*
 * Input
 */
.bdt-search-large .bdt-search-input {
  height: 80px;
  background: transparent;
  font-size: 2.625rem;
}
/* Focus */
/*
 * Icon
 */
.bdt-search-large .bdt-search-icon {
  width: 80px;
}
.bdt-search-large .bdt-search-icon:not(.bdt-search-icon-flip) ~ .bdt-search-input {
  padding-left: 80px;
}
.bdt-search-large .bdt-search-icon-flip ~ .bdt-search-input {
  padding-right: 80px;
}
/* Toggle
 ========================================================================== */
.bdt-search-toggle {
  color: #999;
}
/* Hover */
.bdt-search-toggle:hover {
  color: #666;
}
/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 */
.bdt-nav,
.bdt-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
* 1. Center content vertically, e.g. an icon
* 2. Imitate white space gap when using flexbox
* 3. Reset link
* 4. Space is allocated solely based on content dimensions: 0 0 auto
 */
.bdt-nav li > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3*/
  text-decoration: none;
}
/* 4 */
.bdt-nav li > a > * {
  flex: none;
}
/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.bdt-nav > li > a {
  padding: 5px 0;
}
/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.bdt-nav-sub {
  padding: 5px 0 5px 15px;
}
/*
 * Level 3 and deeper
 */
.bdt-nav-sub ul {
  padding-left: 15px;
}
/*
 * Items
 */
.bdt-nav-sub a {
  padding: 2px 0;
}
/* Parent icon modifier
 ========================================================================== */
.bdt-nav-parent-icon > .bdt-parent > a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  margin-left: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.bdt-nav-parent-icon > .bdt-parent.bdt-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}
/* Header
 ========================================================================== */
.bdt-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.bdt-nav-header:not(:first-child) {
  margin-top: 20px;
}
/* Divider
 ========================================================================== */
.bdt-nav > .bdt-nav-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
/*
 * Items
 */
.bdt-nav-default > li > a {
  color: #999;
}
/* Hover */
.bdt-nav-default > li > a:hover {
  color: #666;
}
/* Active */
.bdt-nav-default > li.bdt-active > a {
  color: #333;
}
/*
 * Header
 */
.bdt-nav-default .bdt-nav-header {
  color: #333;
}
/*
 * Divider
 */
.bdt-nav-default .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Sublists
 */
.bdt-nav-default .bdt-nav-sub a {
  color: #999;
}
.bdt-nav-default .bdt-nav-sub a:hover {
  color: #666;
}
.bdt-nav-default .bdt-nav-sub li.bdt-active > a {
  color: #333;
}
/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.bdt-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}
/* Hover */
.bdt-nav-primary > li > a:hover {
  color: #666;
}
/* Active */
.bdt-nav-primary > li.bdt-active > a {
  color: #333;
}
/*
 * Header
 */
.bdt-nav-primary .bdt-nav-header {
  color: #333;
}
/*
 * Divider
 */
.bdt-nav-primary .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Sublists
 */
.bdt-nav-primary .bdt-nav-sub a {
  color: #999;
}
.bdt-nav-primary .bdt-nav-sub a:hover {
  color: #666;
}
.bdt-nav-primary .bdt-nav-sub li.bdt-active > a {
  color: #333;
}
/* Alignment modifier
 ========================================================================== */
/*
 * 1. Center header
 * 2. Center items
 */
/* 1 */
.bdt-nav-center {
  text-align: center;
}
/* 2 */
.bdt-nav-center li > a {
  justify-content: center;
}
/* Sublists */
.bdt-nav-center .bdt-nav-sub,
.bdt-nav-center .bdt-nav-sub ul {
  padding-left: 0;
}
/* Parent icon modifier  */
.bdt-nav-center.bdt-nav-parent-icon > .bdt-parent > a::after {
  margin-left: 0;
}
/* Style modifier
 ========================================================================== */
.bdt-nav.bdt-nav-divider > :not(.bdt-nav-divider) + :not(.bdt-nav-header, .bdt-nav-divider) {
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.bdt-navbar {
  display: flex;
  /* 1 */
  position: relative;
}
/* Container
 ========================================================================== */
.bdt-navbar-container:not(.bdt-navbar-transparent) {
  background: #f8f8f8;
}
/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 * 2. Note: IE 11 requires an extra `div` which affects the center selector
 */
.bdt-navbar-left,
.bdt-navbar-right,
.bdt-navbar-center,
.bdt-navbar-center-left > *,
.bdt-navbar-center-right > * {
  display: flex;
  /* 1 */
  align-items: center;
}
/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Fix text wrapping if content is larger than 50% of the container.
 * 3. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 4. Align sub groups for centered navbar
 */
.bdt-navbar-right {
  margin-left: auto;
}
.bdt-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}
.bdt-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 2 */
  width: max-content;
  box-sizing: border-box;
  /* 3 */
  z-index: 990;
}
/* 4 */
.bdt-navbar-center-left,
.bdt-navbar-center-right {
  position: absolute;
  top: 0;
}
.bdt-navbar-center-left {
  right: 100%;
}
.bdt-navbar-center-right {
  left: 100%;
}
[class*='bdt-navbar-center-'] {
  width: max-content;
  box-sizing: border-box;
}
/* Nav
 ========================================================================== */
/*
 * 1. Reset list
 */
.bdt-navbar-nav {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Allow items to wrap into the next line
 * Only not `absolute` positioned groups
 */
.bdt-navbar-left,
.bdt-navbar-right,
.bdt-navbar-center:only-child {
  flex-wrap: wrap;
}
/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Imitate white space gap when using flexbox
 * 3. Dimensions
 * 4. Style
 * 5. Required for `a`
 */
.bdt-navbar-nav > li > a,
.bdt-navbar-item,
.bdt-navbar-toggle {
  /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  box-sizing: border-box;
  min-height: 80px;
  padding: 0 15px;
  /* 4 */
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 5 */
  text-decoration: none;
}
/*
 * Nav items
 */
.bdt-navbar-nav > li > a {
  color: #999;
}
/*
 * Hover
 * Apply hover style also if dropdown is opened
 */
.bdt-navbar-nav > li:hover > a,
.bdt-navbar-nav > li > a[aria-expanded="true"] {
  color: #666;
}
/* OnClick */
.bdt-navbar-nav > li > a:active {
  color: #333;
}
/* Active */
.bdt-navbar-nav > li.bdt-active > a {
  color: #333;
}
/* Item
 ========================================================================== */
.bdt-navbar-item {
  color: #666;
}
/*
 * Remove margin from the last-child
 */
.bdt-navbar-item > :last-child {
  margin-bottom: 0;
}
/* Toggle
 ========================================================================== */
.bdt-navbar-toggle {
  color: #999;
}
.bdt-navbar-toggle:hover,
.bdt-navbar-toggle[aria-expanded="true"] {
  color: #666;
  text-decoration: none;
}
/*
 * Icon
 * Adopts `bdt-icon`
 */
/* Hover */
/* Subtitle
 ========================================================================== */
.bdt-navbar-subtitle {
  font-size: 0.875rem;
}
/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `bdt-dropdown`
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.bdt-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #666;
}
/* Show */
.bdt-navbar-dropdown.bdt-open {
  display: block;
}
/*
 * Direction / Alignment modifiers
 */
/* Direction */
[class*='bdt-navbar-dropdown-top'] {
  margin-top: 0;
}
[class*='bdt-navbar-dropdown-bottom'] {
  margin-top: 0;
}
[class*='bdt-navbar-dropdown-left'] {
  margin-left: 0;
}
[class*='bdt-navbar-dropdown-right'] {
  margin-left: 0;
}
/*
 * Grid
 * Adopts `bdt-grid`
 */
/* Gutter Horizontal */
.bdt-navbar-dropdown-grid {
  margin-left: -30px;
}
.bdt-navbar-dropdown-grid > * {
  padding-left: 30px;
}
/* Gutter Vertical */
.bdt-navbar-dropdown-grid > .bdt-grid-margin {
  margin-top: 30px;
}
/* Stack */
.bdt-navbar-dropdown-stack .bdt-navbar-dropdown-grid > * {
  width: 100% !important;
}
/*
 * Width modifier
 */
.bdt-navbar-dropdown-width-2:not(.bdt-navbar-dropdown-stack) {
  width: 400px;
}
.bdt-navbar-dropdown-width-3:not(.bdt-navbar-dropdown-stack) {
  width: 600px;
}
.bdt-navbar-dropdown-width-4:not(.bdt-navbar-dropdown-stack) {
  width: 800px;
}
.bdt-navbar-dropdown-width-5:not(.bdt-navbar-dropdown-stack) {
  width: 1000px;
}
/*
 * Dropbar modifier
 */
.bdt-navbar-dropdown-dropbar {
  margin-top: 0;
  margin-bottom: 0;
}
/* Dropdown Nav
 * Adopts `bdt-nav`
 ========================================================================== */
/*
 * Items
 */
.bdt-navbar-dropdown-nav > li > a {
  color: #999;
}
/* Hover */
.bdt-navbar-dropdown-nav > li > a:hover {
  color: #666;
}
/* Active */
.bdt-navbar-dropdown-nav > li.bdt-active > a {
  color: #333;
}
/*
 * Header
 */
.bdt-navbar-dropdown-nav .bdt-nav-header {
  color: #333;
}
/*
 * Divider
 */
.bdt-navbar-dropdown-nav .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Sublists
 */
.bdt-navbar-dropdown-nav .bdt-nav-sub a {
  color: #999;
}
.bdt-navbar-dropdown-nav .bdt-nav-sub a:hover {
  color: #666;
}
.bdt-navbar-dropdown-nav .bdt-nav-sub li.bdt-active > a {
  color: #333;
}
/* Dropbar
 ========================================================================== */
.bdt-navbar-dropbar {
  background: #f8f8f8;
}
/*
 * Slide modifier
 */
.bdt-navbar-dropbar-slide {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Center items vertically if they have a different height
 * 3. Gutter
 * 4. Reset list
 */
.bdt-subnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  align-items: center;
  /* 3 */
  margin-left: -20px;
  /* 4 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.bdt-subnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * Using `:first-child` instead of `a` to support `span` elements for text
 * 1. Center content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Style
 */
.bdt-subnav > * > :first-child {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  color: #999;
}
/* Hover */
.bdt-subnav > * > a:hover {
  color: #666;
  text-decoration: none;
}
/* Active */
.bdt-subnav > .bdt-active > a {
  color: #333;
}
/* Divider modifier
 ========================================================================== */
/*
 * Set gutter
 */
.bdt-subnav-divider {
  margin-left: -41px;
}
/*
 * Align items and divider vertically
 */
.bdt-subnav-divider > * {
  display: flex;
  align-items: center;
}
/*
 * Divider
 * 1. `nth-child` makes it also work without JS if it's only one row
 */
.bdt-subnav-divider > ::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid transparent;
}
/* 1 */
.bdt-subnav-divider > :nth-child(n+2):not(.bdt-first-column)::before {
  border-left-color: rgba(214, 214, 214, 0.49);
}
/* Pill modifier
 ========================================================================== */
.bdt-subnav-pill > * > :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}
/* Hover */
.bdt-subnav-pill > * > a:hover {
  background-color: #f8f8f8;
  color: #666;
}
/* OnClick */
.bdt-subnav-pill > * > a:active {
  background-color: #f8f8f8;
  color: #666;
}
/* Active */
.bdt-subnav-pill > .bdt-active > a {
  background-color: #1e87f0;
  color: #fff;
}
/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.bdt-subnav > .bdt-disabled > a {
  color: #999;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * Reset list
 */
.bdt-breadcrumb {
  padding: 0;
  list-style: none;
}
/*
 * 1. Doesn't generate any box and replaced by child boxes
 */
.bdt-breadcrumb > * {
  display: contents;
}
/* Items
 ========================================================================== */
.bdt-breadcrumb > * > * {
  font-size: 0.875rem;
  color: #999;
}
/* Hover */
.bdt-breadcrumb > * > :hover {
  color: #666;
  text-decoration: none;
}
/* Disabled */
/* Active */
.bdt-breadcrumb > :last-child > span,
.bdt-breadcrumb > :last-child > a:not([href]) {
  color: #666;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 * 1. Remove space between inline block elements.
 * 2. Style
 */
.bdt-breadcrumb > :nth-child(n+2):not(.bdt-first-column)::before {
  content: "/";
  display: inline-block;
  /* 1 */
  margin: 0 20px 0 calc(20px - 4px);
  /* 2 */
  font-size: 0.875rem;
  color: #999;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.bdt-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: 0;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.bdt-pagination > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 0;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.bdt-pagination > * > * {
  /* 1 */
  display: block;
  /* 2 */
  padding: 5px 10px;
  color: #999;
}
/* Hover */
.bdt-pagination > * > :hover {
  color: #666;
  text-decoration: none;
}
/* Active */
.bdt-pagination > .bdt-active > * {
  color: #666;
}
/* Disabled */
.bdt-pagination > .bdt-disabled > * {
  color: #999;
}
/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.bdt-tab {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.bdt-tab > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center content vertically, e.g. an icon
 * 2. Imitate white space gap when using flexbox
 * 3. Center content if a width is set
 * 4. Style
 */
.bdt-tab > * > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  justify-content: center;
  /* 4 */
  padding: 10px 15px;
  color: #999;
}
/* Hover */
.bdt-tab > * > a:hover {
  color: #666;
  text-decoration: none;
}
/* Active */
.bdt-tab > .bdt-active > a {
  color: #333;
}
/* Disabled */
.bdt-tab > .bdt-disabled > a {
  color: #999;
}
/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
/*
 * Left + Right
 * 1. Reset Gutter
 */
.bdt-tab-left,
.bdt-tab-right {
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}
/* 1 */
.bdt-tab-left > *,
.bdt-tab-right > * {
  padding-left: 0;
}
.bdt-tab-left > * > a {
  justify-content: left;
}
.bdt-tab-right > * > a {
  justify-content: left;
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `bdt-icon`
 */
.bdt-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
}
/* Hover */
.bdt-slidenav:hover {
  color: rgba(102, 102, 102, 0.9);
}
/* OnClick */
.bdt-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}
/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.bdt-slidenav-large {
  padding: 10px 10px;
}
/* Container
 ========================================================================== */
.bdt-slidenav-container {
  display: flex;
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.bdt-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.bdt-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.bdt-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.2);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
/* Hover */
.bdt-dotnav > * > :hover {
  background-color: rgba(102, 102, 102, 0.6);
}
/* OnClick */
.bdt-dotnav > * > :active {
  background-color: rgba(102, 102, 102, 0.2);
}
/* Active */
.bdt-dotnav > .bdt-active > * {
  background-color: rgba(102, 102, 102, 0.6);
}
/* Modifier: 'bdt-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.bdt-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}
/* 2 */
.bdt-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}
/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.bdt-thumbnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.bdt-thumbnav > * {
  /* 1 */
  padding-left: 15px;
}
/* Items
 ========================================================================== */
/*
 * Items
 */
.bdt-thumbnav > * > * {
  display: inline-block;
}
/* Hover */
/* Active */
/* Modifier: 'bdt-thumbnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.bdt-thumbnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}
/* 2 */
.bdt-thumbnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.bdt-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
.bdt-accordion > :nth-child(n+2) {
  margin-top: 20px;
}
/* Title
 ========================================================================== */
.bdt-accordion-title {
  display: block;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #333;
}
/* Hover */
.bdt-accordion-title:hover {
  color: #666;
  text-decoration: none;
}
/* Content
 ========================================================================== */
.bdt-accordion-content {
  display: flow-root;
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.bdt-accordion-content > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.bdt-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}
/* Show */
.bdt-drop.bdt-open {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='bdt-drop-top'] {
  margin-top: -20px;
}
[class*='bdt-drop-bottom'] {
  margin-top: 20px;
}
[class*='bdt-drop-left'] {
  margin-left: -20px;
}
[class*='bdt-drop-right'] {
  margin-left: 20px;
}
/* Grid modifiers
 ========================================================================== */
.bdt-drop-stack .bdt-drop-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.bdt-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #666;
}
/* Show */
.bdt-dropdown.bdt-open {
  display: block;
}
/* Nav
 * Adopts `bdt-nav`
 ========================================================================== */
.bdt-dropdown-nav {
  white-space: nowrap;
}
/*
 * Items
 */
.bdt-dropdown-nav > li > a {
  color: #999;
}
/* Hover + Active */
.bdt-dropdown-nav > li > a:hover,
.bdt-dropdown-nav > li.bdt-active > a {
  color: #666;
}
/*
 * Header
 */
.bdt-dropdown-nav .bdt-nav-header {
  color: #333;
}
/*
 * Divider
 */
.bdt-dropdown-nav .bdt-nav-divider {
  border-top: 1px solid rgba(214, 214, 214, 0.49);
}
/*
 * Sublists
 */
.bdt-dropdown-nav .bdt-nav-sub a {
  color: #999;
}
.bdt-dropdown-nav .bdt-nav-sub a:hover,
.bdt-dropdown-nav .bdt-nav-sub li.bdt-active > a {
  color: #666;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='bdt-dropdown-top'] {
  margin-top: -10px;
}
[class*='bdt-dropdown-bottom'] {
  margin-top: 10px;
}
[class*='bdt-dropdown-left'] {
  margin-left: -10px;
}
[class*='bdt-dropdown-right'] {
  margin-left: 10px;
}
/* Grid modifiers
 ========================================================================== */
.bdt-dropdown-stack .bdt-dropdown-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.bdt-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-modal {
    padding: 50px 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.bdt-modal.bdt-open {
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.bdt-modal-page {
  overflow: hidden;
}
/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. `!important` is needed to overwrite `bdt-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.bdt-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: 100% !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
  border-radius: 3px;
}
/*
 * Open
 */
.bdt-open > .bdt-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}
/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.bdt-modal-container .bdt-modal-dialog {
  width: 1200px;
}
/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.bdt-modal-full {
  padding: 0;
  background: none;
}
/* 2 */
.bdt-modal-full .bdt-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}
/* Sections
 ========================================================================== */
.bdt-modal-body {
  display: flow-root;
  padding: 30px 30px;
}
.bdt-modal-header {
  display: flow-root;
  padding: 15px 30px;
  background: #f8f8f8;
}
.bdt-modal-footer {
  display: flow-root;
  padding: 15px 30px;
  background: #f8f8f8;
}
/*
 * Remove margin from the last-child
 */
.bdt-modal-body > :last-child,
.bdt-modal-header > :last-child,
.bdt-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.bdt-modal-title {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}
/* Close
 * Adopts `bdt-close`
 ========================================================================== */
[class*='bdt-modal-close-'] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}
/*
 * Remove margin from adjacent element
 */
[class*='bdt-modal-close-']:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.bdt-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: #ffffff;
}
.bdt-modal-close-outside:hover {
  color: #fff;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* 1 */
  .bdt-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}
/*
 * Full
 */
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 * 7. Prevent cancellation of pointer events while dragging
 */
.bdt-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
  /* 7 */
  touch-action: pinch-zoom;
}
/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.bdt-lightbox.bdt-open {
  display: block;
  /* 2 */
  opacity: 1;
}
/*
 * Focus
 */
.bdt-lightbox :focus {
  outline-color: rgba(255, 255, 255, 0.7);
}
.bdt-lightbox :focus-visible {
  outline-color: rgba(255, 255, 255, 0.7);
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.bdt-lightbox-page {
  overflow: hidden;
}
/* Item
 ========================================================================== */
/*
 * 1. Center child within the viewport
 * 2. Not visible by default
 * 3. Color needed for spinner icon
 * 4. Optimize animation
 * 5. Responsiveness
 *    Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
 */
.bdt-lightbox-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}
/* 5 */
.bdt-lightbox-items > * > * {
  max-width: 100vw;
  max-height: 100vh;
}
.bdt-lightbox-items > * > :not(iframe) {
  width: auto;
  height: auto;
}
.bdt-lightbox-items > .bdt-active {
  display: flex;
}
/* Toolbar
 ========================================================================== */
.bdt-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}
.bdt-lightbox-toolbar > * {
  color: rgba(255, 255, 255, 0.7);
}
/* Toolbar Icon (Close)
 ========================================================================== */
.bdt-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}
/*
 * Hover
 */
.bdt-lightbox-toolbar-icon:hover {
  color: #fff;
}
/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.bdt-lightbox-button {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/* Hover */
.bdt-lightbox-button:hover {
  color: #fff;
}
/* OnClick */
/* Caption
 ========================================================================== */
.bdt-lightbox-caption:empty {
  display: none;
}
/* Iframe
 ========================================================================== */
.bdt-lightbox-iframe {
  width: 80%;
  height: 80%;
}
/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.bdt-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Items
 ========================================================================== */
/*
 * 1. Create position and stacking context
 * 2. Reset list
 * 3. Clip child elements
 * 4. Prevent displaying the callout information on iOS.
 * 5. Disable horizontal panning gestures
 */
.bdt-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
  /* 5 */
  touch-action: pan-y;
}
/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `bdt-cover`
 * 4. Optimize animation
 */
.bdt-slideshow-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
}
/*
 * Hide not active items
 */
.bdt-slideshow-items > :not(.bdt-active) {
  display: none;
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.bdt-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * Clip child elements
 */
.bdt-slider-container {
  overflow: hidden;
}
/*
 * Widen container to prevent box-shadows from clipping, `large-box-shadow`
 */
.bdt-slider-container-offset {
  margin: -11px -25px -39px -25px;
  padding: 11px 25px 39px 25px;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 * 3. Disable horizontal panning gestures
 */
.bdt-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.bdt-slider-items:not(.bdt-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}
.bdt-slider-items.bdt-grid {
  flex-wrap: nowrap;
}
/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 *    `max-width` needed to keep image responsiveness and prevent content overflow
 * 3. Create position context
 */
.bdt-slider-items > * {
  /* 1 */
  flex: none;
  max-width: 100%;
  /* 3 */
  position: relative;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * Create position context so it's t the same like when fixed.
 */
.bdt-sticky {
  position: relative;
}
/*
 * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
 */
.bdt-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*
 * Faster animations
 */
.bdt-sticky[class*='bdt-animation-'] {
  animation-duration: 0.2s;
}
.bdt-sticky.bdt-animation-reverse {
  animation-duration: 0.2s;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.bdt-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
/*
 * Flip modifier
 */
.bdt-offcanvas-flip .bdt-offcanvas {
  right: 0;
  left: auto;
}
/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 */
.bdt-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: -270px;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-offcanvas-bar {
    left: -350px;
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.bdt-offcanvas-flip .bdt-offcanvas-bar {
  left: auto;
  right: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-offcanvas-flip .bdt-offcanvas-bar {
    right: -350px;
  }
}
/*
 * Open
 */
.bdt-open > .bdt-offcanvas-bar {
  left: 0;
}
.bdt-offcanvas-flip .bdt-open > .bdt-offcanvas-bar {
  left: auto;
  right: 0;
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.bdt-offcanvas-bar-animation {
  transition: left 0.3s ease-out;
}
.bdt-offcanvas-flip .bdt-offcanvas-bar-animation {
  transition-property: right;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset position
 */
.bdt-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}
.bdt-offcanvas-reveal .bdt-offcanvas-bar {
  /* 4 */
  left: 0;
}
.bdt-offcanvas-flip .bdt-offcanvas-reveal .bdt-offcanvas-bar {
  /* 4 */
  left: auto;
  right: 0;
}
.bdt-open > .bdt-offcanvas-reveal {
  width: 270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-open > .bdt-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.bdt-offcanvas-flip .bdt-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `bdt-close`
 ========================================================================== */
.bdt-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}
/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.bdt-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.bdt-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}
.bdt-offcanvas-overlay.bdt-open::before {
  opacity: 1;
}
/* Prevent scrolling
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.bdt-offcanvas-page,
.bdt-offcanvas-container {
  overflow-x: hidden;
}
/* Container
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * 1. Provide a fixed width and prevent shrinking
 */
.bdt-offcanvas-container {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  box-sizing: border-box;
  width: 100%;
}
/*
 * Activate slide-out animation
 */
:not(.bdt-offcanvas-flip).bdt-offcanvas-container-animation {
  left: 270px;
}
.bdt-offcanvas-flip.bdt-offcanvas-container-animation {
  left: -270px;
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.bdt-offcanvas-flip).bdt-offcanvas-container-animation {
    left: 350px;
  }
  .bdt-offcanvas-flip.bdt-offcanvas-container-animation {
    left: -350px;
  }
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.bdt-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.bdt-switcher > :not(.bdt-active) {
  display: none;
}
/*
 * Remove margin from the last-child
 */
.bdt-switcher > * > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Leader
 ========================================================================== */
.bdt-leader {
  overflow: hidden;
}
/*
 * 1. Place element in text flow
 * 2. Never break into a new line
 * 3. Get a string back with as many repeating characters to fill the container
 * 4. Prevent wrapping. Overflowing characters will be clipped by the container
 */
.bdt-leader-fill::after {
  /* 1 */
  display: inline-block;
  margin-left: 15px;
  /* 2 */
  width: 0;
  /* 3 */
  content: attr(data-fill);
  /* 4 */
  white-space: nowrap;
}
/*
 * Hide if media does not match
 */
.bdt-leader-fill.bdt-leader-hide::after {
  display: none;
}
/*
 * Pass fill character to JS
 */
:root {
  --bdt-leader-fill-content: '.';
}
/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.bdt-iconnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}
/*
 * Space is allocated based on content dimensions, but shrinks: 0 1 auto
 * 1. Gutter
 */
.bdt-iconnav > * {
  /* 1 */
  padding-left: 10px;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center content vertically if there is still some text
 * 2. Imitate white space gap when using flexbox
 * 3. Force text not to affect item height
 * 4. Style
 * 5. Required for `a` if there is still some text
 */
.bdt-iconnav > * > a {
  /* 1 */
  display: flex;
  align-items: center;
  /* 2 */
  column-gap: 0.25em;
  /* 3 */
  line-height: 0;
  /* 4 */
  color: #999;
  /* 5 */
  text-decoration: none;
}
/* Hover */
.bdt-iconnav > * > a:hover {
  color: #666;
}
/* Active */
.bdt-iconnav > .bdt-active > a {
  color: #666;
}
/* Modifier: 'bdt-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.bdt-iconnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}
/* 2 */
.bdt-iconnav-vertical > * {
  padding-left: 0;
  padding-top: 10px;
}
/* ========================================================================
   Component: Notification
 ========================================================================== */
/*
 * 1. Set position
 * 2. Dimensions
 */
.bdt-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  box-sizing: border-box;
  width: 450px;
}
/* Position modifiers
========================================================================== */
.bdt-notification-top-right,
.bdt-notification-bottom-right {
  left: auto;
  right: 10px;
}
.bdt-notification-top-center,
.bdt-notification-bottom-center {
  left: 50%;
  margin-left: -225px;
}
.bdt-notification-bottom-left,
.bdt-notification-bottom-right,
.bdt-notification-bottom-center {
  top: auto;
  bottom: 10px;
}
/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .bdt-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}
/* Message
========================================================================== */
.bdt-notification-message {
  position: relative;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}
* + .bdt-notification-message {
  margin-top: 10px;
}
/* Close
 * Adopts `bdt-close`
 ========================================================================== */
.bdt-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}
.bdt-notification-message:hover .bdt-notification-close {
  display: block;
}
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.bdt-notification-message-primary {
  color: #1e87f0;
}
/*
 * Success
 */
.bdt-notification-message-success {
  color: #32d296;
}
/*
 * Warning
 */
.bdt-notification-message-warning {
  color: #faa05a;
}
/*
 * Danger
 */
.bdt-notification-message-danger {
  color: #f0506e;
}
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Remove tooltip from document flow to keep the UIkit container from changing its size when injected into the document initially
 * 4. Dimensions
 * 5. Style
 */
.bdt-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  top: 0;
  /* 4 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 5 */
  background: #666;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}
/* Show */
.bdt-tooltip.bdt-active {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='bdt-tooltip-top'] {
  margin-top: -10px;
}
[class*='bdt-tooltip-bottom'] {
  margin-top: 10px;
}
[class*='bdt-tooltip-left'] {
  margin-left: -10px;
}
[class*='bdt-tooltip-right'] {
  margin-left: 10px;
}
/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.bdt-placeholder {
  margin-bottom: 20px;
  padding: 30px 30px;
  background: #f8f8f8;
}
/* Add margin if adjacent element */
* + .bdt-placeholder {
  margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.bdt-placeholder > :last-child {
  margin-bottom: 0;
}
/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Add the correct vertical alignment in all browsers.
 * 2. Behave like a block element.
 * 3. Remove borders in Firefox.
 * 4. Remove default style in Chrome, Safari and Edge.
 * 5. Style
 */
.bdt-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  display: block;
  width: 100%;
  /* 3 */
  border: 0;
  /* 4 */
  background-color: #f8f8f8;
  /* 5 */
  margin-bottom: 20px;
  height: 15px;
}
/* Add margin if adjacent element */
* + .bdt-progress {
  margin-top: 20px;
}
/*
 * Show background color set on `bdt-progress` in Chrome, Safari and Edge.
 */
.bdt-progress::-webkit-progress-bar {
  background-color: transparent;
}
/*
 * Progress Bar
 * 1. Transitions don't work on `::-moz-progress-bar` pseudo element in Firefox yet.
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=662351
 */
.bdt-progress::-webkit-progress-value {
  background-color: #1e87f0;
  transition: width 0.6s ease;
}
.bdt-progress::-moz-progress-bar {
  background-color: #1e87f0;
  /* 1 */
  transition: width 0.6s ease;
}
/* ========================================================================
   Component: Sortable
 ========================================================================== */
.bdt-sortable {
  position: relative;
}
/*
 * Remove margin from the last-child
 */
.bdt-sortable > :last-child {
  margin-bottom: 0;
}
/* Drag
 ========================================================================== */
.bdt-sortable-drag {
  position: fixed !important;
  z-index: 1050 !important;
  pointer-events: none;
}
/* Placeholder
 ========================================================================== */
.bdt-sortable-placeholder {
  opacity: 0;
  pointer-events: none;
}
/* Empty modifier
 ========================================================================== */
.bdt-sortable-empty {
  min-height: 50px;
}
/* Handle
 ========================================================================== */
/* Hover */
.bdt-sortable-handle:hover {
  cursor: move;
}
/* ========================================================================
   Component: Countdown
 ========================================================================== */
/* Item
 ========================================================================== */
/* Number
 ========================================================================== */
/*
 * 1. Make numbers all of the same size to prevent jumping. Must be supported by the font.
 * 2. Style
 */
.bdt-countdown-number {
  /* 1 */
  font-variant-numeric: tabular-nums;
  /* 2 */
  font-size: 2rem;
  line-height: 0.8;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-countdown-number {
    font-size: 4rem;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-countdown-number {
    font-size: 6rem;
  }
}
/* Separator
 ========================================================================== */
.bdt-countdown-separator {
  font-size: 1rem;
  line-height: 1.6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-countdown-separator {
    font-size: 2rem;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-countdown-separator {
    font-size: 3rem;
  }
}
/* Label
 ========================================================================== */
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='bdt-animation-'] {
  animation: 0.5s ease-out both;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.bdt-animation-fade {
  animation-name: bdt-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}
/*
 * Scale
 */
.bdt-animation-scale-up {
  animation-name: bdt-fade, bdt-scale-up;
}
.bdt-animation-scale-down {
  animation-name: bdt-fade, bdt-scale-down;
}
/*
 * Slide
 */
.bdt-animation-slide-top {
  animation-name: bdt-fade, bdt-slide-top;
}
.bdt-animation-slide-bottom {
  animation-name: bdt-fade, bdt-slide-bottom;
}
.bdt-animation-slide-left {
  animation-name: bdt-fade, bdt-slide-left;
}
.bdt-animation-slide-right {
  animation-name: bdt-fade, bdt-slide-right;
}
/*
 * Slide Small
 */
.bdt-animation-slide-top-small {
  animation-name: bdt-fade, bdt-slide-top-small;
}
.bdt-animation-slide-bottom-small {
  animation-name: bdt-fade, bdt-slide-bottom-small;
}
.bdt-animation-slide-left-small {
  animation-name: bdt-fade, bdt-slide-left-small;
}
.bdt-animation-slide-right-small {
  animation-name: bdt-fade, bdt-slide-right-small;
}
/*
 * Slide Medium
 */
.bdt-animation-slide-top-medium {
  animation-name: bdt-fade, bdt-slide-top-medium;
}
.bdt-animation-slide-bottom-medium {
  animation-name: bdt-fade, bdt-slide-bottom-medium;
}
.bdt-animation-slide-left-medium {
  animation-name: bdt-fade, bdt-slide-left-medium;
}
.bdt-animation-slide-right-medium {
  animation-name: bdt-fade, bdt-slide-right-medium;
}
/*
 * Kenburns
 */
.bdt-animation-kenburns {
  animation-name: bdt-kenburns;
  animation-duration: 15s;
}
/*
 * Shake
 */
.bdt-animation-shake {
  animation-name: bdt-shake;
}
/*
 * SVG Stroke
 * The `--bdt-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `bdt-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.bdt-animation-stroke {
  animation-name: bdt-stroke;
  animation-duration: 2s;
  stroke-dasharray: var(--bdt-animation-stroke);
}
/* Direction modifier
 ========================================================================== */
.bdt-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}
/* Duration modifier
 ========================================================================== */
.bdt-animation-fast {
  animation-duration: 0.1s;
}
/* Toggle animation based on the State of the Parent Element
 ========================================================================== */
.bdt-animation-toggle:not(:hover):not(:focus) [class*='bdt-animation-'] {
  animation-name: none;
}
/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes bdt-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Scale
 */
@keyframes bdt-scale-up {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bdt-scale-down {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*
 * Slide
 */
@keyframes bdt-slide-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bdt-slide-bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bdt-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bdt-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Small
 */
@keyframes bdt-slide-top-small {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bdt-slide-bottom-small {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bdt-slide-left-small {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bdt-slide-right-small {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Medium
 */
@keyframes bdt-slide-top-medium {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bdt-slide-bottom-medium {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bdt-slide-left-medium {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bdt-slide-right-medium {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Kenburns
 */
@keyframes bdt-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*
 * Shake
 */
@keyframes bdt-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*
 * Stroke
 */
@keyframes bdt-stroke {
  0% {
    stroke-dashoffset: var(--bdt-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*='bdt-child-width'] > * {
  box-sizing: border-box;
  width: 100%;
}
.bdt-child-width-1-2 > * {
  width: 50%;
}
.bdt-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}
.bdt-child-width-1-4 > * {
  width: 25%;
}
.bdt-child-width-1-5 > * {
  width: 20%;
}
.bdt-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}
.bdt-child-width-auto > * {
  width: auto;
}
/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.bdt-child-width-expand > :not([class*='bdt-width']) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-child-width-1-1\@s > * {
    width: 100%;
  }
  .bdt-child-width-1-2\@s > * {
    width: 50%;
  }
  .bdt-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-child-width-1-4\@s > * {
    width: 25%;
  }
  .bdt-child-width-1-5\@s > * {
    width: 20%;
  }
  .bdt-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-child-width-auto\@s > * {
    width: auto;
  }
  .bdt-child-width-expand\@s > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-child-width-1-1\@m > * {
    width: 100%;
  }
  .bdt-child-width-1-2\@m > * {
    width: 50%;
  }
  .bdt-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-child-width-1-4\@m > * {
    width: 25%;
  }
  .bdt-child-width-1-5\@m > * {
    width: 20%;
  }
  .bdt-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-child-width-auto\@m > * {
    width: auto;
  }
  .bdt-child-width-expand\@m > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-child-width-1-1\@l > * {
    width: 100%;
  }
  .bdt-child-width-1-2\@l > * {
    width: 50%;
  }
  .bdt-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-child-width-1-4\@l > * {
    width: 25%;
  }
  .bdt-child-width-1-5\@l > * {
    width: 20%;
  }
  .bdt-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-child-width-auto\@l > * {
    width: auto;
  }
  .bdt-child-width-expand\@l > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-child-width-1-1\@xl > * {
    width: 100%;
  }
  .bdt-child-width-1-2\@xl > * {
    width: 50%;
  }
  .bdt-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-child-width-1-4\@xl > * {
    width: 25%;
  }
  .bdt-child-width-1-5\@xl > * {
    width: 20%;
  }
  .bdt-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-child-width-auto\@xl > * {
    width: auto;
  }
  .bdt-child-width-expand\@xl > :not([class*='bdt-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*='bdt-width'] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}
/* Halves */
.bdt-width-1-2 {
  width: 50%;
}
/* Thirds */
.bdt-width-1-3 {
  width: calc(100% * 1 / 3.001);
}
.bdt-width-2-3 {
  width: calc(100% * 2 / 3.001);
}
/* Quarters */
.bdt-width-1-4 {
  width: 25%;
}
.bdt-width-3-4 {
  width: 75%;
}
/* Fifths */
.bdt-width-1-5 {
  width: 20%;
}
.bdt-width-2-5 {
  width: 40%;
}
.bdt-width-3-5 {
  width: 60%;
}
.bdt-width-4-5 {
  width: 80%;
}
/* Sixths */
.bdt-width-1-6 {
  width: calc(100% * 1 / 6.001);
}
.bdt-width-5-6 {
  width: calc(100% * 5 / 6.001);
}
/* Pixel */
.bdt-width-small {
  width: 150px;
}
.bdt-width-medium {
  width: 300px;
}
.bdt-width-large {
  width: 450px;
}
.bdt-width-xlarge {
  width: 600px;
}
.bdt-width-2xlarge {
  width: 750px;
}
/* Auto */
.bdt-width-auto {
  width: auto;
}
/* Expand */
.bdt-width-expand {
  flex: 1;
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .bdt-width-1-1\@s {
    width: 100%;
  }
  /* Halves */
  .bdt-width-1-2\@s {
    width: 50%;
  }
  /* Thirds */
  .bdt-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .bdt-width-1-4\@s {
    width: 25%;
  }
  .bdt-width-3-4\@s {
    width: 75%;
  }
  /* Fifths */
  .bdt-width-1-5\@s {
    width: 20%;
  }
  .bdt-width-2-5\@s {
    width: 40%;
  }
  .bdt-width-3-5\@s {
    width: 60%;
  }
  .bdt-width-4-5\@s {
    width: 80%;
  }
  /* Sixths */
  .bdt-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .bdt-width-small\@s {
    width: 150px;
  }
  .bdt-width-medium\@s {
    width: 300px;
  }
  .bdt-width-large\@s {
    width: 450px;
  }
  .bdt-width-xlarge\@s {
    width: 600px;
  }
  .bdt-width-2xlarge\@s {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .bdt-width-1-1\@m {
    width: 100%;
  }
  /* Halves */
  .bdt-width-1-2\@m {
    width: 50%;
  }
  /* Thirds */
  .bdt-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .bdt-width-1-4\@m {
    width: 25%;
  }
  .bdt-width-3-4\@m {
    width: 75%;
  }
  /* Fifths */
  .bdt-width-1-5\@m {
    width: 20%;
  }
  .bdt-width-2-5\@m {
    width: 40%;
  }
  .bdt-width-3-5\@m {
    width: 60%;
  }
  .bdt-width-4-5\@m {
    width: 80%;
  }
  /* Sixths */
  .bdt-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .bdt-width-small\@m {
    width: 150px;
  }
  .bdt-width-medium\@m {
    width: 300px;
  }
  .bdt-width-large\@m {
    width: 450px;
  }
  .bdt-width-xlarge\@m {
    width: 600px;
  }
  .bdt-width-2xlarge\@m {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .bdt-width-1-1\@l {
    width: 100%;
  }
  /* Halves */
  .bdt-width-1-2\@l {
    width: 50%;
  }
  /* Thirds */
  .bdt-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .bdt-width-1-4\@l {
    width: 25%;
  }
  .bdt-width-3-4\@l {
    width: 75%;
  }
  /* Fifths */
  .bdt-width-1-5\@l {
    width: 20%;
  }
  .bdt-width-2-5\@l {
    width: 40%;
  }
  .bdt-width-3-5\@l {
    width: 60%;
  }
  .bdt-width-4-5\@l {
    width: 80%;
  }
  /* Sixths */
  .bdt-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .bdt-width-small\@l {
    width: 150px;
  }
  .bdt-width-medium\@l {
    width: 300px;
  }
  .bdt-width-large\@l {
    width: 450px;
  }
  .bdt-width-xlarge\@l {
    width: 600px;
  }
  .bdt-width-2xlarge\@l {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .bdt-width-1-1\@xl {
    width: 100%;
  }
  /* Halves */
  .bdt-width-1-2\@xl {
    width: 50%;
  }
  /* Thirds */
  .bdt-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }
  .bdt-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .bdt-width-1-4\@xl {
    width: 25%;
  }
  .bdt-width-3-4\@xl {
    width: 75%;
  }
  /* Fifths */
  .bdt-width-1-5\@xl {
    width: 20%;
  }
  .bdt-width-2-5\@xl {
    width: 40%;
  }
  .bdt-width-3-5\@xl {
    width: 60%;
  }
  .bdt-width-4-5\@xl {
    width: 80%;
  }
  /* Sixths */
  .bdt-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }
  .bdt-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .bdt-width-small\@xl {
    width: 150px;
  }
  .bdt-width-medium\@xl {
    width: 300px;
  }
  .bdt-width-large\@xl {
    width: 450px;
  }
  .bdt-width-xlarge\@xl {
    width: 600px;
  }
  .bdt-width-2xlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .bdt-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .bdt-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
}
/* Intrinsic Widths
 ========================================================================== */
.bdt-width-max-content {
  width: max-content;
}
.bdt-width-min-content {
  width: min-content;
}
/* ========================================================================
   Component: Height
 ========================================================================== */
[class*='bdt-height'] {
  box-sizing: border-box;
}
/*
 * Only works if parent element has a height set
 */
.bdt-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.bdt-height-viewport {
  min-height: 100vh;
}
.bdt-height-viewport-2 {
  min-height: 200vh;
}
.bdt-height-viewport-3 {
  min-height: 300vh;
}
.bdt-height-viewport-4 {
  min-height: 400vh;
}
/*
 * Pixel
 * Useful for `overflow: auto`
 */
.bdt-height-small {
  height: 150px;
}
.bdt-height-medium {
  height: 300px;
}
.bdt-height-large {
  height: 450px;
}
.bdt-height-max-small {
  max-height: 150px;
}
.bdt-height-max-medium {
  max-height: 300px;
}
.bdt-height-max-large {
  max-height: 450px;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.bdt-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.bdt-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
/* Size modifiers
 ========================================================================== */
.bdt-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.bdt-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
.bdt-text-default {
  font-size: 16px;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.bdt-text-light {
  font-weight: 300;
}
.bdt-text-normal {
  font-weight: 400;
}
.bdt-text-bold {
  font-weight: 700;
}
.bdt-text-lighter {
  font-weight: lighter;
}
.bdt-text-bolder {
  font-weight: bolder;
}
/* Style modifier
 ========================================================================== */
.bdt-text-italic {
  font-style: italic;
}
/* Transform modifier
 ========================================================================== */
.bdt-text-capitalize {
  text-transform: capitalize !important;
}
.bdt-text-uppercase {
  text-transform: uppercase !important;
}
.bdt-text-lowercase {
  text-transform: lowercase !important;
}
/* Decoration modifier
 ========================================================================== */
.bdt-text-decoration-none {
  text-decoration: none !important;
}
/* Color modifiers
 ========================================================================== */
.bdt-text-muted {
  color: #999 !important;
}
.bdt-text-emphasis {
  color: #333 !important;
}
.bdt-text-primary {
  color: #1e87f0 !important;
}
.bdt-text-secondary {
  color: #222 !important;
}
.bdt-text-success {
  color: #32d296 !important;
}
.bdt-text-warning {
  color: #faa05a !important;
}
.bdt-text-danger {
  color: #f0506e !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in all browsers.
 * 2. Default color is set to transparent.
 * 3. Container fits the text
 * 4. Style
 */
.bdt-text-background {
  /* 1 */
  -webkit-background-clip: text;
  /* 2 */
  color: transparent !important;
  /* 3 */
  display: inline-block;
  /* 4 */
  background-color: #1e87f0;
}
/* Alignment modifiers
 ========================================================================== */
.bdt-text-left {
  text-align: left !important;
}
.bdt-text-right {
  text-align: right !important;
}
.bdt-text-center {
  text-align: center !important;
}
.bdt-text-justify {
  text-align: justify !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-text-left\@s {
    text-align: left !important;
  }
  .bdt-text-right\@s {
    text-align: right !important;
  }
  .bdt-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-text-left\@m {
    text-align: left !important;
  }
  .bdt-text-right\@m {
    text-align: right !important;
  }
  .bdt-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-text-left\@l {
    text-align: left !important;
  }
  .bdt-text-right\@l {
    text-align: right !important;
  }
  .bdt-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-text-left\@xl {
    text-align: left !important;
  }
  .bdt-text-right\@xl {
    text-align: right !important;
  }
  .bdt-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.bdt-text-top {
  vertical-align: top !important;
}
.bdt-text-middle {
  vertical-align: middle !important;
}
.bdt-text-bottom {
  vertical-align: bottom !important;
}
.bdt-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.bdt-text-nowrap {
  white-space: nowrap;
}
/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.bdt-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.bdt-text-truncate,
td.bdt-text-truncate {
  max-width: 0;
}
/*
 * Wrap long words onto the next line and break them if they are too long to fit.
 * 1. Make it work with table cells in all browsers.
 * Note: Not using `hyphens: auto` because it hyphenates text even if not needed.
 */
.bdt-text-break {
  overflow-wrap: break-word;
}
/* 1 */
th.bdt-text-break,
td.bdt-text-break {
  word-break: break-word;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='bdt-column-'] {
  column-gap: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  [class*='bdt-column-'] {
    column-gap: 40px;
  }
}
/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*='bdt-column-'] img {
  transform: translate3d(0, 0, 0);
}
/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.bdt-column-divider {
  column-rule: 1px solid rgba(214, 214, 214, 0.49);
  /* 1 */
  column-gap: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-column-divider {
    column-gap: 80px;
  }
}
/* Width modifiers
 ========================================================================== */
.bdt-column-1-2 {
  column-count: 2;
}
.bdt-column-1-3 {
  column-count: 3;
}
.bdt-column-1-4 {
  column-count: 4;
}
.bdt-column-1-5 {
  column-count: 5;
}
.bdt-column-1-6 {
  column-count: 6;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-column-1-2\@s {
    column-count: 2;
  }
  .bdt-column-1-3\@s {
    column-count: 3;
  }
  .bdt-column-1-4\@s {
    column-count: 4;
  }
  .bdt-column-1-5\@s {
    column-count: 5;
  }
  .bdt-column-1-6\@s {
    column-count: 6;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-column-1-2\@m {
    column-count: 2;
  }
  .bdt-column-1-3\@m {
    column-count: 3;
  }
  .bdt-column-1-4\@m {
    column-count: 4;
  }
  .bdt-column-1-5\@m {
    column-count: 5;
  }
  .bdt-column-1-6\@m {
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-column-1-2\@l {
    column-count: 2;
  }
  .bdt-column-1-3\@l {
    column-count: 3;
  }
  .bdt-column-1-4\@l {
    column-count: 4;
  }
  .bdt-column-1-5\@l {
    column-count: 5;
  }
  .bdt-column-1-6\@l {
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-column-1-2\@xl {
    column-count: 2;
  }
  .bdt-column-1-3\@xl {
    column-count: 3;
  }
  .bdt-column-1-4\@xl {
    column-count: 4;
  }
  .bdt-column-1-5\@xl {
    column-count: 5;
  }
  .bdt-column-1-6\@xl {
    column-count: 6;
  }
}
/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.bdt-column-span {
  column-span: all;
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Use attribute to apply transform instantly. Needed if transform is transitioned.
 * 2. Reset responsiveness for embedded content
 * 3. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
/* 1 */
[bdt-cover],
[data-bdt-cover] {
  /* 2 */
  max-width: none;
  /* 3 */
  position: absolute;
  left: 50%;
  top: 50%;
  --bdt-position-translate-x: -50%;
  --bdt-position-translate-y: -50%;
  transform: translate(var(--bdt-position-translate-x), var(--bdt-position-translate-y));
}
iframe[bdt-cover],
iframe[data-bdt-cover] {
  pointer-events: none;
}
/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.bdt-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.bdt-background-default {
  background-color: #fff;
}
.bdt-background-muted {
  background-color: #f8f8f8;
}
.bdt-background-primary {
  background-color: #1e87f0;
}
.bdt-background-secondary {
  background-color: #222;
}
/* Size
 ========================================================================== */
.bdt-background-cover,
.bdt-background-contain,
.bdt-background-width-1-1,
.bdt-background-height-1-1 {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.bdt-background-cover {
  background-size: cover;
}
.bdt-background-contain {
  background-size: contain;
}
.bdt-background-width-1-1 {
  background-size: 100%;
}
.bdt-background-height-1-1 {
  background-size: auto 100%;
}
/* Position
 ========================================================================== */
.bdt-background-top-left {
  background-position: 0 0;
}
.bdt-background-top-center {
  background-position: 50% 0;
}
.bdt-background-top-right {
  background-position: 100% 0;
}
.bdt-background-center-left {
  background-position: 0 50%;
}
.bdt-background-center-center {
  background-position: 50% 50%;
}
.bdt-background-center-right {
  background-position: 100% 50%;
}
.bdt-background-bottom-left {
  background-position: 0 100%;
}
.bdt-background-bottom-center {
  background-position: 50% 100%;
}
.bdt-background-bottom-right {
  background-position: 100% 100%;
}
/* Repeat
 ========================================================================== */
.bdt-background-norepeat {
  background-repeat: no-repeat;
}
/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.bdt-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}
/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .bdt-background-fixed {
    background-attachment: scroll;
  }
}
/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .bdt-background-image\@s {
    background-image: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .bdt-background-image\@m {
    background-image: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .bdt-background-image\@l {
    background-image: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .bdt-background-image\@xl {
    background-image: none !important;
  }
}
/* Blend modes
 ========================================================================== */
.bdt-background-blend-multiply {
  background-blend-mode: multiply;
}
.bdt-background-blend-screen {
  background-blend-mode: screen;
}
.bdt-background-blend-overlay {
  background-blend-mode: overlay;
}
.bdt-background-blend-darken {
  background-blend-mode: darken;
}
.bdt-background-blend-lighten {
  background-blend-mode: lighten;
}
.bdt-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.bdt-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.bdt-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.bdt-background-blend-soft-light {
  background-blend-mode: soft-light;
}
.bdt-background-blend-difference {
  background-blend-mode: difference;
}
.bdt-background-blend-exclusion {
  background-blend-mode: exclusion;
}
.bdt-background-blend-hue {
  background-blend-mode: hue;
}
.bdt-background-blend-saturation {
  background-blend-mode: saturation;
}
.bdt-background-blend-color {
  background-blend-mode: color;
}
.bdt-background-blend-luminosity {
  background-blend-mode: luminosity;
}
/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*='bdt-align'] {
  display: block;
  margin-bottom: 30px;
}
* + [class*='bdt-align'] {
  margin-top: 30px;
}
/*
 * Center
 */
.bdt-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.bdt-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.bdt-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .bdt-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .bdt-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .bdt-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .bdt-align-left,
  .bdt-align-left\@s,
  .bdt-align-left\@m,
  .bdt-align-left\@l {
    margin-right: 40px;
  }
  .bdt-align-right,
  .bdt-align-right\@s,
  .bdt-align-right\@m,
  .bdt-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .bdt-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 */
/* 1 */
.bdt-svg,
.bdt-svg:not(.bdt-preserve) [fill*='#']:not(.bdt-preserve) {
  fill: currentcolor;
}
.bdt-svg:not(.bdt-preserve) [stroke*='#']:not(.bdt-preserve) {
  stroke: currentcolor;
}
/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.bdt-svg {
  transform: translate(0, 0);
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.bdt-panel {
  display: flow-root;
  position: relative;
  box-sizing: border-box;
}
/*
 * Remove margin from the last-child
 */
.bdt-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.bdt-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid rgba(214, 214, 214, 0.49);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.bdt-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.bdt-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.bdt-float-left {
  float: left;
}
.bdt-float-right {
  float: right;
}
/* 1 */
[class*='bdt-float-'] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.bdt-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.bdt-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.bdt-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.bdt-resize {
  resize: both;
}
.bdt-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.bdt-display-block {
  display: block !important;
}
.bdt-display-inline {
  display: inline !important;
}
.bdt-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force new layer without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*='bdt-inline'] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}
.bdt-inline-clip {
  /* 6 */
  overflow: hidden;
}
/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.bdt-preserve-width,
.bdt-preserve-width canvas,
.bdt-preserve-width img,
.bdt-preserve-width svg,
.bdt-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.bdt-responsive-width,
.bdt-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `bdt-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.bdt-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.bdt-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/*
 * Fix initial iframe width. Without the viewport is expanded on iOS devices
 */
[bdt-responsive],
[data-bdt-responsive] {
  max-width: 100%;
}
/* Object
 ========================================================================== */
.bdt-object-cover {
  object-fit: cover;
}
.bdt-object-contain {
  object-fit: contain;
}
.bdt-object-fill {
  object-fit: fill;
}
.bdt-object-none {
  object-fit: none;
}
.bdt-object-scale-down {
  object-fit: scale-down;
}
/* 
 * Position
 */
.bdt-object-top-left {
  object-position: 0 0;
}
.bdt-object-top-center {
  object-position: 50% 0;
}
.bdt-object-top-right {
  object-position: 100% 0;
}
.bdt-object-center-left {
  object-position: 0 50%;
}
.bdt-object-center-center {
  object-position: 50% 50%;
}
.bdt-object-center-right {
  object-position: 100% 50%;
}
.bdt-object-bottom-left {
  object-position: 0 100%;
}
.bdt-object-bottom-center {
  object-position: 50% 100%;
}
.bdt-object-bottom-right {
  object-position: 100% 100%;
}
/* Border
 ========================================================================== */
.bdt-border-circle {
  border-radius: 50%;
}
.bdt-border-pill {
  border-radius: 500px;
}
.bdt-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.bdt-inline-clip[class*='bdt-border-'] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.bdt-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.bdt-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.bdt-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.bdt-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*='bdt-box-shadow-hover'] {
  transition: box-shadow 0.1s ease-in-out;
}
.bdt-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.bdt-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.bdt-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.bdt-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Fix shadow being clipped in Safari if container is animated
 */
@supports (filter: blur(0)) {
  .bdt-box-shadow-bottom {
    display: inline-block;
    position: relative;
    z-index: 0;
    max-width: 100%;
    vertical-align: middle;
  }
  .bdt-box-shadow-bottom::after {
    content: "";
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: -1;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
    /* 3 */
    will-change: filter;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 */
.bdt-dropcap::first-letter,
.bdt-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
}
/* 2 */
@-moz-document url-prefix() {
  .bdt-dropcap::first-letter,
  .bdt-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.bdt-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #333;
  /* 1 */
  text-decoration: none;
}
/* Hover */
.bdt-logo:hover {
  color: #333;
  /* 1 */
  text-decoration: none;
}
.bdt-logo > :where(img, svg, video) {
  display: block;
}
.bdt-logo-inverse {
  display: none;
}
/* Disabled State
 ========================================================================== */
.bdt-disabled {
  pointer-events: none;
}
/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.bdt-drag,
.bdt-drag * {
  cursor: move;
}
/* 2 */
.bdt-drag iframe {
  pointer-events: none;
}
/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.bdt-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
/* Blend modes
 ========================================================================== */
.bdt-blend-multiply {
  mix-blend-mode: multiply;
}
.bdt-blend-screen {
  mix-blend-mode: screen;
}
.bdt-blend-overlay {
  mix-blend-mode: overlay;
}
.bdt-blend-darken {
  mix-blend-mode: darken;
}
.bdt-blend-lighten {
  mix-blend-mode: lighten;
}
.bdt-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.bdt-blend-color-burn {
  mix-blend-mode: color-burn;
}
.bdt-blend-hard-light {
  mix-blend-mode: hard-light;
}
.bdt-blend-soft-light {
  mix-blend-mode: soft-light;
}
.bdt-blend-difference {
  mix-blend-mode: difference;
}
.bdt-blend-exclusion {
  mix-blend-mode: exclusion;
}
.bdt-blend-hue {
  mix-blend-mode: hue;
}
.bdt-blend-saturation {
  mix-blend-mode: saturation;
}
.bdt-blend-color {
  mix-blend-mode: color;
}
.bdt-blend-luminosity {
  mix-blend-mode: luminosity;
}
/* Transform
========================================================================== */
.bdt-transform-center {
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.bdt-transform-origin-top-left {
  transform-origin: 0 0;
}
.bdt-transform-origin-top-center {
  transform-origin: 50% 0;
}
.bdt-transform-origin-top-right {
  transform-origin: 100% 0;
}
.bdt-transform-origin-center-left {
  transform-origin: 0 50%;
}
.bdt-transform-origin-center-right {
  transform-origin: 100% 50%;
}
.bdt-transform-origin-bottom-left {
  transform-origin: 0 100%;
}
.bdt-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}
.bdt-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.bdt-flex {
  display: flex;
}
.bdt-flex-inline {
  display: inline-flex;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.bdt-flex-left {
  justify-content: flex-start;
}
.bdt-flex-center {
  justify-content: center;
}
.bdt-flex-right {
  justify-content: flex-end;
}
.bdt-flex-between {
  justify-content: space-between;
}
.bdt-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-flex-left\@s {
    justify-content: flex-start;
  }
  .bdt-flex-center\@s {
    justify-content: center;
  }
  .bdt-flex-right\@s {
    justify-content: flex-end;
  }
  .bdt-flex-between\@s {
    justify-content: space-between;
  }
  .bdt-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-flex-left\@m {
    justify-content: flex-start;
  }
  .bdt-flex-center\@m {
    justify-content: center;
  }
  .bdt-flex-right\@m {
    justify-content: flex-end;
  }
  .bdt-flex-between\@m {
    justify-content: space-between;
  }
  .bdt-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-flex-left\@l {
    justify-content: flex-start;
  }
  .bdt-flex-center\@l {
    justify-content: center;
  }
  .bdt-flex-right\@l {
    justify-content: flex-end;
  }
  .bdt-flex-between\@l {
    justify-content: space-between;
  }
  .bdt-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-flex-left\@xl {
    justify-content: flex-start;
  }
  .bdt-flex-center\@xl {
    justify-content: center;
  }
  .bdt-flex-right\@xl {
    justify-content: flex-end;
  }
  .bdt-flex-between\@xl {
    justify-content: space-between;
  }
  .bdt-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.bdt-flex-stretch {
  align-items: stretch;
}
.bdt-flex-top {
  align-items: flex-start;
}
.bdt-flex-middle {
  align-items: center;
}
.bdt-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.bdt-flex-row {
  flex-direction: row;
}
.bdt-flex-row-reverse {
  flex-direction: row-reverse;
}
.bdt-flex-column {
  flex-direction: column;
}
.bdt-flex-column-reverse {
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.bdt-flex-nowrap {
  flex-wrap: nowrap;
}
.bdt-flex-wrap {
  flex-wrap: wrap;
}
.bdt-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.bdt-flex-wrap-stretch {
  align-content: stretch;
}
.bdt-flex-wrap-top {
  align-content: flex-start;
}
.bdt-flex-wrap-middle {
  align-content: center;
}
.bdt-flex-wrap-bottom {
  align-content: flex-end;
}
.bdt-flex-wrap-between {
  align-content: space-between;
}
.bdt-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.bdt-flex-first {
  order: -1;
}
.bdt-flex-last {
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-flex-first\@s {
    order: -1;
  }
  .bdt-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-flex-first\@m {
    order: -1;
  }
  .bdt-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-flex-first\@l {
    order: -1;
  }
  .bdt-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-flex-first\@xl {
    order: -1;
  }
  .bdt-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.bdt-flex-none {
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.bdt-flex-auto {
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.bdt-flex-1 {
  flex: 1;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.bdt-margin {
  margin-bottom: 20px;
}
* + .bdt-margin {
  margin-top: 20px !important;
}
.bdt-margin-top {
  margin-top: 20px !important;
}
.bdt-margin-bottom {
  margin-bottom: 20px !important;
}
.bdt-margin-left {
  margin-left: 20px !important;
}
.bdt-margin-right {
  margin-right: 20px !important;
}
/* Small
 ========================================================================== */
.bdt-margin-small {
  margin-bottom: 10px;
}
* + .bdt-margin-small {
  margin-top: 10px !important;
}
.bdt-margin-small-top {
  margin-top: 10px !important;
}
.bdt-margin-small-bottom {
  margin-bottom: 10px !important;
}
.bdt-margin-small-left {
  margin-left: 10px !important;
}
.bdt-margin-small-right {
  margin-right: 10px !important;
}
/* Medium
 ========================================================================== */
.bdt-margin-medium {
  margin-bottom: 40px;
}
* + .bdt-margin-medium {
  margin-top: 40px !important;
}
.bdt-margin-medium-top {
  margin-top: 40px !important;
}
.bdt-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.bdt-margin-medium-left {
  margin-left: 40px !important;
}
.bdt-margin-medium-right {
  margin-right: 40px !important;
}
/* Large
 ========================================================================== */
.bdt-margin-large {
  margin-bottom: 40px;
}
* + .bdt-margin-large {
  margin-top: 40px !important;
}
.bdt-margin-large-top {
  margin-top: 40px !important;
}
.bdt-margin-large-bottom {
  margin-bottom: 40px !important;
}
.bdt-margin-large-left {
  margin-left: 40px !important;
}
.bdt-margin-large-right {
  margin-right: 40px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-large {
    margin-bottom: 70px;
  }
  * + .bdt-margin-large {
    margin-top: 70px !important;
  }
  .bdt-margin-large-top {
    margin-top: 70px !important;
  }
  .bdt-margin-large-bottom {
    margin-bottom: 70px !important;
  }
  .bdt-margin-large-left {
    margin-left: 70px !important;
  }
  .bdt-margin-large-right {
    margin-right: 70px !important;
  }
}
/* XLarge
 ========================================================================== */
.bdt-margin-xlarge {
  margin-bottom: 70px;
}
* + .bdt-margin-xlarge {
  margin-top: 70px !important;
}
.bdt-margin-xlarge-top {
  margin-top: 70px !important;
}
.bdt-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}
.bdt-margin-xlarge-left {
  margin-left: 70px !important;
}
.bdt-margin-xlarge-right {
  margin-right: 70px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .bdt-margin-xlarge {
    margin-top: 140px !important;
  }
  .bdt-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .bdt-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .bdt-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .bdt-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.bdt-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.bdt-margin-auto-top {
  margin-top: auto !important;
}
.bdt-margin-auto-bottom {
  margin-bottom: auto !important;
}
.bdt-margin-auto-left {
  margin-left: auto !important;
}
.bdt-margin-auto-right {
  margin-right: auto !important;
}
.bdt-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .bdt-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .bdt-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .bdt-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .bdt-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .bdt-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .bdt-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .bdt-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .bdt-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.bdt-margin-remove {
  margin: 0 !important;
}
.bdt-margin-remove-top {
  margin-top: 0 !important;
}
.bdt-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.bdt-margin-remove-left {
  margin-left: 0 !important;
}
.bdt-margin-remove-right {
  margin-right: 0 !important;
}
.bdt-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.bdt-margin-remove-adjacent + *,
.bdt-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}
.bdt-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .bdt-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .bdt-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .bdt-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .bdt-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.bdt-padding {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.bdt-padding-small {
  padding: 15px;
}
/* Large
 ========================================================================== */
.bdt-padding-large {
  padding: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.bdt-padding-remove {
  padding: 0 !important;
}
.bdt-padding-remove-top {
  padding-top: 0 !important;
}
.bdt-padding-remove-bottom {
  padding-bottom: 0 !important;
}
.bdt-padding-remove-left {
  padding-left: 0 !important;
}
.bdt-padding-remove-right {
  padding-right: 0 !important;
}
.bdt-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.bdt-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ========================================================================
   Component: Position
 ========================================================================== */
:root {
  --bdt-position-margin-offset: 0px;
}
/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow.
 */
[class*='bdt-position-top'],
[class*='bdt-position-bottom'],
[class*='bdt-position-left'],
[class*='bdt-position-right'],
[class*='bdt-position-center'] {
  position: absolute !important;
  /* 1 */
  max-width: calc(100% - (var(--bdt-position-margin-offset) * 2));
  box-sizing: border-box;
}
/*
 * Edges
 * Don't use `width: 100%` because it's wrong if the parent has padding.
 */
.bdt-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.bdt-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.bdt-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}
.bdt-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}
/*
 * Corners
 */
.bdt-position-top-left {
  top: 0;
  left: 0;
}
.bdt-position-top-right {
  top: 0;
  right: 0;
}
.bdt-position-bottom-left {
  bottom: 0;
  left: 0;
}
.bdt-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 *    Using `max-content` requires `max-width` of 100% which is set generally.
 */
.bdt-position-center {
  top: calc(50% - var(--bdt-position-margin-offset));
  left: calc(50% - var(--bdt-position-margin-offset));
  --bdt-position-translate-x: -50%;
  --bdt-position-translate-y: -50%;
  transform: translate(var(--bdt-position-translate-x), var(--bdt-position-translate-y));
  /* 1 */
  width: max-content;
}
/* Vertical */
[class*='bdt-position-center-left'],
[class*='bdt-position-center-right'] {
  top: calc(50% - var(--bdt-position-margin-offset));
  --bdt-position-translate-y: -50%;
  transform: translate(0, var(--bdt-position-translate-y));
}
.bdt-position-center-left {
  left: 0;
}
.bdt-position-center-right {
  right: 0;
}
.bdt-position-center-left-out {
  right: 100%;
  width: max-content;
}
.bdt-position-center-right-out {
  left: 100%;
  width: max-content;
}
/* Horizontal */
.bdt-position-top-center,
.bdt-position-bottom-center {
  left: calc(50% - var(--bdt-position-margin-offset));
  --bdt-position-translate-x: -50%;
  transform: translate(var(--bdt-position-translate-x), 0);
  /* 1 */
  width: max-content;
}
.bdt-position-top-center {
  top: 0;
}
.bdt-position-bottom-center {
  bottom: 0;
}
/*
 * Cover
 */
.bdt-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Margin
 ========================================================================== */
.bdt-position-small {
  margin: 15px;
  --bdt-position-margin-offset: 15px;
}
.bdt-position-medium {
  margin: 30px;
  --bdt-position-margin-offset: 30px;
}
.bdt-position-large {
  margin: 30px;
  --bdt-position-margin-offset: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-position-large {
    margin: 50px;
    --bdt-position-margin-offset: 50px;
  }
}
/* Schemes
 ========================================================================== */
.bdt-position-relative {
  position: relative  !important;
}
.bdt-position-absolute {
  position: absolute  !important;
}
.bdt-position-fixed {
  position: fixed  !important;
}
.bdt-position-sticky {
  position: sticky  !important;
}
/* Layer
 ========================================================================== */
.bdt-position-z-index {
  z-index: 1;
}
.bdt-position-z-index-negative {
  z-index: -1;
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 */
:where(.bdt-transition-fade),
:where([class*='bdt-transition-scale']),
:where([class*='bdt-transition-slide']) {
  --bdt-position-translate-x: 0;
  --bdt-position-translate-y: 0;
}
.bdt-transition-fade,
[class*='bdt-transition-scale'],
[class*='bdt-transition-slide'] {
  --bdt-translate-x: 0;
  --bdt-translate-y: 0;
  --bdt-scale-x: 1;
  --bdt-scale-y: 1;
  transform: translate(var(--bdt-position-translate-x), var(--bdt-position-translate-y)) translate(var(--bdt-translate-x), var(--bdt-translate-y)) scale(var(--bdt-scale-x), var(--bdt-scale-y));
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}
/*
 * Fade
 */
.bdt-transition-toggle:hover .bdt-transition-fade,
.bdt-transition-toggle:focus .bdt-transition-fade,
.bdt-transition-toggle .bdt-transition-fade:focus-within,
.bdt-transition-active.bdt-active .bdt-transition-fade {
  opacity: 1;
}
/*
 * Scale
 * 1. Make image rendering the same during the transition as before and after. Prefixed because of Safari.
 */
/* 1 */
[class*='bdt-transition-scale'] {
  -webkit-backface-visibility: hidden;
}
.bdt-transition-scale-up {
  --bdt-scale-x: 1;
  --bdt-scale-y: 1;
}
.bdt-transition-scale-down {
  --bdt-scale-x: 1.03;
  --bdt-scale-y: 1.03;
}
/* Show */
.bdt-transition-toggle:hover .bdt-transition-scale-up,
.bdt-transition-toggle:focus .bdt-transition-scale-up,
.bdt-transition-toggle .bdt-transition-scale-up:focus-within,
.bdt-transition-active.bdt-active .bdt-transition-scale-up {
  --bdt-scale-x: 1.03;
  --bdt-scale-y: 1.03;
  opacity: 1;
}
.bdt-transition-toggle:hover .bdt-transition-scale-down,
.bdt-transition-toggle:focus .bdt-transition-scale-down,
.bdt-transition-toggle .bdt-transition-scale-down:focus-within,
.bdt-transition-active.bdt-active .bdt-transition-scale-down {
  --bdt-scale-x: 1;
  --bdt-scale-y: 1;
  opacity: 1;
}
/*
 * Slide
 */
.bdt-transition-slide-top {
  --bdt-translate-y: -100%;
}
.bdt-transition-slide-bottom {
  --bdt-translate-y: 100%;
}
.bdt-transition-slide-left {
  --bdt-translate-x: -100%;
}
.bdt-transition-slide-right {
  --bdt-translate-x: 100%;
}
.bdt-transition-slide-top-small {
  --bdt-translate-y: calc(-1 * 10px);
}
.bdt-transition-slide-bottom-small {
  --bdt-translate-y: 10px;
}
.bdt-transition-slide-left-small {
  --bdt-translate-x: calc(-1 * 10px);
}
.bdt-transition-slide-right-small {
  --bdt-translate-x: 10px;
}
.bdt-transition-slide-top-medium {
  --bdt-translate-y: calc(-1 * 50px);
}
.bdt-transition-slide-bottom-medium {
  --bdt-translate-y: 50px;
}
.bdt-transition-slide-left-medium {
  --bdt-translate-x: calc(-1 * 50px);
}
.bdt-transition-slide-right-medium {
  --bdt-translate-x: 50px;
}
/* Show */
.bdt-transition-toggle:hover [class*='bdt-transition-slide'],
.bdt-transition-toggle:focus [class*='bdt-transition-slide'],
.bdt-transition-toggle [class*='bdt-transition-slide']:focus-within,
.bdt-transition-active.bdt-active [class*='bdt-transition-slide'] {
  --bdt-translate-x: 0;
  --bdt-translate-y: 0;
  opacity: 1;
}
/* Opacity modifier
 ========================================================================== */
.bdt-transition-opaque {
  opacity: 1;
}
/* Duration modifiers
 ========================================================================== */
.bdt-transition-slow {
  transition-duration: 0.7s;
}
/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.bdt-hidden {
  display: none !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .bdt-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .bdt-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .bdt-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .bdt-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .bdt-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .bdt-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .bdt-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .bdt-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.bdt-invisible {
  visibility: hidden !important;
}
/* Based on the State of the Parent Element
 ========================================================================== */
/*
 * Can't use `display: none` nor `visibility: hidden` because both are not focusable.
 * The target stays visible if any element within receives focus through keyboard.
 */
/*
 * Discard space when hidden.
 */
.bdt-visible-toggle:not(:hover):not(:focus) .bdt-hidden-hover:not(:focus-within) {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
/*
 * Keep space when hidden.
 */
.bdt-visible-toggle:not(:hover):not(:focus) .bdt-invisible-hover:not(:focus-within) {
  opacity: 0 !important;
}
/* Based on Hover Capability of the Pointing Device
 ========================================================================== */
/*
 * Hover
 */
/* Hide if primary pointing device doesn't support hover, e.g. touch screens. */
@media (hover: none) {
  .bdt-hidden-touch {
    display: none !important;
  }
}
/* Hide if primary pointing device supports hover, e.g. mice. */
@media (hover) {
  .bdt-hidden-notouch {
    display: none !important;
  }
}
/* ========================================================================
   Component: Inverse
 ========================================================================== */
/*
 * Implemented class depends on the general theme color
 * `bdt-light` is for light colors on dark backgrounds
 * `bdt-dark` is or dark colors on light backgrounds
 */
/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.bdt-modal-full {
  overflow-x: hidden;
}
.hook-modal-dialog {
  border-radius: 3px;
}
.hook-modal-title {
  font-weight: 400;
}
.bdt-cover {
  max-width: none !important;
}
.bdt-drop .bdt-card p:empty {
  display: none;
}
.bdt-drop .bdt-card p:not(:first-child) {
  margin-top: 15px;
  margin-bottom: 0;
}
.bdt-tooltip {
  padding: 7px 12px;
  background: #464646;
  border-radius: 3px;
  font-size: 13px;
}
.elementor-align-justify .bdt-button {
  width: 100%;
}
.bdt-notification .bdt-spinner {
  vertical-align: middle;
}
.bdt-notification .bdt-spinner svg {
  width: 20px;
  height: auto;
}
.bdt-notification .bdt-icon {
  margin-right: 10px;
  vertical-align: middle;
  line-height: normal;
}
.bdt-notification .bdt-close {
  top: 50%;
  transform: translateY(-50%);
}
.bdt-notification .bdt-notification-message {
  padding: 20px 40px 20px 20px;
  background: #ffffff;
  font-size: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.bdt-slideshow .bdt-slideshow-items {
  padding: 0;
  margin: 0;
}
.bdt-slideshow .bdt-slideshow-items[bdt-height-viewport] .bdt-slideshow-item img {
  width: auto !important;
  height: auto;
}
.bdt-modal-full {
  background-color: #fff;
}
.hook-button {
  border-radius: 3px;
}
.hook-form {
  border-radius: 3px;
}
.bdt-sticky-wrapper {
  width: 100%;
}
.bdt-heading-title:before,
.bdt-heading-tag:before,
.bdt-slide-title:before {
  content: none;
}
.bdt-tippy-tooltip {
  outline: none;
}
[class*="elementor-widget-bdt-"] a:hover {
  text-decoration: none;
}
@media (max-width: 1200px) {
  .bdt-user-login a.elementor-button .elementor-button-icon,
  .bdt-user-register a.elementor-button .elementor-button-icon {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.bdt-particle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bdt-particle-container canvas {
  display: block;
  vertical-align: bottom;
}
.bdt-particle-container .particles-js-canvas-el {
  position: absolute;
  top: 0;
  transform: scale(1);
  opacity: 1;
  animation: appear 1.4s 1;
  animation-fill-mode: forwards;
}
@-webkit-keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
[class*=" elementor-widget-bdt-"] svg.e-font-icon-svg {
  height: 1em;
  width: 1em;
}
[class*=" elementor-widget-bdt-"] svg.e-font-icon-svg use {
  fill: currentColor;
}
.elementor-control.elementor-control-type-heading {
  margin-top: -1px;
}
.elementor-lightbox .dialog-close-button .eicon-close {
  transition: transform 0.3s;
}
.elementor-lightbox .dialog-close-button:hover .eicon-close {
  transform: rotate(90deg);
}
.elementor-lightbox .elementor-swiper-button-next .eicon-chevron-right,
.elementor-lightbox .elementor-swiper-button-prev .eicon-chevron-left {
  transition: transform 0.3s;
}
.elementor-lightbox .elementor-swiper-button-prev:hover .eicon-chevron-left {
  transform: scale(1.2);
}
.elementor-lightbox .elementor-swiper-button-next:hover .eicon-chevron-right {
  transform: scale(1.2);
}
.bdt-slider .swiper-pagination,
.bdt-dots-container .swiper-pagination,
.bdt-arrows-dots-container .swiper-pagination {
  position: relative;
  display: flex;
  align-items: var(--ep-swiper-dots-align, center);
  justify-content: center;
}
.bdt-slider .swiper-pagination .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination .swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  outline: none;
  transition: all .3s ease;
}
.bdt-slider .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: var(--ep-swiper-dots-space-between, 5px);
  outline: none;
}
.bdt-slider .swiper-pagination.swiper-pagination-fraction,
.bdt-dots-container .swiper-pagination.swiper-pagination-fraction,
.bdt-arrows-dots-container .swiper-pagination.swiper-pagination-fraction {
  bottom: auto;
  z-index: 1;
}
.bdt-slider .swiper-pagination-bullets,
.bdt-dots-container .swiper-pagination-bullets,
.bdt-arrows-dots-container .swiper-pagination-bullets {
  min-height: var(--ep-swiper-dots-active-height, 10px);
}
.bdt-slider .swiper-pagination-bullets .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination-bullets .swiper-pagination-bullet,
.bdt-arrows-dots-container .swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
}
.bdt-slider .swiper-pagination-bullets .swiper-pagination-bullet:after,
.bdt-dots-container .swiper-pagination-bullets .swiper-pagination-bullet:after,
.bdt-arrows-dots-container .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: '';
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
[class*='bdt-arrows-align-top'] .bdt-arrows-container {
  transform: translateY(-40px);
}
[class*='bdt-arrows-align-bottom'] .bdt-arrows-container {
  transform: translateY(40px);
}
[class*='bdt-dots-align-top'] .bdt-dots-container {
  transform: translateY(-30px);
}
[class*='bdt-dots-align-bottom'] .bdt-dots-container {
  transform: translateY(30px);
}
[class*='bdt-arrows-dots-align-top'] .bdt-arrows-dots-container {
  transform: translateY(-40px);
}
[class*='bdt-arrows-dots-align-bottom'] .bdt-arrows-dots-container {
  transform: translateY(40px);
}
.bdt-arrows-align-center .bdt-position-center,
.bdt-arrows-dots-align-center .bdt-position-center {
  width: 100%;
}
.bdt-arrows-align-center .bdt-navigation-prev,
.bdt-arrows-dots-align-center .bdt-navigation-prev {
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.bdt-arrows-align-center .bdt-navigation-next,
.bdt-arrows-dots-align-center .bdt-navigation-next {
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}
.rtl .bdt-arrows-align-center .bdt-navigation-prev,
.rtl .bdt-arrows-dots-align-center .bdt-navigation-prev {
  right: 0;
  left: inherit;
}
.rtl .bdt-arrows-align-center .bdt-navigation-next,
.rtl .bdt-arrows-dots-align-center .bdt-navigation-next {
  left: 0;
  right: inherit;
}
.bdt-arrows-dots-align-center .bdt-dots-container .swiper-pagination,
.bdt-arrows-dots-align-center .bdt-arrows-dots-container .swiper-pagination {
  position: absolute;
  width: 100% !important;
}
.bdt-navigation-type-progress .swiper-pagination-progress {
  transform: translateY(15px);
  height: 5px;
  width: 100%;
}
.elementor-section.bdt-sticky {
  transition: background-color 250ms ease-out, padding 300ms ease-out;
}
.elementor-section.bdt-motion-effect-wrapper {
  overflow: var(--ep-effect-section-overflow, visible) !important;
}
.elementor-column.bdt-motion-effect-wrapper {
  overflow: var(--ep-effect-column-overflow, visible) !important;
}
.bdt-motion-effect-yes {
  transition: transform var(--ep-effect-transition-duration, 300ms) var(--ep-effect-transition-easing, ease-out);
}
.elementor-widget.bdt-motion-effect-yes {
  transform: translate(var(--ep-effect-trans-x-normal, 0), var(--ep-effect-trans-y-normal, 0)) rotateX(var(--ep-effect-rotate-x-normal, 0)) rotateY(var(--ep-effect-rotate-y-normal, 0)) rotateZ(var(--ep-effect-rotate-z-normal, 0)) scaleX(var(--ep-effect-scale-x-normal, 1)) scaleY(var(--ep-effect-scale-y-normal, 1)) skewX(var(--ep-effect-skew-x-normal, 0)) skewY(var(--ep-effect-skew-y-normal, 0));
}
.elementor-widget.bdt-motion-effect-yes:hover,
.bdt-motion-effect-wrapper:hover .elementor-widget.bdt-motion-effect-yes {
  transform: translate(var(--ep-effect-trans-x-hover, var(--ep-effect-trans-x-normal, 0)), var(--ep-effect-trans-y-hover, var(--ep-effect-trans-y-normal, 0))) rotateX(var(--ep-effect-rotate-x-hover, var(--ep-effect-rotate-x-normal, 0))) rotateY(var(--ep-effect-rotate-y-hover, var(--ep-effect-rotate-y-normal, 0))) rotateZ(var(--ep-effect-rotate-z-hover, var(--ep-effect-rotate-z-normal, 0))) scaleX(var(--ep-effect-scale-x-hover, var(--ep-effect-scale-x-normal, 1))) scaleY(var(--ep-effect-scale-y-hover, var(--ep-effect-scale-y-normal, 1))) skewX(var(--ep-effect-skew-x-hover, var(--ep-effect-skew-x-normal, 0))) skewY(var(--ep-effect-skew-y-hover, var(--ep-effect-skew-y-normal, 0)));
  transition-delay: var(--ep-effect-transition-delay, 0ms);
}
.elementor-column.bdt-backdrop-filter-yes > .elementor-element-populated {
  -webkit-backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
  backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
}
.elementor-widget.bdt-backdrop-filter-yes > .elementor-widget-container {
  -webkit-backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
  backdrop-filter: blur(var(--ep-backdrop-filter-blur, 0)) brightness(var(--ep-backdrop-filter-brightness, 100%)) contrast(var(--ep-backdrop-filter-contrast, 1)) grayscale(var(--ep-backdrop-filter-grayscale, 0)) invert(var(--ep-backdrop-filter-invert, 0)) opacity(var(--ep-backdrop-filter-opacity, 1)) sepia(var(--ep-backdrop-filter-sepia, 0)) saturate(var(--ep-backdrop-filter-saturate, 1)) hue-rotate(var(--ep-backdrop-filter-hue-rotate, 0));
}
.bdt-element-align-wrapper {
  flex-wrap: wrap;
  display: flex;
  position: relative;
}
.bdt-element-align-center .bdt-element-align-wrapper {
  justify-content: center;
}
.bdt-element-align-stretch .bdt-element-align-wrapper .bdt-element {
  flex-basis: 100%;
}
.bdt-element-align-start .bdt-element-align-wrapper {
  justify-content: flex-start;
}
.bdt-element-align-end .bdt-element-align-wrapper {
  justify-content: flex-end;
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic,
.bdt-slider .swiper-pagination-bullets-dynamic,
.bdt-dots-container .swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  width: 100% !important;
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.bdt-arrows-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.bdt-slider .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.bdt-dots-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
@media screen and (max-width: 1024px) {
  .bdt-element-align-tablet-center .bdt-element-align-wrapper {
    justify-content: center;
  }
  .bdt-element-align-tablet-stretch .bdt-element-align-wrapper .bdt-element {
    flex-basis: 100%;
  }
  .bdt-element-align-tablet-start .bdt-element-align-wrapper {
    justify-content: flex-start;
  }
  .bdt-element-align-tablet-end .bdt-element-align-wrapper {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .bdt-element-align-mobile-center .bdt-element-align-wrapper {
    justify-content: center;
  }
  .bdt-element-align-mobile-stretch .bdt-element-align-wrapper .bdt-element {
    flex-basis: 100%;
  }
  .bdt-element-align-mobile-start .bdt-element-align-wrapper {
    justify-content: flex-start;
  }
  .bdt-element-align-mobile-end .bdt-element-align-wrapper {
    justify-content: flex-end;
  }
}
/* Common Less */
.bdt-advanced-divider > img {
  display: none;
}
.bdt-reveal-effects-yes .elementor-widget-container > *:not([class*="block-revealer"]) {
  opacity: 0;
}
.bdt-ep-button {
  font-size: 14px;
  color: #666;
  font-weight: 700;
}
.bdt-ep-button.bdt-ep-button-size-xs {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 400;
}
.bdt-ep-button.bdt-ep-button-size-sm {
  padding: 10px 20px;
  font-size: 12px;
}
.bdt-ep-button.bdt-ep-button-size-md {
  padding: 15px 30px;
}
.bdt-ep-button.bdt-ep-button-size-lg {
  padding: 20px 30px;
  font-size: 16px;
}
.bdt-ep-button.bdt-ep-button-size-xl {
  padding: 25px 30px;
  font-size: 18px;
}
.elementor-align-justify .bdt-ep-button {
  width: 100%;
}
@media (max-width: 767px) {
  .elementor-mobile-align-justify .bdt-ep-button {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .elementor-tablet-align-justify .bdt-ep-button {
    width: 100%;
  }
}
.bdt-ep-shadow-mode-yes .bdt-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-custom-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-wc-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-testimonial-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-event-carousel-skin-fable .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-event-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-portfolio-carousel .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-panel-slider .swiper-container,
.bdt-ep-shadow-mode-yes .bdt-tutor-lms-course-carousel .swiper-container {
  padding: 10px;
  margin: 0 -10px;
}
.bdt-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-custom-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-wc-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-testimonial-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-event-carousel-skin-fable .swiper-container:not(.swiper-container-horizontal),
.bdt-event-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-portfolio-carousel .swiper-container:not(.swiper-container-horizontal),
.bdt-panel-slider .swiper-container:not(.swiper-container-horizontal),
.bdt-tutor-lms-course-carousel .swiper-container:not(.swiper-container-horizontal) {
  opacity: 0;
}
.bdt-carousel .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-custom-carousel .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-wc-carousel .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-testimonial-carousel .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-event-carousel-skin-fable .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-event-carousel .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-portfolio-carousel .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-panel-slider .swiper-container:not(.swiper-container-horizontal) div > div,
.bdt-tutor-lms-course-carousel .swiper-container:not(.swiper-container-horizontal) div > div {
  max-width: 350px;
}
.bdt-carousel .swiper-container.swiper-container-horizontal,
.bdt-custom-carousel .swiper-container.swiper-container-horizontal,
.bdt-wc-carousel .swiper-container.swiper-container-horizontal,
.bdt-testimonial-carousel .swiper-container.swiper-container-horizontal,
.bdt-event-carousel-skin-fable .swiper-container.swiper-container-horizontal,
.bdt-event-carousel .swiper-container.swiper-container-horizontal,
.bdt-portfolio-carousel .swiper-container.swiper-container-horizontal,
.bdt-panel-slider .swiper-container.swiper-container-horizontal,
.bdt-tutor-lms-course-carousel .swiper-container.swiper-container-horizontal {
  opacity: 1;
  transition: opacity 400ms ease-out;
}
.bdt-show-hidden-item--yes .swiper-container {
  overflow: visible;
}
/* swiper for 3rd party style */
[class*="elementor-widget-bdt-"] .swiper-pagination-fraction,
[class*="elementor-widget-bdt-"] .swiper-pagination-custom,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal .swiper-pagination-bullets,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal + .swiper-pagination-bullets {
  bottom: -50px;
  width: 100%;
}
[class*="elementor-widget-bdt-"] .swiper-pagination-fraction .swiper-pagination-bullet,
[class*="elementor-widget-bdt-"] .swiper-pagination-custom .swiper-pagination-bullet,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet,
[class*="elementor-widget-bdt-"] .swiper-container-horizontal + .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.bdt-navigation-type-arrows-fraction .swiper-pagination {
  position: initial;
}
.bdt-arrows-fraction-container .bdt-navigation-prev,
.bdt-arrows-dots-container .bdt-navigation-prev,
.bdt-arrows-container .bdt-navigation-prev,
.bdt-arrows-fraction-container .bdt-navigation-next,
.bdt-arrows-dots-container .bdt-navigation-next,
.bdt-arrows-container .bdt-navigation-next {
  transition: all .3s ease;
}
.bdt-arrows-fraction-container .bdt-navigation-prev i,
.bdt-arrows-dots-container .bdt-navigation-prev i,
.bdt-arrows-container .bdt-navigation-prev i,
.bdt-arrows-fraction-container .bdt-navigation-next i,
.bdt-arrows-dots-container .bdt-navigation-next i,
.bdt-arrows-container .bdt-navigation-next i {
  display: inline-flex;
  transition: all .3s ease;
}
.rtl .bdt-arrows-container,
.rtl .bdt-arrows-fraction-container,
.rtl .bdt-arrows-dots-container {
  direction: rtl;
}
.rtl .bdt-arrows-container .swiper-pagination,
.rtl .bdt-arrows-fraction-container .swiper-pagination,
.rtl .bdt-arrows-dots-container .swiper-pagination {
  direction: ltr;
}
.bdt-pagination-dot-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bdt-pagination-dot-dot span {
  line-height: 1px;
  height: 13px;
  color: #bbb !important;
}
.elementor-widget-container .bdt-subnav {
  margin-bottom: 10px;
  margin-top: 0;
  color: #999;
}
.elementor-widget-container .bdt-subnav * {
  font-size: 13px;
  font-weight: 400;
}
.elementor-widget-container .bdt-subnav span {
  color: inherit;
}
.elementor-widget-container .bdt-subnav span span {
  display: inline-block;
}
.elementor-widget-container .bdt-subnav span a {
  display: inline-block;
  transition: color 0.5s cubic-bezier(0.4, 0.7, 0.04, 0.88);
}
.elementor-widget-container .bdt-subnav span a:hover {
  color: #666;
}
.elementor-widget-container .bdt-subnav span a + a {
  margin-right: 5px;
  color: #999;
}
.elementor-widget-container .bdt-subnav span:after {
  content: '';
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #adb5bd;
  margin-right: -10px;
  margin-left: 10px;
  display: inline-block;
  line-height: 4px;
  vertical-align: middle;
}
.elementor-widget-container .bdt-subnav span:last-child::after {
  content: none;
}
/* Button icon align */
.bdt-button-icon-align-left {
  float: left;
}
.bdt-button-icon-align-right {
  float: right;
}
.bdt-flex-align-left {
  order: -1;
}
.bdt-flex-align-right {
  order: 99;
}
/* Custom grid */
.bdt-ep-grid {
  display: flex;
  flex-wrap: wrap;
}
.bdt-ep-grid .bdt-ep-grid-item {
  word-break: break-word;
}
.bdt-ep-grid-1 .bdt-ep-grid-item {
  width: 100%;
}
.bdt-ep-grid-2 .bdt-ep-grid-item {
  width: 50%;
}
.bdt-ep-grid-3 .bdt-ep-grid-item {
  width: 33.33333%;
}
.bdt-ep-grid-4 .bdt-ep-grid-item {
  width: 25%;
}
.bdt-ep-grid-5 .bdt-ep-grid-item {
  width: 20%;
}
.bdt-ep-grid-6 .bdt-ep-grid-item {
  width: 16.66667%;
}
.bdt-ep-grid-7 .bdt-ep-grid-item {
  width: 14.28571%;
}
.bdt-ep-grid-8 .bdt-ep-grid-item {
  width: 12.5%;
}
.bdt-ep-grid-9 .bdt-ep-grid-item {
  width: 11.11111%;
}
.bdt-ep-grid-10 .bdt-ep-grid-item {
  width: 10%;
}
.bdt-ep-grid-11 .bdt-ep-grid-item {
  width: 9.09091%;
}
.bdt-ep-grid-12 .bdt-ep-grid-item {
  width: 8.33333%;
}
@media (max-width: 1024px) {
  .bdt-ep-grid-tablet-1 .bdt-ep-grid-item {
    width: 100%;
  }
  .bdt-ep-grid-tablet-2 .bdt-ep-grid-item {
    width: 50%;
  }
  .bdt-ep-grid-tablet-3 .bdt-ep-grid-item {
    width: 33.33333%;
  }
  .bdt-ep-grid-tablet-4 .bdt-ep-grid-item {
    width: 25%;
  }
  .bdt-ep-grid-tablet-5 .bdt-ep-grid-item {
    width: 20%;
  }
  .bdt-ep-grid-tablet-6 .bdt-ep-grid-item {
    width: 16.66667%;
  }
  .bdt-ep-grid-tablet-7 .bdt-ep-grid-item {
    width: 14.28571%;
  }
  .bdt-ep-grid-tablet-8 .bdt-ep-grid-item {
    width: 12.5%;
  }
  .bdt-ep-grid-tablet-9 .bdt-ep-grid-item {
    width: 11.11111%;
  }
  .bdt-ep-grid-tablet-10 .bdt-ep-grid-item {
    width: 10%;
  }
  .bdt-ep-grid-tablet-11 .bdt-ep-grid-item {
    width: 9.09091%;
  }
  .bdt-ep-grid-tablet-12 .bdt-ep-grid-item {
    width: 8.33333%;
  }
}
@media (max-width: 767px) {
  .bdt-ep-grid-mobile-1 .bdt-ep-grid-item {
    width: 100%;
  }
  .bdt-ep-grid-mobile-2 .bdt-ep-grid-item {
    width: 50%;
  }
  .bdt-ep-grid-mobile-3 .bdt-ep-grid-item {
    width: 33.33333%;
  }
  .bdt-ep-grid-mobile-4 .bdt-ep-grid-item {
    width: 25%;
  }
  .bdt-ep-grid-mobile-5 .bdt-ep-grid-item {
    width: 20%;
  }
  .bdt-ep-grid-mobile-6 .bdt-ep-grid-item {
    width: 16.66667%;
  }
  .bdt-ep-grid-mobile-7 .bdt-ep-grid-item {
    width: 14.28571%;
  }
  .bdt-ep-grid-mobile-8 .bdt-ep-grid-item {
    width: 12.5%;
  }
  .bdt-ep-grid-mobile-9 .bdt-ep-grid-item {
    width: 11.11111%;
  }
  .bdt-ep-grid-mobile-10 .bdt-ep-grid-item {
    width: 10%;
  }
  .bdt-ep-grid-mobile-11 .bdt-ep-grid-item {
    width: 9.09091%;
  }
  .bdt-ep-grid-mobile-12 .bdt-ep-grid-item {
    width: 8.33333%;
  }
}
.bdt-masonry-grid .bdt-gallery-item {
  float: left;
  height: auto;
}
.bdt-masonry-grid .bdt-gallery-item .bdt-gallery-thumbnail img {
  height: auto;
}
/* Swiper */
[class*="elementor-widget-bdt-"] .swiper-container .elementor-lightbox-content-source {
  display: none;
}
[class*="elementor-widget-bdt-"] .swiper-slide {
  border-style: solid;
  border-width: 0;
  overflow: hidden;
}
[class*="elementor-widget-bdt-"] .swiper-container-horizontal + .swiper-pagination-progressbar,
[class*="elementor-widget-bdt-"] .swiper-container-vertical + .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
}
[class*="elementor-widget-bdt-"] .swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
[class*="elementor-widget-bdt-"] .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
/* Animation Delay */
.bdt-animated-slow > span {
  animation-duration: 2s;
}
.bdt-animated-fast > span {
  animation-duration: .75s;
}
/* Scrollnav */
.bdt-scrollnav-fixed-yes .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.bdt-scrollnav-fixed-yes .bdt-scrollnav {
  position: fixed !important;
}
.bdt-scrollnav-fixed-yes .bdt-scrollnav [class*="bdt-navbar"] {
  margin: 30px;
}
.bdt-comment-container .fb_iframe_widget,
.bdt-comment-container .fb_iframe_widget span,
.bdt-comment-container .fb_iframe_widget iframe {
  width: 100% !important;
}
.bdt-ep-grid-filters-wrapper {
  margin-bottom: 30px;
}
.bdt-ep-grid-filters-wrapper ul li {
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters {
  padding: 0;
  margin: 0;
}
.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter {
  display: inline-block;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}
.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter.bdt-active {
  border-bottom-color: #444;
}
.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter:not(:first-child) {
  margin-left: calc(15px);
}
.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter:not(:last-child) {
  margin-right: calc(15px);
}
.bdt-ep-grid-filters-wrapper .bdt-ep-grid-filters .bdt-ep-grid-filter .bdt-dropdown ul li.bdt-ep-grid-filter {
  margin: 0;
}
@media (min-width: 1024px) {
  .bdt-ep-grid-filter-container {
    transition: height 0.5s ease-out;
  }
}
.bdt-document-viewer iframe {
  border: none;
}
iframe[data-src]:not(.lazy-loaded),
.bdt-lazy-loading {
  background: rgba(152, 152, 152, 0.07);
  background-image: url('https://brisk.uicore.co/education/wp-content/plugins/bdthemes-element-pack/assets/css/../images/loading.svg');
  background-repeat: no-repeat;
  background-position: center;
}
.bdt-dummy-loader {
  height: 250px;
  background: rgba(152, 152, 152, 0.05);
  background-repeat: no-repeat;
  background-position: center;
  animation-name: dummy-loader-animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}
/* Attention Button */
@keyframes dummy-loader-animation {
  0% {
    background: rgba(152, 152, 152, 0.05);
  }
  50% {
    background: rgba(152, 152, 152, 0.2);
  }
  100% {
    background: rgba(152, 152, 152, 0.05);
  }
}
.bdt-modal-link {
  cursor: pointer;
}
.bdt-modal-link * {
  cursor: pointer;
}
/* Shado Mode */
.bdt-ep-shadow-mode-yes .elementor-widget-container:before,
.bdt-ep-shadow-mode-yes .elementor-widget-container:after {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
.bdt-ep-shadow-mode-yes .elementor-widget-container:before {
  background: linear-gradient(to right, #ffffff 5%, rgba(255, 255, 255, 0) 100%);
  left: -10px;
}
.bdt-ep-shadow-mode-yes .elementor-widget-container:after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 95%);
  right: -10px;
}
@media (max-width: 767px) {
  .bdt-ep-shadow-mode-yes .elementor-widget-container:before,
  .bdt-ep-shadow-mode-yes .elementor-widget-container:after {
    content: none;
  }
}
/* navbar Style */
.bdt-navbar-nav > li > a {
  transition: 0.1s ease-in-out;
  transition-property: color, background-color;
  position: relative;
}
.bdt-navbar-style-1 .bdt-navbar-nav > li > a:before {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-color: transparent;
  transition: 0.1s cubic-bezier(0, 0.75, 0.43, 1);
  transition-property: background-color, opacity, transform;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  opacity: 1;
  transform: scale3d(0, 1, 1);
}
.bdt-navbar-style-1 .bdt-navbar-nav > li.bdt-active > a:before {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
.bdt-navbar-style-1 .bdt-navbar-nav > li:hover > a:before {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
.bdt-navbar-style-2 .bdt-navbar-nav > li > a:after {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background-color: transparent;
  transition: 0.1s cubic-bezier(0, 0.75, 0.43, 1);
  transition-property: background-color, opacity, transform;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 15px;
  opacity: 1;
  transform: scale3d(0, 1, 1);
}
.bdt-navbar-style-2 .bdt-navbar-nav > li.bdt-active > a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
.bdt-navbar-style-2 .bdt-navbar-nav > li:hover > a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
.bdt-navbar-style-3 .bdt-navbar-nav > li > a:after {
  content: '';
  display: block;
  position: absolute;
  height: 8px;
  background-color: transparent;
  transition: 0.25s cubic-bezier(0, 0.75, 0.43, 1);
  transition-property: background-color, opacity, transform;
  left: 0;
  right: 0;
  margin: 0 10px;
  opacity: 1;
  transform: scale3d(0, 1, 1);
  z-index: -1;
  transform-origin: left;
}
.bdt-navbar-style-3 .bdt-navbar-nav > li.bdt-active > a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
.bdt-navbar-style-3 .bdt-navbar-nav > li:hover > a:after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
  background-color: #3FB8FD;
}
/* Easy Digital Download */
.elementor-widget-bdt-easy-digital-download .edd_downloads_list .edd_download {
  margin: 0;
  padding: 0;
}
/* Scroll to top */
@keyframes totopscroller {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.bdt-ep-scroll-to-section {
  margin-bottom: 50px;
  z-index: 2;
}
.bdt-ep-scroll-to-section a {
  animation: totopscroller 1.5s linear infinite alternate;
  padding: 12px 8px;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 2px solid #fff;
  border-radius: 5000px;
  color: #eee;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
.bdt-ep-scroll-to-section a:hover {
  background: #fff;
  color: #282828;
  border: 2px solid #fff;
}
/* Attention Button */
@keyframes attentionAnimation {
  0% {
    left: 0;
  }
  1% {
    left: -3px;
  }
  2% {
    left: 5px;
  }
  3% {
    left: -8px;
  }
  4% {
    left: 8px;
  }
  5% {
    left: -5px;
  }
  6% {
    left: 3px;
  }
  7% {
    left: 0;
  }
}
.bdt-ep-attention-button {
  animation-name: attentionAnimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  position: relative;
}
/* tilt shadow */
.elementor-widget-wrap [data-tilt] {
  transition: box-shadow 400ms cubic-bezier(0.25, 0.9, 0.58, 1);
}
.elementor-widget-wrap [data-tilt]:hover {
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.45), 0 50px 90px 0 rgba(51, 51, 51, 0.15);
}
.bdt-post-grid-tab dl {
  margin: 0;
  opacity: 0;
  transition: opacity 450ms cubic-bezier(0.3, 0.91, 0.58, 1);
}
.bdt-post-grid-tab .gridtab[class*="gridtab--"] {
  opacity: 1;
}
.bdt-hide-recaptcha-badge-yes .grecaptcha-badge {
  display: none;
}
.elementor-widget-container .bdt-rating .bdt-rating-item {
  font-size: 14px;
  margin-right: 2px;
}
/* Lightbox */
.elementor-button svg {
  width: 1.2em;
}
.ep-pagination .bdt-pagination {
  margin: 20px 0;
}
.ep-pagination .bdt-pagination li {
  list-style-type: none;
  padding-left: 5px;
}
.ep-pagination .bdt-pagination li:hover a,
.ep-pagination .bdt-pagination li.bdt-active a {
  color: #fff;
  background: #3FB8FD;
}
.ep-pagination .bdt-pagination li a {
  font-size: 12px;
  padding: 5px 25px;
  background: #ffffff;
  color: #3FB8FD;
  border-radius: 25px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.ep-pagination .bdt-pagination li:nth-child(1) {
  padding-left: 0 !important;
}
.bdt-honeycombs:not(.honeycombs-loaded) {
  opacity: 0;
}
.bdt-background-overlay-yes > .elementor-widget-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: calc(100% - var(--ep-overlay-margin-right, 0px) - var(--ep-overlay-margin-left, 0px));
  height: calc(100% - var(--ep-overlay-margin-top, 0px) - var(--ep-overlay-margin-bottom, 0px));
  margin: var(--ep-overlay-margin-top, 0px) var(--ep-overlay-margin-right, 0px) var(--ep-overlay-margin-bottom, 0px) var(--ep-overlay-margin-left, 0px);
  pointer-events: none;
}
.bdt-background-overlay-yes.bdt-bg-o-t-zoom > .elementor-widget-container:before {
  transform: scale(0);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.bdt-background-overlay-yes.bdt-bg-o-t-zoom > .elementor-widget-container:hover:before {
  transform: scale(1);
  opacity: 1;
}
.bdt-background-overlay-yes.bdt-bg-o-t-rotate > .elementor-widget-container:before {
  transform: scale(0) rotate(-30deg);
  opacity: 0;
  transition: transform 300ms, opacity 300ms;
}
.bdt-background-overlay-yes.bdt-bg-o-t-rotate > .elementor-widget-container:hover:before {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.bdt-mini-cart-button-icon svg {
  width: 18px;
}
.bdt-svg-image img {
  width: auto;
}
.bdt-portfolio-gallery.bdt-portfolio-gallery-skin-janes .bdt-gallery-item .bdt-portfolio-inner .bdt-portfolio-desc {
  transform: rotateY(-90deg);
}
.epsc-clipboard .epsc-copy-btn {
  opacity: 0;
  cursor: pointer;
}
.epsc-clipboard:hover .epsc-copy-btn {
  opacity: 1;
}
.epsc-rating .epsc-rating-item {
  color: #e7e7e7;
}
.epsc-rating .epsc-rating-item i {
  display: inline-flex;
  font-family: 'element-pack' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.epsc-rating .epsc-rating-item i:before {
  content: '\ece0';
}
.epsc-rating[class*=" epsc-rating-0"] .epsc-rating-item:nth-child(1) i:after,
.epsc-rating[class*=" epsc-rating-1"] .epsc-rating-item:nth-child(-n+1) i:after,
.epsc-rating[class*=" epsc-rating-2"] .epsc-rating-item:nth-child(-n+2) i:after,
.epsc-rating[class*=" epsc-rating-3"] .epsc-rating-item:nth-child(-n+3) i:after,
.epsc-rating[class*=" epsc-rating-4"] .epsc-rating-item:nth-child(-n+4) i:after,
.epsc-rating[class*=" epsc-rating-5"] .epsc-rating-item:nth-child(-n+5) i:after {
  position: absolute;
  content: '\ece2';
  color: #FFCC00;
}
.epsc-rating.epsc-rating-0-5 .epsc-rating-item:nth-child(1) i:after,
.epsc-rating.epsc-rating-1-5 .epsc-rating-item:nth-child(2) i:after,
.epsc-rating.epsc-rating-2-5 .epsc-rating-item:nth-child(3) i:after,
.epsc-rating.epsc-rating-3-5 .epsc-rating-item:nth-child(4) i:after,
.epsc-rating.epsc-rating-4-5 .epsc-rating-item:nth-child(5) i:after {
  content: '\ece1';
  color: #FFCC00;
  position: absolute;
}
.bdt-floating-effect-infinite--yes .elementor-widget-container > * {
  animation: fe-infinite-rotate var(--bdt-floating-effect-rotate-duration, 2000ms) linear infinite;
  animation-delay: var(--bdt-floating-effect-rotate-delay, 0);
}
@keyframes fe-infinite-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tippy-box .tippy-content .bdt-title {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1em;
}
@keyframes ep-grid-layer-animation-top-to-bottom {
  from {
    min-height: 0vh;
  }
  to {
    min-height: 100vh;
  }
}
.bdt-mouse-disabled {
  cursor: not-allowed;
}
.bdt-modal .bdt-modal-dialog button.bdt-close {
  width: auto;
}
.bdt-lightbox .bdt-lightbox-button {
  transition: all .3s ease;
}
.bdt-lightbox .bdt-lightbox-button svg {
  width: 1em;
}

@font-face{font-family:tutor;src:url(https://brisk.uicore.co/education/wp-content/plugins/tutor/assets/css/../fonts/tutor.woff)format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:tutor;src:url(https://brisk.uicore.co/education/wp-content/plugins/tutor/assets/css/../fonts/tutor-v2.woff)format("woff");font-weight:400;font-style:normal;font-display:block}[class^=tutor-icon-],[class*=\ tutor-icon-]{speak:never;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-style:normal;font-weight:400;line-height:1;font-family:tutor!important}.tutor-icon-privacy:before{content:""}.tutor-icon-laptop:before{content:""}.tutor-icon-desktop:before{content:""}.tutor-icon-tablet:before{content:""}.tutor-icon-mobile:before{content:""}.tutor-icon-map-pin:before{content:""}.tutor-icon-api:before{content:""}.tutor-icon-align-center:before{content:""}.tutor-icon-align-justify:before{content:""}.tutor-icon-align-left:before{content:""}.tutor-icon-align-right:before{content:""}.tutor-icon-receipt-percent:before{content:""}.tutor-icon-credit-card:before{content:""}.tutor-icon-change:before{content:""}.tutor-icon-tag:before{content:""}.tutor-icon-subscription:before{content:""}.tutor-icon-mark-light:before{content:""}.tutor-icon-brand-x-twitter:before{content:""}.tutor-icon-book-open-line:before{content:""}.tutor-icon-sorting-desc:before{content:""}.tutor-icon-sorting-asc:before{content:""}.tutor-icon-note:before{content:""}.tutor-icon-add-document:before{content:""}.tutor-icon-topic:before{content:""}.tutor-icon-quiz-2:before{content:""}.tutor-icon-bundle:before{content:""}.tutor-icon-plus-light:before{content:""}.tutor-icon-settings-log:before{content:""}.tutor-icon-key:before{content:""}.tutor-icon-brand-buddypress:before{content:""}.tutor-icon-brand-google-meet:before{content:""}.tutor-icon-brand-google-calendar:before{content:""}.tutor-icon-ban:before{content:""}.tutor-icon-brand-woocommerce:before{content:""}.tutor-icon-kebab-menu:before{content:""}.tutor-icon-add:before{content:""}.tutor-icon-add-photo:before{content:""}.tutor-icon-file-artboard:before{content:""}.tutor-icon-calender:before{content:""}.tutor-icon-circle-mark:before{content:""}.tutor-icon-certificate-portrait:before{content:""}.tutor-icon-brand-zoom:before{content:""}.tutor-icon-clipboard:before{content:""}.tutor-icon-code:before{content:""}.tutor-icon-conversation:before{content:""}.tutor-icon-trophy-o:before{content:""}.tutor-icon-file-blank-page:before{content:""}.tutor-icon-download:before{content:""}.tutor-icon-drag:before{content:""}.tutor-icon-emoji:before{content:""}.tutor-icon-file-import:before{content:""}.tutor-icon-gallery:before{content:""}.tutor-icon-trash-can:before{content:""}.tutor-icon-spectacles:before{content:""}.tutor-icon-graduate-student:before{content:""}.tutor-icon-grid-o:before{content:""}.tutor-icon-user-group:before{content:""}.tutor-icon-home-o:before{content:""}.tutor-icon-down:before{content:""}.tutor-icon-left:before{content:""}.tutor-icon-right:before{content:""}.tutor-icon-up:before{content:""}.tutor-icon-interactive:before{content:""}.tutor-icon-level:before{content:""}.tutor-icon-times:before{content:""}.tutor-icon-magnifying-glass:before{content:""}.tutor-icon-hamburger-o:before{content:""}.tutor-icon-next:before{content:""}.tutor-icon-badge-percent:before{content:""}.tutor-icon-book-open-o:before{content:""}.tutor-icon-pencil:before{content:""}.tutor-icon-previous:before{content:""}.tutor-icon-user-professor:before{content:""}.tutor-icon-qa:before{content:""}.tutor-icon-receipt-line:before{content:""}.tutor-icon-refund-o:before{content:""}.tutor-icon-page-review:before{content:""}.tutor-icon-save-line:before{content:""}.tutor-icon-page-search:before{content:""}.tutor-icon-share-nodes:before{content:""}.tutor-icon-spinner:before{content:""}.tutor-icon-mortarboard:before{content:""}.tutor-icon-user-student:before{content:""}.tutor-icon-badge-percent-o:before{content:""}.tutor-icon-money-bag:before{content:""}.tutor-icon-badge-star:before{content:""}.tutor-icon-update:before{content:""}.tutor-icon-upload-file:before{content:""}.tutor-icon-upload-o:before{content:""}.tutor-icon-upload:before{content:""}.tutor-icon-add-group:before{content:""}.tutor-icon-add-image:before{content:""}.tutor-icon-add-member:before{content:""}.tutor-icon-angle-double-left:before{content:""}.tutor-icon-angle-double-right:before{content:""}.tutor-icon-angle-down:before{content:""}.tutor-icon-angle-left:before{content:""}.tutor-icon-angle-right:before{content:""}.tutor-icon-angle-up:before{content:""}.tutor-icon-ruler:before{content:""}.tutor-icon-assignment:before{content:""}.tutor-icon-paperclip:before{content:""}.tutor-icon-volume:before{content:""}.tutor-icon-authorized:before{content:""}.tutor-icon-trophy:before{content:""}.tutor-icon-background:before{content:""}.tutor-icon-book-open:before{content:""}.tutor-icon-book:before{content:""}.tutor-icon-box-open:before{content:""}.tutor-icon-browser:before{content:""}.tutor-icon-bullet-point:before{content:""}.tutor-icon-calender-bold:before{content:""}.tutor-icon-calender-line:before{content:""}.tutor-icon-camera:before{content:""}.tutor-icon-cart-bold:before{content:""}.tutor-icon-cart-line:before{content:""}.tutor-icon-ribbon:before{content:""}.tutor-icon-certificate-landscape:before{content:""}.tutor-icon-slider-horizontal:before{content:""}.tutor-icon-chart-pie:before{content:""}.tutor-icon-circle-info:before{content:""}.tutor-icon-clock-bold:before{content:""}.tutor-icon-clock-line:before{content:""}.tutor-icon-coding:before{content:""}.tutor-icon-coins:before{content:""}.tutor-icon-mortarboard-o:before{content:""}.tutor-icon-comment:before{content:""}.tutor-icon-buildings:before{content:""}.tutor-icon-clock-line-o:before{content:""}.tutor-icon-copy:before{content:""}.tutor-icon-export:before{content:""}.tutor-icon-import:before{content:""}.tutor-icon-brand-learndash:before{content:""}.tutor-icon-brand-learnpress:before{content:""}.tutor-icon-circle-times-line:before{content:""}.tutor-icon-circle-times-bold:before{content:""}.tutor-icon-times-o:before{content:""}.tutor-icon-crown:before{content:""}.tutor-icon-slider-vertical:before{content:""}.tutor-icon-dashboard:before{content:""}.tutor-icon-trash-can-bold:before{content:""}.tutor-icon-trash-can-line:before{content:""}.tutor-icon-color-palette:before{content:""}.tutor-icon-external-link:before{content:""}.tutor-icon-badge-discount:before{content:""}.tutor-icon-badge-dollar:before{content:""}.tutor-icon-text-add:before{content:""}.tutor-icon-document-text:before{content:""}.tutor-icon-dollar-slot:before{content:""}.tutor-icon-door-open:before{content:""}.tutor-icon-caret-up:before{content:""}.tutor-icon-download-bold:before{content:""}.tutor-icon-sort:before{content:""}.tutor-icon-drop:before{content:""}.tutor-icon-hourglass-o:before{content:""}.tutor-icon-earth:before{content:""}.tutor-icon-pencil-o:before{content:""}.tutor-icon-edit:before{content:""}.tutor-icon-edit-o:before{content:""}.tutor-icon-edit-square:before{content:""}.tutor-icon-open-book-o:before{content:""}.tutor-icon-envelope:before{content:""}.tutor-icon-time-expired:before{content:""}.tutor-icon-eye-bold:before{content:""}.tutor-icon-eye-line:before{content:""}.tutor-icon-bookmark-bold:before{content:""}.tutor-icon-bookmark-line:before{content:""}.tutor-icon-hourglass:before{content:""}.tutor-icon-filter-dollar:before{content:""}.tutor-icon-filter:before{content:""}.tutor-icon-folder:before{content:""}.tutor-icon-grade:before{content:""}.tutor-icon-grade-book:before{content:""}.tutor-icon-grid-bold:before{content:""}.tutor-icon-grid-line:before{content:""}.tutor-icon-hand-holding-dollar:before{content:""}.tutor-icon-heart-bold:before{content:""}.tutor-icon-home:before{content:""}.tutor-icon-hamburger-menu:before{content:""}.tutor-icon-light-bulb:before{content:""}.tutor-icon-image-landscape:before{content:""}.tutor-icon-images:before{content:""}.tutor-icon-image-portrait:before{content:""}.tutor-icon-add-image-o:before{content:""}.tutor-icon-import-export:before{content:""}.tutor-icon-import-o:before{content:""}.tutor-icon-flag:before{content:""}.tutor-icon-circle-info-o:before{content:""}.tutor-icon-ribbon-o:before{content:""}.tutor-icon-instructor:before{content:""}.tutor-icon-copy-text:before{content:""}.tutor-icon-eye-slash-line:before{content:""}.tutor-icon-certificate-landscape-o:before{content:""}.tutor-icon-layer:before{content:""}.tutor-icon-link:before{content:""}.tutor-icon-clipboard-list:before{content:""}.tutor-icon-lock-bold:before{content:""}.tutor-icon-lock-line:before{content:""}.tutor-icon-user-bold:before{content:""}.tutor-icon-manual:before{content:""}.tutor-icon-circle-mark-o:before{content:""}.tutor-icon-mark:before{content:""}.tutor-icon-mark-unread:before{content:""}.tutor-icon-file-star:before{content:""}.tutor-icon-file-text:before{content:""}.tutor-icon-arrow-right-left:before{content:""}.tutor-icon-media-manager:before{content:""}.tutor-icon-meeting:before{content:""}.tutor-icon-microphone:before{content:""}.tutor-icon-minus:before{content:""}.tutor-icon-minus-o:before{content:""}.tutor-icon-refund:before{content:""}.tutor-icon-move:before{content:""}.tutor-icon-slider-h:before{content:""}.tutor-icon-slider-v:before{content:""}.tutor-icon-archive:before{content:""}.tutor-icon-important-bold:before{content:""}.tutor-icon-important-line:before{content:""}.tutor-icon-open-envelope:before{content:""}.tutor-icon-message-unread:before{content:""}.tutor-icon-double-mark:before{content:""}.tutor-icon-bell-bold:before{content:""}.tutor-icon-bell-line:before{content:""}.tutor-icon-text-width:before{content:""}.tutor-icon-order-down:before{content:""}.tutor-icon-order-up:before{content:""}.tutor-icon-ordering-a-z:before{content:""}.tutor-icon-ordering-z-a:before{content:""}.tutor-icon-paste:before{content:""}.tutor-icon-play-line:before{content:""}.tutor-icon-plus-o:before{content:""}.tutor-icon-plus:before{content:""}.tutor-icon-plus-square:before{content:""}.tutor-icon-eye-slash-bold:before{content:""}.tutor-icon-print:before{content:""}.tutor-icon-purchase-mark:before{content:""}.tutor-icon-puzzle:before{content:""}.tutor-icon-qr-code:before{content:""}.tutor-icon-question:before{content:""}.tutor-icon-circle-question-mark:before{content:""}.tutor-icon-quiz:before{content:""}.tutor-icon-quiz-attempt:before{content:""}.tutor-icon-quiz-o:before{content:""}.tutor-icon-receipt-bold:before{content:""}.tutor-icon-redo:before{content:""}.tutor-icon-refresh:before{content:""}.tutor-icon-refresh-o:before{content:""}.tutor-icon-report-time:before{content:""}.tutor-icon-save-bold:before{content:""}.tutor-icon-search:before{content:""}.tutor-icon-paper-plane:before{content:""}.tutor-icon-gear:before{content:""}.tutor-icon-shape:before{content:""}.tutor-icon-share:before{content:""}.tutor-icon-minimize:before{content:""}.tutor-icon-shorting-bullet:before{content:""}.tutor-icon-circle-notch:before{content:""}.tutor-icon-signout:before{content:""}.tutor-icon-rocket:before{content:""}.tutor-icon-bullhorn:before{content:""}.tutor-icon-star-bold:before{content:""}.tutor-icon-star-half-bold:before{content:""}.tutor-icon-star-line:before{content:""}.tutor-icon-stopwatch:before{content:""}.tutor-icon-brush:before{content:""}.tutor-icon-circle-mark-line:before{content:""}.tutor-icon-undo:before{content:""}.tutor-icon-university:before{content:""}.tutor-icon-unlock-line:before{content:""}.tutor-icon-caret-down:before{content:""}.tutor-icon-user-line:before{content:""}.tutor-icon-user-graduate:before{content:""}.tutor-icon-verify-id:before{content:""}.tutor-icon-video-camera:before{content:""}.tutor-icon-video-camera-o:before{content:""}.tutor-icon-wallet:before{content:""}.tutor-icon-brand-facebook:before{content:""}.tutor-icon-brand-zoom-o:before{content:""}.tutor-icon-circle-warning-outline:before{content:""}.tutor-icon-website:before{content:""}.tutor-icon-circle-half:before{content:""}.tutor-icon-zoom-in:before{content:""}.tutor-icon-zoom-out:before{content:""}.tutor-icon-brand-github:before{content:""}.tutor-icon-brand-google:before{content:""}.tutor-icon-brand-google-drive:before{content:""}.tutor-icon-brand-html5-bold:before{content:""}.tutor-icon-brand-html5-line:before{content:""}.tutor-icon-brand-instagram:before{content:""}.tutor-icon-brand-linkedin:before{content:""}.tutor-icon-brand-myspace:before{content:""}.tutor-icon-brand-paid-membersip-pro:before{content:""}.tutor-icon-brand-reddit:before{content:""}.tutor-icon-brand-skype:before{content:""}.tutor-icon-brand-snapchat:before{content:""}.tutor-icon-brand-soundcloud:before{content:""}.tutor-icon-brand-spotify:before{content:""}.tutor-icon-brand-tumblr:before{content:""}.tutor-icon-brand-twitter:before{content:""}.tutor-icon-brand-vimeo-bold:before{content:""}.tutor-icon-brand-vimeo-line:before{content:""}.tutor-icon-brand-yelp:before{content:""}.tutor-icon-brand-youtube-bold:before{content:""}.tutor-icon-brand-youtube-line:before{content:""}.tutor-icon-grade-o:before{content:""}.tutor-icon-file-ai:before{content:""}.tutor-icon-file-archive:before{content:""}.tutor-icon-file-audio:before{content:""}.tutor-icon-file-avi:before{content:""}.tutor-icon-file-compress:before{content:""}.tutor-icon-file-css:before{content:""}.tutor-icon-file-csv:before{content:""}.tutor-icon-file-dbf:before{content:""}.tutor-icon-file-doc:before{content:""}.tutor-icon-file-document:before{content:""}.tutor-icon-file-dwg:before{content:""}.tutor-icon-file-exe:before{content:""}.tutor-icon-file-fla:before{content:""}.tutor-icon-file-html:before{content:""}.tutor-icon-image-file:before{content:""}.tutor-icon-file-iso:before{content:""}.tutor-icon-file-json:before{content:""}.tutor-icon-file-js:before{content:""}.tutor-icon-file-jpg:before{content:""}.tutor-icon-file-mp3:before{content:""}.tutor-icon-file-mp4:before{content:""}.tutor-icon-file-pdf:before{content:""}.tutor-icon-file-png:before{content:""}.tutor-icon-file-ppt:before{content:""}.tutor-icon-file-psd:before{content:""}.tutor-icon-file-rtf:before{content:""}.tutor-icon-file-spreadsheet:before{content:""}.tutor-icon-file-svg:before{content:""}.tutor-icon-text-file:before{content:""}.tutor-icon-file-txt:before{content:""}.tutor-icon-video-file:before{content:""}.tutor-icon-file-xls:before{content:""}.tutor-icon-file-xml:before{content:""}.tutor-icon-file-zip:before{content:""}.tutor-icon-circle-info-bold:before{content:""}.tutor-icon-warning:before{content:""}.tutor-icon-shortcode:before{content:""}
.tutor-container,.tutor-container-fluid,.tutor-container-xxl,.tutor-container-xl,.tutor-container-lg,.tutor-container-md,.tutor-container-sm{width:100%;padding-right:var(--tutor-gutter-x,.75rem);padding-left:var(--tutor-gutter-x,.75rem);margin-left:auto;margin-right:auto}@media (min-width:576px){.tutor-container-sm,.tutor-container{max-width:540px}}@media (min-width:768px){.tutor-container-md,.tutor-container-sm,.tutor-container{max-width:720px}}@media (min-width:992px){.tutor-container-lg,.tutor-container-md,.tutor-container-sm,.tutor-container{max-width:960px}}@media (min-width:1200px){.tutor-container-xl,.tutor-container-lg,.tutor-container-md,.tutor-container-sm,.tutor-container{max-width:1140px}}@media (min-width:1400px){.tutor-container-xxl,.tutor-container-xl,.tutor-container-lg,.tutor-container-md,.tutor-container-sm,.tutor-container{max-width:1320px}}.tutor-row{--tutor-gutter-x:1.5rem;--tutor-gutter-y:0;margin-top:calc(-1*var(--tutor-gutter-y));margin-right:calc(-.5*var(--tutor-gutter-x));margin-left:calc(-.5*var(--tutor-gutter-x));flex-wrap:wrap;display:flex}.tutor-row>*{box-sizing:border-box;width:100%;max-width:100%;padding-right:calc(var(--tutor-gutter-x)*.5);padding-left:calc(var(--tutor-gutter-x)*.5);margin-top:var(--tutor-gutter-y);flex-shrink:0}.tutor-col{flex:1 0}.tutor-row-cols-auto>*{flex:none;width:auto}.tutor-row-cols-1>*{flex:none;width:100%}.tutor-row-cols-2>*{flex:none;width:50%}.tutor-row-cols-3>*{flex:none;width:33.3333%}.tutor-row-cols-4>*{flex:none;width:25%}.tutor-row-cols-5>*{flex:none;width:20%}.tutor-row-cols-6>*{flex:none;width:16.6667%}.tutor-col-auto{flex:none;width:auto}.tutor-col-1{flex:none;width:8.33333%}.tutor-col-2{flex:none;width:16.6667%}.tutor-col-3{flex:none;width:25%}.tutor-col-4{flex:none;width:33.3333%}.tutor-col-5{flex:none;width:41.6667%}.tutor-col-6{flex:none;width:50%}.tutor-col-7{flex:none;width:58.3333%}.tutor-col-8{flex:none;width:66.6667%}.tutor-col-9{flex:none;width:75%}.tutor-col-10{flex:none;width:83.3333%}.tutor-col-11{flex:none;width:91.6667%}.tutor-col-12{flex:none;width:100%}.tutor-offset-1{margin-left:8.33333%}.tutor-offset-2{margin-left:16.6667%}.tutor-offset-3{margin-left:25%}.tutor-offset-4{margin-left:33.3333%}.tutor-offset-5{margin-left:41.6667%}.tutor-offset-6{margin-left:50%}.tutor-offset-7{margin-left:58.3333%}.tutor-offset-8{margin-left:66.6667%}.tutor-offset-9{margin-left:75%}.tutor-offset-10{margin-left:83.3333%}.tutor-offset-11{margin-left:91.6667%}.tutor-g-0,.tutor-gx-0{--tutor-gutter-x:0}.tutor-g-0,.tutor-gy-0{--tutor-gutter-y:0}.tutor-g-1,.tutor-gx-1{--tutor-gutter-x:.5rem}.tutor-g-1,.tutor-gy-1{--tutor-gutter-y:.5rem}.tutor-g-2,.tutor-gx-2{--tutor-gutter-x:1rem}.tutor-g-2,.tutor-gy-2{--tutor-gutter-y:1rem}.tutor-g-3,.tutor-gx-3{--tutor-gutter-x:1.5rem}.tutor-g-3,.tutor-gy-3{--tutor-gutter-y:1.5rem}.tutor-g-4,.tutor-gx-4{--tutor-gutter-x:2rem}.tutor-g-4,.tutor-gy-4{--tutor-gutter-y:2rem}.tutor-g-5,.tutor-gx-5{--tutor-gutter-x:3rem}.tutor-g-5,.tutor-gy-5{--tutor-gutter-y:3rem}.tutor-g-4px,.tutor-gx-4px{--tutor-gutter-x:.25rem}.tutor-g-4px,.tutor-gy-4px{--tutor-gutter-y:.25rem}.tutor-g-12px,.tutor-gx-12px{--tutor-gutter-x:.75rem}.tutor-g-12px,.tutor-gy-12px{--tutor-gutter-y:.75rem}@media (min-width:576px){.tutor-col-sm{flex:1 0}.tutor-row-cols-sm-auto>*{flex:none;width:auto}.tutor-row-cols-sm-1>*{flex:none;width:100%}.tutor-row-cols-sm-2>*{flex:none;width:50%}.tutor-row-cols-sm-3>*{flex:none;width:33.3333%}.tutor-row-cols-sm-4>*{flex:none;width:25%}.tutor-row-cols-sm-5>*{flex:none;width:20%}.tutor-row-cols-sm-6>*{flex:none;width:16.6667%}.tutor-col-sm-auto{flex:none;width:auto}.tutor-col-sm-1{flex:none;width:8.33333%}.tutor-col-sm-2{flex:none;width:16.6667%}.tutor-col-sm-3{flex:none;width:25%}.tutor-col-sm-4{flex:none;width:33.3333%}.tutor-col-sm-5{flex:none;width:41.6667%}.tutor-col-sm-6{flex:none;width:50%}.tutor-col-sm-7{flex:none;width:58.3333%}.tutor-col-sm-8{flex:none;width:66.6667%}.tutor-col-sm-9{flex:none;width:75%}.tutor-col-sm-10{flex:none;width:83.3333%}.tutor-col-sm-11{flex:none;width:91.6667%}.tutor-col-sm-12{flex:none;width:100%}.tutor-offset-sm-0{margin-left:0}.tutor-offset-sm-1{margin-left:8.33333%}.tutor-offset-sm-2{margin-left:16.6667%}.tutor-offset-sm-3{margin-left:25%}.tutor-offset-sm-4{margin-left:33.3333%}.tutor-offset-sm-5{margin-left:41.6667%}.tutor-offset-sm-6{margin-left:50%}.tutor-offset-sm-7{margin-left:58.3333%}.tutor-offset-sm-8{margin-left:66.6667%}.tutor-offset-sm-9{margin-left:75%}.tutor-offset-sm-10{margin-left:83.3333%}.tutor-offset-sm-11{margin-left:91.6667%}.tutor-g-sm-0,.tutor-gx-sm-0{--tutor-gutter-x:0}.tutor-g-sm-0,.tutor-gy-sm-0{--tutor-gutter-y:0}.tutor-g-sm-1,.tutor-gx-sm-1{--tutor-gutter-x:.5rem}.tutor-g-sm-1,.tutor-gy-sm-1{--tutor-gutter-y:.5rem}.tutor-g-sm-2,.tutor-gx-sm-2{--tutor-gutter-x:1rem}.tutor-g-sm-2,.tutor-gy-sm-2{--tutor-gutter-y:1rem}.tutor-g-sm-3,.tutor-gx-sm-3{--tutor-gutter-x:1.5rem}.tutor-g-sm-3,.tutor-gy-sm-3{--tutor-gutter-y:1.5rem}.tutor-g-sm-4,.tutor-gx-sm-4{--tutor-gutter-x:2rem}.tutor-g-sm-4,.tutor-gy-sm-4{--tutor-gutter-y:2rem}.tutor-g-sm-5,.tutor-gx-sm-5{--tutor-gutter-x:3rem}.tutor-g-sm-5,.tutor-gy-sm-5{--tutor-gutter-y:3rem}.tutor-g-sm-4px,.tutor-gx-sm-4px{--tutor-gutter-x:.25rem}.tutor-g-sm-4px,.tutor-gy-sm-4px{--tutor-gutter-y:.25rem}.tutor-g-sm-12px,.tutor-gx-sm-12px{--tutor-gutter-x:.75rem}.tutor-g-sm-12px,.tutor-gy-sm-12px{--tutor-gutter-y:.75rem}}@media (min-width:768px){.tutor-col-md{flex:1 0}.tutor-row-cols-md-auto>*{flex:none;width:auto}.tutor-row-cols-md-1>*{flex:none;width:100%}.tutor-row-cols-md-2>*{flex:none;width:50%}.tutor-row-cols-md-3>*{flex:none;width:33.3333%}.tutor-row-cols-md-4>*{flex:none;width:25%}.tutor-row-cols-md-5>*{flex:none;width:20%}.tutor-row-cols-md-6>*{flex:none;width:16.6667%}.tutor-col-md-auto{flex:none;width:auto}.tutor-col-md-1{flex:none;width:8.33333%}.tutor-col-md-2{flex:none;width:16.6667%}.tutor-col-md-3{flex:none;width:25%}.tutor-col-md-4{flex:none;width:33.3333%}.tutor-col-md-5{flex:none;width:41.6667%}.tutor-col-md-6{flex:none;width:50%}.tutor-col-md-7{flex:none;width:58.3333%}.tutor-col-md-8{flex:none;width:66.6667%}.tutor-col-md-9{flex:none;width:75%}.tutor-col-md-10{flex:none;width:83.3333%}.tutor-col-md-11{flex:none;width:91.6667%}.tutor-col-md-12{flex:none;width:100%}.tutor-offset-md-0{margin-left:0}.tutor-offset-md-1{margin-left:8.33333%}.tutor-offset-md-2{margin-left:16.6667%}.tutor-offset-md-3{margin-left:25%}.tutor-offset-md-4{margin-left:33.3333%}.tutor-offset-md-5{margin-left:41.6667%}.tutor-offset-md-6{margin-left:50%}.tutor-offset-md-7{margin-left:58.3333%}.tutor-offset-md-8{margin-left:66.6667%}.tutor-offset-md-9{margin-left:75%}.tutor-offset-md-10{margin-left:83.3333%}.tutor-offset-md-11{margin-left:91.6667%}.tutor-g-md-0,.tutor-gx-md-0{--tutor-gutter-x:0}.tutor-g-md-0,.tutor-gy-md-0{--tutor-gutter-y:0}.tutor-g-md-1,.tutor-gx-md-1{--tutor-gutter-x:.5rem}.tutor-g-md-1,.tutor-gy-md-1{--tutor-gutter-y:.5rem}.tutor-g-md-2,.tutor-gx-md-2{--tutor-gutter-x:1rem}.tutor-g-md-2,.tutor-gy-md-2{--tutor-gutter-y:1rem}.tutor-g-md-3,.tutor-gx-md-3{--tutor-gutter-x:1.5rem}.tutor-g-md-3,.tutor-gy-md-3{--tutor-gutter-y:1.5rem}.tutor-g-md-4,.tutor-gx-md-4{--tutor-gutter-x:2rem}.tutor-g-md-4,.tutor-gy-md-4{--tutor-gutter-y:2rem}.tutor-g-md-5,.tutor-gx-md-5{--tutor-gutter-x:3rem}.tutor-g-md-5,.tutor-gy-md-5{--tutor-gutter-y:3rem}.tutor-g-md-4px,.tutor-gx-md-4px{--tutor-gutter-x:.25rem}.tutor-g-md-4px,.tutor-gy-md-4px{--tutor-gutter-y:.25rem}.tutor-g-md-12px,.tutor-gx-md-12px{--tutor-gutter-x:.75rem}.tutor-g-md-12px,.tutor-gy-md-12px{--tutor-gutter-y:.75rem}}@media (min-width:992px){.tutor-col-lg{flex:1 0}.tutor-row-cols-lg-auto>*{flex:none;width:auto}.tutor-row-cols-lg-1>*{flex:none;width:100%}.tutor-row-cols-lg-2>*{flex:none;width:50%}.tutor-row-cols-lg-3>*{flex:none;width:33.3333%}.tutor-row-cols-lg-4>*{flex:none;width:25%}.tutor-row-cols-lg-5>*{flex:none;width:20%}.tutor-row-cols-lg-6>*{flex:none;width:16.6667%}.tutor-col-lg-auto{flex:none;width:auto}.tutor-col-lg-1{flex:none;width:8.33333%}.tutor-col-lg-2{flex:none;width:16.6667%}.tutor-col-lg-3{flex:none;width:25%}.tutor-col-lg-4{flex:none;width:33.3333%}.tutor-col-lg-5{flex:none;width:41.6667%}.tutor-col-lg-6{flex:none;width:50%}.tutor-col-lg-7{flex:none;width:58.3333%}.tutor-col-lg-8{flex:none;width:66.6667%}.tutor-col-lg-9{flex:none;width:75%}.tutor-col-lg-10{flex:none;width:83.3333%}.tutor-col-lg-11{flex:none;width:91.6667%}.tutor-col-lg-12{flex:none;width:100%}.tutor-offset-lg-0{margin-left:0}.tutor-offset-lg-1{margin-left:8.33333%}.tutor-offset-lg-2{margin-left:16.6667%}.tutor-offset-lg-3{margin-left:25%}.tutor-offset-lg-4{margin-left:33.3333%}.tutor-offset-lg-5{margin-left:41.6667%}.tutor-offset-lg-6{margin-left:50%}.tutor-offset-lg-7{margin-left:58.3333%}.tutor-offset-lg-8{margin-left:66.6667%}.tutor-offset-lg-9{margin-left:75%}.tutor-offset-lg-10{margin-left:83.3333%}.tutor-offset-lg-11{margin-left:91.6667%}.tutor-g-lg-0,.tutor-gx-lg-0{--tutor-gutter-x:0}.tutor-g-lg-0,.tutor-gy-lg-0{--tutor-gutter-y:0}.tutor-g-lg-1,.tutor-gx-lg-1{--tutor-gutter-x:.5rem}.tutor-g-lg-1,.tutor-gy-lg-1{--tutor-gutter-y:.5rem}.tutor-g-lg-2,.tutor-gx-lg-2{--tutor-gutter-x:1rem}.tutor-g-lg-2,.tutor-gy-lg-2{--tutor-gutter-y:1rem}.tutor-g-lg-3,.tutor-gx-lg-3{--tutor-gutter-x:1.5rem}.tutor-g-lg-3,.tutor-gy-lg-3{--tutor-gutter-y:1.5rem}.tutor-g-lg-4,.tutor-gx-lg-4{--tutor-gutter-x:2rem}.tutor-g-lg-4,.tutor-gy-lg-4{--tutor-gutter-y:2rem}.tutor-g-lg-5,.tutor-gx-lg-5{--tutor-gutter-x:3rem}.tutor-g-lg-5,.tutor-gy-lg-5{--tutor-gutter-y:3rem}.tutor-g-lg-4px,.tutor-gx-lg-4px{--tutor-gutter-x:.25rem}.tutor-g-lg-4px,.tutor-gy-lg-4px{--tutor-gutter-y:.25rem}.tutor-g-lg-12px,.tutor-gx-lg-12px{--tutor-gutter-x:.75rem}.tutor-g-lg-12px,.tutor-gy-lg-12px{--tutor-gutter-y:.75rem}}@media (min-width:1200px){.tutor-col-xl{flex:1 0}.tutor-row-cols-xl-auto>*{flex:none;width:auto}.tutor-row-cols-xl-1>*{flex:none;width:100%}.tutor-row-cols-xl-2>*{flex:none;width:50%}.tutor-row-cols-xl-3>*{flex:none;width:33.3333%}.tutor-row-cols-xl-4>*{flex:none;width:25%}.tutor-row-cols-xl-5>*{flex:none;width:20%}.tutor-row-cols-xl-6>*{flex:none;width:16.6667%}.tutor-col-xl-auto{flex:none;width:auto}.tutor-col-xl-1{flex:none;width:8.33333%}.tutor-col-xl-2{flex:none;width:16.6667%}.tutor-col-xl-3{flex:none;width:25%}.tutor-col-xl-4{flex:none;width:33.3333%}.tutor-col-xl-5{flex:none;width:41.6667%}.tutor-col-xl-6{flex:none;width:50%}.tutor-col-xl-7{flex:none;width:58.3333%}.tutor-col-xl-8{flex:none;width:66.6667%}.tutor-col-xl-9{flex:none;width:75%}.tutor-col-xl-10{flex:none;width:83.3333%}.tutor-col-xl-11{flex:none;width:91.6667%}.tutor-col-xl-12{flex:none;width:100%}.tutor-offset-xl-0{margin-left:0}.tutor-offset-xl-1{margin-left:8.33333%}.tutor-offset-xl-2{margin-left:16.6667%}.tutor-offset-xl-3{margin-left:25%}.tutor-offset-xl-4{margin-left:33.3333%}.tutor-offset-xl-5{margin-left:41.6667%}.tutor-offset-xl-6{margin-left:50%}.tutor-offset-xl-7{margin-left:58.3333%}.tutor-offset-xl-8{margin-left:66.6667%}.tutor-offset-xl-9{margin-left:75%}.tutor-offset-xl-10{margin-left:83.3333%}.tutor-offset-xl-11{margin-left:91.6667%}.tutor-g-xl-0,.tutor-gx-xl-0{--tutor-gutter-x:0}.tutor-g-xl-0,.tutor-gy-xl-0{--tutor-gutter-y:0}.tutor-g-xl-1,.tutor-gx-xl-1{--tutor-gutter-x:.5rem}.tutor-g-xl-1,.tutor-gy-xl-1{--tutor-gutter-y:.5rem}.tutor-g-xl-2,.tutor-gx-xl-2{--tutor-gutter-x:1rem}.tutor-g-xl-2,.tutor-gy-xl-2{--tutor-gutter-y:1rem}.tutor-g-xl-3,.tutor-gx-xl-3{--tutor-gutter-x:1.5rem}.tutor-g-xl-3,.tutor-gy-xl-3{--tutor-gutter-y:1.5rem}.tutor-g-xl-4,.tutor-gx-xl-4{--tutor-gutter-x:2rem}.tutor-g-xl-4,.tutor-gy-xl-4{--tutor-gutter-y:2rem}.tutor-g-xl-5,.tutor-gx-xl-5{--tutor-gutter-x:3rem}.tutor-g-xl-5,.tutor-gy-xl-5{--tutor-gutter-y:3rem}.tutor-g-xl-4px,.tutor-gx-xl-4px{--tutor-gutter-x:.25rem}.tutor-g-xl-4px,.tutor-gy-xl-4px{--tutor-gutter-y:.25rem}.tutor-g-xl-12px,.tutor-gx-xl-12px{--tutor-gutter-x:.75rem}.tutor-g-xl-12px,.tutor-gy-xl-12px{--tutor-gutter-y:.75rem}}@media (min-width:1400px){.tutor-col-xxl{flex:1 0}.tutor-row-cols-xxl-auto>*{flex:none;width:auto}.tutor-row-cols-xxl-1>*{flex:none;width:100%}.tutor-row-cols-xxl-2>*{flex:none;width:50%}.tutor-row-cols-xxl-3>*{flex:none;width:33.3333%}.tutor-row-cols-xxl-4>*{flex:none;width:25%}.tutor-row-cols-xxl-5>*{flex:none;width:20%}.tutor-row-cols-xxl-6>*{flex:none;width:16.6667%}.tutor-col-xxl-auto{flex:none;width:auto}.tutor-col-xxl-1{flex:none;width:8.33333%}.tutor-col-xxl-2{flex:none;width:16.6667%}.tutor-col-xxl-3{flex:none;width:25%}.tutor-col-xxl-4{flex:none;width:33.3333%}.tutor-col-xxl-5{flex:none;width:41.6667%}.tutor-col-xxl-6{flex:none;width:50%}.tutor-col-xxl-7{flex:none;width:58.3333%}.tutor-col-xxl-8{flex:none;width:66.6667%}.tutor-col-xxl-9{flex:none;width:75%}.tutor-col-xxl-10{flex:none;width:83.3333%}.tutor-col-xxl-11{flex:none;width:91.6667%}.tutor-col-xxl-12{flex:none;width:100%}.tutor-offset-xxl-0{margin-left:0}.tutor-offset-xxl-1{margin-left:8.33333%}.tutor-offset-xxl-2{margin-left:16.6667%}.tutor-offset-xxl-3{margin-left:25%}.tutor-offset-xxl-4{margin-left:33.3333%}.tutor-offset-xxl-5{margin-left:41.6667%}.tutor-offset-xxl-6{margin-left:50%}.tutor-offset-xxl-7{margin-left:58.3333%}.tutor-offset-xxl-8{margin-left:66.6667%}.tutor-offset-xxl-9{margin-left:75%}.tutor-offset-xxl-10{margin-left:83.3333%}.tutor-offset-xxl-11{margin-left:91.6667%}.tutor-g-xxl-0,.tutor-gx-xxl-0{--tutor-gutter-x:0}.tutor-g-xxl-0,.tutor-gy-xxl-0{--tutor-gutter-y:0}.tutor-g-xxl-1,.tutor-gx-xxl-1{--tutor-gutter-x:.5rem}.tutor-g-xxl-1,.tutor-gy-xxl-1{--tutor-gutter-y:.5rem}.tutor-g-xxl-2,.tutor-gx-xxl-2{--tutor-gutter-x:1rem}.tutor-g-xxl-2,.tutor-gy-xxl-2{--tutor-gutter-y:1rem}.tutor-g-xxl-3,.tutor-gx-xxl-3{--tutor-gutter-x:1.5rem}.tutor-g-xxl-3,.tutor-gy-xxl-3{--tutor-gutter-y:1.5rem}.tutor-g-xxl-4,.tutor-gx-xxl-4{--tutor-gutter-x:2rem}.tutor-g-xxl-4,.tutor-gy-xxl-4{--tutor-gutter-y:2rem}.tutor-g-xxl-5,.tutor-gx-xxl-5{--tutor-gutter-x:3rem}.tutor-g-xxl-5,.tutor-gy-xxl-5{--tutor-gutter-y:3rem}.tutor-g-xxl-4px,.tutor-gx-xxl-4px{--tutor-gutter-x:.25rem}.tutor-g-xxl-4px,.tutor-gy-xxl-4px{--tutor-gutter-y:.25rem}.tutor-g-xxl-12px,.tutor-gx-xxl-12px{--tutor-gutter-x:.75rem}.tutor-g-xxl-12px,.tutor-gy-xxl-12px{--tutor-gutter-y:.75rem}}.tutor-grid{grid-gap:32px;grid-template-rows:min-content;grid-template-columns:repeat(1,1fr);display:grid}.tutor-grid-1{grid-template-columns:repeat(1,1fr)}@media (min-width:768px){.tutor-grid-2,.tutor-grid-3{grid-template-columns:repeat(2,1fr)}}@media (min-width:992px){.tutor-grid-3{grid-template-columns:repeat(3,1fr)}}@media (min-width:768px){.tutor-grid-4{grid-template-columns:repeat(2,1fr)}}@media (min-width:992px){.tutor-grid-4{grid-template-columns:repeat(3,1fr)}}@media (min-width:1200px){.tutor-grid-4{grid-template-columns:repeat(4,1fr)}}.tutor-d-inline{display:inline!important}.tutor-d-inline-block{display:inline-block!important}.tutor-d-block{display:block!important}.tutor-d-grid{display:grid!important}.tutor-d-table{display:table!important}.tutor-d-table-row{display:table-row!important}.tutor-d-table-cell{display:table-cell!important}.tutor-d-flex{display:flex!important}.tutor-d-inline-flex{display:inline-flex!important}.tutor-d-none{display:none!important}.tutor-flex-fill{flex:auto!important}.tutor-flex-row{flex-direction:row!important}.tutor-flex-column{flex-direction:column!important}.tutor-flex-row-reverse{flex-direction:row-reverse!important}.tutor-flex-column-reverse{flex-direction:column-reverse!important}.tutor-flex-grow-0{flex-grow:0!important}.tutor-flex-grow-1{flex-grow:1!important}.tutor-flex-shrink-0{flex-shrink:0!important}.tutor-flex-shrink-1{flex-shrink:1!important}.tutor-flex-wrap{flex-wrap:wrap!important}.tutor-flex-nowrap{flex-wrap:nowrap!important}.tutor-flex-wrap-reverse{flex-wrap:wrap-reverse!important}.tutor-gap-0{gap:0!important}.tutor-gap-1{gap:.5rem!important}.tutor-gap-2{gap:1rem!important}.tutor-gap-3{gap:1.5rem!important}.tutor-gap-4{gap:2rem!important}.tutor-gap-5{gap:3rem!important}.tutor-gap-4px{gap:.25rem!important}.tutor-gap-12px{gap:.75rem!important}.tutor-justify-start{justify-content:flex-start!important}.tutor-justify-end{justify-content:flex-end!important}.tutor-justify-center{justify-content:center!important}.tutor-justify-between{justify-content:space-between!important}.tutor-justify-around{justify-content:space-around!important}.tutor-justify-evenly{justify-content:space-evenly!important}.tutor-align-start{align-items:flex-start!important}.tutor-align-end{align-items:flex-end!important}.tutor-align-center{align-items:center!important}.tutor-align-baseline{align-items:baseline!important}.tutor-align-stretch{align-items:stretch!important}.tutor-align-content-start{align-content:flex-start!important}.tutor-align-content-end{align-content:flex-end!important}.tutor-align-content-center{align-content:center!important}.tutor-align-content-between{align-content:space-between!important}.tutor-align-content-around{align-content:space-around!important}.tutor-align-content-stretch{align-content:stretch!important}.tutor-align-self-auto{align-self:auto!important}.tutor-align-self-start{align-self:flex-start!important}.tutor-align-self-end{align-self:flex-end!important}.tutor-align-self-center{align-self:center!important}.tutor-align-self-baseline{align-self:baseline!important}.tutor-align-self-stretch{align-self:stretch!important}.tutor-order-first{order:-1!important}.tutor-order-0{order:0!important}.tutor-order-1{order:1!important}.tutor-order-2{order:2!important}.tutor-order-3{order:3!important}.tutor-order-4{order:4!important}.tutor-order-5{order:5!important}.tutor-order-last{order:6!important}.tutor-m-0{margin:0}.tutor-m-2{margin:2px}.tutor-m-4{margin:4px}.tutor-m-8{margin:8px}.tutor-m-12{margin:12px}.tutor-m-16{margin:16px}.tutor-m-20{margin:20px}.tutor-m-24{margin:24px}.tutor-m-28{margin:28px}.tutor-m-32{margin:32px}.tutor-m-36{margin:36px}.tutor-m-40{margin:40px}.tutor-m-44{margin:44px}.tutor-m-48{margin:48px}.tutor-m-52{margin:52px}.tutor-m-56{margin:56px}.tutor-m-60{margin:60px}.tutor-m-64{margin:64px}.tutor-m-68{margin:68px}.tutor-m-72{margin:72px}.tutor-m-76{margin:76px}.tutor-m-80{margin:80px}.tutor-m-auto{margin:auto}.tutor-mx-0{margin-left:0;margin-right:0}.tutor-mx-2{margin-left:2px;margin-right:2px}.tutor-mx-4{margin-left:4px;margin-right:4px}.tutor-mx-8{margin-left:8px;margin-right:8px}.tutor-mx-12{margin-left:12px;margin-right:12px}.tutor-mx-16{margin-left:16px;margin-right:16px}.tutor-mx-20{margin-left:20px;margin-right:20px}.tutor-mx-24{margin-left:24px;margin-right:24px}.tutor-mx-28{margin-left:28px;margin-right:28px}.tutor-mx-32{margin-left:32px;margin-right:32px}.tutor-mx-36{margin-left:36px;margin-right:36px}.tutor-mx-40{margin-left:40px;margin-right:40px}.tutor-mx-44{margin-left:44px;margin-right:44px}.tutor-mx-48{margin-left:48px;margin-right:48px}.tutor-mx-52{margin-left:52px;margin-right:52px}.tutor-mx-56{margin-left:56px;margin-right:56px}.tutor-mx-60{margin-left:60px;margin-right:60px}.tutor-mx-64{margin-left:64px;margin-right:64px}.tutor-mx-68{margin-left:68px;margin-right:68px}.tutor-mx-72{margin-left:72px;margin-right:72px}.tutor-mx-76{margin-left:76px;margin-right:76px}.tutor-mx-80{margin-left:80px;margin-right:80px}.tutor-mx-auto{margin-left:auto;margin-right:auto}.tutor-my-0{margin-top:0;margin-bottom:0}.tutor-my-2{margin-top:2px;margin-bottom:2px}.tutor-my-4{margin-top:4px;margin-bottom:4px}.tutor-my-8{margin-top:8px;margin-bottom:8px}.tutor-my-12{margin-top:12px;margin-bottom:12px}.tutor-my-16{margin-top:16px;margin-bottom:16px}.tutor-my-20{margin-top:20px;margin-bottom:20px}.tutor-my-24{margin-top:24px;margin-bottom:24px}.tutor-my-28{margin-top:28px;margin-bottom:28px}.tutor-my-32{margin-top:32px;margin-bottom:32px}.tutor-my-36{margin-top:36px;margin-bottom:36px}.tutor-my-40{margin-top:40px;margin-bottom:40px}.tutor-my-44{margin-top:44px;margin-bottom:44px}.tutor-my-48{margin-top:48px;margin-bottom:48px}.tutor-my-52{margin-top:52px;margin-bottom:52px}.tutor-my-56{margin-top:56px;margin-bottom:56px}.tutor-my-60{margin-top:60px;margin-bottom:60px}.tutor-my-64{margin-top:64px;margin-bottom:64px}.tutor-my-68{margin-top:68px;margin-bottom:68px}.tutor-my-72{margin-top:72px;margin-bottom:72px}.tutor-my-76{margin-top:76px;margin-bottom:76px}.tutor-my-80{margin-top:80px;margin-bottom:80px}.tutor-my-auto{margin-top:auto;margin-bottom:auto}.tutor-mt-0{margin-top:0}.tutor-mt-2{margin-top:2px}.tutor-mt-4{margin-top:4px}.tutor-mt-8{margin-top:8px}.tutor-mt-12{margin-top:12px}.tutor-mt-16{margin-top:16px}.tutor-mt-20{margin-top:20px}.tutor-mt-24{margin-top:24px}.tutor-mt-28{margin-top:28px}.tutor-mt-32{margin-top:32px}.tutor-mt-36{margin-top:36px}.tutor-mt-40{margin-top:40px}.tutor-mt-44{margin-top:44px}.tutor-mt-48{margin-top:48px}.tutor-mt-52{margin-top:52px}.tutor-mt-56{margin-top:56px}.tutor-mt-60{margin-top:60px}.tutor-mt-64{margin-top:64px}.tutor-mt-68{margin-top:68px}.tutor-mt-72{margin-top:72px}.tutor-mt-76{margin-top:76px}.tutor-mt-80{margin-top:80px}.tutor-mt-auto{margin-top:auto}.tutor-mr-0{margin-right:0}.tutor-mr-2{margin-right:2px}.tutor-mr-4{margin-right:4px}.tutor-mr-8{margin-right:8px}.tutor-mr-12{margin-right:12px}.tutor-mr-16{margin-right:16px}.tutor-mr-20{margin-right:20px}.tutor-mr-24{margin-right:24px}.tutor-mr-28{margin-right:28px}.tutor-mr-32{margin-right:32px}.tutor-mr-36{margin-right:36px}.tutor-mr-40{margin-right:40px}.tutor-mr-44{margin-right:44px}.tutor-mr-48{margin-right:48px}.tutor-mr-52{margin-right:52px}.tutor-mr-56{margin-right:56px}.tutor-mr-60{margin-right:60px}.tutor-mr-64{margin-right:64px}.tutor-mr-68{margin-right:68px}.tutor-mr-72{margin-right:72px}.tutor-mr-76{margin-right:76px}.tutor-mr-80{margin-right:80px}.tutor-mr-auto{margin-right:auto}.tutor-mb-0{margin-bottom:0}.tutor-mb-2{margin-bottom:2px}.tutor-mb-4{margin-bottom:4px}.tutor-mb-8{margin-bottom:8px}.tutor-mb-12{margin-bottom:12px}.tutor-mb-16{margin-bottom:16px}.tutor-mb-20{margin-bottom:20px}.tutor-mb-24{margin-bottom:24px}.tutor-mb-28{margin-bottom:28px}.tutor-mb-32{margin-bottom:32px}.tutor-mb-36{margin-bottom:36px}.tutor-mb-40{margin-bottom:40px}.tutor-mb-44{margin-bottom:44px}.tutor-mb-48{margin-bottom:48px}.tutor-mb-52{margin-bottom:52px}.tutor-mb-56{margin-bottom:56px}.tutor-mb-60{margin-bottom:60px}.tutor-mb-64{margin-bottom:64px}.tutor-mb-68{margin-bottom:68px}.tutor-mb-72{margin-bottom:72px}.tutor-mb-76{margin-bottom:76px}.tutor-mb-80{margin-bottom:80px}.tutor-mb-auto{margin-bottom:auto}.tutor-ml-0{margin-left:0}.tutor-ml-2{margin-left:2px}.tutor-ml-4{margin-left:4px}.tutor-ml-8{margin-left:8px}.tutor-ml-12{margin-left:12px}.tutor-ml-16{margin-left:16px}.tutor-ml-20{margin-left:20px}.tutor-ml-24{margin-left:24px}.tutor-ml-28{margin-left:28px}.tutor-ml-32{margin-left:32px}.tutor-ml-36{margin-left:36px}.tutor-ml-40{margin-left:40px}.tutor-ml-44{margin-left:44px}.tutor-ml-48{margin-left:48px}.tutor-ml-52{margin-left:52px}.tutor-ml-56{margin-left:56px}.tutor-ml-60{margin-left:60px}.tutor-ml-64{margin-left:64px}.tutor-ml-68{margin-left:68px}.tutor-ml-72{margin-left:72px}.tutor-ml-76{margin-left:76px}.tutor-ml-80{margin-left:80px}.tutor-ml-auto{margin-left:auto}.tutor-m-n2{margin:-2px}.tutor-m-n4{margin:-4px}.tutor-m-n8{margin:-8px}.tutor-m-n12{margin:-12px}.tutor-m-n16{margin:-16px}.tutor-m-n20{margin:-20px}.tutor-m-n24{margin:-24px}.tutor-m-n28{margin:-28px}.tutor-m-n32{margin:-32px}.tutor-m-n36{margin:-36px}.tutor-m-n40{margin:-40px}.tutor-m-n44{margin:-44px}.tutor-m-n48{margin:-48px}.tutor-m-n52{margin:-52px}.tutor-m-n56{margin:-56px}.tutor-m-n60{margin:-60px}.tutor-m-n64{margin:-64px}.tutor-m-n68{margin:-68px}.tutor-m-n72{margin:-72px}.tutor-m-n76{margin:-76px}.tutor-m-n80{margin:-80px}.tutor-mx-n2{margin-left:-2px;margin-right:-2px}.tutor-mx-n4{margin-left:-4px;margin-right:-4px}.tutor-mx-n8{margin-left:-8px;margin-right:-8px}.tutor-mx-n12{margin-left:-12px;margin-right:-12px}.tutor-mx-n16{margin-left:-16px;margin-right:-16px}.tutor-mx-n20{margin-left:-20px;margin-right:-20px}.tutor-mx-n24{margin-left:-24px;margin-right:-24px}.tutor-mx-n28{margin-left:-28px;margin-right:-28px}.tutor-mx-n32{margin-left:-32px;margin-right:-32px}.tutor-mx-n36{margin-left:-36px;margin-right:-36px}.tutor-mx-n40{margin-left:-40px;margin-right:-40px}.tutor-mx-n44{margin-left:-44px;margin-right:-44px}.tutor-mx-n48{margin-left:-48px;margin-right:-48px}.tutor-mx-n52{margin-left:-52px;margin-right:-52px}.tutor-mx-n56{margin-left:-56px;margin-right:-56px}.tutor-mx-n60{margin-left:-60px;margin-right:-60px}.tutor-mx-n64{margin-left:-64px;margin-right:-64px}.tutor-mx-n68{margin-left:-68px;margin-right:-68px}.tutor-mx-n72{margin-left:-72px;margin-right:-72px}.tutor-mx-n76{margin-left:-76px;margin-right:-76px}.tutor-mx-n80{margin-left:-80px;margin-right:-80px}.tutor-my-n2{margin-top:-2px;margin-bottom:-2px}.tutor-my-n4{margin-top:-4px;margin-bottom:-4px}.tutor-my-n8{margin-top:-8px;margin-bottom:-8px}.tutor-my-n12{margin-top:-12px;margin-bottom:-12px}.tutor-my-n16{margin-top:-16px;margin-bottom:-16px}.tutor-my-n20{margin-top:-20px;margin-bottom:-20px}.tutor-my-n24{margin-top:-24px;margin-bottom:-24px}.tutor-my-n28{margin-top:-28px;margin-bottom:-28px}.tutor-my-n32{margin-top:-32px;margin-bottom:-32px}.tutor-my-n36{margin-top:-36px;margin-bottom:-36px}.tutor-my-n40{margin-top:-40px;margin-bottom:-40px}.tutor-my-n44{margin-top:-44px;margin-bottom:-44px}.tutor-my-n48{margin-top:-48px;margin-bottom:-48px}.tutor-my-n52{margin-top:-52px;margin-bottom:-52px}.tutor-my-n56{margin-top:-56px;margin-bottom:-56px}.tutor-my-n60{margin-top:-60px;margin-bottom:-60px}.tutor-my-n64{margin-top:-64px;margin-bottom:-64px}.tutor-my-n68{margin-top:-68px;margin-bottom:-68px}.tutor-my-n72{margin-top:-72px;margin-bottom:-72px}.tutor-my-n76{margin-top:-76px;margin-bottom:-76px}.tutor-my-n80{margin-top:-80px;margin-bottom:-80px}.tutor-mt-n2{margin-top:-2px}.tutor-mt-n4{margin-top:-4px}.tutor-mt-n8{margin-top:-8px}.tutor-mt-n12{margin-top:-12px}.tutor-mt-n16{margin-top:-16px}.tutor-mt-n20{margin-top:-20px}.tutor-mt-n24{margin-top:-24px}.tutor-mt-n28{margin-top:-28px}.tutor-mt-n32{margin-top:-32px}.tutor-mt-n36{margin-top:-36px}.tutor-mt-n40{margin-top:-40px}.tutor-mt-n44{margin-top:-44px}.tutor-mt-n48{margin-top:-48px}.tutor-mt-n52{margin-top:-52px}.tutor-mt-n56{margin-top:-56px}.tutor-mt-n60{margin-top:-60px}.tutor-mt-n64{margin-top:-64px}.tutor-mt-n68{margin-top:-68px}.tutor-mt-n72{margin-top:-72px}.tutor-mt-n76{margin-top:-76px}.tutor-mt-n80{margin-top:-80px}.tutor-mr-n2{margin-right:-2px}.tutor-mr-n4{margin-right:-4px}.tutor-mr-n8{margin-right:-8px}.tutor-mr-n12{margin-right:-12px}.tutor-mr-n16{margin-right:-16px}.tutor-mr-n20{margin-right:-20px}.tutor-mr-n24{margin-right:-24px}.tutor-mr-n28{margin-right:-28px}.tutor-mr-n32{margin-right:-32px}.tutor-mr-n36{margin-right:-36px}.tutor-mr-n40{margin-right:-40px}.tutor-mr-n44{margin-right:-44px}.tutor-mr-n48{margin-right:-48px}.tutor-mr-n52{margin-right:-52px}.tutor-mr-n56{margin-right:-56px}.tutor-mr-n60{margin-right:-60px}.tutor-mr-n64{margin-right:-64px}.tutor-mr-n68{margin-right:-68px}.tutor-mr-n72{margin-right:-72px}.tutor-mr-n76{margin-right:-76px}.tutor-mr-n80{margin-right:-80px}.tutor-mb-n2{margin-bottom:-2px}.tutor-mb-n4{margin-bottom:-4px}.tutor-mb-n8{margin-bottom:-8px}.tutor-mb-n12{margin-bottom:-12px}.tutor-mb-n16{margin-bottom:-16px}.tutor-mb-n20{margin-bottom:-20px}.tutor-mb-n24{margin-bottom:-24px}.tutor-mb-n28{margin-bottom:-28px}.tutor-mb-n32{margin-bottom:-32px}.tutor-mb-n36{margin-bottom:-36px}.tutor-mb-n40{margin-bottom:-40px}.tutor-mb-n44{margin-bottom:-44px}.tutor-mb-n48{margin-bottom:-48px}.tutor-mb-n52{margin-bottom:-52px}.tutor-mb-n56{margin-bottom:-56px}.tutor-mb-n60{margin-bottom:-60px}.tutor-mb-n64{margin-bottom:-64px}.tutor-mb-n68{margin-bottom:-68px}.tutor-mb-n72{margin-bottom:-72px}.tutor-mb-n76{margin-bottom:-76px}.tutor-mb-n80{margin-bottom:-80px}.tutor-ml-n2{margin-left:-2px}.tutor-ml-n4{margin-left:-4px}.tutor-ml-n8{margin-left:-8px}.tutor-ml-n12{margin-left:-12px}.tutor-ml-n16{margin-left:-16px}.tutor-ml-n20{margin-left:-20px}.tutor-ml-n24{margin-left:-24px}.tutor-ml-n28{margin-left:-28px}.tutor-ml-n32{margin-left:-32px}.tutor-ml-n36{margin-left:-36px}.tutor-ml-n40{margin-left:-40px}.tutor-ml-n44{margin-left:-44px}.tutor-ml-n48{margin-left:-48px}.tutor-ml-n52{margin-left:-52px}.tutor-ml-n56{margin-left:-56px}.tutor-ml-n60{margin-left:-60px}.tutor-ml-n64{margin-left:-64px}.tutor-ml-n68{margin-left:-68px}.tutor-ml-n72{margin-left:-72px}.tutor-ml-n76{margin-left:-76px}.tutor-ml-n80{margin-left:-80px}.tutor-p-0{padding:0}.tutor-p-2{padding:2px}.tutor-p-4{padding:4px}.tutor-p-8{padding:8px}.tutor-p-12{padding:12px}.tutor-p-16{padding:16px}.tutor-p-20{padding:20px}.tutor-p-24,.tutor-large-notification{padding:24px}.tutor-p-28{padding:28px}.tutor-p-32{padding:32px}.tutor-p-36{padding:36px}.tutor-p-40{padding:40px}.tutor-p-44{padding:44px}.tutor-p-48{padding:48px}.tutor-p-52{padding:52px}.tutor-p-56{padding:56px}.tutor-p-60{padding:60px}.tutor-p-64{padding:64px}.tutor-p-68{padding:68px}.tutor-p-72{padding:72px}.tutor-p-76{padding:76px}.tutor-p-80{padding:80px}.tutor-px-0{padding-left:0;padding-right:0}.tutor-px-2{padding-left:2px;padding-right:2px}.tutor-px-4{padding-left:4px;padding-right:4px}.tutor-px-8{padding-left:8px;padding-right:8px}.tutor-px-12{padding-left:12px;padding-right:12px}.tutor-px-16{padding-left:16px;padding-right:16px}.tutor-px-20{padding-left:20px;padding-right:20px}.tutor-px-24{padding-left:24px;padding-right:24px}.tutor-px-28{padding-left:28px;padding-right:28px}.tutor-px-32{padding-left:32px;padding-right:32px}.tutor-px-36{padding-left:36px;padding-right:36px}.tutor-px-40{padding-left:40px;padding-right:40px}.tutor-px-44{padding-left:44px;padding-right:44px}.tutor-px-48{padding-left:48px;padding-right:48px}.tutor-px-52{padding-left:52px;padding-right:52px}.tutor-px-56{padding-left:56px;padding-right:56px}.tutor-px-60{padding-left:60px;padding-right:60px}.tutor-px-64{padding-left:64px;padding-right:64px}.tutor-px-68{padding-left:68px;padding-right:68px}.tutor-px-72{padding-left:72px;padding-right:72px}.tutor-px-76{padding-left:76px;padding-right:76px}.tutor-px-80{padding-left:80px;padding-right:80px}.tutor-py-0{padding-top:0;padding-bottom:0}.tutor-py-2{padding-top:2px;padding-bottom:2px}.tutor-py-4{padding-top:4px;padding-bottom:4px}.tutor-py-8{padding-top:8px;padding-bottom:8px}.tutor-py-12{padding-top:12px;padding-bottom:12px}.tutor-py-16{padding-top:16px;padding-bottom:16px}.tutor-py-20{padding-top:20px;padding-bottom:20px}.tutor-py-24{padding-top:24px;padding-bottom:24px}.tutor-py-28{padding-top:28px;padding-bottom:28px}.tutor-py-32{padding-top:32px;padding-bottom:32px}.tutor-py-36{padding-top:36px;padding-bottom:36px}.tutor-py-40{padding-top:40px;padding-bottom:40px}.tutor-py-44{padding-top:44px;padding-bottom:44px}.tutor-py-48{padding-top:48px;padding-bottom:48px}.tutor-py-52{padding-top:52px;padding-bottom:52px}.tutor-py-56{padding-top:56px;padding-bottom:56px}.tutor-py-60{padding-top:60px;padding-bottom:60px}.tutor-py-64{padding-top:64px;padding-bottom:64px}.tutor-py-68{padding-top:68px;padding-bottom:68px}.tutor-py-72{padding-top:72px;padding-bottom:72px}.tutor-py-76{padding-top:76px;padding-bottom:76px}.tutor-py-80{padding-top:80px;padding-bottom:80px}.tutor-pt-0{padding-top:0}.tutor-pt-2{padding-top:2px}.tutor-pt-4{padding-top:4px}.tutor-pt-8{padding-top:8px}.tutor-pt-12{padding-top:12px}.tutor-pt-16{padding-top:16px}.tutor-pt-20{padding-top:20px}.tutor-pt-24{padding-top:24px}.tutor-pt-28{padding-top:28px}.tutor-pt-32{padding-top:32px}.tutor-pt-36{padding-top:36px}.tutor-pt-40{padding-top:40px}.tutor-pt-44{padding-top:44px}.tutor-pt-48{padding-top:48px}.tutor-pt-52{padding-top:52px}.tutor-pt-56{padding-top:56px}.tutor-pt-60{padding-top:60px}.tutor-pt-64{padding-top:64px}.tutor-pt-68{padding-top:68px}.tutor-pt-72{padding-top:72px}.tutor-pt-76{padding-top:76px}.tutor-pt-80{padding-top:80px}.tutor-pr-0{padding-right:0}.tutor-pr-2{padding-right:2px}.tutor-pr-4{padding-right:4px}.tutor-pr-8{padding-right:8px}.tutor-pr-12{padding-right:12px}.tutor-pr-16{padding-right:16px}.tutor-pr-20{padding-right:20px}.tutor-pr-24{padding-right:24px}.tutor-pr-28{padding-right:28px}.tutor-pr-32{padding-right:32px}.tutor-pr-36{padding-right:36px}.tutor-pr-40{padding-right:40px}.tutor-pr-44{padding-right:44px}.tutor-pr-48{padding-right:48px}.tutor-pr-52{padding-right:52px}.tutor-pr-56{padding-right:56px}.tutor-pr-60{padding-right:60px}.tutor-pr-64{padding-right:64px}.tutor-pr-68{padding-right:68px}.tutor-pr-72{padding-right:72px}.tutor-pr-76{padding-right:76px}.tutor-pr-80{padding-right:80px}.tutor-pb-0{padding-bottom:0}.tutor-pb-2{padding-bottom:2px}.tutor-pb-4{padding-bottom:4px}.tutor-pb-8{padding-bottom:8px}.tutor-pb-12{padding-bottom:12px}.tutor-pb-16{padding-bottom:16px}.tutor-pb-20{padding-bottom:20px}.tutor-pb-24{padding-bottom:24px}.tutor-pb-28{padding-bottom:28px}.tutor-pb-32{padding-bottom:32px}.tutor-pb-36{padding-bottom:36px}.tutor-pb-40{padding-bottom:40px}.tutor-pb-44{padding-bottom:44px}.tutor-pb-48{padding-bottom:48px}.tutor-pb-52{padding-bottom:52px}.tutor-pb-56{padding-bottom:56px}.tutor-pb-60{padding-bottom:60px}.tutor-pb-64{padding-bottom:64px}.tutor-pb-68{padding-bottom:68px}.tutor-pb-72{padding-bottom:72px}.tutor-pb-76{padding-bottom:76px}.tutor-pb-80{padding-bottom:80px}.tutor-pl-0{padding-left:0}.tutor-pl-2{padding-left:2px}.tutor-pl-4{padding-left:4px}.tutor-pl-8{padding-left:8px}.tutor-pl-12,.tutor-instructor-card .tutor-icard-content{padding-left:12px}.tutor-pl-16{padding-left:16px}.tutor-pl-20{padding-left:20px}.tutor-pl-24{padding-left:24px}.tutor-pl-28{padding-left:28px}.tutor-pl-32{padding-left:32px}.tutor-pl-36{padding-left:36px}.tutor-pl-40{padding-left:40px}.tutor-pl-44{padding-left:44px}.tutor-pl-48{padding-left:48px}.tutor-pl-52{padding-left:52px}.tutor-pl-56{padding-left:56px}.tutor-pl-60{padding-left:60px}.tutor-pl-64{padding-left:64px}.tutor-pl-68{padding-left:68px}.tutor-pl-72{padding-left:72px}.tutor-pl-76{padding-left:76px}.tutor-pl-80{padding-left:80px}.tutor-fs-1{font-size:calc(1.525rem + 3.3vw)}.tutor-fs-2{font-size:calc(1.425rem + 2.1vw)}.tutor-fs-3{font-size:calc(1.325rem + .9vw)}.tutor-fs-4{font-size:calc(1.275rem + .3vw)}.tutor-fs-5{font-size:1.25rem}.tutor-fs-6{font-size:1rem}.tutor-fs-7{font-size:.875rem}.tutor-fs-8{font-size:.75rem}.tutor-fs-9{font-size:.625rem}.tutor-fst-italic{font-style:italic!important}.tutor-fst-normal{font-style:normal!important}.tutor-fw-thin{font-weight:lighter}.tutor-fw-lighter{font-weight:300}.tutor-fw-normal{font-weight:400}.tutor-fw-medium{font-weight:500}.tutor-fw-bold{font-weight:700}.tutor-fw-bolder{font-weight:bolder}@media (min-width:576px){.tutor-d-sm-inline{display:inline!important}.tutor-d-sm-inline-block{display:inline-block!important}.tutor-d-sm-block{display:block!important}.tutor-d-sm-grid{display:grid!important}.tutor-d-sm-table{display:table!important}.tutor-d-sm-table-row{display:table-row!important}.tutor-d-sm-table-cell{display:table-cell!important}.tutor-d-sm-flex{display:flex!important}.tutor-d-sm-inline-flex{display:inline-flex!important}.tutor-d-sm-none{display:none!important}.tutor-flex-sm-fill{flex:auto!important}.tutor-flex-sm-row{flex-direction:row!important}.tutor-flex-sm-column{flex-direction:column!important}.tutor-flex-sm-row-reverse{flex-direction:row-reverse!important}.tutor-flex-sm-column-reverse{flex-direction:column-reverse!important}.tutor-flex-sm-grow-0{flex-grow:0!important}.tutor-flex-sm-grow-1{flex-grow:1!important}.tutor-flex-sm-shrink-0{flex-shrink:0!important}.tutor-flex-sm-shrink-1{flex-shrink:1!important}.tutor-flex-sm-wrap{flex-wrap:wrap!important}.tutor-flex-sm-nowrap{flex-wrap:nowrap!important}.tutor-flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.tutor-gap-sm-0{gap:0!important}.tutor-gap-sm-1{gap:.5rem!important}.tutor-gap-sm-2{gap:1rem!important}.tutor-gap-sm-3{gap:1.5rem!important}.tutor-gap-sm-4{gap:2rem!important}.tutor-gap-sm-5{gap:3rem!important}.tutor-gap-sm-4px{gap:.25rem!important}.tutor-gap-sm-12px{gap:.75rem!important}.tutor-justify-sm-start{justify-content:flex-start!important}.tutor-justify-sm-end{justify-content:flex-end!important}.tutor-justify-sm-center{justify-content:center!important}.tutor-justify-sm-between{justify-content:space-between!important}.tutor-justify-sm-around{justify-content:space-around!important}.tutor-justify-sm-evenly{justify-content:space-evenly!important}.tutor-align-sm-start{align-items:flex-start!important}.tutor-align-sm-end{align-items:flex-end!important}.tutor-align-sm-center{align-items:center!important}.tutor-align-sm-baseline{align-items:baseline!important}.tutor-align-sm-stretch{align-items:stretch!important}.tutor-align-content-sm-start{align-content:flex-start!important}.tutor-align-content-sm-end{align-content:flex-end!important}.tutor-align-content-sm-center{align-content:center!important}.tutor-align-content-sm-between{align-content:space-between!important}.tutor-align-content-sm-around{align-content:space-around!important}.tutor-align-content-sm-stretch{align-content:stretch!important}.tutor-align-self-sm-auto{align-self:auto!important}.tutor-align-self-sm-start{align-self:flex-start!important}.tutor-align-self-sm-end{align-self:flex-end!important}.tutor-align-self-sm-center{align-self:center!important}.tutor-align-self-sm-baseline{align-self:baseline!important}.tutor-align-self-sm-stretch{align-self:stretch!important}.tutor-order-sm-first{order:-1!important}.tutor-order-sm-0{order:0!important}.tutor-order-sm-1{order:1!important}.tutor-order-sm-2{order:2!important}.tutor-order-sm-3{order:3!important}.tutor-order-sm-4{order:4!important}.tutor-order-sm-5{order:5!important}.tutor-order-sm-last{order:6!important}.tutor-m-sm-0{margin:0}.tutor-m-sm-2{margin:2px}.tutor-m-sm-4{margin:4px}.tutor-m-sm-8{margin:8px}.tutor-m-sm-12{margin:12px}.tutor-m-sm-16{margin:16px}.tutor-m-sm-20{margin:20px}.tutor-m-sm-24{margin:24px}.tutor-m-sm-28{margin:28px}.tutor-m-sm-32{margin:32px}.tutor-m-sm-36{margin:36px}.tutor-m-sm-40{margin:40px}.tutor-m-sm-44{margin:44px}.tutor-m-sm-48{margin:48px}.tutor-m-sm-52{margin:52px}.tutor-m-sm-56{margin:56px}.tutor-m-sm-60{margin:60px}.tutor-m-sm-64{margin:64px}.tutor-m-sm-68{margin:68px}.tutor-m-sm-72{margin:72px}.tutor-m-sm-76{margin:76px}.tutor-m-sm-80{margin:80px}.tutor-m-sm-auto{margin:auto}.tutor-mx-sm-0{margin-left:0;margin-right:0}.tutor-mx-sm-2{margin-left:2px;margin-right:2px}.tutor-mx-sm-4{margin-left:4px;margin-right:4px}.tutor-mx-sm-8{margin-left:8px;margin-right:8px}.tutor-mx-sm-12{margin-left:12px;margin-right:12px}.tutor-mx-sm-16{margin-left:16px;margin-right:16px}.tutor-mx-sm-20{margin-left:20px;margin-right:20px}.tutor-mx-sm-24{margin-left:24px;margin-right:24px}.tutor-mx-sm-28{margin-left:28px;margin-right:28px}.tutor-mx-sm-32{margin-left:32px;margin-right:32px}.tutor-mx-sm-36{margin-left:36px;margin-right:36px}.tutor-mx-sm-40{margin-left:40px;margin-right:40px}.tutor-mx-sm-44{margin-left:44px;margin-right:44px}.tutor-mx-sm-48{margin-left:48px;margin-right:48px}.tutor-mx-sm-52{margin-left:52px;margin-right:52px}.tutor-mx-sm-56{margin-left:56px;margin-right:56px}.tutor-mx-sm-60{margin-left:60px;margin-right:60px}.tutor-mx-sm-64{margin-left:64px;margin-right:64px}.tutor-mx-sm-68{margin-left:68px;margin-right:68px}.tutor-mx-sm-72{margin-left:72px;margin-right:72px}.tutor-mx-sm-76{margin-left:76px;margin-right:76px}.tutor-mx-sm-80{margin-left:80px;margin-right:80px}.tutor-mx-sm-auto{margin-left:auto;margin-right:auto}.tutor-my-sm-0{margin-top:0;margin-bottom:0}.tutor-my-sm-2{margin-top:2px;margin-bottom:2px}.tutor-my-sm-4{margin-top:4px;margin-bottom:4px}.tutor-my-sm-8{margin-top:8px;margin-bottom:8px}.tutor-my-sm-12{margin-top:12px;margin-bottom:12px}.tutor-my-sm-16{margin-top:16px;margin-bottom:16px}.tutor-my-sm-20{margin-top:20px;margin-bottom:20px}.tutor-my-sm-24{margin-top:24px;margin-bottom:24px}.tutor-my-sm-28{margin-top:28px;margin-bottom:28px}.tutor-my-sm-32{margin-top:32px;margin-bottom:32px}.tutor-my-sm-36{margin-top:36px;margin-bottom:36px}.tutor-my-sm-40{margin-top:40px;margin-bottom:40px}.tutor-my-sm-44{margin-top:44px;margin-bottom:44px}.tutor-my-sm-48{margin-top:48px;margin-bottom:48px}.tutor-my-sm-52{margin-top:52px;margin-bottom:52px}.tutor-my-sm-56{margin-top:56px;margin-bottom:56px}.tutor-my-sm-60{margin-top:60px;margin-bottom:60px}.tutor-my-sm-64{margin-top:64px;margin-bottom:64px}.tutor-my-sm-68{margin-top:68px;margin-bottom:68px}.tutor-my-sm-72{margin-top:72px;margin-bottom:72px}.tutor-my-sm-76{margin-top:76px;margin-bottom:76px}.tutor-my-sm-80{margin-top:80px;margin-bottom:80px}.tutor-my-sm-auto{margin-top:auto;margin-bottom:auto}.tutor-mt-sm-0{margin-top:0}.tutor-mt-sm-2{margin-top:2px}.tutor-mt-sm-4{margin-top:4px}.tutor-mt-sm-8{margin-top:8px}.tutor-mt-sm-12{margin-top:12px}.tutor-mt-sm-16{margin-top:16px}.tutor-mt-sm-20{margin-top:20px}.tutor-mt-sm-24{margin-top:24px}.tutor-mt-sm-28{margin-top:28px}.tutor-mt-sm-32{margin-top:32px}.tutor-mt-sm-36{margin-top:36px}.tutor-mt-sm-40{margin-top:40px}.tutor-mt-sm-44{margin-top:44px}.tutor-mt-sm-48{margin-top:48px}.tutor-mt-sm-52{margin-top:52px}.tutor-mt-sm-56{margin-top:56px}.tutor-mt-sm-60{margin-top:60px}.tutor-mt-sm-64{margin-top:64px}.tutor-mt-sm-68{margin-top:68px}.tutor-mt-sm-72{margin-top:72px}.tutor-mt-sm-76{margin-top:76px}.tutor-mt-sm-80{margin-top:80px}.tutor-mt-sm-auto{margin-top:auto}.tutor-mr-sm-0{margin-right:0}.tutor-mr-sm-2{margin-right:2px}.tutor-mr-sm-4{margin-right:4px}.tutor-mr-sm-8{margin-right:8px}.tutor-mr-sm-12{margin-right:12px}.tutor-mr-sm-16{margin-right:16px}.tutor-mr-sm-20{margin-right:20px}.tutor-mr-sm-24{margin-right:24px}.tutor-mr-sm-28{margin-right:28px}.tutor-mr-sm-32{margin-right:32px}.tutor-mr-sm-36{margin-right:36px}.tutor-mr-sm-40{margin-right:40px}.tutor-mr-sm-44{margin-right:44px}.tutor-mr-sm-48{margin-right:48px}.tutor-mr-sm-52{margin-right:52px}.tutor-mr-sm-56{margin-right:56px}.tutor-mr-sm-60{margin-right:60px}.tutor-mr-sm-64{margin-right:64px}.tutor-mr-sm-68{margin-right:68px}.tutor-mr-sm-72{margin-right:72px}.tutor-mr-sm-76{margin-right:76px}.tutor-mr-sm-80{margin-right:80px}.tutor-mr-sm-auto{margin-right:auto}.tutor-mb-sm-0{margin-bottom:0}.tutor-mb-sm-2{margin-bottom:2px}.tutor-mb-sm-4{margin-bottom:4px}.tutor-mb-sm-8{margin-bottom:8px}.tutor-mb-sm-12{margin-bottom:12px}.tutor-mb-sm-16{margin-bottom:16px}.tutor-mb-sm-20{margin-bottom:20px}.tutor-mb-sm-24{margin-bottom:24px}.tutor-mb-sm-28{margin-bottom:28px}.tutor-mb-sm-32{margin-bottom:32px}.tutor-mb-sm-36{margin-bottom:36px}.tutor-mb-sm-40{margin-bottom:40px}.tutor-mb-sm-44{margin-bottom:44px}.tutor-mb-sm-48{margin-bottom:48px}.tutor-mb-sm-52{margin-bottom:52px}.tutor-mb-sm-56{margin-bottom:56px}.tutor-mb-sm-60{margin-bottom:60px}.tutor-mb-sm-64{margin-bottom:64px}.tutor-mb-sm-68{margin-bottom:68px}.tutor-mb-sm-72{margin-bottom:72px}.tutor-mb-sm-76{margin-bottom:76px}.tutor-mb-sm-80{margin-bottom:80px}.tutor-mb-sm-auto{margin-bottom:auto}.tutor-ml-sm-0{margin-left:0}.tutor-ml-sm-2{margin-left:2px}.tutor-ml-sm-4{margin-left:4px}.tutor-ml-sm-8{margin-left:8px}.tutor-ml-sm-12{margin-left:12px}.tutor-ml-sm-16{margin-left:16px}.tutor-ml-sm-20{margin-left:20px}.tutor-ml-sm-24{margin-left:24px}.tutor-ml-sm-28{margin-left:28px}.tutor-ml-sm-32{margin-left:32px}.tutor-ml-sm-36{margin-left:36px}.tutor-ml-sm-40{margin-left:40px}.tutor-ml-sm-44{margin-left:44px}.tutor-ml-sm-48{margin-left:48px}.tutor-ml-sm-52{margin-left:52px}.tutor-ml-sm-56{margin-left:56px}.tutor-ml-sm-60{margin-left:60px}.tutor-ml-sm-64{margin-left:64px}.tutor-ml-sm-68{margin-left:68px}.tutor-ml-sm-72{margin-left:72px}.tutor-ml-sm-76{margin-left:76px}.tutor-ml-sm-80{margin-left:80px}.tutor-ml-sm-auto{margin-left:auto}.tutor-m-sm-n2{margin:-2px}.tutor-m-sm-n4{margin:-4px}.tutor-m-sm-n8{margin:-8px}.tutor-m-sm-n12{margin:-12px}.tutor-m-sm-n16{margin:-16px}.tutor-m-sm-n20{margin:-20px}.tutor-m-sm-n24{margin:-24px}.tutor-m-sm-n28{margin:-28px}.tutor-m-sm-n32{margin:-32px}.tutor-m-sm-n36{margin:-36px}.tutor-m-sm-n40{margin:-40px}.tutor-m-sm-n44{margin:-44px}.tutor-m-sm-n48{margin:-48px}.tutor-m-sm-n52{margin:-52px}.tutor-m-sm-n56{margin:-56px}.tutor-m-sm-n60{margin:-60px}.tutor-m-sm-n64{margin:-64px}.tutor-m-sm-n68{margin:-68px}.tutor-m-sm-n72{margin:-72px}.tutor-m-sm-n76{margin:-76px}.tutor-m-sm-n80{margin:-80px}.tutor-mx-sm-n2{margin-left:-2px;margin-right:-2px}.tutor-mx-sm-n4{margin-left:-4px;margin-right:-4px}.tutor-mx-sm-n8{margin-left:-8px;margin-right:-8px}.tutor-mx-sm-n12{margin-left:-12px;margin-right:-12px}.tutor-mx-sm-n16{margin-left:-16px;margin-right:-16px}.tutor-mx-sm-n20{margin-left:-20px;margin-right:-20px}.tutor-mx-sm-n24{margin-left:-24px;margin-right:-24px}.tutor-mx-sm-n28{margin-left:-28px;margin-right:-28px}.tutor-mx-sm-n32{margin-left:-32px;margin-right:-32px}.tutor-mx-sm-n36{margin-left:-36px;margin-right:-36px}.tutor-mx-sm-n40{margin-left:-40px;margin-right:-40px}.tutor-mx-sm-n44{margin-left:-44px;margin-right:-44px}.tutor-mx-sm-n48{margin-left:-48px;margin-right:-48px}.tutor-mx-sm-n52{margin-left:-52px;margin-right:-52px}.tutor-mx-sm-n56{margin-left:-56px;margin-right:-56px}.tutor-mx-sm-n60{margin-left:-60px;margin-right:-60px}.tutor-mx-sm-n64{margin-left:-64px;margin-right:-64px}.tutor-mx-sm-n68{margin-left:-68px;margin-right:-68px}.tutor-mx-sm-n72{margin-left:-72px;margin-right:-72px}.tutor-mx-sm-n76{margin-left:-76px;margin-right:-76px}.tutor-mx-sm-n80{margin-left:-80px;margin-right:-80px}.tutor-my-sm-n2{margin-top:-2px;margin-bottom:-2px}.tutor-my-sm-n4{margin-top:-4px;margin-bottom:-4px}.tutor-my-sm-n8{margin-top:-8px;margin-bottom:-8px}.tutor-my-sm-n12{margin-top:-12px;margin-bottom:-12px}.tutor-my-sm-n16{margin-top:-16px;margin-bottom:-16px}.tutor-my-sm-n20{margin-top:-20px;margin-bottom:-20px}.tutor-my-sm-n24{margin-top:-24px;margin-bottom:-24px}.tutor-my-sm-n28{margin-top:-28px;margin-bottom:-28px}.tutor-my-sm-n32{margin-top:-32px;margin-bottom:-32px}.tutor-my-sm-n36{margin-top:-36px;margin-bottom:-36px}.tutor-my-sm-n40{margin-top:-40px;margin-bottom:-40px}.tutor-my-sm-n44{margin-top:-44px;margin-bottom:-44px}.tutor-my-sm-n48{margin-top:-48px;margin-bottom:-48px}.tutor-my-sm-n52{margin-top:-52px;margin-bottom:-52px}.tutor-my-sm-n56{margin-top:-56px;margin-bottom:-56px}.tutor-my-sm-n60{margin-top:-60px;margin-bottom:-60px}.tutor-my-sm-n64{margin-top:-64px;margin-bottom:-64px}.tutor-my-sm-n68{margin-top:-68px;margin-bottom:-68px}.tutor-my-sm-n72{margin-top:-72px;margin-bottom:-72px}.tutor-my-sm-n76{margin-top:-76px;margin-bottom:-76px}.tutor-my-sm-n80{margin-top:-80px;margin-bottom:-80px}.tutor-mt-sm-n2{margin-top:-2px}.tutor-mt-sm-n4{margin-top:-4px}.tutor-mt-sm-n8{margin-top:-8px}.tutor-mt-sm-n12{margin-top:-12px}.tutor-mt-sm-n16{margin-top:-16px}.tutor-mt-sm-n20{margin-top:-20px}.tutor-mt-sm-n24{margin-top:-24px}.tutor-mt-sm-n28{margin-top:-28px}.tutor-mt-sm-n32{margin-top:-32px}.tutor-mt-sm-n36{margin-top:-36px}.tutor-mt-sm-n40{margin-top:-40px}.tutor-mt-sm-n44{margin-top:-44px}.tutor-mt-sm-n48{margin-top:-48px}.tutor-mt-sm-n52{margin-top:-52px}.tutor-mt-sm-n56{margin-top:-56px}.tutor-mt-sm-n60{margin-top:-60px}.tutor-mt-sm-n64{margin-top:-64px}.tutor-mt-sm-n68{margin-top:-68px}.tutor-mt-sm-n72{margin-top:-72px}.tutor-mt-sm-n76{margin-top:-76px}.tutor-mt-sm-n80{margin-top:-80px}.tutor-mr-sm-n2{margin-right:-2px}.tutor-mr-sm-n4{margin-right:-4px}.tutor-mr-sm-n8{margin-right:-8px}.tutor-mr-sm-n12{margin-right:-12px}.tutor-mr-sm-n16{margin-right:-16px}.tutor-mr-sm-n20{margin-right:-20px}.tutor-mr-sm-n24{margin-right:-24px}.tutor-mr-sm-n28{margin-right:-28px}.tutor-mr-sm-n32{margin-right:-32px}.tutor-mr-sm-n36{margin-right:-36px}.tutor-mr-sm-n40{margin-right:-40px}.tutor-mr-sm-n44{margin-right:-44px}.tutor-mr-sm-n48{margin-right:-48px}.tutor-mr-sm-n52{margin-right:-52px}.tutor-mr-sm-n56{margin-right:-56px}.tutor-mr-sm-n60{margin-right:-60px}.tutor-mr-sm-n64{margin-right:-64px}.tutor-mr-sm-n68{margin-right:-68px}.tutor-mr-sm-n72{margin-right:-72px}.tutor-mr-sm-n76{margin-right:-76px}.tutor-mr-sm-n80{margin-right:-80px}.tutor-mb-sm-n2{margin-bottom:-2px}.tutor-mb-sm-n4{margin-bottom:-4px}.tutor-mb-sm-n8{margin-bottom:-8px}.tutor-mb-sm-n12{margin-bottom:-12px}.tutor-mb-sm-n16{margin-bottom:-16px}.tutor-mb-sm-n20{margin-bottom:-20px}.tutor-mb-sm-n24{margin-bottom:-24px}.tutor-mb-sm-n28{margin-bottom:-28px}.tutor-mb-sm-n32{margin-bottom:-32px}.tutor-mb-sm-n36{margin-bottom:-36px}.tutor-mb-sm-n40{margin-bottom:-40px}.tutor-mb-sm-n44{margin-bottom:-44px}.tutor-mb-sm-n48{margin-bottom:-48px}.tutor-mb-sm-n52{margin-bottom:-52px}.tutor-mb-sm-n56{margin-bottom:-56px}.tutor-mb-sm-n60{margin-bottom:-60px}.tutor-mb-sm-n64{margin-bottom:-64px}.tutor-mb-sm-n68{margin-bottom:-68px}.tutor-mb-sm-n72{margin-bottom:-72px}.tutor-mb-sm-n76{margin-bottom:-76px}.tutor-mb-sm-n80{margin-bottom:-80px}.tutor-ml-sm-n2{margin-left:-2px}.tutor-ml-sm-n4{margin-left:-4px}.tutor-ml-sm-n8{margin-left:-8px}.tutor-ml-sm-n12{margin-left:-12px}.tutor-ml-sm-n16{margin-left:-16px}.tutor-ml-sm-n20{margin-left:-20px}.tutor-ml-sm-n24{margin-left:-24px}.tutor-ml-sm-n28{margin-left:-28px}.tutor-ml-sm-n32{margin-left:-32px}.tutor-ml-sm-n36{margin-left:-36px}.tutor-ml-sm-n40{margin-left:-40px}.tutor-ml-sm-n44{margin-left:-44px}.tutor-ml-sm-n48{margin-left:-48px}.tutor-ml-sm-n52{margin-left:-52px}.tutor-ml-sm-n56{margin-left:-56px}.tutor-ml-sm-n60{margin-left:-60px}.tutor-ml-sm-n64{margin-left:-64px}.tutor-ml-sm-n68{margin-left:-68px}.tutor-ml-sm-n72{margin-left:-72px}.tutor-ml-sm-n76{margin-left:-76px}.tutor-ml-sm-n80{margin-left:-80px}.tutor-p-sm-0{padding:0}.tutor-p-sm-2{padding:2px}.tutor-p-sm-4{padding:4px}.tutor-p-sm-8{padding:8px}.tutor-p-sm-12{padding:12px}.tutor-p-sm-16{padding:16px}.tutor-p-sm-20{padding:20px}.tutor-p-sm-24{padding:24px}.tutor-p-sm-28{padding:28px}.tutor-p-sm-32{padding:32px}.tutor-p-sm-36{padding:36px}.tutor-p-sm-40{padding:40px}.tutor-p-sm-44{padding:44px}.tutor-p-sm-48{padding:48px}.tutor-p-sm-52{padding:52px}.tutor-p-sm-56{padding:56px}.tutor-p-sm-60{padding:60px}.tutor-p-sm-64{padding:64px}.tutor-p-sm-68{padding:68px}.tutor-p-sm-72{padding:72px}.tutor-p-sm-76{padding:76px}.tutor-p-sm-80{padding:80px}.tutor-px-sm-0{padding-left:0;padding-right:0}.tutor-px-sm-2{padding-left:2px;padding-right:2px}.tutor-px-sm-4{padding-left:4px;padding-right:4px}.tutor-px-sm-8{padding-left:8px;padding-right:8px}.tutor-px-sm-12{padding-left:12px;padding-right:12px}.tutor-px-sm-16{padding-left:16px;padding-right:16px}.tutor-px-sm-20{padding-left:20px;padding-right:20px}.tutor-px-sm-24{padding-left:24px;padding-right:24px}.tutor-px-sm-28{padding-left:28px;padding-right:28px}.tutor-px-sm-32{padding-left:32px;padding-right:32px}.tutor-px-sm-36{padding-left:36px;padding-right:36px}.tutor-px-sm-40{padding-left:40px;padding-right:40px}.tutor-px-sm-44{padding-left:44px;padding-right:44px}.tutor-px-sm-48{padding-left:48px;padding-right:48px}.tutor-px-sm-52{padding-left:52px;padding-right:52px}.tutor-px-sm-56{padding-left:56px;padding-right:56px}.tutor-px-sm-60{padding-left:60px;padding-right:60px}.tutor-px-sm-64{padding-left:64px;padding-right:64px}.tutor-px-sm-68{padding-left:68px;padding-right:68px}.tutor-px-sm-72{padding-left:72px;padding-right:72px}.tutor-px-sm-76{padding-left:76px;padding-right:76px}.tutor-px-sm-80{padding-left:80px;padding-right:80px}.tutor-py-sm-0{padding-top:0;padding-bottom:0}.tutor-py-sm-2{padding-top:2px;padding-bottom:2px}.tutor-py-sm-4{padding-top:4px;padding-bottom:4px}.tutor-py-sm-8{padding-top:8px;padding-bottom:8px}.tutor-py-sm-12{padding-top:12px;padding-bottom:12px}.tutor-py-sm-16{padding-top:16px;padding-bottom:16px}.tutor-py-sm-20{padding-top:20px;padding-bottom:20px}.tutor-py-sm-24{padding-top:24px;padding-bottom:24px}.tutor-py-sm-28{padding-top:28px;padding-bottom:28px}.tutor-py-sm-32{padding-top:32px;padding-bottom:32px}.tutor-py-sm-36{padding-top:36px;padding-bottom:36px}.tutor-py-sm-40{padding-top:40px;padding-bottom:40px}.tutor-py-sm-44{padding-top:44px;padding-bottom:44px}.tutor-py-sm-48{padding-top:48px;padding-bottom:48px}.tutor-py-sm-52{padding-top:52px;padding-bottom:52px}.tutor-py-sm-56{padding-top:56px;padding-bottom:56px}.tutor-py-sm-60{padding-top:60px;padding-bottom:60px}.tutor-py-sm-64{padding-top:64px;padding-bottom:64px}.tutor-py-sm-68{padding-top:68px;padding-bottom:68px}.tutor-py-sm-72{padding-top:72px;padding-bottom:72px}.tutor-py-sm-76{padding-top:76px;padding-bottom:76px}.tutor-py-sm-80{padding-top:80px;padding-bottom:80px}.tutor-pt-sm-0{padding-top:0}.tutor-pt-sm-2{padding-top:2px}.tutor-pt-sm-4{padding-top:4px}.tutor-pt-sm-8{padding-top:8px}.tutor-pt-sm-12{padding-top:12px}.tutor-pt-sm-16{padding-top:16px}.tutor-pt-sm-20{padding-top:20px}.tutor-pt-sm-24{padding-top:24px}.tutor-pt-sm-28{padding-top:28px}.tutor-pt-sm-32{padding-top:32px}.tutor-pt-sm-36{padding-top:36px}.tutor-pt-sm-40{padding-top:40px}.tutor-pt-sm-44{padding-top:44px}.tutor-pt-sm-48{padding-top:48px}.tutor-pt-sm-52{padding-top:52px}.tutor-pt-sm-56{padding-top:56px}.tutor-pt-sm-60{padding-top:60px}.tutor-pt-sm-64{padding-top:64px}.tutor-pt-sm-68{padding-top:68px}.tutor-pt-sm-72{padding-top:72px}.tutor-pt-sm-76{padding-top:76px}.tutor-pt-sm-80{padding-top:80px}.tutor-pr-sm-0{padding-right:0}.tutor-pr-sm-2{padding-right:2px}.tutor-pr-sm-4{padding-right:4px}.tutor-pr-sm-8{padding-right:8px}.tutor-pr-sm-12{padding-right:12px}.tutor-pr-sm-16{padding-right:16px}.tutor-pr-sm-20{padding-right:20px}.tutor-pr-sm-24{padding-right:24px}.tutor-pr-sm-28{padding-right:28px}.tutor-pr-sm-32{padding-right:32px}.tutor-pr-sm-36{padding-right:36px}.tutor-pr-sm-40{padding-right:40px}.tutor-pr-sm-44{padding-right:44px}.tutor-pr-sm-48{padding-right:48px}.tutor-pr-sm-52{padding-right:52px}.tutor-pr-sm-56{padding-right:56px}.tutor-pr-sm-60{padding-right:60px}.tutor-pr-sm-64{padding-right:64px}.tutor-pr-sm-68{padding-right:68px}.tutor-pr-sm-72{padding-right:72px}.tutor-pr-sm-76{padding-right:76px}.tutor-pr-sm-80{padding-right:80px}.tutor-pb-sm-0{padding-bottom:0}.tutor-pb-sm-2{padding-bottom:2px}.tutor-pb-sm-4{padding-bottom:4px}.tutor-pb-sm-8{padding-bottom:8px}.tutor-pb-sm-12{padding-bottom:12px}.tutor-pb-sm-16{padding-bottom:16px}.tutor-pb-sm-20{padding-bottom:20px}.tutor-pb-sm-24{padding-bottom:24px}.tutor-pb-sm-28{padding-bottom:28px}.tutor-pb-sm-32{padding-bottom:32px}.tutor-pb-sm-36{padding-bottom:36px}.tutor-pb-sm-40{padding-bottom:40px}.tutor-pb-sm-44{padding-bottom:44px}.tutor-pb-sm-48{padding-bottom:48px}.tutor-pb-sm-52{padding-bottom:52px}.tutor-pb-sm-56{padding-bottom:56px}.tutor-pb-sm-60{padding-bottom:60px}.tutor-pb-sm-64{padding-bottom:64px}.tutor-pb-sm-68{padding-bottom:68px}.tutor-pb-sm-72{padding-bottom:72px}.tutor-pb-sm-76{padding-bottom:76px}.tutor-pb-sm-80{padding-bottom:80px}.tutor-pl-sm-0{padding-left:0}.tutor-pl-sm-2{padding-left:2px}.tutor-pl-sm-4{padding-left:4px}.tutor-pl-sm-8{padding-left:8px}.tutor-pl-sm-12{padding-left:12px}.tutor-pl-sm-16{padding-left:16px}.tutor-pl-sm-20{padding-left:20px}.tutor-pl-sm-24{padding-left:24px}.tutor-pl-sm-28{padding-left:28px}.tutor-pl-sm-32{padding-left:32px}.tutor-pl-sm-36{padding-left:36px}.tutor-pl-sm-40{padding-left:40px}.tutor-pl-sm-44{padding-left:44px}.tutor-pl-sm-48{padding-left:48px}.tutor-pl-sm-52{padding-left:52px}.tutor-pl-sm-56{padding-left:56px}.tutor-pl-sm-60{padding-left:60px}.tutor-pl-sm-64{padding-left:64px}.tutor-pl-sm-68{padding-left:68px}.tutor-pl-sm-72{padding-left:72px}.tutor-pl-sm-76{padding-left:76px}.tutor-pl-sm-80{padding-left:80px}}@media (min-width:768px){.tutor-d-md-inline{display:inline!important}.tutor-d-md-inline-block{display:inline-block!important}.tutor-d-md-block{display:block!important}.tutor-d-md-grid{display:grid!important}.tutor-d-md-table{display:table!important}.tutor-d-md-table-row{display:table-row!important}.tutor-d-md-table-cell{display:table-cell!important}.tutor-d-md-flex{display:flex!important}.tutor-d-md-inline-flex{display:inline-flex!important}.tutor-d-md-none{display:none!important}.tutor-flex-md-fill{flex:auto!important}.tutor-flex-md-row{flex-direction:row!important}.tutor-flex-md-column{flex-direction:column!important}.tutor-flex-md-row-reverse{flex-direction:row-reverse!important}.tutor-flex-md-column-reverse{flex-direction:column-reverse!important}.tutor-flex-md-grow-0{flex-grow:0!important}.tutor-flex-md-grow-1{flex-grow:1!important}.tutor-flex-md-shrink-0{flex-shrink:0!important}.tutor-flex-md-shrink-1{flex-shrink:1!important}.tutor-flex-md-wrap{flex-wrap:wrap!important}.tutor-flex-md-nowrap{flex-wrap:nowrap!important}.tutor-flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.tutor-gap-md-0{gap:0!important}.tutor-gap-md-1{gap:.5rem!important}.tutor-gap-md-2{gap:1rem!important}.tutor-gap-md-3{gap:1.5rem!important}.tutor-gap-md-4{gap:2rem!important}.tutor-gap-md-5{gap:3rem!important}.tutor-gap-md-4px{gap:.25rem!important}.tutor-gap-md-12px{gap:.75rem!important}.tutor-justify-md-start{justify-content:flex-start!important}.tutor-justify-md-end{justify-content:flex-end!important}.tutor-justify-md-center{justify-content:center!important}.tutor-justify-md-between{justify-content:space-between!important}.tutor-justify-md-around{justify-content:space-around!important}.tutor-justify-md-evenly{justify-content:space-evenly!important}.tutor-align-md-start{align-items:flex-start!important}.tutor-align-md-end{align-items:flex-end!important}.tutor-align-md-center{align-items:center!important}.tutor-align-md-baseline{align-items:baseline!important}.tutor-align-md-stretch{align-items:stretch!important}.tutor-align-content-md-start{align-content:flex-start!important}.tutor-align-content-md-end{align-content:flex-end!important}.tutor-align-content-md-center{align-content:center!important}.tutor-align-content-md-between{align-content:space-between!important}.tutor-align-content-md-around{align-content:space-around!important}.tutor-align-content-md-stretch{align-content:stretch!important}.tutor-align-self-md-auto{align-self:auto!important}.tutor-align-self-md-start{align-self:flex-start!important}.tutor-align-self-md-end{align-self:flex-end!important}.tutor-align-self-md-center{align-self:center!important}.tutor-align-self-md-baseline{align-self:baseline!important}.tutor-align-self-md-stretch{align-self:stretch!important}.tutor-order-md-first{order:-1!important}.tutor-order-md-0{order:0!important}.tutor-order-md-1{order:1!important}.tutor-order-md-2{order:2!important}.tutor-order-md-3{order:3!important}.tutor-order-md-4{order:4!important}.tutor-order-md-5{order:5!important}.tutor-order-md-last{order:6!important}.tutor-m-md-0{margin:0}.tutor-m-md-2{margin:2px}.tutor-m-md-4{margin:4px}.tutor-m-md-8{margin:8px}.tutor-m-md-12{margin:12px}.tutor-m-md-16{margin:16px}.tutor-m-md-20{margin:20px}.tutor-m-md-24{margin:24px}.tutor-m-md-28{margin:28px}.tutor-m-md-32{margin:32px}.tutor-m-md-36{margin:36px}.tutor-m-md-40{margin:40px}.tutor-m-md-44{margin:44px}.tutor-m-md-48{margin:48px}.tutor-m-md-52{margin:52px}.tutor-m-md-56{margin:56px}.tutor-m-md-60{margin:60px}.tutor-m-md-64{margin:64px}.tutor-m-md-68{margin:68px}.tutor-m-md-72{margin:72px}.tutor-m-md-76{margin:76px}.tutor-m-md-80{margin:80px}.tutor-m-md-auto{margin:auto}.tutor-mx-md-0{margin-left:0;margin-right:0}.tutor-mx-md-2{margin-left:2px;margin-right:2px}.tutor-mx-md-4{margin-left:4px;margin-right:4px}.tutor-mx-md-8{margin-left:8px;margin-right:8px}.tutor-mx-md-12{margin-left:12px;margin-right:12px}.tutor-mx-md-16{margin-left:16px;margin-right:16px}.tutor-mx-md-20{margin-left:20px;margin-right:20px}.tutor-mx-md-24{margin-left:24px;margin-right:24px}.tutor-mx-md-28{margin-left:28px;margin-right:28px}.tutor-mx-md-32{margin-left:32px;margin-right:32px}.tutor-mx-md-36{margin-left:36px;margin-right:36px}.tutor-mx-md-40{margin-left:40px;margin-right:40px}.tutor-mx-md-44{margin-left:44px;margin-right:44px}.tutor-mx-md-48{margin-left:48px;margin-right:48px}.tutor-mx-md-52{margin-left:52px;margin-right:52px}.tutor-mx-md-56{margin-left:56px;margin-right:56px}.tutor-mx-md-60{margin-left:60px;margin-right:60px}.tutor-mx-md-64{margin-left:64px;margin-right:64px}.tutor-mx-md-68{margin-left:68px;margin-right:68px}.tutor-mx-md-72{margin-left:72px;margin-right:72px}.tutor-mx-md-76{margin-left:76px;margin-right:76px}.tutor-mx-md-80{margin-left:80px;margin-right:80px}.tutor-mx-md-auto{margin-left:auto;margin-right:auto}.tutor-my-md-0{margin-top:0;margin-bottom:0}.tutor-my-md-2{margin-top:2px;margin-bottom:2px}.tutor-my-md-4{margin-top:4px;margin-bottom:4px}.tutor-my-md-8{margin-top:8px;margin-bottom:8px}.tutor-my-md-12{margin-top:12px;margin-bottom:12px}.tutor-my-md-16{margin-top:16px;margin-bottom:16px}.tutor-my-md-20{margin-top:20px;margin-bottom:20px}.tutor-my-md-24{margin-top:24px;margin-bottom:24px}.tutor-my-md-28{margin-top:28px;margin-bottom:28px}.tutor-my-md-32{margin-top:32px;margin-bottom:32px}.tutor-my-md-36{margin-top:36px;margin-bottom:36px}.tutor-my-md-40{margin-top:40px;margin-bottom:40px}.tutor-my-md-44{margin-top:44px;margin-bottom:44px}.tutor-my-md-48{margin-top:48px;margin-bottom:48px}.tutor-my-md-52{margin-top:52px;margin-bottom:52px}.tutor-my-md-56{margin-top:56px;margin-bottom:56px}.tutor-my-md-60{margin-top:60px;margin-bottom:60px}.tutor-my-md-64{margin-top:64px;margin-bottom:64px}.tutor-my-md-68{margin-top:68px;margin-bottom:68px}.tutor-my-md-72{margin-top:72px;margin-bottom:72px}.tutor-my-md-76{margin-top:76px;margin-bottom:76px}.tutor-my-md-80{margin-top:80px;margin-bottom:80px}.tutor-my-md-auto{margin-top:auto;margin-bottom:auto}.tutor-mt-md-0{margin-top:0}.tutor-mt-md-2{margin-top:2px}.tutor-mt-md-4{margin-top:4px}.tutor-mt-md-8{margin-top:8px}.tutor-mt-md-12{margin-top:12px}.tutor-mt-md-16{margin-top:16px}.tutor-mt-md-20{margin-top:20px}.tutor-mt-md-24{margin-top:24px}.tutor-mt-md-28{margin-top:28px}.tutor-mt-md-32{margin-top:32px}.tutor-mt-md-36{margin-top:36px}.tutor-mt-md-40{margin-top:40px}.tutor-mt-md-44{margin-top:44px}.tutor-mt-md-48{margin-top:48px}.tutor-mt-md-52{margin-top:52px}.tutor-mt-md-56{margin-top:56px}.tutor-mt-md-60{margin-top:60px}.tutor-mt-md-64{margin-top:64px}.tutor-mt-md-68{margin-top:68px}.tutor-mt-md-72{margin-top:72px}.tutor-mt-md-76{margin-top:76px}.tutor-mt-md-80{margin-top:80px}.tutor-mt-md-auto{margin-top:auto}.tutor-mr-md-0{margin-right:0}.tutor-mr-md-2{margin-right:2px}.tutor-mr-md-4{margin-right:4px}.tutor-mr-md-8{margin-right:8px}.tutor-mr-md-12{margin-right:12px}.tutor-mr-md-16{margin-right:16px}.tutor-mr-md-20{margin-right:20px}.tutor-mr-md-24{margin-right:24px}.tutor-mr-md-28{margin-right:28px}.tutor-mr-md-32{margin-right:32px}.tutor-mr-md-36{margin-right:36px}.tutor-mr-md-40{margin-right:40px}.tutor-mr-md-44{margin-right:44px}.tutor-mr-md-48{margin-right:48px}.tutor-mr-md-52{margin-right:52px}.tutor-mr-md-56{margin-right:56px}.tutor-mr-md-60{margin-right:60px}.tutor-mr-md-64{margin-right:64px}.tutor-mr-md-68{margin-right:68px}.tutor-mr-md-72{margin-right:72px}.tutor-mr-md-76{margin-right:76px}.tutor-mr-md-80{margin-right:80px}.tutor-mr-md-auto{margin-right:auto}.tutor-mb-md-0{margin-bottom:0}.tutor-mb-md-2{margin-bottom:2px}.tutor-mb-md-4{margin-bottom:4px}.tutor-mb-md-8{margin-bottom:8px}.tutor-mb-md-12{margin-bottom:12px}.tutor-mb-md-16{margin-bottom:16px}.tutor-mb-md-20{margin-bottom:20px}.tutor-mb-md-24{margin-bottom:24px}.tutor-mb-md-28{margin-bottom:28px}.tutor-mb-md-32{margin-bottom:32px}.tutor-mb-md-36{margin-bottom:36px}.tutor-mb-md-40{margin-bottom:40px}.tutor-mb-md-44{margin-bottom:44px}.tutor-mb-md-48{margin-bottom:48px}.tutor-mb-md-52{margin-bottom:52px}.tutor-mb-md-56{margin-bottom:56px}.tutor-mb-md-60{margin-bottom:60px}.tutor-mb-md-64{margin-bottom:64px}.tutor-mb-md-68{margin-bottom:68px}.tutor-mb-md-72{margin-bottom:72px}.tutor-mb-md-76{margin-bottom:76px}.tutor-mb-md-80{margin-bottom:80px}.tutor-mb-md-auto{margin-bottom:auto}.tutor-ml-md-0{margin-left:0}.tutor-ml-md-2{margin-left:2px}.tutor-ml-md-4{margin-left:4px}.tutor-ml-md-8{margin-left:8px}.tutor-ml-md-12{margin-left:12px}.tutor-ml-md-16{margin-left:16px}.tutor-ml-md-20{margin-left:20px}.tutor-ml-md-24{margin-left:24px}.tutor-ml-md-28{margin-left:28px}.tutor-ml-md-32{margin-left:32px}.tutor-ml-md-36{margin-left:36px}.tutor-ml-md-40{margin-left:40px}.tutor-ml-md-44{margin-left:44px}.tutor-ml-md-48{margin-left:48px}.tutor-ml-md-52{margin-left:52px}.tutor-ml-md-56{margin-left:56px}.tutor-ml-md-60{margin-left:60px}.tutor-ml-md-64{margin-left:64px}.tutor-ml-md-68{margin-left:68px}.tutor-ml-md-72{margin-left:72px}.tutor-ml-md-76{margin-left:76px}.tutor-ml-md-80{margin-left:80px}.tutor-ml-md-auto{margin-left:auto}.tutor-m-md-n2{margin:-2px}.tutor-m-md-n4{margin:-4px}.tutor-m-md-n8{margin:-8px}.tutor-m-md-n12{margin:-12px}.tutor-m-md-n16{margin:-16px}.tutor-m-md-n20{margin:-20px}.tutor-m-md-n24{margin:-24px}.tutor-m-md-n28{margin:-28px}.tutor-m-md-n32{margin:-32px}.tutor-m-md-n36{margin:-36px}.tutor-m-md-n40{margin:-40px}.tutor-m-md-n44{margin:-44px}.tutor-m-md-n48{margin:-48px}.tutor-m-md-n52{margin:-52px}.tutor-m-md-n56{margin:-56px}.tutor-m-md-n60{margin:-60px}.tutor-m-md-n64{margin:-64px}.tutor-m-md-n68{margin:-68px}.tutor-m-md-n72{margin:-72px}.tutor-m-md-n76{margin:-76px}.tutor-m-md-n80{margin:-80px}.tutor-mx-md-n2{margin-left:-2px;margin-right:-2px}.tutor-mx-md-n4{margin-left:-4px;margin-right:-4px}.tutor-mx-md-n8{margin-left:-8px;margin-right:-8px}.tutor-mx-md-n12{margin-left:-12px;margin-right:-12px}.tutor-mx-md-n16{margin-left:-16px;margin-right:-16px}.tutor-mx-md-n20{margin-left:-20px;margin-right:-20px}.tutor-mx-md-n24{margin-left:-24px;margin-right:-24px}.tutor-mx-md-n28{margin-left:-28px;margin-right:-28px}.tutor-mx-md-n32{margin-left:-32px;margin-right:-32px}.tutor-mx-md-n36{margin-left:-36px;margin-right:-36px}.tutor-mx-md-n40{margin-left:-40px;margin-right:-40px}.tutor-mx-md-n44{margin-left:-44px;margin-right:-44px}.tutor-mx-md-n48{margin-left:-48px;margin-right:-48px}.tutor-mx-md-n52{margin-left:-52px;margin-right:-52px}.tutor-mx-md-n56{margin-left:-56px;margin-right:-56px}.tutor-mx-md-n60{margin-left:-60px;margin-right:-60px}.tutor-mx-md-n64{margin-left:-64px;margin-right:-64px}.tutor-mx-md-n68{margin-left:-68px;margin-right:-68px}.tutor-mx-md-n72{margin-left:-72px;margin-right:-72px}.tutor-mx-md-n76{margin-left:-76px;margin-right:-76px}.tutor-mx-md-n80{margin-left:-80px;margin-right:-80px}.tutor-my-md-n2{margin-top:-2px;margin-bottom:-2px}.tutor-my-md-n4{margin-top:-4px;margin-bottom:-4px}.tutor-my-md-n8{margin-top:-8px;margin-bottom:-8px}.tutor-my-md-n12{margin-top:-12px;margin-bottom:-12px}.tutor-my-md-n16{margin-top:-16px;margin-bottom:-16px}.tutor-my-md-n20{margin-top:-20px;margin-bottom:-20px}.tutor-my-md-n24{margin-top:-24px;margin-bottom:-24px}.tutor-my-md-n28{margin-top:-28px;margin-bottom:-28px}.tutor-my-md-n32{margin-top:-32px;margin-bottom:-32px}.tutor-my-md-n36{margin-top:-36px;margin-bottom:-36px}.tutor-my-md-n40{margin-top:-40px;margin-bottom:-40px}.tutor-my-md-n44{margin-top:-44px;margin-bottom:-44px}.tutor-my-md-n48{margin-top:-48px;margin-bottom:-48px}.tutor-my-md-n52{margin-top:-52px;margin-bottom:-52px}.tutor-my-md-n56{margin-top:-56px;margin-bottom:-56px}.tutor-my-md-n60{margin-top:-60px;margin-bottom:-60px}.tutor-my-md-n64{margin-top:-64px;margin-bottom:-64px}.tutor-my-md-n68{margin-top:-68px;margin-bottom:-68px}.tutor-my-md-n72{margin-top:-72px;margin-bottom:-72px}.tutor-my-md-n76{margin-top:-76px;margin-bottom:-76px}.tutor-my-md-n80{margin-top:-80px;margin-bottom:-80px}.tutor-mt-md-n2{margin-top:-2px}.tutor-mt-md-n4{margin-top:-4px}.tutor-mt-md-n8{margin-top:-8px}.tutor-mt-md-n12{margin-top:-12px}.tutor-mt-md-n16{margin-top:-16px}.tutor-mt-md-n20{margin-top:-20px}.tutor-mt-md-n24{margin-top:-24px}.tutor-mt-md-n28{margin-top:-28px}.tutor-mt-md-n32{margin-top:-32px}.tutor-mt-md-n36{margin-top:-36px}.tutor-mt-md-n40{margin-top:-40px}.tutor-mt-md-n44{margin-top:-44px}.tutor-mt-md-n48{margin-top:-48px}.tutor-mt-md-n52{margin-top:-52px}.tutor-mt-md-n56{margin-top:-56px}.tutor-mt-md-n60{margin-top:-60px}.tutor-mt-md-n64{margin-top:-64px}.tutor-mt-md-n68{margin-top:-68px}.tutor-mt-md-n72{margin-top:-72px}.tutor-mt-md-n76{margin-top:-76px}.tutor-mt-md-n80{margin-top:-80px}.tutor-mr-md-n2{margin-right:-2px}.tutor-mr-md-n4{margin-right:-4px}.tutor-mr-md-n8{margin-right:-8px}.tutor-mr-md-n12{margin-right:-12px}.tutor-mr-md-n16{margin-right:-16px}.tutor-mr-md-n20{margin-right:-20px}.tutor-mr-md-n24{margin-right:-24px}.tutor-mr-md-n28{margin-right:-28px}.tutor-mr-md-n32{margin-right:-32px}.tutor-mr-md-n36{margin-right:-36px}.tutor-mr-md-n40{margin-right:-40px}.tutor-mr-md-n44{margin-right:-44px}.tutor-mr-md-n48{margin-right:-48px}.tutor-mr-md-n52{margin-right:-52px}.tutor-mr-md-n56{margin-right:-56px}.tutor-mr-md-n60{margin-right:-60px}.tutor-mr-md-n64{margin-right:-64px}.tutor-mr-md-n68{margin-right:-68px}.tutor-mr-md-n72{margin-right:-72px}.tutor-mr-md-n76{margin-right:-76px}.tutor-mr-md-n80{margin-right:-80px}.tutor-mb-md-n2{margin-bottom:-2px}.tutor-mb-md-n4{margin-bottom:-4px}.tutor-mb-md-n8{margin-bottom:-8px}.tutor-mb-md-n12{margin-bottom:-12px}.tutor-mb-md-n16{margin-bottom:-16px}.tutor-mb-md-n20{margin-bottom:-20px}.tutor-mb-md-n24{margin-bottom:-24px}.tutor-mb-md-n28{margin-bottom:-28px}.tutor-mb-md-n32{margin-bottom:-32px}.tutor-mb-md-n36{margin-bottom:-36px}.tutor-mb-md-n40{margin-bottom:-40px}.tutor-mb-md-n44{margin-bottom:-44px}.tutor-mb-md-n48{margin-bottom:-48px}.tutor-mb-md-n52{margin-bottom:-52px}.tutor-mb-md-n56{margin-bottom:-56px}.tutor-mb-md-n60{margin-bottom:-60px}.tutor-mb-md-n64{margin-bottom:-64px}.tutor-mb-md-n68{margin-bottom:-68px}.tutor-mb-md-n72{margin-bottom:-72px}.tutor-mb-md-n76{margin-bottom:-76px}.tutor-mb-md-n80{margin-bottom:-80px}.tutor-ml-md-n2{margin-left:-2px}.tutor-ml-md-n4{margin-left:-4px}.tutor-ml-md-n8{margin-left:-8px}.tutor-ml-md-n12{margin-left:-12px}.tutor-ml-md-n16{margin-left:-16px}.tutor-ml-md-n20{margin-left:-20px}.tutor-ml-md-n24{margin-left:-24px}.tutor-ml-md-n28{margin-left:-28px}.tutor-ml-md-n32{margin-left:-32px}.tutor-ml-md-n36{margin-left:-36px}.tutor-ml-md-n40{margin-left:-40px}.tutor-ml-md-n44{margin-left:-44px}.tutor-ml-md-n48{margin-left:-48px}.tutor-ml-md-n52{margin-left:-52px}.tutor-ml-md-n56{margin-left:-56px}.tutor-ml-md-n60{margin-left:-60px}.tutor-ml-md-n64{margin-left:-64px}.tutor-ml-md-n68{margin-left:-68px}.tutor-ml-md-n72{margin-left:-72px}.tutor-ml-md-n76{margin-left:-76px}.tutor-ml-md-n80{margin-left:-80px}.tutor-p-md-0{padding:0}.tutor-p-md-2{padding:2px}.tutor-p-md-4{padding:4px}.tutor-p-md-8{padding:8px}.tutor-p-md-12{padding:12px}.tutor-p-md-16{padding:16px}.tutor-p-md-20{padding:20px}.tutor-p-md-24{padding:24px}.tutor-p-md-28{padding:28px}.tutor-p-md-32{padding:32px}.tutor-p-md-36{padding:36px}.tutor-p-md-40{padding:40px}.tutor-p-md-44{padding:44px}.tutor-p-md-48{padding:48px}.tutor-p-md-52{padding:52px}.tutor-p-md-56{padding:56px}.tutor-p-md-60{padding:60px}.tutor-p-md-64{padding:64px}.tutor-p-md-68{padding:68px}.tutor-p-md-72{padding:72px}.tutor-p-md-76{padding:76px}.tutor-p-md-80{padding:80px}.tutor-px-md-0{padding-left:0;padding-right:0}.tutor-px-md-2{padding-left:2px;padding-right:2px}.tutor-px-md-4{padding-left:4px;padding-right:4px}.tutor-px-md-8{padding-left:8px;padding-right:8px}.tutor-px-md-12{padding-left:12px;padding-right:12px}.tutor-px-md-16{padding-left:16px;padding-right:16px}.tutor-px-md-20{padding-left:20px;padding-right:20px}.tutor-px-md-24{padding-left:24px;padding-right:24px}.tutor-px-md-28{padding-left:28px;padding-right:28px}.tutor-px-md-32{padding-left:32px;padding-right:32px}.tutor-px-md-36{padding-left:36px;padding-right:36px}.tutor-px-md-40{padding-left:40px;padding-right:40px}.tutor-px-md-44{padding-left:44px;padding-right:44px}.tutor-px-md-48{padding-left:48px;padding-right:48px}.tutor-px-md-52{padding-left:52px;padding-right:52px}.tutor-px-md-56{padding-left:56px;padding-right:56px}.tutor-px-md-60{padding-left:60px;padding-right:60px}.tutor-px-md-64{padding-left:64px;padding-right:64px}.tutor-px-md-68{padding-left:68px;padding-right:68px}.tutor-px-md-72{padding-left:72px;padding-right:72px}.tutor-px-md-76{padding-left:76px;padding-right:76px}.tutor-px-md-80{padding-left:80px;padding-right:80px}.tutor-py-md-0{padding-top:0;padding-bottom:0}.tutor-py-md-2{padding-top:2px;padding-bottom:2px}.tutor-py-md-4{padding-top:4px;padding-bottom:4px}.tutor-py-md-8{padding-top:8px;padding-bottom:8px}.tutor-py-md-12{padding-top:12px;padding-bottom:12px}.tutor-py-md-16{padding-top:16px;padding-bottom:16px}.tutor-py-md-20{padding-top:20px;padding-bottom:20px}.tutor-py-md-24{padding-top:24px;padding-bottom:24px}.tutor-py-md-28{padding-top:28px;padding-bottom:28px}.tutor-py-md-32{padding-top:32px;padding-bottom:32px}.tutor-py-md-36{padding-top:36px;padding-bottom:36px}.tutor-py-md-40{padding-top:40px;padding-bottom:40px}.tutor-py-md-44{padding-top:44px;padding-bottom:44px}.tutor-py-md-48{padding-top:48px;padding-bottom:48px}.tutor-py-md-52{padding-top:52px;padding-bottom:52px}.tutor-py-md-56{padding-top:56px;padding-bottom:56px}.tutor-py-md-60{padding-top:60px;padding-bottom:60px}.tutor-py-md-64{padding-top:64px;padding-bottom:64px}.tutor-py-md-68{padding-top:68px;padding-bottom:68px}.tutor-py-md-72{padding-top:72px;padding-bottom:72px}.tutor-py-md-76{padding-top:76px;padding-bottom:76px}.tutor-py-md-80{padding-top:80px;padding-bottom:80px}.tutor-pt-md-0{padding-top:0}.tutor-pt-md-2{padding-top:2px}.tutor-pt-md-4{padding-top:4px}.tutor-pt-md-8{padding-top:8px}.tutor-pt-md-12{padding-top:12px}.tutor-pt-md-16{padding-top:16px}.tutor-pt-md-20{padding-top:20px}.tutor-pt-md-24{padding-top:24px}.tutor-pt-md-28{padding-top:28px}.tutor-pt-md-32{padding-top:32px}.tutor-pt-md-36{padding-top:36px}.tutor-pt-md-40{padding-top:40px}.tutor-pt-md-44{padding-top:44px}.tutor-pt-md-48{padding-top:48px}.tutor-pt-md-52{padding-top:52px}.tutor-pt-md-56{padding-top:56px}.tutor-pt-md-60{padding-top:60px}.tutor-pt-md-64{padding-top:64px}.tutor-pt-md-68{padding-top:68px}.tutor-pt-md-72{padding-top:72px}.tutor-pt-md-76{padding-top:76px}.tutor-pt-md-80{padding-top:80px}.tutor-pr-md-0{padding-right:0}.tutor-pr-md-2{padding-right:2px}.tutor-pr-md-4{padding-right:4px}.tutor-pr-md-8{padding-right:8px}.tutor-pr-md-12{padding-right:12px}.tutor-pr-md-16{padding-right:16px}.tutor-pr-md-20{padding-right:20px}.tutor-pr-md-24{padding-right:24px}.tutor-pr-md-28{padding-right:28px}.tutor-pr-md-32{padding-right:32px}.tutor-pr-md-36{padding-right:36px}.tutor-pr-md-40{padding-right:40px}.tutor-pr-md-44{padding-right:44px}.tutor-pr-md-48{padding-right:48px}.tutor-pr-md-52{padding-right:52px}.tutor-pr-md-56{padding-right:56px}.tutor-pr-md-60{padding-right:60px}.tutor-pr-md-64{padding-right:64px}.tutor-pr-md-68{padding-right:68px}.tutor-pr-md-72{padding-right:72px}.tutor-pr-md-76{padding-right:76px}.tutor-pr-md-80{padding-right:80px}.tutor-pb-md-0{padding-bottom:0}.tutor-pb-md-2{padding-bottom:2px}.tutor-pb-md-4{padding-bottom:4px}.tutor-pb-md-8{padding-bottom:8px}.tutor-pb-md-12{padding-bottom:12px}.tutor-pb-md-16{padding-bottom:16px}.tutor-pb-md-20{padding-bottom:20px}.tutor-pb-md-24{padding-bottom:24px}.tutor-pb-md-28{padding-bottom:28px}.tutor-pb-md-32{padding-bottom:32px}.tutor-pb-md-36{padding-bottom:36px}.tutor-pb-md-40{padding-bottom:40px}.tutor-pb-md-44{padding-bottom:44px}.tutor-pb-md-48{padding-bottom:48px}.tutor-pb-md-52{padding-bottom:52px}.tutor-pb-md-56{padding-bottom:56px}.tutor-pb-md-60{padding-bottom:60px}.tutor-pb-md-64{padding-bottom:64px}.tutor-pb-md-68{padding-bottom:68px}.tutor-pb-md-72{padding-bottom:72px}.tutor-pb-md-76{padding-bottom:76px}.tutor-pb-md-80{padding-bottom:80px}.tutor-pl-md-0{padding-left:0}.tutor-pl-md-2{padding-left:2px}.tutor-pl-md-4{padding-left:4px}.tutor-pl-md-8{padding-left:8px}.tutor-pl-md-12{padding-left:12px}.tutor-pl-md-16{padding-left:16px}.tutor-pl-md-20{padding-left:20px}.tutor-pl-md-24{padding-left:24px}.tutor-pl-md-28{padding-left:28px}.tutor-pl-md-32{padding-left:32px}.tutor-pl-md-36{padding-left:36px}.tutor-pl-md-40{padding-left:40px}.tutor-pl-md-44{padding-left:44px}.tutor-pl-md-48{padding-left:48px}.tutor-pl-md-52{padding-left:52px}.tutor-pl-md-56{padding-left:56px}.tutor-pl-md-60{padding-left:60px}.tutor-pl-md-64{padding-left:64px}.tutor-pl-md-68{padding-left:68px}.tutor-pl-md-72{padding-left:72px}.tutor-pl-md-76{padding-left:76px}.tutor-pl-md-80{padding-left:80px}}@media (min-width:992px){.tutor-d-lg-inline{display:inline!important}.tutor-d-lg-inline-block{display:inline-block!important}.tutor-d-lg-block{display:block!important}.tutor-d-lg-grid{display:grid!important}.tutor-d-lg-table{display:table!important}.tutor-d-lg-table-row{display:table-row!important}.tutor-d-lg-table-cell{display:table-cell!important}.tutor-d-lg-flex{display:flex!important}.tutor-d-lg-inline-flex{display:inline-flex!important}.tutor-d-lg-none{display:none!important}.tutor-flex-lg-fill{flex:auto!important}.tutor-flex-lg-row{flex-direction:row!important}.tutor-flex-lg-column{flex-direction:column!important}.tutor-flex-lg-row-reverse{flex-direction:row-reverse!important}.tutor-flex-lg-column-reverse{flex-direction:column-reverse!important}.tutor-flex-lg-grow-0{flex-grow:0!important}.tutor-flex-lg-grow-1{flex-grow:1!important}.tutor-flex-lg-shrink-0{flex-shrink:0!important}.tutor-flex-lg-shrink-1{flex-shrink:1!important}.tutor-flex-lg-wrap{flex-wrap:wrap!important}.tutor-flex-lg-nowrap{flex-wrap:nowrap!important}.tutor-flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.tutor-gap-lg-0{gap:0!important}.tutor-gap-lg-1{gap:.5rem!important}.tutor-gap-lg-2{gap:1rem!important}.tutor-gap-lg-3{gap:1.5rem!important}.tutor-gap-lg-4{gap:2rem!important}.tutor-gap-lg-5{gap:3rem!important}.tutor-gap-lg-4px{gap:.25rem!important}.tutor-gap-lg-12px{gap:.75rem!important}.tutor-justify-lg-start{justify-content:flex-start!important}.tutor-justify-lg-end{justify-content:flex-end!important}.tutor-justify-lg-center{justify-content:center!important}.tutor-justify-lg-between{justify-content:space-between!important}.tutor-justify-lg-around{justify-content:space-around!important}.tutor-justify-lg-evenly{justify-content:space-evenly!important}.tutor-align-lg-start{align-items:flex-start!important}.tutor-align-lg-end{align-items:flex-end!important}.tutor-align-lg-center{align-items:center!important}.tutor-align-lg-baseline{align-items:baseline!important}.tutor-align-lg-stretch{align-items:stretch!important}.tutor-align-content-lg-start{align-content:flex-start!important}.tutor-align-content-lg-end{align-content:flex-end!important}.tutor-align-content-lg-center{align-content:center!important}.tutor-align-content-lg-between{align-content:space-between!important}.tutor-align-content-lg-around{align-content:space-around!important}.tutor-align-content-lg-stretch{align-content:stretch!important}.tutor-align-self-lg-auto{align-self:auto!important}.tutor-align-self-lg-start{align-self:flex-start!important}.tutor-align-self-lg-end{align-self:flex-end!important}.tutor-align-self-lg-center{align-self:center!important}.tutor-align-self-lg-baseline{align-self:baseline!important}.tutor-align-self-lg-stretch{align-self:stretch!important}.tutor-order-lg-first{order:-1!important}.tutor-order-lg-0{order:0!important}.tutor-order-lg-1{order:1!important}.tutor-order-lg-2{order:2!important}.tutor-order-lg-3{order:3!important}.tutor-order-lg-4{order:4!important}.tutor-order-lg-5{order:5!important}.tutor-order-lg-last{order:6!important}.tutor-m-lg-0{margin:0}.tutor-m-lg-2{margin:2px}.tutor-m-lg-4{margin:4px}.tutor-m-lg-8{margin:8px}.tutor-m-lg-12{margin:12px}.tutor-m-lg-16{margin:16px}.tutor-m-lg-20{margin:20px}.tutor-m-lg-24{margin:24px}.tutor-m-lg-28{margin:28px}.tutor-m-lg-32{margin:32px}.tutor-m-lg-36{margin:36px}.tutor-m-lg-40{margin:40px}.tutor-m-lg-44{margin:44px}.tutor-m-lg-48{margin:48px}.tutor-m-lg-52{margin:52px}.tutor-m-lg-56{margin:56px}.tutor-m-lg-60{margin:60px}.tutor-m-lg-64{margin:64px}.tutor-m-lg-68{margin:68px}.tutor-m-lg-72{margin:72px}.tutor-m-lg-76{margin:76px}.tutor-m-lg-80{margin:80px}.tutor-m-lg-auto{margin:auto}.tutor-mx-lg-0{margin-left:0;margin-right:0}.tutor-mx-lg-2{margin-left:2px;margin-right:2px}.tutor-mx-lg-4{margin-left:4px;margin-right:4px}.tutor-mx-lg-8{margin-left:8px;margin-right:8px}.tutor-mx-lg-12{margin-left:12px;margin-right:12px}.tutor-mx-lg-16{margin-left:16px;margin-right:16px}.tutor-mx-lg-20{margin-left:20px;margin-right:20px}.tutor-mx-lg-24{margin-left:24px;margin-right:24px}.tutor-mx-lg-28{margin-left:28px;margin-right:28px}.tutor-mx-lg-32{margin-left:32px;margin-right:32px}.tutor-mx-lg-36{margin-left:36px;margin-right:36px}.tutor-mx-lg-40{margin-left:40px;margin-right:40px}.tutor-mx-lg-44{margin-left:44px;margin-right:44px}.tutor-mx-lg-48{margin-left:48px;margin-right:48px}.tutor-mx-lg-52{margin-left:52px;margin-right:52px}.tutor-mx-lg-56{margin-left:56px;margin-right:56px}.tutor-mx-lg-60{margin-left:60px;margin-right:60px}.tutor-mx-lg-64{margin-left:64px;margin-right:64px}.tutor-mx-lg-68{margin-left:68px;margin-right:68px}.tutor-mx-lg-72{margin-left:72px;margin-right:72px}.tutor-mx-lg-76{margin-left:76px;margin-right:76px}.tutor-mx-lg-80{margin-left:80px;margin-right:80px}.tutor-mx-lg-auto{margin-left:auto;margin-right:auto}.tutor-my-lg-0{margin-top:0;margin-bottom:0}.tutor-my-lg-2{margin-top:2px;margin-bottom:2px}.tutor-my-lg-4{margin-top:4px;margin-bottom:4px}.tutor-my-lg-8{margin-top:8px;margin-bottom:8px}.tutor-my-lg-12{margin-top:12px;margin-bottom:12px}.tutor-my-lg-16{margin-top:16px;margin-bottom:16px}.tutor-my-lg-20{margin-top:20px;margin-bottom:20px}.tutor-my-lg-24{margin-top:24px;margin-bottom:24px}.tutor-my-lg-28{margin-top:28px;margin-bottom:28px}.tutor-my-lg-32{margin-top:32px;margin-bottom:32px}.tutor-my-lg-36{margin-top:36px;margin-bottom:36px}.tutor-my-lg-40{margin-top:40px;margin-bottom:40px}.tutor-my-lg-44{margin-top:44px;margin-bottom:44px}.tutor-my-lg-48{margin-top:48px;margin-bottom:48px}.tutor-my-lg-52{margin-top:52px;margin-bottom:52px}.tutor-my-lg-56{margin-top:56px;margin-bottom:56px}.tutor-my-lg-60{margin-top:60px;margin-bottom:60px}.tutor-my-lg-64{margin-top:64px;margin-bottom:64px}.tutor-my-lg-68{margin-top:68px;margin-bottom:68px}.tutor-my-lg-72{margin-top:72px;margin-bottom:72px}.tutor-my-lg-76{margin-top:76px;margin-bottom:76px}.tutor-my-lg-80{margin-top:80px;margin-bottom:80px}.tutor-my-lg-auto{margin-top:auto;margin-bottom:auto}.tutor-mt-lg-0{margin-top:0}.tutor-mt-lg-2{margin-top:2px}.tutor-mt-lg-4{margin-top:4px}.tutor-mt-lg-8{margin-top:8px}.tutor-mt-lg-12{margin-top:12px}.tutor-mt-lg-16{margin-top:16px}.tutor-mt-lg-20{margin-top:20px}.tutor-mt-lg-24{margin-top:24px}.tutor-mt-lg-28{margin-top:28px}.tutor-mt-lg-32{margin-top:32px}.tutor-mt-lg-36{margin-top:36px}.tutor-mt-lg-40{margin-top:40px}.tutor-mt-lg-44{margin-top:44px}.tutor-mt-lg-48{margin-top:48px}.tutor-mt-lg-52{margin-top:52px}.tutor-mt-lg-56{margin-top:56px}.tutor-mt-lg-60{margin-top:60px}.tutor-mt-lg-64{margin-top:64px}.tutor-mt-lg-68{margin-top:68px}.tutor-mt-lg-72{margin-top:72px}.tutor-mt-lg-76{margin-top:76px}.tutor-mt-lg-80{margin-top:80px}.tutor-mt-lg-auto{margin-top:auto}.tutor-mr-lg-0{margin-right:0}.tutor-mr-lg-2{margin-right:2px}.tutor-mr-lg-4{margin-right:4px}.tutor-mr-lg-8{margin-right:8px}.tutor-mr-lg-12{margin-right:12px}.tutor-mr-lg-16{margin-right:16px}.tutor-mr-lg-20{margin-right:20px}.tutor-mr-lg-24{margin-right:24px}.tutor-mr-lg-28{margin-right:28px}.tutor-mr-lg-32{margin-right:32px}.tutor-mr-lg-36{margin-right:36px}.tutor-mr-lg-40{margin-right:40px}.tutor-mr-lg-44{margin-right:44px}.tutor-mr-lg-48{margin-right:48px}.tutor-mr-lg-52{margin-right:52px}.tutor-mr-lg-56{margin-right:56px}.tutor-mr-lg-60{margin-right:60px}.tutor-mr-lg-64{margin-right:64px}.tutor-mr-lg-68{margin-right:68px}.tutor-mr-lg-72{margin-right:72px}.tutor-mr-lg-76{margin-right:76px}.tutor-mr-lg-80{margin-right:80px}.tutor-mr-lg-auto{margin-right:auto}.tutor-mb-lg-0{margin-bottom:0}.tutor-mb-lg-2{margin-bottom:2px}.tutor-mb-lg-4{margin-bottom:4px}.tutor-mb-lg-8{margin-bottom:8px}.tutor-mb-lg-12{margin-bottom:12px}.tutor-mb-lg-16{margin-bottom:16px}.tutor-mb-lg-20{margin-bottom:20px}.tutor-mb-lg-24{margin-bottom:24px}.tutor-mb-lg-28{margin-bottom:28px}.tutor-mb-lg-32{margin-bottom:32px}.tutor-mb-lg-36{margin-bottom:36px}.tutor-mb-lg-40{margin-bottom:40px}.tutor-mb-lg-44{margin-bottom:44px}.tutor-mb-lg-48{margin-bottom:48px}.tutor-mb-lg-52{margin-bottom:52px}.tutor-mb-lg-56{margin-bottom:56px}.tutor-mb-lg-60{margin-bottom:60px}.tutor-mb-lg-64{margin-bottom:64px}.tutor-mb-lg-68{margin-bottom:68px}.tutor-mb-lg-72{margin-bottom:72px}.tutor-mb-lg-76{margin-bottom:76px}.tutor-mb-lg-80{margin-bottom:80px}.tutor-mb-lg-auto{margin-bottom:auto}.tutor-ml-lg-0{margin-left:0}.tutor-ml-lg-2{margin-left:2px}.tutor-ml-lg-4{margin-left:4px}.tutor-ml-lg-8{margin-left:8px}.tutor-ml-lg-12{margin-left:12px}.tutor-ml-lg-16{margin-left:16px}.tutor-ml-lg-20{margin-left:20px}.tutor-ml-lg-24{margin-left:24px}.tutor-ml-lg-28{margin-left:28px}.tutor-ml-lg-32{margin-left:32px}.tutor-ml-lg-36{margin-left:36px}.tutor-ml-lg-40{margin-left:40px}.tutor-ml-lg-44{margin-left:44px}.tutor-ml-lg-48{margin-left:48px}.tutor-ml-lg-52{margin-left:52px}.tutor-ml-lg-56{margin-left:56px}.tutor-ml-lg-60{margin-left:60px}.tutor-ml-lg-64{margin-left:64px}.tutor-ml-lg-68{margin-left:68px}.tutor-ml-lg-72{margin-left:72px}.tutor-ml-lg-76{margin-left:76px}.tutor-ml-lg-80{margin-left:80px}.tutor-ml-lg-auto{margin-left:auto}.tutor-m-lg-n2{margin:-2px}.tutor-m-lg-n4{margin:-4px}.tutor-m-lg-n8{margin:-8px}.tutor-m-lg-n12{margin:-12px}.tutor-m-lg-n16{margin:-16px}.tutor-m-lg-n20{margin:-20px}.tutor-m-lg-n24{margin:-24px}.tutor-m-lg-n28{margin:-28px}.tutor-m-lg-n32{margin:-32px}.tutor-m-lg-n36{margin:-36px}.tutor-m-lg-n40{margin:-40px}.tutor-m-lg-n44{margin:-44px}.tutor-m-lg-n48{margin:-48px}.tutor-m-lg-n52{margin:-52px}.tutor-m-lg-n56{margin:-56px}.tutor-m-lg-n60{margin:-60px}.tutor-m-lg-n64{margin:-64px}.tutor-m-lg-n68{margin:-68px}.tutor-m-lg-n72{margin:-72px}.tutor-m-lg-n76{margin:-76px}.tutor-m-lg-n80{margin:-80px}.tutor-mx-lg-n2{margin-left:-2px;margin-right:-2px}.tutor-mx-lg-n4{margin-left:-4px;margin-right:-4px}.tutor-mx-lg-n8{margin-left:-8px;margin-right:-8px}.tutor-mx-lg-n12{margin-left:-12px;margin-right:-12px}.tutor-mx-lg-n16{margin-left:-16px;margin-right:-16px}.tutor-mx-lg-n20{margin-left:-20px;margin-right:-20px}.tutor-mx-lg-n24{margin-left:-24px;margin-right:-24px}.tutor-mx-lg-n28{margin-left:-28px;margin-right:-28px}.tutor-mx-lg-n32{margin-left:-32px;margin-right:-32px}.tutor-mx-lg-n36{margin-left:-36px;margin-right:-36px}.tutor-mx-lg-n40{margin-left:-40px;margin-right:-40px}.tutor-mx-lg-n44{margin-left:-44px;margin-right:-44px}.tutor-mx-lg-n48{margin-left:-48px;margin-right:-48px}.tutor-mx-lg-n52{margin-left:-52px;margin-right:-52px}.tutor-mx-lg-n56{margin-left:-56px;margin-right:-56px}.tutor-mx-lg-n60{margin-left:-60px;margin-right:-60px}.tutor-mx-lg-n64{margin-left:-64px;margin-right:-64px}.tutor-mx-lg-n68{margin-left:-68px;margin-right:-68px}.tutor-mx-lg-n72{margin-left:-72px;margin-right:-72px}.tutor-mx-lg-n76{margin-left:-76px;margin-right:-76px}.tutor-mx-lg-n80{margin-left:-80px;margin-right:-80px}.tutor-my-lg-n2{margin-top:-2px;margin-bottom:-2px}.tutor-my-lg-n4{margin-top:-4px;margin-bottom:-4px}.tutor-my-lg-n8{margin-top:-8px;margin-bottom:-8px}.tutor-my-lg-n12{margin-top:-12px;margin-bottom:-12px}.tutor-my-lg-n16{margin-top:-16px;margin-bottom:-16px}.tutor-my-lg-n20{margin-top:-20px;margin-bottom:-20px}.tutor-my-lg-n24{margin-top:-24px;margin-bottom:-24px}.tutor-my-lg-n28{margin-top:-28px;margin-bottom:-28px}.tutor-my-lg-n32{margin-top:-32px;margin-bottom:-32px}.tutor-my-lg-n36{margin-top:-36px;margin-bottom:-36px}.tutor-my-lg-n40{margin-top:-40px;margin-bottom:-40px}.tutor-my-lg-n44{margin-top:-44px;margin-bottom:-44px}.tutor-my-lg-n48{margin-top:-48px;margin-bottom:-48px}.tutor-my-lg-n52{margin-top:-52px;margin-bottom:-52px}.tutor-my-lg-n56{margin-top:-56px;margin-bottom:-56px}.tutor-my-lg-n60{margin-top:-60px;margin-bottom:-60px}.tutor-my-lg-n64{margin-top:-64px;margin-bottom:-64px}.tutor-my-lg-n68{margin-top:-68px;margin-bottom:-68px}.tutor-my-lg-n72{margin-top:-72px;margin-bottom:-72px}.tutor-my-lg-n76{margin-top:-76px;margin-bottom:-76px}.tutor-my-lg-n80{margin-top:-80px;margin-bottom:-80px}.tutor-mt-lg-n2{margin-top:-2px}.tutor-mt-lg-n4{margin-top:-4px}.tutor-mt-lg-n8{margin-top:-8px}.tutor-mt-lg-n12{margin-top:-12px}.tutor-mt-lg-n16{margin-top:-16px}.tutor-mt-lg-n20{margin-top:-20px}.tutor-mt-lg-n24{margin-top:-24px}.tutor-mt-lg-n28{margin-top:-28px}.tutor-mt-lg-n32{margin-top:-32px}.tutor-mt-lg-n36{margin-top:-36px}.tutor-mt-lg-n40{margin-top:-40px}.tutor-mt-lg-n44{margin-top:-44px}.tutor-mt-lg-n48{margin-top:-48px}.tutor-mt-lg-n52{margin-top:-52px}.tutor-mt-lg-n56{margin-top:-56px}.tutor-mt-lg-n60{margin-top:-60px}.tutor-mt-lg-n64{margin-top:-64px}.tutor-mt-lg-n68{margin-top:-68px}.tutor-mt-lg-n72{margin-top:-72px}.tutor-mt-lg-n76{margin-top:-76px}.tutor-mt-lg-n80{margin-top:-80px}.tutor-mr-lg-n2{margin-right:-2px}.tutor-mr-lg-n4{margin-right:-4px}.tutor-mr-lg-n8{margin-right:-8px}.tutor-mr-lg-n12{margin-right:-12px}.tutor-mr-lg-n16{margin-right:-16px}.tutor-mr-lg-n20{margin-right:-20px}.tutor-mr-lg-n24{margin-right:-24px}.tutor-mr-lg-n28{margin-right:-28px}.tutor-mr-lg-n32{margin-right:-32px}.tutor-mr-lg-n36{margin-right:-36px}.tutor-mr-lg-n40{margin-right:-40px}.tutor-mr-lg-n44{margin-right:-44px}.tutor-mr-lg-n48{margin-right:-48px}.tutor-mr-lg-n52{margin-right:-52px}.tutor-mr-lg-n56{margin-right:-56px}.tutor-mr-lg-n60{margin-right:-60px}.tutor-mr-lg-n64{margin-right:-64px}.tutor-mr-lg-n68{margin-right:-68px}.tutor-mr-lg-n72{margin-right:-72px}.tutor-mr-lg-n76{margin-right:-76px}.tutor-mr-lg-n80{margin-right:-80px}.tutor-mb-lg-n2{margin-bottom:-2px}.tutor-mb-lg-n4{margin-bottom:-4px}.tutor-mb-lg-n8{margin-bottom:-8px}.tutor-mb-lg-n12{margin-bottom:-12px}.tutor-mb-lg-n16{margin-bottom:-16px}.tutor-mb-lg-n20{margin-bottom:-20px}.tutor-mb-lg-n24{margin-bottom:-24px}.tutor-mb-lg-n28{margin-bottom:-28px}.tutor-mb-lg-n32{margin-bottom:-32px}.tutor-mb-lg-n36{margin-bottom:-36px}.tutor-mb-lg-n40{margin-bottom:-40px}.tutor-mb-lg-n44{margin-bottom:-44px}.tutor-mb-lg-n48{margin-bottom:-48px}.tutor-mb-lg-n52{margin-bottom:-52px}.tutor-mb-lg-n56{margin-bottom:-56px}.tutor-mb-lg-n60{margin-bottom:-60px}.tutor-mb-lg-n64{margin-bottom:-64px}.tutor-mb-lg-n68{margin-bottom:-68px}.tutor-mb-lg-n72{margin-bottom:-72px}.tutor-mb-lg-n76{margin-bottom:-76px}.tutor-mb-lg-n80{margin-bottom:-80px}.tutor-ml-lg-n2{margin-left:-2px}.tutor-ml-lg-n4{margin-left:-4px}.tutor-ml-lg-n8{margin-left:-8px}.tutor-ml-lg-n12{margin-left:-12px}.tutor-ml-lg-n16{margin-left:-16px}.tutor-ml-lg-n20{margin-left:-20px}.tutor-ml-lg-n24{margin-left:-24px}.tutor-ml-lg-n28{margin-left:-28px}.tutor-ml-lg-n32{margin-left:-32px}.tutor-ml-lg-n36{margin-left:-36px}.tutor-ml-lg-n40{margin-left:-40px}.tutor-ml-lg-n44{margin-left:-44px}.tutor-ml-lg-n48{margin-left:-48px}.tutor-ml-lg-n52{margin-left:-52px}.tutor-ml-lg-n56{margin-left:-56px}.tutor-ml-lg-n60{margin-left:-60px}.tutor-ml-lg-n64{margin-left:-64px}.tutor-ml-lg-n68{margin-left:-68px}.tutor-ml-lg-n72{margin-left:-72px}.tutor-ml-lg-n76{margin-left:-76px}.tutor-ml-lg-n80{margin-left:-80px}.tutor-p-lg-0{padding:0}.tutor-p-lg-2{padding:2px}.tutor-p-lg-4{padding:4px}.tutor-p-lg-8{padding:8px}.tutor-p-lg-12{padding:12px}.tutor-p-lg-16{padding:16px}.tutor-p-lg-20{padding:20px}.tutor-p-lg-24{padding:24px}.tutor-p-lg-28{padding:28px}.tutor-p-lg-32{padding:32px}.tutor-p-lg-36{padding:36px}.tutor-p-lg-40{padding:40px}.tutor-p-lg-44{padding:44px}.tutor-p-lg-48{padding:48px}.tutor-p-lg-52{padding:52px}.tutor-p-lg-56{padding:56px}.tutor-p-lg-60{padding:60px}.tutor-p-lg-64{padding:64px}.tutor-p-lg-68{padding:68px}.tutor-p-lg-72{padding:72px}.tutor-p-lg-76{padding:76px}.tutor-p-lg-80{padding:80px}.tutor-px-lg-0{padding-left:0;padding-right:0}.tutor-px-lg-2{padding-left:2px;padding-right:2px}.tutor-px-lg-4{padding-left:4px;padding-right:4px}.tutor-px-lg-8{padding-left:8px;padding-right:8px}.tutor-px-lg-12{padding-left:12px;padding-right:12px}.tutor-px-lg-16{padding-left:16px;padding-right:16px}.tutor-px-lg-20{padding-left:20px;padding-right:20px}.tutor-px-lg-24{padding-left:24px;padding-right:24px}.tutor-px-lg-28{padding-left:28px;padding-right:28px}.tutor-px-lg-32{padding-left:32px;padding-right:32px}.tutor-px-lg-36{padding-left:36px;padding-right:36px}.tutor-px-lg-40{padding-left:40px;padding-right:40px}.tutor-px-lg-44{padding-left:44px;padding-right:44px}.tutor-px-lg-48{padding-left:48px;padding-right:48px}.tutor-px-lg-52{padding-left:52px;padding-right:52px}.tutor-px-lg-56{padding-left:56px;padding-right:56px}.tutor-px-lg-60{padding-left:60px;padding-right:60px}.tutor-px-lg-64{padding-left:64px;padding-right:64px}.tutor-px-lg-68{padding-left:68px;padding-right:68px}.tutor-px-lg-72{padding-left:72px;padding-right:72px}.tutor-px-lg-76{padding-left:76px;padding-right:76px}.tutor-px-lg-80{padding-left:80px;padding-right:80px}.tutor-py-lg-0{padding-top:0;padding-bottom:0}.tutor-py-lg-2{padding-top:2px;padding-bottom:2px}.tutor-py-lg-4{padding-top:4px;padding-bottom:4px}.tutor-py-lg-8{padding-top:8px;padding-bottom:8px}.tutor-py-lg-12{padding-top:12px;padding-bottom:12px}.tutor-py-lg-16{padding-top:16px;padding-bottom:16px}.tutor-py-lg-20{padding-top:20px;padding-bottom:20px}.tutor-py-lg-24{padding-top:24px;padding-bottom:24px}.tutor-py-lg-28{padding-top:28px;padding-bottom:28px}.tutor-py-lg-32{padding-top:32px;padding-bottom:32px}.tutor-py-lg-36{padding-top:36px;padding-bottom:36px}.tutor-py-lg-40{padding-top:40px;padding-bottom:40px}.tutor-py-lg-44{padding-top:44px;padding-bottom:44px}.tutor-py-lg-48{padding-top:48px;padding-bottom:48px}.tutor-py-lg-52{padding-top:52px;padding-bottom:52px}.tutor-py-lg-56{padding-top:56px;padding-bottom:56px}.tutor-py-lg-60{padding-top:60px;padding-bottom:60px}.tutor-py-lg-64{padding-top:64px;padding-bottom:64px}.tutor-py-lg-68{padding-top:68px;padding-bottom:68px}.tutor-py-lg-72{padding-top:72px;padding-bottom:72px}.tutor-py-lg-76{padding-top:76px;padding-bottom:76px}.tutor-py-lg-80{padding-top:80px;padding-bottom:80px}.tutor-pt-lg-0{padding-top:0}.tutor-pt-lg-2{padding-top:2px}.tutor-pt-lg-4{padding-top:4px}.tutor-pt-lg-8{padding-top:8px}.tutor-pt-lg-12{padding-top:12px}.tutor-pt-lg-16{padding-top:16px}.tutor-pt-lg-20{padding-top:20px}.tutor-pt-lg-24{padding-top:24px}.tutor-pt-lg-28{padding-top:28px}.tutor-pt-lg-32{padding-top:32px}.tutor-pt-lg-36{padding-top:36px}.tutor-pt-lg-40{padding-top:40px}.tutor-pt-lg-44{padding-top:44px}.tutor-pt-lg-48{padding-top:48px}.tutor-pt-lg-52{padding-top:52px}.tutor-pt-lg-56{padding-top:56px}.tutor-pt-lg-60{padding-top:60px}.tutor-pt-lg-64{padding-top:64px}.tutor-pt-lg-68{padding-top:68px}.tutor-pt-lg-72{padding-top:72px}.tutor-pt-lg-76{padding-top:76px}.tutor-pt-lg-80{padding-top:80px}.tutor-pr-lg-0{padding-right:0}.tutor-pr-lg-2{padding-right:2px}.tutor-pr-lg-4{padding-right:4px}.tutor-pr-lg-8{padding-right:8px}.tutor-pr-lg-12{padding-right:12px}.tutor-pr-lg-16{padding-right:16px}.tutor-pr-lg-20{padding-right:20px}.tutor-pr-lg-24{padding-right:24px}.tutor-pr-lg-28{padding-right:28px}.tutor-pr-lg-32{padding-right:32px}.tutor-pr-lg-36{padding-right:36px}.tutor-pr-lg-40{padding-right:40px}.tutor-pr-lg-44{padding-right:44px}.tutor-pr-lg-48{padding-right:48px}.tutor-pr-lg-52{padding-right:52px}.tutor-pr-lg-56{padding-right:56px}.tutor-pr-lg-60{padding-right:60px}.tutor-pr-lg-64{padding-right:64px}.tutor-pr-lg-68{padding-right:68px}.tutor-pr-lg-72{padding-right:72px}.tutor-pr-lg-76{padding-right:76px}.tutor-pr-lg-80{padding-right:80px}.tutor-pb-lg-0{padding-bottom:0}.tutor-pb-lg-2{padding-bottom:2px}.tutor-pb-lg-4{padding-bottom:4px}.tutor-pb-lg-8{padding-bottom:8px}.tutor-pb-lg-12{padding-bottom:12px}.tutor-pb-lg-16{padding-bottom:16px}.tutor-pb-lg-20{padding-bottom:20px}.tutor-pb-lg-24{padding-bottom:24px}.tutor-pb-lg-28{padding-bottom:28px}.tutor-pb-lg-32{padding-bottom:32px}.tutor-pb-lg-36{padding-bottom:36px}.tutor-pb-lg-40{padding-bottom:40px}.tutor-pb-lg-44{padding-bottom:44px}.tutor-pb-lg-48{padding-bottom:48px}.tutor-pb-lg-52{padding-bottom:52px}.tutor-pb-lg-56{padding-bottom:56px}.tutor-pb-lg-60{padding-bottom:60px}.tutor-pb-lg-64{padding-bottom:64px}.tutor-pb-lg-68{padding-bottom:68px}.tutor-pb-lg-72{padding-bottom:72px}.tutor-pb-lg-76{padding-bottom:76px}.tutor-pb-lg-80{padding-bottom:80px}.tutor-pl-lg-0{padding-left:0}.tutor-pl-lg-2{padding-left:2px}.tutor-pl-lg-4{padding-left:4px}.tutor-pl-lg-8{padding-left:8px}.tutor-pl-lg-12{padding-left:12px}.tutor-pl-lg-16{padding-left:16px}.tutor-pl-lg-20{padding-left:20px}.tutor-pl-lg-24{padding-left:24px}.tutor-pl-lg-28{padding-left:28px}.tutor-pl-lg-32{padding-left:32px}.tutor-pl-lg-36{padding-left:36px}.tutor-pl-lg-40{padding-left:40px}.tutor-pl-lg-44{padding-left:44px}.tutor-pl-lg-48{padding-left:48px}.tutor-pl-lg-52{padding-left:52px}.tutor-pl-lg-56{padding-left:56px}.tutor-pl-lg-60{padding-left:60px}.tutor-pl-lg-64{padding-left:64px}.tutor-pl-lg-68{padding-left:68px}.tutor-pl-lg-72{padding-left:72px}.tutor-pl-lg-76{padding-left:76px}.tutor-pl-lg-80{padding-left:80px}}@media (min-width:1200px){.tutor-d-xl-inline{display:inline!important}.tutor-d-xl-inline-block{display:inline-block!important}.tutor-d-xl-block{display:block!important}.tutor-d-xl-grid{display:grid!important}.tutor-d-xl-table{display:table!important}.tutor-d-xl-table-row{display:table-row!important}.tutor-d-xl-table-cell{display:table-cell!important}.tutor-d-xl-flex{display:flex!important}.tutor-d-xl-inline-flex{display:inline-flex!important}.tutor-d-xl-none{display:none!important}.tutor-flex-xl-fill{flex:auto!important}.tutor-flex-xl-row{flex-direction:row!important}.tutor-flex-xl-column{flex-direction:column!important}.tutor-flex-xl-row-reverse{flex-direction:row-reverse!important}.tutor-flex-xl-column-reverse{flex-direction:column-reverse!important}.tutor-flex-xl-grow-0{flex-grow:0!important}.tutor-flex-xl-grow-1{flex-grow:1!important}.tutor-flex-xl-shrink-0{flex-shrink:0!important}.tutor-flex-xl-shrink-1{flex-shrink:1!important}.tutor-flex-xl-wrap{flex-wrap:wrap!important}.tutor-flex-xl-nowrap{flex-wrap:nowrap!important}.tutor-flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.tutor-gap-xl-0{gap:0!important}.tutor-gap-xl-1{gap:.5rem!important}.tutor-gap-xl-2{gap:1rem!important}.tutor-gap-xl-3{gap:1.5rem!important}.tutor-gap-xl-4{gap:2rem!important}.tutor-gap-xl-5{gap:3rem!important}.tutor-gap-xl-4px{gap:.25rem!important}.tutor-gap-xl-12px{gap:.75rem!important}.tutor-justify-xl-start{justify-content:flex-start!important}.tutor-justify-xl-end{justify-content:flex-end!important}.tutor-justify-xl-center{justify-content:center!important}.tutor-justify-xl-between{justify-content:space-between!important}.tutor-justify-xl-around{justify-content:space-around!important}.tutor-justify-xl-evenly{justify-content:space-evenly!important}.tutor-align-xl-start{align-items:flex-start!important}.tutor-align-xl-end{align-items:flex-end!important}.tutor-align-xl-center{align-items:center!important}.tutor-align-xl-baseline{align-items:baseline!important}.tutor-align-xl-stretch{align-items:stretch!important}.tutor-align-content-xl-start{align-content:flex-start!important}.tutor-align-content-xl-end{align-content:flex-end!important}.tutor-align-content-xl-center{align-content:center!important}.tutor-align-content-xl-between{align-content:space-between!important}.tutor-align-content-xl-around{align-content:space-around!important}.tutor-align-content-xl-stretch{align-content:stretch!important}.tutor-align-self-xl-auto{align-self:auto!important}.tutor-align-self-xl-start{align-self:flex-start!important}.tutor-align-self-xl-end{align-self:flex-end!important}.tutor-align-self-xl-center{align-self:center!important}.tutor-align-self-xl-baseline{align-self:baseline!important}.tutor-align-self-xl-stretch{align-self:stretch!important}.tutor-order-xl-first{order:-1!important}.tutor-order-xl-0{order:0!important}.tutor-order-xl-1{order:1!important}.tutor-order-xl-2{order:2!important}.tutor-order-xl-3{order:3!important}.tutor-order-xl-4{order:4!important}.tutor-order-xl-5{order:5!important}.tutor-order-xl-last{order:6!important}.tutor-m-xl-0{margin:0}.tutor-m-xl-2{margin:2px}.tutor-m-xl-4{margin:4px}.tutor-m-xl-8{margin:8px}.tutor-m-xl-12{margin:12px}.tutor-m-xl-16{margin:16px}.tutor-m-xl-20{margin:20px}.tutor-m-xl-24{margin:24px}.tutor-m-xl-28{margin:28px}.tutor-m-xl-32{margin:32px}.tutor-m-xl-36{margin:36px}.tutor-m-xl-40{margin:40px}.tutor-m-xl-44{margin:44px}.tutor-m-xl-48{margin:48px}.tutor-m-xl-52{margin:52px}.tutor-m-xl-56{margin:56px}.tutor-m-xl-60{margin:60px}.tutor-m-xl-64{margin:64px}.tutor-m-xl-68{margin:68px}.tutor-m-xl-72{margin:72px}.tutor-m-xl-76{margin:76px}.tutor-m-xl-80{margin:80px}.tutor-m-xl-auto{margin:auto}.tutor-mx-xl-0{margin-left:0;margin-right:0}.tutor-mx-xl-2{margin-left:2px;margin-right:2px}.tutor-mx-xl-4{margin-left:4px;margin-right:4px}.tutor-mx-xl-8{margin-left:8px;margin-right:8px}.tutor-mx-xl-12{margin-left:12px;margin-right:12px}.tutor-mx-xl-16{margin-left:16px;margin-right:16px}.tutor-mx-xl-20{margin-left:20px;margin-right:20px}.tutor-mx-xl-24{margin-left:24px;margin-right:24px}.tutor-mx-xl-28{margin-left:28px;margin-right:28px}.tutor-mx-xl-32{margin-left:32px;margin-right:32px}.tutor-mx-xl-36{margin-left:36px;margin-right:36px}.tutor-mx-xl-40{margin-left:40px;margin-right:40px}.tutor-mx-xl-44{margin-left:44px;margin-right:44px}.tutor-mx-xl-48{margin-left:48px;margin-right:48px}.tutor-mx-xl-52{margin-left:52px;margin-right:52px}.tutor-mx-xl-56{margin-left:56px;margin-right:56px}.tutor-mx-xl-60{margin-left:60px;margin-right:60px}.tutor-mx-xl-64{margin-left:64px;margin-right:64px}.tutor-mx-xl-68{margin-left:68px;margin-right:68px}.tutor-mx-xl-72{margin-left:72px;margin-right:72px}.tutor-mx-xl-76{margin-left:76px;margin-right:76px}.tutor-mx-xl-80{margin-left:80px;margin-right:80px}.tutor-mx-xl-auto{margin-left:auto;margin-right:auto}.tutor-my-xl-0{margin-top:0;margin-bottom:0}.tutor-my-xl-2{margin-top:2px;margin-bottom:2px}.tutor-my-xl-4{margin-top:4px;margin-bottom:4px}.tutor-my-xl-8{margin-top:8px;margin-bottom:8px}.tutor-my-xl-12{margin-top:12px;margin-bottom:12px}.tutor-my-xl-16{margin-top:16px;margin-bottom:16px}.tutor-my-xl-20{margin-top:20px;margin-bottom:20px}.tutor-my-xl-24{margin-top:24px;margin-bottom:24px}.tutor-my-xl-28{margin-top:28px;margin-bottom:28px}.tutor-my-xl-32{margin-top:32px;margin-bottom:32px}.tutor-my-xl-36{margin-top:36px;margin-bottom:36px}.tutor-my-xl-40{margin-top:40px;margin-bottom:40px}.tutor-my-xl-44{margin-top:44px;margin-bottom:44px}.tutor-my-xl-48{margin-top:48px;margin-bottom:48px}.tutor-my-xl-52{margin-top:52px;margin-bottom:52px}.tutor-my-xl-56{margin-top:56px;margin-bottom:56px}.tutor-my-xl-60{margin-top:60px;margin-bottom:60px}.tutor-my-xl-64{margin-top:64px;margin-bottom:64px}.tutor-my-xl-68{margin-top:68px;margin-bottom:68px}.tutor-my-xl-72{margin-top:72px;margin-bottom:72px}.tutor-my-xl-76{margin-top:76px;margin-bottom:76px}.tutor-my-xl-80{margin-top:80px;margin-bottom:80px}.tutor-my-xl-auto{margin-top:auto;margin-bottom:auto}.tutor-mt-xl-0{margin-top:0}.tutor-mt-xl-2{margin-top:2px}.tutor-mt-xl-4{margin-top:4px}.tutor-mt-xl-8{margin-top:8px}.tutor-mt-xl-12{margin-top:12px}.tutor-mt-xl-16{margin-top:16px}.tutor-mt-xl-20{margin-top:20px}.tutor-mt-xl-24{margin-top:24px}.tutor-mt-xl-28{margin-top:28px}.tutor-mt-xl-32{margin-top:32px}.tutor-mt-xl-36{margin-top:36px}.tutor-mt-xl-40{margin-top:40px}.tutor-mt-xl-44{margin-top:44px}.tutor-mt-xl-48{margin-top:48px}.tutor-mt-xl-52{margin-top:52px}.tutor-mt-xl-56{margin-top:56px}.tutor-mt-xl-60{margin-top:60px}.tutor-mt-xl-64{margin-top:64px}.tutor-mt-xl-68{margin-top:68px}.tutor-mt-xl-72{margin-top:72px}.tutor-mt-xl-76{margin-top:76px}.tutor-mt-xl-80{margin-top:80px}.tutor-mt-xl-auto{margin-top:auto}.tutor-mr-xl-0{margin-right:0}.tutor-mr-xl-2{margin-right:2px}.tutor-mr-xl-4{margin-right:4px}.tutor-mr-xl-8{margin-right:8px}.tutor-mr-xl-12{margin-right:12px}.tutor-mr-xl-16{margin-right:16px}.tutor-mr-xl-20{margin-right:20px}.tutor-mr-xl-24{margin-right:24px}.tutor-mr-xl-28{margin-right:28px}.tutor-mr-xl-32{margin-right:32px}.tutor-mr-xl-36{margin-right:36px}.tutor-mr-xl-40{margin-right:40px}.tutor-mr-xl-44{margin-right:44px}.tutor-mr-xl-48{margin-right:48px}.tutor-mr-xl-52{margin-right:52px}.tutor-mr-xl-56{margin-right:56px}.tutor-mr-xl-60{margin-right:60px}.tutor-mr-xl-64{margin-right:64px}.tutor-mr-xl-68{margin-right:68px}.tutor-mr-xl-72{margin-right:72px}.tutor-mr-xl-76{margin-right:76px}.tutor-mr-xl-80{margin-right:80px}.tutor-mr-xl-auto{margin-right:auto}.tutor-mb-xl-0{margin-bottom:0}.tutor-mb-xl-2{margin-bottom:2px}.tutor-mb-xl-4{margin-bottom:4px}.tutor-mb-xl-8{margin-bottom:8px}.tutor-mb-xl-12{margin-bottom:12px}.tutor-mb-xl-16{margin-bottom:16px}.tutor-mb-xl-20{margin-bottom:20px}.tutor-mb-xl-24{margin-bottom:24px}.tutor-mb-xl-28{margin-bottom:28px}.tutor-mb-xl-32{margin-bottom:32px}.tutor-mb-xl-36{margin-bottom:36px}.tutor-mb-xl-40{margin-bottom:40px}.tutor-mb-xl-44{margin-bottom:44px}.tutor-mb-xl-48{margin-bottom:48px}.tutor-mb-xl-52{margin-bottom:52px}.tutor-mb-xl-56{margin-bottom:56px}.tutor-mb-xl-60{margin-bottom:60px}.tutor-mb-xl-64{margin-bottom:64px}.tutor-mb-xl-68{margin-bottom:68px}.tutor-mb-xl-72{margin-bottom:72px}.tutor-mb-xl-76{margin-bottom:76px}.tutor-mb-xl-80{margin-bottom:80px}.tutor-mb-xl-auto{margin-bottom:auto}.tutor-ml-xl-0{margin-left:0}.tutor-ml-xl-2{margin-left:2px}.tutor-ml-xl-4{margin-left:4px}.tutor-ml-xl-8{margin-left:8px}.tutor-ml-xl-12{margin-left:12px}.tutor-ml-xl-16{margin-left:16px}.tutor-ml-xl-20{margin-left:20px}.tutor-ml-xl-24{margin-left:24px}.tutor-ml-xl-28{margin-left:28px}.tutor-ml-xl-32{margin-left:32px}.tutor-ml-xl-36{margin-left:36px}.tutor-ml-xl-40{margin-left:40px}.tutor-ml-xl-44{margin-left:44px}.tutor-ml-xl-48{margin-left:48px}.tutor-ml-xl-52{margin-left:52px}.tutor-ml-xl-56{margin-left:56px}.tutor-ml-xl-60{margin-left:60px}.tutor-ml-xl-64{margin-left:64px}.tutor-ml-xl-68{margin-left:68px}.tutor-ml-xl-72{margin-left:72px}.tutor-ml-xl-76{margin-left:76px}.tutor-ml-xl-80{margin-left:80px}.tutor-ml-xl-auto{margin-left:auto}.tutor-m-xl-n2{margin:-2px}.tutor-m-xl-n4{margin:-4px}.tutor-m-xl-n8{margin:-8px}.tutor-m-xl-n12{margin:-12px}.tutor-m-xl-n16{margin:-16px}.tutor-m-xl-n20{margin:-20px}.tutor-m-xl-n24{margin:-24px}.tutor-m-xl-n28{margin:-28px}.tutor-m-xl-n32{margin:-32px}.tutor-m-xl-n36{margin:-36px}.tutor-m-xl-n40{margin:-40px}.tutor-m-xl-n44{margin:-44px}.tutor-m-xl-n48{margin:-48px}.tutor-m-xl-n52{margin:-52px}.tutor-m-xl-n56{margin:-56px}.tutor-m-xl-n60{margin:-60px}.tutor-m-xl-n64{margin:-64px}.tutor-m-xl-n68{margin:-68px}.tutor-m-xl-n72{margin:-72px}.tutor-m-xl-n76{margin:-76px}.tutor-m-xl-n80{margin:-80px}.tutor-mx-xl-n2{margin-left:-2px;margin-right:-2px}.tutor-mx-xl-n4{margin-left:-4px;margin-right:-4px}.tutor-mx-xl-n8{margin-left:-8px;margin-right:-8px}.tutor-mx-xl-n12{margin-left:-12px;margin-right:-12px}.tutor-mx-xl-n16{margin-left:-16px;margin-right:-16px}.tutor-mx-xl-n20{margin-left:-20px;margin-right:-20px}.tutor-mx-xl-n24{margin-left:-24px;margin-right:-24px}.tutor-mx-xl-n28{margin-left:-28px;margin-right:-28px}.tutor-mx-xl-n32{margin-left:-32px;margin-right:-32px}.tutor-mx-xl-n36{margin-left:-36px;margin-right:-36px}.tutor-mx-xl-n40{margin-left:-40px;margin-right:-40px}.tutor-mx-xl-n44{margin-left:-44px;margin-right:-44px}.tutor-mx-xl-n48{margin-left:-48px;margin-right:-48px}.tutor-mx-xl-n52{margin-left:-52px;margin-right:-52px}.tutor-mx-xl-n56{margin-left:-56px;margin-right:-56px}.tutor-mx-xl-n60{margin-left:-60px;margin-right:-60px}.tutor-mx-xl-n64{margin-left:-64px;margin-right:-64px}.tutor-mx-xl-n68{margin-left:-68px;margin-right:-68px}.tutor-mx-xl-n72{margin-left:-72px;margin-right:-72px}.tutor-mx-xl-n76{margin-left:-76px;margin-right:-76px}.tutor-mx-xl-n80{margin-left:-80px;margin-right:-80px}.tutor-my-xl-n2{margin-top:-2px;margin-bottom:-2px}.tutor-my-xl-n4{margin-top:-4px;margin-bottom:-4px}.tutor-my-xl-n8{margin-top:-8px;margin-bottom:-8px}.tutor-my-xl-n12{margin-top:-12px;margin-bottom:-12px}.tutor-my-xl-n16{margin-top:-16px;margin-bottom:-16px}.tutor-my-xl-n20{margin-top:-20px;margin-bottom:-20px}.tutor-my-xl-n24{margin-top:-24px;margin-bottom:-24px}.tutor-my-xl-n28{margin-top:-28px;margin-bottom:-28px}.tutor-my-xl-n32{margin-top:-32px;margin-bottom:-32px}.tutor-my-xl-n36{margin-top:-36px;margin-bottom:-36px}.tutor-my-xl-n40{margin-top:-40px;margin-bottom:-40px}.tutor-my-xl-n44{margin-top:-44px;margin-bottom:-44px}.tutor-my-xl-n48{margin-top:-48px;margin-bottom:-48px}.tutor-my-xl-n52{margin-top:-52px;margin-bottom:-52px}.tutor-my-xl-n56{margin-top:-56px;margin-bottom:-56px}.tutor-my-xl-n60{margin-top:-60px;margin-bottom:-60px}.tutor-my-xl-n64{margin-top:-64px;margin-bottom:-64px}.tutor-my-xl-n68{margin-top:-68px;margin-bottom:-68px}.tutor-my-xl-n72{margin-top:-72px;margin-bottom:-72px}.tutor-my-xl-n76{margin-top:-76px;margin-bottom:-76px}.tutor-my-xl-n80{margin-top:-80px;margin-bottom:-80px}.tutor-mt-xl-n2{margin-top:-2px}.tutor-mt-xl-n4{margin-top:-4px}.tutor-mt-xl-n8{margin-top:-8px}.tutor-mt-xl-n12{margin-top:-12px}.tutor-mt-xl-n16{margin-top:-16px}.tutor-mt-xl-n20{margin-top:-20px}.tutor-mt-xl-n24{margin-top:-24px}.tutor-mt-xl-n28{margin-top:-28px}.tutor-mt-xl-n32{margin-top:-32px}.tutor-mt-xl-n36{margin-top:-36px}.tutor-mt-xl-n40{margin-top:-40px}.tutor-mt-xl-n44{margin-top:-44px}.tutor-mt-xl-n48{margin-top:-48px}.tutor-mt-xl-n52{margin-top:-52px}.tutor-mt-xl-n56{margin-top:-56px}.tutor-mt-xl-n60{margin-top:-60px}.tutor-mt-xl-n64{margin-top:-64px}.tutor-mt-xl-n68{margin-top:-68px}.tutor-mt-xl-n72{margin-top:-72px}.tutor-mt-xl-n76{margin-top:-76px}.tutor-mt-xl-n80{margin-top:-80px}.tutor-mr-xl-n2{margin-right:-2px}.tutor-mr-xl-n4{margin-right:-4px}.tutor-mr-xl-n8{margin-right:-8px}.tutor-mr-xl-n12{margin-right:-12px}.tutor-mr-xl-n16{margin-right:-16px}.tutor-mr-xl-n20{margin-right:-20px}.tutor-mr-xl-n24{margin-right:-24px}.tutor-mr-xl-n28{margin-right:-28px}.tutor-mr-xl-n32{margin-right:-32px}.tutor-mr-xl-n36{margin-right:-36px}.tutor-mr-xl-n40{margin-right:-40px}.tutor-mr-xl-n44{margin-right:-44px}.tutor-mr-xl-n48{margin-right:-48px}.tutor-mr-xl-n52{margin-right:-52px}.tutor-mr-xl-n56{margin-right:-56px}.tutor-mr-xl-n60{margin-right:-60px}.tutor-mr-xl-n64{margin-right:-64px}.tutor-mr-xl-n68{margin-right:-68px}.tutor-mr-xl-n72{margin-right:-72px}.tutor-mr-xl-n76{margin-right:-76px}.tutor-mr-xl-n80{margin-right:-80px}.tutor-mb-xl-n2{margin-bottom:-2px}.tutor-mb-xl-n4{margin-bottom:-4px}.tutor-mb-xl-n8{margin-bottom:-8px}.tutor-mb-xl-n12{margin-bottom:-12px}.tutor-mb-xl-n16{margin-bottom:-16px}.tutor-mb-xl-n20{margin-bottom:-20px}.tutor-mb-xl-n24{margin-bottom:-24px}.tutor-mb-xl-n28{margin-bottom:-28px}.tutor-mb-xl-n32{margin-bottom:-32px}.tutor-mb-xl-n36{margin-bottom:-36px}.tutor-mb-xl-n40{margin-bottom:-40px}.tutor-mb-xl-n44{margin-bottom:-44px}.tutor-mb-xl-n48{margin-bottom:-48px}.tutor-mb-xl-n52{margin-bottom:-52px}.tutor-mb-xl-n56{margin-bottom:-56px}.tutor-mb-xl-n60{margin-bottom:-60px}.tutor-mb-xl-n64{margin-bottom:-64px}.tutor-mb-xl-n68{margin-bottom:-68px}.tutor-mb-xl-n72{margin-bottom:-72px}.tutor-mb-xl-n76{margin-bottom:-76px}.tutor-mb-xl-n80{margin-bottom:-80px}.tutor-ml-xl-n2{margin-left:-2px}.tutor-ml-xl-n4{margin-left:-4px}.tutor-ml-xl-n8{margin-left:-8px}.tutor-ml-xl-n12{margin-left:-12px}.tutor-ml-xl-n16{margin-left:-16px}.tutor-ml-xl-n20{margin-left:-20px}.tutor-ml-xl-n24{margin-left:-24px}.tutor-ml-xl-n28{margin-left:-28px}.tutor-ml-xl-n32{margin-left:-32px}.tutor-ml-xl-n36{margin-left:-36px}.tutor-ml-xl-n40{margin-left:-40px}.tutor-ml-xl-n44{margin-left:-44px}.tutor-ml-xl-n48{margin-left:-48px}.tutor-ml-xl-n52{margin-left:-52px}.tutor-ml-xl-n56{margin-left:-56px}.tutor-ml-xl-n60{margin-left:-60px}.tutor-ml-xl-n64{margin-left:-64px}.tutor-ml-xl-n68{margin-left:-68px}.tutor-ml-xl-n72{margin-left:-72px}.tutor-ml-xl-n76{margin-left:-76px}.tutor-ml-xl-n80{margin-left:-80px}.tutor-p-xl-0{padding:0}.tutor-p-xl-2{padding:2px}.tutor-p-xl-4{padding:4px}.tutor-p-xl-8{padding:8px}.tutor-p-xl-12{padding:12px}.tutor-p-xl-16{padding:16px}.tutor-p-xl-20{padding:20px}.tutor-p-xl-24{padding:24px}.tutor-p-xl-28{padding:28px}.tutor-p-xl-32{padding:32px}.tutor-p-xl-36{padding:36px}.tutor-p-xl-40{padding:40px}.tutor-p-xl-44{padding:44px}.tutor-p-xl-48{padding:48px}.tutor-p-xl-52{padding:52px}.tutor-p-xl-56{padding:56px}.tutor-p-xl-60{padding:60px}.tutor-p-xl-64{padding:64px}.tutor-p-xl-68{padding:68px}.tutor-p-xl-72{padding:72px}.tutor-p-xl-76{padding:76px}.tutor-p-xl-80{padding:80px}.tutor-px-xl-0{padding-left:0;padding-right:0}.tutor-px-xl-2{padding-left:2px;padding-right:2px}.tutor-px-xl-4{padding-left:4px;padding-right:4px}.tutor-px-xl-8{padding-left:8px;padding-right:8px}.tutor-px-xl-12{padding-left:12px;padding-right:12px}.tutor-px-xl-16{padding-left:16px;padding-right:16px}.tutor-px-xl-20{padding-left:20px;padding-right:20px}.tutor-px-xl-24{padding-left:24px;padding-right:24px}.tutor-px-xl-28{padding-left:28px;padding-right:28px}.tutor-px-xl-32{padding-left:32px;padding-right:32px}.tutor-px-xl-36{padding-left:36px;padding-right:36px}.tutor-px-xl-40{padding-left:40px;padding-right:40px}.tutor-px-xl-44{padding-left:44px;padding-right:44px}.tutor-px-xl-48{padding-left:48px;padding-right:48px}.tutor-px-xl-52{padding-left:52px;padding-right:52px}.tutor-px-xl-56{padding-left:56px;padding-right:56px}.tutor-px-xl-60{padding-left:60px;padding-right:60px}.tutor-px-xl-64{padding-left:64px;padding-right:64px}.tutor-px-xl-68{padding-left:68px;padding-right:68px}.tutor-px-xl-72{padding-left:72px;padding-right:72px}.tutor-px-xl-76{padding-left:76px;padding-right:76px}.tutor-px-xl-80{padding-left:80px;padding-right:80px}.tutor-py-xl-0{padding-top:0;padding-bottom:0}.tutor-py-xl-2{padding-top:2px;padding-bottom:2px}.tutor-py-xl-4{padding-top:4px;padding-bottom:4px}.tutor-py-xl-8{padding-top:8px;padding-bottom:8px}.tutor-py-xl-12{padding-top:12px;padding-bottom:12px}.tutor-py-xl-16{padding-top:16px;padding-bottom:16px}.tutor-py-xl-20{padding-top:20px;padding-bottom:20px}.tutor-py-xl-24{padding-top:24px;padding-bottom:24px}.tutor-py-xl-28{padding-top:28px;padding-bottom:28px}.tutor-py-xl-32{padding-top:32px;padding-bottom:32px}.tutor-py-xl-36{padding-top:36px;padding-bottom:36px}.tutor-py-xl-40{padding-top:40px;padding-bottom:40px}.tutor-py-xl-44{padding-top:44px;padding-bottom:44px}.tutor-py-xl-48{padding-top:48px;padding-bottom:48px}.tutor-py-xl-52{padding-top:52px;padding-bottom:52px}.tutor-py-xl-56{padding-top:56px;padding-bottom:56px}.tutor-py-xl-60{padding-top:60px;padding-bottom:60px}.tutor-py-xl-64{padding-top:64px;padding-bottom:64px}.tutor-py-xl-68{padding-top:68px;padding-bottom:68px}.tutor-py-xl-72{padding-top:72px;padding-bottom:72px}.tutor-py-xl-76{padding-top:76px;padding-bottom:76px}.tutor-py-xl-80{padding-top:80px;padding-bottom:80px}.tutor-pt-xl-0{padding-top:0}.tutor-pt-xl-2{padding-top:2px}.tutor-pt-xl-4{padding-top:4px}.tutor-pt-xl-8{padding-top:8px}.tutor-pt-xl-12{padding-top:12px}.tutor-pt-xl-16{padding-top:16px}.tutor-pt-xl-20{padding-top:20px}.tutor-pt-xl-24{padding-top:24px}.tutor-pt-xl-28{padding-top:28px}.tutor-pt-xl-32{padding-top:32px}.tutor-pt-xl-36{padding-top:36px}.tutor-pt-xl-40{padding-top:40px}.tutor-pt-xl-44{padding-top:44px}.tutor-pt-xl-48{padding-top:48px}.tutor-pt-xl-52{padding-top:52px}.tutor-pt-xl-56{padding-top:56px}.tutor-pt-xl-60{padding-top:60px}.tutor-pt-xl-64{padding-top:64px}.tutor-pt-xl-68{padding-top:68px}.tutor-pt-xl-72{padding-top:72px}.tutor-pt-xl-76{padding-top:76px}.tutor-pt-xl-80{padding-top:80px}.tutor-pr-xl-0{padding-right:0}.tutor-pr-xl-2{padding-right:2px}.tutor-pr-xl-4{padding-right:4px}.tutor-pr-xl-8{padding-right:8px}.tutor-pr-xl-12{padding-right:12px}.tutor-pr-xl-16{padding-right:16px}.tutor-pr-xl-20{padding-right:20px}.tutor-pr-xl-24{padding-right:24px}.tutor-pr-xl-28{padding-right:28px}.tutor-pr-xl-32{padding-right:32px}.tutor-pr-xl-36{padding-right:36px}.tutor-pr-xl-40{padding-right:40px}.tutor-pr-xl-44{padding-right:44px}.tutor-pr-xl-48{padding-right:48px}.tutor-pr-xl-52{padding-right:52px}.tutor-pr-xl-56{padding-right:56px}.tutor-pr-xl-60{padding-right:60px}.tutor-pr-xl-64{padding-right:64px}.tutor-pr-xl-68{padding-right:68px}.tutor-pr-xl-72{padding-right:72px}.tutor-pr-xl-76{padding-right:76px}.tutor-pr-xl-80{padding-right:80px}.tutor-pb-xl-0{padding-bottom:0}.tutor-pb-xl-2{padding-bottom:2px}.tutor-pb-xl-4{padding-bottom:4px}.tutor-pb-xl-8{padding-bottom:8px}.tutor-pb-xl-12{padding-bottom:12px}.tutor-pb-xl-16{padding-bottom:16px}.tutor-pb-xl-20{padding-bottom:20px}.tutor-pb-xl-24{padding-bottom:24px}.tutor-pb-xl-28{padding-bottom:28px}.tutor-pb-xl-32{padding-bottom:32px}.tutor-pb-xl-36{padding-bottom:36px}.tutor-pb-xl-40{padding-bottom:40px}.tutor-pb-xl-44{padding-bottom:44px}.tutor-pb-xl-48{padding-bottom:48px}.tutor-pb-xl-52{padding-bottom:52px}.tutor-pb-xl-56{padding-bottom:56px}.tutor-pb-xl-60{padding-bottom:60px}.tutor-pb-xl-64{padding-bottom:64px}.tutor-pb-xl-68{padding-bottom:68px}.tutor-pb-xl-72{padding-bottom:72px}.tutor-pb-xl-76{padding-bottom:76px}.tutor-pb-xl-80{padding-bottom:80px}.tutor-pl-xl-0{padding-left:0}.tutor-pl-xl-2{padding-left:2px}.tutor-pl-xl-4{padding-left:4px}.tutor-pl-xl-8{padding-left:8px}.tutor-pl-xl-12{padding-left:12px}.tutor-pl-xl-16{padding-left:16px}.tutor-pl-xl-20{padding-left:20px}.tutor-pl-xl-24{padding-left:24px}.tutor-pl-xl-28{padding-left:28px}.tutor-pl-xl-32{padding-left:32px}.tutor-pl-xl-36{padding-left:36px}.tutor-pl-xl-40{padding-left:40px}.tutor-pl-xl-44{padding-left:44px}.tutor-pl-xl-48{padding-left:48px}.tutor-pl-xl-52{padding-left:52px}.tutor-pl-xl-56{padding-left:56px}.tutor-pl-xl-60{padding-left:60px}.tutor-pl-xl-64{padding-left:64px}.tutor-pl-xl-68{padding-left:68px}.tutor-pl-xl-72{padding-left:72px}.tutor-pl-xl-76{padding-left:76px}.tutor-pl-xl-80{padding-left:80px}}@media (min-width:1400px){.tutor-d-xxl-inline{display:inline!important}.tutor-d-xxl-inline-block{display:inline-block!important}.tutor-d-xxl-block{display:block!important}.tutor-d-xxl-grid{display:grid!important}.tutor-d-xxl-table{display:table!important}.tutor-d-xxl-table-row{display:table-row!important}.tutor-d-xxl-table-cell{display:table-cell!important}.tutor-d-xxl-flex{display:flex!important}.tutor-d-xxl-inline-flex{display:inline-flex!important}.tutor-d-xxl-none{display:none!important}.tutor-flex-xxl-fill{flex:auto!important}.tutor-flex-xxl-row{flex-direction:row!important}.tutor-flex-xxl-column{flex-direction:column!important}.tutor-flex-xxl-row-reverse{flex-direction:row-reverse!important}.tutor-flex-xxl-column-reverse{flex-direction:column-reverse!important}.tutor-flex-xxl-grow-0{flex-grow:0!important}.tutor-flex-xxl-grow-1{flex-grow:1!important}.tutor-flex-xxl-shrink-0{flex-shrink:0!important}.tutor-flex-xxl-shrink-1{flex-shrink:1!important}.tutor-flex-xxl-wrap{flex-wrap:wrap!important}.tutor-flex-xxl-nowrap{flex-wrap:nowrap!important}.tutor-flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.tutor-gap-xxl-0{gap:0!important}.tutor-gap-xxl-1{gap:.5rem!important}.tutor-gap-xxl-2{gap:1rem!important}.tutor-gap-xxl-3{gap:1.5rem!important}.tutor-gap-xxl-4{gap:2rem!important}.tutor-gap-xxl-5{gap:3rem!important}.tutor-gap-xxl-4px{gap:.25rem!important}.tutor-gap-xxl-12px{gap:.75rem!important}.tutor-justify-xxl-start{justify-content:flex-start!important}.tutor-justify-xxl-end{justify-content:flex-end!important}.tutor-justify-xxl-center{justify-content:center!important}.tutor-justify-xxl-between{justify-content:space-between!important}.tutor-justify-xxl-around{justify-content:space-around!important}.tutor-justify-xxl-evenly{justify-content:space-evenly!important}.tutor-align-xxl-start{align-items:flex-start!important}.tutor-align-xxl-end{align-items:flex-end!important}.tutor-align-xxl-center{align-items:center!important}.tutor-align-xxl-baseline{align-items:baseline!important}.tutor-align-xxl-stretch{align-items:stretch!important}.tutor-align-content-xxl-start{align-content:flex-start!important}.tutor-align-content-xxl-end{align-content:flex-end!important}.tutor-align-content-xxl-center{align-content:center!important}.tutor-align-content-xxl-between{align-content:space-between!important}.tutor-align-content-xxl-around{align-content:space-around!important}.tutor-align-content-xxl-stretch{align-content:stretch!important}.tutor-align-self-xxl-auto{align-self:auto!important}.tutor-align-self-xxl-start{align-self:flex-start!important}.tutor-align-self-xxl-end{align-self:flex-end!important}.tutor-align-self-xxl-center{align-self:center!important}.tutor-align-self-xxl-baseline{align-self:baseline!important}.tutor-align-self-xxl-stretch{align-self:stretch!important}.tutor-order-xxl-first{order:-1!important}.tutor-order-xxl-0{order:0!important}.tutor-order-xxl-1{order:1!important}.tutor-order-xxl-2{order:2!important}.tutor-order-xxl-3{order:3!important}.tutor-order-xxl-4{order:4!important}.tutor-order-xxl-5{order:5!important}.tutor-order-xxl-last{order:6!important}.tutor-m-xxl-0{margin:0}.tutor-m-xxl-2{margin:2px}.tutor-m-xxl-4{margin:4px}.tutor-m-xxl-8{margin:8px}.tutor-m-xxl-12{margin:12px}.tutor-m-xxl-16{margin:16px}.tutor-m-xxl-20{margin:20px}.tutor-m-xxl-24{margin:24px}.tutor-m-xxl-28{margin:28px}.tutor-m-xxl-32{margin:32px}.tutor-m-xxl-36{margin:36px}.tutor-m-xxl-40{margin:40px}.tutor-m-xxl-44{margin:44px}.tutor-m-xxl-48{margin:48px}.tutor-m-xxl-52{margin:52px}.tutor-m-xxl-56{margin:56px}.tutor-m-xxl-60{margin:60px}.tutor-m-xxl-64{margin:64px}.tutor-m-xxl-68{margin:68px}.tutor-m-xxl-72{margin:72px}.tutor-m-xxl-76{margin:76px}.tutor-m-xxl-80{margin:80px}.tutor-m-xxl-auto{margin:auto}.tutor-mx-xxl-0{margin-left:0;margin-right:0}.tutor-mx-xxl-2{margin-left:2px;margin-right:2px}.tutor-mx-xxl-4{margin-left:4px;margin-right:4px}.tutor-mx-xxl-8{margin-left:8px;margin-right:8px}.tutor-mx-xxl-12{margin-left:12px;margin-right:12px}.tutor-mx-xxl-16{margin-left:16px;margin-right:16px}.tutor-mx-xxl-20{margin-left:20px;margin-right:20px}.tutor-mx-xxl-24{margin-left:24px;margin-right:24px}.tutor-mx-xxl-28{margin-left:28px;margin-right:28px}.tutor-mx-xxl-32{margin-left:32px;margin-right:32px}.tutor-mx-xxl-36{margin-left:36px;margin-right:36px}.tutor-mx-xxl-40{margin-left:40px;margin-right:40px}.tutor-mx-xxl-44{margin-left:44px;margin-right:44px}.tutor-mx-xxl-48{margin-left:48px;margin-right:48px}.tutor-mx-xxl-52{margin-left:52px;margin-right:52px}.tutor-mx-xxl-56{margin-left:56px;margin-right:56px}.tutor-mx-xxl-60{margin-left:60px;margin-right:60px}.tutor-mx-xxl-64{margin-left:64px;margin-right:64px}.tutor-mx-xxl-68{margin-left:68px;margin-right:68px}.tutor-mx-xxl-72{margin-left:72px;margin-right:72px}.tutor-mx-xxl-76{margin-left:76px;margin-right:76px}.tutor-mx-xxl-80{margin-left:80px;margin-right:80px}.tutor-mx-xxl-auto{margin-left:auto;margin-right:auto}.tutor-my-xxl-0{margin-top:0;margin-bottom:0}.tutor-my-xxl-2{margin-top:2px;margin-bottom:2px}.tutor-my-xxl-4{margin-top:4px;margin-bottom:4px}.tutor-my-xxl-8{margin-top:8px;margin-bottom:8px}.tutor-my-xxl-12{margin-top:12px;margin-bottom:12px}.tutor-my-xxl-16{margin-top:16px;margin-bottom:16px}.tutor-my-xxl-20{margin-top:20px;margin-bottom:20px}.tutor-my-xxl-24{margin-top:24px;margin-bottom:24px}.tutor-my-xxl-28{margin-top:28px;margin-bottom:28px}.tutor-my-xxl-32{margin-top:32px;margin-bottom:32px}.tutor-my-xxl-36{margin-top:36px;margin-bottom:36px}.tutor-my-xxl-40{margin-top:40px;margin-bottom:40px}.tutor-my-xxl-44{margin-top:44px;margin-bottom:44px}.tutor-my-xxl-48{margin-top:48px;margin-bottom:48px}.tutor-my-xxl-52{margin-top:52px;margin-bottom:52px}.tutor-my-xxl-56{margin-top:56px;margin-bottom:56px}.tutor-my-xxl-60{margin-top:60px;margin-bottom:60px}.tutor-my-xxl-64{margin-top:64px;margin-bottom:64px}.tutor-my-xxl-68{margin-top:68px;margin-bottom:68px}.tutor-my-xxl-72{margin-top:72px;margin-bottom:72px}.tutor-my-xxl-76{margin-top:76px;margin-bottom:76px}.tutor-my-xxl-80{margin-top:80px;margin-bottom:80px}.tutor-my-xxl-auto{margin-top:auto;margin-bottom:auto}.tutor-mt-xxl-0{margin-top:0}.tutor-mt-xxl-2{margin-top:2px}.tutor-mt-xxl-4{margin-top:4px}.tutor-mt-xxl-8{margin-top:8px}.tutor-mt-xxl-12{margin-top:12px}.tutor-mt-xxl-16{margin-top:16px}.tutor-mt-xxl-20{margin-top:20px}.tutor-mt-xxl-24{margin-top:24px}.tutor-mt-xxl-28{margin-top:28px}.tutor-mt-xxl-32{margin-top:32px}.tutor-mt-xxl-36{margin-top:36px}.tutor-mt-xxl-40{margin-top:40px}.tutor-mt-xxl-44{margin-top:44px}.tutor-mt-xxl-48{margin-top:48px}.tutor-mt-xxl-52{margin-top:52px}.tutor-mt-xxl-56{margin-top:56px}.tutor-mt-xxl-60{margin-top:60px}.tutor-mt-xxl-64{margin-top:64px}.tutor-mt-xxl-68{margin-top:68px}.tutor-mt-xxl-72{margin-top:72px}.tutor-mt-xxl-76{margin-top:76px}.tutor-mt-xxl-80{margin-top:80px}.tutor-mt-xxl-auto{margin-top:auto}.tutor-mr-xxl-0{margin-right:0}.tutor-mr-xxl-2{margin-right:2px}.tutor-mr-xxl-4{margin-right:4px}.tutor-mr-xxl-8{margin-right:8px}.tutor-mr-xxl-12{margin-right:12px}.tutor-mr-xxl-16{margin-right:16px}.tutor-mr-xxl-20{margin-right:20px}.tutor-mr-xxl-24{margin-right:24px}.tutor-mr-xxl-28{margin-right:28px}.tutor-mr-xxl-32{margin-right:32px}.tutor-mr-xxl-36{margin-right:36px}.tutor-mr-xxl-40{margin-right:40px}.tutor-mr-xxl-44{margin-right:44px}.tutor-mr-xxl-48{margin-right:48px}.tutor-mr-xxl-52{margin-right:52px}.tutor-mr-xxl-56{margin-right:56px}.tutor-mr-xxl-60{margin-right:60px}.tutor-mr-xxl-64{margin-right:64px}.tutor-mr-xxl-68{margin-right:68px}.tutor-mr-xxl-72{margin-right:72px}.tutor-mr-xxl-76{margin-right:76px}.tutor-mr-xxl-80{margin-right:80px}.tutor-mr-xxl-auto{margin-right:auto}.tutor-mb-xxl-0{margin-bottom:0}.tutor-mb-xxl-2{margin-bottom:2px}.tutor-mb-xxl-4{margin-bottom:4px}.tutor-mb-xxl-8{margin-bottom:8px}.tutor-mb-xxl-12{margin-bottom:12px}.tutor-mb-xxl-16{margin-bottom:16px}.tutor-mb-xxl-20{margin-bottom:20px}.tutor-mb-xxl-24{margin-bottom:24px}.tutor-mb-xxl-28{margin-bottom:28px}.tutor-mb-xxl-32{margin-bottom:32px}.tutor-mb-xxl-36{margin-bottom:36px}.tutor-mb-xxl-40{margin-bottom:40px}.tutor-mb-xxl-44{margin-bottom:44px}.tutor-mb-xxl-48{margin-bottom:48px}.tutor-mb-xxl-52{margin-bottom:52px}.tutor-mb-xxl-56{margin-bottom:56px}.tutor-mb-xxl-60{margin-bottom:60px}.tutor-mb-xxl-64{margin-bottom:64px}.tutor-mb-xxl-68{margin-bottom:68px}.tutor-mb-xxl-72{margin-bottom:72px}.tutor-mb-xxl-76{margin-bottom:76px}.tutor-mb-xxl-80{margin-bottom:80px}.tutor-mb-xxl-auto{margin-bottom:auto}.tutor-ml-xxl-0{margin-left:0}.tutor-ml-xxl-2{margin-left:2px}.tutor-ml-xxl-4{margin-left:4px}.tutor-ml-xxl-8{margin-left:8px}.tutor-ml-xxl-12{margin-left:12px}.tutor-ml-xxl-16{margin-left:16px}.tutor-ml-xxl-20{margin-left:20px}.tutor-ml-xxl-24{margin-left:24px}.tutor-ml-xxl-28{margin-left:28px}.tutor-ml-xxl-32{margin-left:32px}.tutor-ml-xxl-36{margin-left:36px}.tutor-ml-xxl-40{margin-left:40px}.tutor-ml-xxl-44{margin-left:44px}.tutor-ml-xxl-48{margin-left:48px}.tutor-ml-xxl-52{margin-left:52px}.tutor-ml-xxl-56{margin-left:56px}.tutor-ml-xxl-60{margin-left:60px}.tutor-ml-xxl-64{margin-left:64px}.tutor-ml-xxl-68{margin-left:68px}.tutor-ml-xxl-72{margin-left:72px}.tutor-ml-xxl-76{margin-left:76px}.tutor-ml-xxl-80{margin-left:80px}.tutor-ml-xxl-auto{margin-left:auto}.tutor-m-xxl-n2{margin:-2px}.tutor-m-xxl-n4{margin:-4px}.tutor-m-xxl-n8{margin:-8px}.tutor-m-xxl-n12{margin:-12px}.tutor-m-xxl-n16{margin:-16px}.tutor-m-xxl-n20{margin:-20px}.tutor-m-xxl-n24{margin:-24px}.tutor-m-xxl-n28{margin:-28px}.tutor-m-xxl-n32{margin:-32px}.tutor-m-xxl-n36{margin:-36px}.tutor-m-xxl-n40{margin:-40px}.tutor-m-xxl-n44{margin:-44px}.tutor-m-xxl-n48{margin:-48px}.tutor-m-xxl-n52{margin:-52px}.tutor-m-xxl-n56{margin:-56px}.tutor-m-xxl-n60{margin:-60px}.tutor-m-xxl-n64{margin:-64px}.tutor-m-xxl-n68{margin:-68px}.tutor-m-xxl-n72{margin:-72px}.tutor-m-xxl-n76{margin:-76px}.tutor-m-xxl-n80{margin:-80px}.tutor-mx-xxl-n2{margin-left:-2px;margin-right:-2px}.tutor-mx-xxl-n4{margin-left:-4px;margin-right:-4px}.tutor-mx-xxl-n8{margin-left:-8px;margin-right:-8px}.tutor-mx-xxl-n12{margin-left:-12px;margin-right:-12px}.tutor-mx-xxl-n16{margin-left:-16px;margin-right:-16px}.tutor-mx-xxl-n20{margin-left:-20px;margin-right:-20px}.tutor-mx-xxl-n24{margin-left:-24px;margin-right:-24px}.tutor-mx-xxl-n28{margin-left:-28px;margin-right:-28px}.tutor-mx-xxl-n32{margin-left:-32px;margin-right:-32px}.tutor-mx-xxl-n36{margin-left:-36px;margin-right:-36px}.tutor-mx-xxl-n40{margin-left:-40px;margin-right:-40px}.tutor-mx-xxl-n44{margin-left:-44px;margin-right:-44px}.tutor-mx-xxl-n48{margin-left:-48px;margin-right:-48px}.tutor-mx-xxl-n52{margin-left:-52px;margin-right:-52px}.tutor-mx-xxl-n56{margin-left:-56px;margin-right:-56px}.tutor-mx-xxl-n60{margin-left:-60px;margin-right:-60px}.tutor-mx-xxl-n64{margin-left:-64px;margin-right:-64px}.tutor-mx-xxl-n68{margin-left:-68px;margin-right:-68px}.tutor-mx-xxl-n72{margin-left:-72px;margin-right:-72px}.tutor-mx-xxl-n76{margin-left:-76px;margin-right:-76px}.tutor-mx-xxl-n80{margin-left:-80px;margin-right:-80px}.tutor-my-xxl-n2{margin-top:-2px;margin-bottom:-2px}.tutor-my-xxl-n4{margin-top:-4px;margin-bottom:-4px}.tutor-my-xxl-n8{margin-top:-8px;margin-bottom:-8px}.tutor-my-xxl-n12{margin-top:-12px;margin-bottom:-12px}.tutor-my-xxl-n16{margin-top:-16px;margin-bottom:-16px}.tutor-my-xxl-n20{margin-top:-20px;margin-bottom:-20px}.tutor-my-xxl-n24{margin-top:-24px;margin-bottom:-24px}.tutor-my-xxl-n28{margin-top:-28px;margin-bottom:-28px}.tutor-my-xxl-n32{margin-top:-32px;margin-bottom:-32px}.tutor-my-xxl-n36{margin-top:-36px;margin-bottom:-36px}.tutor-my-xxl-n40{margin-top:-40px;margin-bottom:-40px}.tutor-my-xxl-n44{margin-top:-44px;margin-bottom:-44px}.tutor-my-xxl-n48{margin-top:-48px;margin-bottom:-48px}.tutor-my-xxl-n52{margin-top:-52px;margin-bottom:-52px}.tutor-my-xxl-n56{margin-top:-56px;margin-bottom:-56px}.tutor-my-xxl-n60{margin-top:-60px;margin-bottom:-60px}.tutor-my-xxl-n64{margin-top:-64px;margin-bottom:-64px}.tutor-my-xxl-n68{margin-top:-68px;margin-bottom:-68px}.tutor-my-xxl-n72{margin-top:-72px;margin-bottom:-72px}.tutor-my-xxl-n76{margin-top:-76px;margin-bottom:-76px}.tutor-my-xxl-n80{margin-top:-80px;margin-bottom:-80px}.tutor-mt-xxl-n2{margin-top:-2px}.tutor-mt-xxl-n4{margin-top:-4px}.tutor-mt-xxl-n8{margin-top:-8px}.tutor-mt-xxl-n12{margin-top:-12px}.tutor-mt-xxl-n16{margin-top:-16px}.tutor-mt-xxl-n20{margin-top:-20px}.tutor-mt-xxl-n24{margin-top:-24px}.tutor-mt-xxl-n28{margin-top:-28px}.tutor-mt-xxl-n32{margin-top:-32px}.tutor-mt-xxl-n36{margin-top:-36px}.tutor-mt-xxl-n40{margin-top:-40px}.tutor-mt-xxl-n44{margin-top:-44px}.tutor-mt-xxl-n48{margin-top:-48px}.tutor-mt-xxl-n52{margin-top:-52px}.tutor-mt-xxl-n56{margin-top:-56px}.tutor-mt-xxl-n60{margin-top:-60px}.tutor-mt-xxl-n64{margin-top:-64px}.tutor-mt-xxl-n68{margin-top:-68px}.tutor-mt-xxl-n72{margin-top:-72px}.tutor-mt-xxl-n76{margin-top:-76px}.tutor-mt-xxl-n80{margin-top:-80px}.tutor-mr-xxl-n2{margin-right:-2px}.tutor-mr-xxl-n4{margin-right:-4px}.tutor-mr-xxl-n8{margin-right:-8px}.tutor-mr-xxl-n12{margin-right:-12px}.tutor-mr-xxl-n16{margin-right:-16px}.tutor-mr-xxl-n20{margin-right:-20px}.tutor-mr-xxl-n24{margin-right:-24px}.tutor-mr-xxl-n28{margin-right:-28px}.tutor-mr-xxl-n32{margin-right:-32px}.tutor-mr-xxl-n36{margin-right:-36px}.tutor-mr-xxl-n40{margin-right:-40px}.tutor-mr-xxl-n44{margin-right:-44px}.tutor-mr-xxl-n48{margin-right:-48px}.tutor-mr-xxl-n52{margin-right:-52px}.tutor-mr-xxl-n56{margin-right:-56px}.tutor-mr-xxl-n60{margin-right:-60px}.tutor-mr-xxl-n64{margin-right:-64px}.tutor-mr-xxl-n68{margin-right:-68px}.tutor-mr-xxl-n72{margin-right:-72px}.tutor-mr-xxl-n76{margin-right:-76px}.tutor-mr-xxl-n80{margin-right:-80px}.tutor-mb-xxl-n2{margin-bottom:-2px}.tutor-mb-xxl-n4{margin-bottom:-4px}.tutor-mb-xxl-n8{margin-bottom:-8px}.tutor-mb-xxl-n12{margin-bottom:-12px}.tutor-mb-xxl-n16{margin-bottom:-16px}.tutor-mb-xxl-n20{margin-bottom:-20px}.tutor-mb-xxl-n24{margin-bottom:-24px}.tutor-mb-xxl-n28{margin-bottom:-28px}.tutor-mb-xxl-n32{margin-bottom:-32px}.tutor-mb-xxl-n36{margin-bottom:-36px}.tutor-mb-xxl-n40{margin-bottom:-40px}.tutor-mb-xxl-n44{margin-bottom:-44px}.tutor-mb-xxl-n48{margin-bottom:-48px}.tutor-mb-xxl-n52{margin-bottom:-52px}.tutor-mb-xxl-n56{margin-bottom:-56px}.tutor-mb-xxl-n60{margin-bottom:-60px}.tutor-mb-xxl-n64{margin-bottom:-64px}.tutor-mb-xxl-n68{margin-bottom:-68px}.tutor-mb-xxl-n72{margin-bottom:-72px}.tutor-mb-xxl-n76{margin-bottom:-76px}.tutor-mb-xxl-n80{margin-bottom:-80px}.tutor-ml-xxl-n2{margin-left:-2px}.tutor-ml-xxl-n4{margin-left:-4px}.tutor-ml-xxl-n8{margin-left:-8px}.tutor-ml-xxl-n12{margin-left:-12px}.tutor-ml-xxl-n16{margin-left:-16px}.tutor-ml-xxl-n20{margin-left:-20px}.tutor-ml-xxl-n24{margin-left:-24px}.tutor-ml-xxl-n28{margin-left:-28px}.tutor-ml-xxl-n32{margin-left:-32px}.tutor-ml-xxl-n36{margin-left:-36px}.tutor-ml-xxl-n40{margin-left:-40px}.tutor-ml-xxl-n44{margin-left:-44px}.tutor-ml-xxl-n48{margin-left:-48px}.tutor-ml-xxl-n52{margin-left:-52px}.tutor-ml-xxl-n56{margin-left:-56px}.tutor-ml-xxl-n60{margin-left:-60px}.tutor-ml-xxl-n64{margin-left:-64px}.tutor-ml-xxl-n68{margin-left:-68px}.tutor-ml-xxl-n72{margin-left:-72px}.tutor-ml-xxl-n76{margin-left:-76px}.tutor-ml-xxl-n80{margin-left:-80px}.tutor-p-xxl-0{padding:0}.tutor-p-xxl-2{padding:2px}.tutor-p-xxl-4{padding:4px}.tutor-p-xxl-8{padding:8px}.tutor-p-xxl-12{padding:12px}.tutor-p-xxl-16{padding:16px}.tutor-p-xxl-20{padding:20px}.tutor-p-xxl-24{padding:24px}.tutor-p-xxl-28{padding:28px}.tutor-p-xxl-32{padding:32px}.tutor-p-xxl-36{padding:36px}.tutor-p-xxl-40{padding:40px}.tutor-p-xxl-44{padding:44px}.tutor-p-xxl-48{padding:48px}.tutor-p-xxl-52{padding:52px}.tutor-p-xxl-56{padding:56px}.tutor-p-xxl-60{padding:60px}.tutor-p-xxl-64{padding:64px}.tutor-p-xxl-68{padding:68px}.tutor-p-xxl-72{padding:72px}.tutor-p-xxl-76{padding:76px}.tutor-p-xxl-80{padding:80px}.tutor-px-xxl-0{padding-left:0;padding-right:0}.tutor-px-xxl-2{padding-left:2px;padding-right:2px}.tutor-px-xxl-4{padding-left:4px;padding-right:4px}.tutor-px-xxl-8{padding-left:8px;padding-right:8px}.tutor-px-xxl-12{padding-left:12px;padding-right:12px}.tutor-px-xxl-16{padding-left:16px;padding-right:16px}.tutor-px-xxl-20{padding-left:20px;padding-right:20px}.tutor-px-xxl-24{padding-left:24px;padding-right:24px}.tutor-px-xxl-28{padding-left:28px;padding-right:28px}.tutor-px-xxl-32{padding-left:32px;padding-right:32px}.tutor-px-xxl-36{padding-left:36px;padding-right:36px}.tutor-px-xxl-40{padding-left:40px;padding-right:40px}.tutor-px-xxl-44{padding-left:44px;padding-right:44px}.tutor-px-xxl-48{padding-left:48px;padding-right:48px}.tutor-px-xxl-52{padding-left:52px;padding-right:52px}.tutor-px-xxl-56{padding-left:56px;padding-right:56px}.tutor-px-xxl-60{padding-left:60px;padding-right:60px}.tutor-px-xxl-64{padding-left:64px;padding-right:64px}.tutor-px-xxl-68{padding-left:68px;padding-right:68px}.tutor-px-xxl-72{padding-left:72px;padding-right:72px}.tutor-px-xxl-76{padding-left:76px;padding-right:76px}.tutor-px-xxl-80{padding-left:80px;padding-right:80px}.tutor-py-xxl-0{padding-top:0;padding-bottom:0}.tutor-py-xxl-2{padding-top:2px;padding-bottom:2px}.tutor-py-xxl-4{padding-top:4px;padding-bottom:4px}.tutor-py-xxl-8{padding-top:8px;padding-bottom:8px}.tutor-py-xxl-12{padding-top:12px;padding-bottom:12px}.tutor-py-xxl-16{padding-top:16px;padding-bottom:16px}.tutor-py-xxl-20{padding-top:20px;padding-bottom:20px}.tutor-py-xxl-24{padding-top:24px;padding-bottom:24px}.tutor-py-xxl-28{padding-top:28px;padding-bottom:28px}.tutor-py-xxl-32{padding-top:32px;padding-bottom:32px}.tutor-py-xxl-36{padding-top:36px;padding-bottom:36px}.tutor-py-xxl-40{padding-top:40px;padding-bottom:40px}.tutor-py-xxl-44{padding-top:44px;padding-bottom:44px}.tutor-py-xxl-48{padding-top:48px;padding-bottom:48px}.tutor-py-xxl-52{padding-top:52px;padding-bottom:52px}.tutor-py-xxl-56{padding-top:56px;padding-bottom:56px}.tutor-py-xxl-60{padding-top:60px;padding-bottom:60px}.tutor-py-xxl-64{padding-top:64px;padding-bottom:64px}.tutor-py-xxl-68{padding-top:68px;padding-bottom:68px}.tutor-py-xxl-72{padding-top:72px;padding-bottom:72px}.tutor-py-xxl-76{padding-top:76px;padding-bottom:76px}.tutor-py-xxl-80{padding-top:80px;padding-bottom:80px}.tutor-pt-xxl-0{padding-top:0}.tutor-pt-xxl-2{padding-top:2px}.tutor-pt-xxl-4{padding-top:4px}.tutor-pt-xxl-8{padding-top:8px}.tutor-pt-xxl-12{padding-top:12px}.tutor-pt-xxl-16{padding-top:16px}.tutor-pt-xxl-20{padding-top:20px}.tutor-pt-xxl-24{padding-top:24px}.tutor-pt-xxl-28{padding-top:28px}.tutor-pt-xxl-32{padding-top:32px}.tutor-pt-xxl-36{padding-top:36px}.tutor-pt-xxl-40{padding-top:40px}.tutor-pt-xxl-44{padding-top:44px}.tutor-pt-xxl-48{padding-top:48px}.tutor-pt-xxl-52{padding-top:52px}.tutor-pt-xxl-56{padding-top:56px}.tutor-pt-xxl-60{padding-top:60px}.tutor-pt-xxl-64{padding-top:64px}.tutor-pt-xxl-68{padding-top:68px}.tutor-pt-xxl-72{padding-top:72px}.tutor-pt-xxl-76{padding-top:76px}.tutor-pt-xxl-80{padding-top:80px}.tutor-pr-xxl-0{padding-right:0}.tutor-pr-xxl-2{padding-right:2px}.tutor-pr-xxl-4{padding-right:4px}.tutor-pr-xxl-8{padding-right:8px}.tutor-pr-xxl-12{padding-right:12px}.tutor-pr-xxl-16{padding-right:16px}.tutor-pr-xxl-20{padding-right:20px}.tutor-pr-xxl-24{padding-right:24px}.tutor-pr-xxl-28{padding-right:28px}.tutor-pr-xxl-32{padding-right:32px}.tutor-pr-xxl-36{padding-right:36px}.tutor-pr-xxl-40{padding-right:40px}.tutor-pr-xxl-44{padding-right:44px}.tutor-pr-xxl-48{padding-right:48px}.tutor-pr-xxl-52{padding-right:52px}.tutor-pr-xxl-56{padding-right:56px}.tutor-pr-xxl-60{padding-right:60px}.tutor-pr-xxl-64{padding-right:64px}.tutor-pr-xxl-68{padding-right:68px}.tutor-pr-xxl-72{padding-right:72px}.tutor-pr-xxl-76{padding-right:76px}.tutor-pr-xxl-80{padding-right:80px}.tutor-pb-xxl-0{padding-bottom:0}.tutor-pb-xxl-2{padding-bottom:2px}.tutor-pb-xxl-4{padding-bottom:4px}.tutor-pb-xxl-8{padding-bottom:8px}.tutor-pb-xxl-12{padding-bottom:12px}.tutor-pb-xxl-16{padding-bottom:16px}.tutor-pb-xxl-20{padding-bottom:20px}.tutor-pb-xxl-24{padding-bottom:24px}.tutor-pb-xxl-28{padding-bottom:28px}.tutor-pb-xxl-32{padding-bottom:32px}.tutor-pb-xxl-36{padding-bottom:36px}.tutor-pb-xxl-40{padding-bottom:40px}.tutor-pb-xxl-44{padding-bottom:44px}.tutor-pb-xxl-48{padding-bottom:48px}.tutor-pb-xxl-52{padding-bottom:52px}.tutor-pb-xxl-56{padding-bottom:56px}.tutor-pb-xxl-60{padding-bottom:60px}.tutor-pb-xxl-64{padding-bottom:64px}.tutor-pb-xxl-68{padding-bottom:68px}.tutor-pb-xxl-72{padding-bottom:72px}.tutor-pb-xxl-76{padding-bottom:76px}.tutor-pb-xxl-80{padding-bottom:80px}.tutor-pl-xxl-0{padding-left:0}.tutor-pl-xxl-2{padding-left:2px}.tutor-pl-xxl-4{padding-left:4px}.tutor-pl-xxl-8{padding-left:8px}.tutor-pl-xxl-12{padding-left:12px}.tutor-pl-xxl-16{padding-left:16px}.tutor-pl-xxl-20{padding-left:20px}.tutor-pl-xxl-24{padding-left:24px}.tutor-pl-xxl-28{padding-left:28px}.tutor-pl-xxl-32{padding-left:32px}.tutor-pl-xxl-36{padding-left:36px}.tutor-pl-xxl-40{padding-left:40px}.tutor-pl-xxl-44{padding-left:44px}.tutor-pl-xxl-48{padding-left:48px}.tutor-pl-xxl-52{padding-left:52px}.tutor-pl-xxl-56{padding-left:56px}.tutor-pl-xxl-60{padding-left:60px}.tutor-pl-xxl-64{padding-left:64px}.tutor-pl-xxl-68{padding-left:68px}.tutor-pl-xxl-72{padding-left:72px}.tutor-pl-xxl-76{padding-left:76px}.tutor-pl-xxl-80{padding-left:80px}}@media (min-width:1200px){.tutor-fs-1{font-size:4rem}.tutor-fs-2{font-size:3rem}.tutor-fs-3{font-size:2rem}.tutor-fs-4{font-size:1.5rem}}@media print{.tutor-d-print-inline{display:inline!important}.tutor-d-print-inline-block{display:inline-block!important}.tutor-d-print-block{display:block!important}.tutor-d-print-grid{display:grid!important}.tutor-d-print-table{display:table!important}.tutor-d-print-table-row{display:table-row!important}.tutor-d-print-table-cell{display:table-cell!important}.tutor-d-print-flex{display:flex!important}.tutor-d-print-inline-flex{display:inline-flex!important}.tutor-d-print-none{display:none!important}}:root{--tutor-text-size:16px;--tutor-color-white:#fff;--tutor-color-success:#24a148;--tutor-color-success-rgb:36,161,72;--tutor-color-warning:#ed9700;--tutor-color-warning-rgb:237,151,0;--tutor-color-danger:#f44337;--tutor-color-danger-rgb:244,67,55;--tutor-color-secondary:#41454f;--tutor-color-subdued:#5b616f;--tutor-color-hints:#767c8e;--tutor-color-muted:#757c8e;--tutor-color-gray:#e3e5eb;--tutor-color-gray-10:#eff1f6}.tutor-color-black{color:var(--tutor-body-color)}.tutor-color-white{color:#fff}.tutor-color-primary{color:var(--tutor-color-primary)}.tutor-color-success{color:#24a148}.tutor-color-warning{color:#ed9700}.tutor-color-danger{color:#f44337}.tutor-color-secondary{color:#41454f}.tutor-color-muted{color:#757c8e}.tutor-color-subdued{color:#5b616f}.tutor-color-hints{color:#767c8e}.tutor-color-gray-20{color:#e3e5eb}.tutor-color-gray-10{color:#eff1f6}.tutor-bg-black{background-color:var(--tutor-body-color)}.tutor-bg-white{background-color:#fff}.tutor-bg-primary{background-color:var(--tutor-color-primary)}.tutor-bg-success{background-color:#24a148}.tutor-bg-warning{background-color:#ed9700}.tutor-bg-danger{background-color:#f44337}.tutor-bg-secondary{background-color:#41454f}.tutor-bg-muted{background-color:#757c8e}.tutor-bg-subdued{background-color:#5b616f}.tutor-bg-hints{background-color:#767c8e}.tutor-bg-gray-20{background-color:#e3e5eb}.tutor-bg-gray-10{background-color:#eff1f6}.text-regular-body,.tutor-text-regular-body{font-size:16px;font-weight:400;line-height:162%}.text-regular-caption,.tutor-alert .tutor-alert-text,.tutor-text-regular-caption{font-size:15px;font-weight:400;line-height:160%}.text-regular-small,.tooltip-wrap .tooltip-txt,.text-body,.tutor-text-regular-small{font-size:13px;font-weight:400;line-height:138%}.text-regular-tiny,.tutor-text-regular-tiny{font-size:11px;font-weight:400;line-height:145%}.text-medium-h1,.tutor-text-medium-h1{font-size:80px;font-weight:500;line-height:101%}.text-medium-h2,.tutor-text-medium-h2{font-size:60px;font-weight:500;line-height:117%}.text-medium-h3,.tutor-text-medium-h3{font-size:40px;font-weight:500;line-height:120%}.text-medium-h4,.tutor-text-medium-h4{font-size:30px;font-weight:500;line-height:123%}.text-medium-h5,.tutor-text-medium-h5{font-size:24px;font-weight:500;line-height:142%}.text-medium-h6,.tutor-text-medium-h6{font-size:20px;font-weight:500;line-height:140%}.text-medium-body,.tutor-dropdown-select-selected>div:first-child,.tutor-text-medium-body{font-size:16px;font-weight:500;line-height:162%}.text-medium-caption,.tutor-pagination ul.tutor-pagination-numbers .page-numbers,.tutor-wp-dashboard-filter .tutor-wp-dashboard-filter-items .tutor-form-label,.tutor-text-medium-caption{font-size:15px;font-weight:500;line-height:160%}.text-medium-small,.tutor-form-select-with-icon select,.tutor-text-medium-small{font-size:13px;font-weight:500;line-height:162%}.text-medium-tiny,.tutor-text-medium-tiny{font-size:11px;font-weight:500;line-height:145%}.text-semi-h1,.tutor-text-semi-h1{font-size:80px;font-weight:600;line-height:101%}.text-semi-h2,.tutor-text-semi-h2{font-size:60px;font-weight:600;line-height:117%}.text-semi-h3,.tutor-text-semi-h3{font-size:40px;font-weight:600;line-height:120%}.text-semi-h4,.tutor-text-semi-h4{font-size:30px;font-weight:600;line-height:123%}.text-semi-h5,.tutor-text-semi-h5{font-size:24px;font-weight:600;line-height:142%}.text-semi-h6,.tutor-text-semi-h6{font-size:20px;font-weight:600;line-height:150%}.text-semi-caption,.tutor-text-semi-caption{font-size:15px;font-weight:600;line-height:165%}.text-semi-small,.tutor-text-semi-small{font-size:13px;font-weight:600;line-height:128%}.text-bold-h1,.tutor-text-bold-h1{font-size:80px;font-weight:700;line-height:101%}.text-bold-h2,.tutor-text-bold-h2{font-size:60px;font-weight:700;line-height:117%}.text-bold-h3,.tutor-text-bold-h3{font-size:40px;font-weight:700;line-height:120%}.text-bold-h4,.tutor-text-bold-h4{font-size:30px;font-weight:700;line-height:123%}.text-bold-h5,.tutor-text-bold-h5{font-size:24px;font-weight:700;line-height:142%}.text-bold-h6,.tutor-text-bold-h6{font-size:20px;font-weight:700;line-height:150%}.text-bold-body,.tutor-text-bold-body{font-size:16px;font-weight:700;line-height:162%}.text-bold-caption,.tutor-pagination ul.tutor-pagination-numbers .page-numbers.current,.tutor-text-bold-caption{font-size:15px;font-weight:700;line-height:160%}.text-bold-small,.tutor-text-bold-small{font-size:13px;font-weight:700;line-height:162%}.text-bold-tiny,.tutor-text-bold-tiny{font-size:11px;font-weight:700;line-height:145%}.text-btn-xlarge,.tutor-text-btn-xlarge{font-size:18px;font-weight:500;line-height:178%}.text-btn-large,.tutor-text-btn-large{font-size:16px;font-weight:500;line-height:200%}.text-btn-medium,.tutor-text-btn-medium{font-size:15px;font-weight:500;line-height:160%}.text-btn-small,.tutor-text-btn-small{font-size:13px;font-weight:500;line-height:123%}.clearfix:after{clear:both;content:"";display:block}.tutor-flex-center{justify-content:center;align-items:center;display:flex}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.align-items-end{align-items:flex-end}.align-items-baseline{align-items:baseline}.align-items-stretch{align-items:stretch}.align-content-start{align-content:flex-start}.align-content-end{align-content:flex-end}.align-content-center{align-content:center}.align-content-between{align-content:space-between}.align-content-around{align-content:space-around}.align-content-stretch{align-content:stretch}.align-self-auto{align-self:auto}.align-self-start{align-self:flex-start}.visible{visibility:visible}.invisible{visibility:hidden}.tutor-visibility-visible{visibility:visible}.tutor-visibility-hidden{visibility:hidden}.flex-center{justify-content:center;align-items:center;display:flex}.tutor-flex-end{justify-content:flex-end;align-items:center;display:flex}.tutor-ws-nowrap{white-space:nowrap}.tutor-line-clamp-1{-webkit-line-clamp:1;text-overflow:ellipsis;white-space:normal;-webkit-box-orient:vertical;overflow:hidden;display:-webkit-box!important}.tutor-line-clamp-2{-webkit-line-clamp:2;text-overflow:ellipsis;white-space:normal;-webkit-box-orient:vertical;overflow:hidden;display:-webkit-box!important}.tutor-line-clamp-3{-webkit-line-clamp:3;text-overflow:ellipsis;white-space:normal;-webkit-box-orient:vertical;overflow:hidden;display:-webkit-box!important}.tutor-fs-1,.tutor-fs-2,.tutor-fs-3,.tutor-fs-4,.tutor-fs-5,.tutor-fs-6,.tutor-fs-7,.tutor-fs-8,.tutor-fs-9{line-height:1.6}.tutor-break-word{word-break:break-word}.tutor-break-all{word-break:break-all}.tutor-user-select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tutor-ul{margin:0;padding:0;list-style:none}.tutor-cursor-pointer{cursor:pointer}.tutor-cursor-move{cursor:move}.tutor-w-100{width:100%}.tutor-mw-100{min-width:100%}.tutor-h-100{height:100%}.tutor-mh-100{min-height:100%}.d-inline{display:inline}.d-inline-block,.tutor-badge,.tutor-badge-square{display:inline-block}.d-block,.tutor-profile-badge img{display:block}.d-flex,.tutor-profile-badge,.tutor-instructor-card .tutor-name,.tutor-instructor-card{display:flex}.d-inline-flex{display:inline-flex}.align-items-center,.tutor-profile-badge,.tutor-instructor-card .tutor-name,.tutor-instructor-card{align-items:center}.tutor-bg-light{background-color:#fdfdfd}.tutor-bg-transparent{background-color:transparent!important}.tutor-img-responsive{max-width:100%;height:auto}.tutor-plain-code{color:#fff;background:#212327;border-radius:6px;padding:8px 16px}.tutor-plain-code .tutor-color-muted{color:#757c8e}.tutor-position-relative{position:relative}.tutor-position-absolute{position:absolute}.tutor-position-sticky{position:-webkit-sticky;position:sticky}.tutor-overflow-hidden{overflow:hidden}.tutor-text-nowrap{white-space:nowrap}.tutor-nowrap-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.tutor-text-hover-underline{cursor:pointer}.tutor-text-hover-underline:hover{text-decoration:underline}.tutor-text-center{text-align:center}.tutor-text-left{text-align:left}.tutor-text-right{text-align:right}.tutor-text-justify{text-align:justify}.tutor-text-300,.tutor-text-light{font-weight:300}.tutor-text-regular{font-weight:400}.tutor-text-700,.tutor-text-bold{font-weight:700}.tutor-text-800,.tutor-text-extra-bold{font-weight:800}.tutor-text-900,.tutor-text-black{font-weight:900}.tutor-text-normal{font-style:normal}.tutor-text-italic{font-style:italic}.tutor-text-uppercase,.tutor-text-uc{text-transform:uppercase}.tutor-text-lowercase,.tutor-text-lc{text-transform:lowercase}.tutor-text-capitalize{text-transform:capitalize}.tutor-text-decoration-none{text-decoration:none}.tutor-text-decoration-underline{text-decoration:underline}.tutor-text-decoration-line-through{text-decoration:line-through}.tutor-border,.tutor-instructor-card,.tutor-bordered-box,.tutor-radio-select,.tutor-quiz-item{border:1px solid var(--tutor-border-color)}.tutor-border-left{border-left:1px solid var(--tutor-border-color)}.tutor-border-right{border-right:1px solid var(--tutor-border-color)}.tutor-border-top{border-top:1px solid var(--tutor-border-color)}.tutor-border-bottom{border-bottom:1px solid var(--tutor-border-color)}.tutor-border-top-light{border-top:1px solid #e0e2ea}.tutor-divider{border:1px solid #e0e2ea}.tutor-divider-left{border-left:1px solid #e0e2ea}.tutor-divider-right{border-right:1px solid #e0e2ea}.tutor-divider-top{border-top:1px solid #e0e2ea}.tutor-divider-bottom{border-bottom:1px solid #e0e2ea}.tutor-radius-0{border-radius:0}.tutor-radius-1{border-radius:1px}.tutor-radius-2{border-radius:2px}.tutor-radius-3{border-radius:3px}.tutor-radius-4{border-radius:4px}.tutor-radius-5{border-radius:5px}.tutor-radius-6{border-radius:6px}.tutor-radius-7{border-radius:7px}.tutor-radius-8{border-radius:8px}.tutor-radius-9{border-radius:9px}.tutor-radius-10,.tutor-large-notification{border-radius:10px}.tutor-radius-12{border-radius:12px}.tutor-radius-15{border-radius:15px}.tutor-radius-20{border-radius:20px}.tutor-radius-30{border-radius:30px}.tutor-radius-40{border-radius:40px}.tutor-radius-50{border-radius:50px}.tutor-lh-1{line-height:1!important}.tutor-ratio{content:" ";width:100%;display:block;position:relative}.tutor-ratio-16x9{padding-top:56.25%}.tutor-ratio-4x3{padding-top:75%}.tutor-ratio-3x2{padding-top:66.66%}.tutor-ratio-3x1{padding-top:33.33%}.tutor-ratio-1x1{padding-top:100%}.tutor-ratio>*{width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important}.tutor-ratio>img{object-fit:cover;object-position:center}.tutor-toggle-more-collapsed{position:relative;overflow:hidden}.tutor-toggle-more-collapsed:before{content:" ";z-index:5;background:linear-gradient(rgba(255,255,255,0) 1.31%,rgba(255,255,255,.72) 15.41%,#fff 100%);width:100%;height:62px;position:absolute;bottom:0;left:0}.tutor-svg svg{width:1em;height:1em}.tutor-round-box{width:60px;height:60px;color:var(--tutor-color-primary);background:rgba(var(--tutor-color-primary-rgb),.1);border-radius:80px;justify-content:center;align-items:center;font-size:28px;display:inline-flex;overflow:hidden}.tutor-round-box [class^=tutor-icon-],.tutor-round-box [class*=\ tutor-icon-],.tutor-round-box .tutor-svg{display:inline-block}@media (max-width:991.98px){.tutor-round-box{width:44px;height:44px;font-size:20px}}.tutor-round-box-lg{width:76px;height:76px;font-size:36px}.tutor-vr{background-color:var(--tutor-border-color);width:1px;height:100%}.tutor-hr{background-color:var(--tutor-border-color);width:100%;height:1px}.tutor-stretched-link:after{content:" ";z-index:2;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-spinner{vertical-align:-4px;border:4px solid;border-right-color:transparent;border-radius:50%;width:32px;height:32px;animation:.8s linear infinite rotateSpinner;display:inline-block}.tutor-spinner-sm{vertical-align:-2px;border-width:2px;width:20px;height:20px}.tutor-spinner-wrap{justify-content:center;align-items:center;min-height:300px;display:flex;position:relative}.tutor-user-profile{align-items:center;display:flex}.tutor-user-profile .tutor-profile-content{color:var(--tutor-color-muted);padding-left:20px;font-size:15px}.tutor-user-profile .tutor-profile-subtitle{color:var(--tutor-body-color);font-size:24px;font-weight:400;line-height:34px}.tutor-user-profile .tutor-profile-name{color:var(--tutor-body-color);font-size:30px;line-height:37px;display:block}.tutor-instructor-card{border-radius:4px;min-width:320px;padding:12px 17px}.tutor-instructor-card .tutor-icard-content{color:var(--tutor-color-muted);flex-grow:1;font-size:13px;line-height:18px}.tutor-instructor-card .tutor-name{color:var(--tutor-body-color);margin:0;font-size:18px;font-weight:500;line-height:28px}.tutor-instructor-card .tutor-name .tutor-icard-icon{color:var(--tutor-color-primary);padding-left:6px;font-size:13px}.tutor-switch{width:40px;height:24px;display:inline-block;position:relative}.tutor-switch input{visibility:hidden;width:0;height:0}.tutor-switch input:checked+.slider{background-color:#24a148}.tutor-switch input:checked+.slider.tutor-switch-blue{background-color:#3e64de}.tutor-switch input:checked+.slider:before{transform:translate(14px)}.tutor-switch input:focus+.slider{box-shadow:0 0 1px #24a148}.tutor-switch .slider{cursor:pointer;background-color:#ccc;transition:all .4s;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-switch .slider.round{border-radius:34px}.tutor-switch .slider.round:before{border-radius:50%}.tutor-switch .slider:before{content:"";background-color:#fff;width:18px;height:18px;transition:all .4s;position:absolute;bottom:3px;left:4px}.tutor-toast-parent{z-index:99999999;background:0 0;width:350px;max-height:400px;position:fixed;bottom:25px;left:auto;right:25px;overflow-x:hidden;overflow-y:auto}.tutor-toast-parent:empty{display:none}.tutor-toast-parent.tutor-toast-left{position:fixed;bottom:25px;left:25px;right:auto}.tutor-toast-parent .tutor-is-success .tutor-notification-icon,.tutor-toast-parent .tutor-is-success .tutor-notification-content h5{color:var(--tutor-color-success)}.tutor-toast-parent .tutor-is-warning .tutor-notification-icon,.tutor-toast-parent .tutor-is-warning .tutor-notification-content h5{color:var(--tutor-color-warning)}.tutor-toast-parent .tutor-is-danger .tutor-notification-icon,.tutor-toast-parent .tutor-is-danger .tutor-notification-content h5{color:var(--tutor-color-danger)}body.rtl .tutor-toast-parent{left:50px;right:auto}.ui-slider{text-align:left;position:relative}.ui-slider .ui-slider-handle{z-index:2;cursor:default;cursor:pointer;width:15px;height:15px;position:absolute;top:-6px}.ui-slider .ui-slider-range{z-index:1;background-position:0 0;border:0;font-size:.7em;display:block;position:absolute}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-range{height:100%;top:0}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{margin-bottom:-.6em;margin-left:0;left:-.3em}.ui-slider-vertical .ui-slider-range{width:100%;left:0}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.tutor-field-type-slider{box-shadow:none;color:#333;background-color:#fff;border:1px solid #c0c3cb;border-radius:6px;width:100%;height:46px;margin:0 10px 0 0;padding:20px 70px 24px 15px;display:block;position:relative}.tutor-field-type-slider .ui-widget-header{background:#dedede;border-radius:4px}.tutor-field-type-slider .ui-widget-content{background-color:var(--tutor-color-primary);border:none;border-radius:4px;height:4px}.tutor-field-type-slider .ui-widget-content .ui-state-default{border:4px solid var(--tutor-color-primary);background-color:#fff;border-radius:50%}.tutor-field-type-slider .tutor-field-type-slider-value{background:var(--tutor-color-primary);text-align:center;color:#fff;border-radius:4px;width:43px;margin:0;font-size:16px;font-weight:600;line-height:34px;position:absolute;top:50%;right:5px;transform:translateY(-50%)}.tutor-field-type-slider .tutor-field-type-slider-value:before{content:"";border:7px solid transparent;border-right-color:var(--tutor-color-primary);position:absolute;top:50%;right:100%;transform:translateY(-50%)}.tutor-quiz-slider .tutor-field-type-slider{padding:10px 0 10px 6px!important}.tutor-quiz-slider .tutor-field-type-slider .ui-widget-content{width:85%!important;top:40%!important}.tutor-backend .ui-datepicker,.tutor-screen-frontend-dashboard .ui-datepicker{box-sizing:border-box;background:#fff;border:1px solid #e3e5eb;border-radius:6px;width:260px;margin-top:4px;padding:10px;display:none;box-shadow:0 10px 14px rgba(0,0,0,.12)}.tutor-backend .ui-datepicker table th span,.tutor-screen-frontend-dashboard .ui-datepicker table th span{color:#b4b7c0;font-size:13px;font-weight:400}.tutor-backend .ui-datepicker .ui-datepicker-title .ui-datepicker-month,.tutor-backend .ui-datepicker .ui-datepicker-title .ui-datepicker-year,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-title .ui-datepicker-month,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-title .ui-datepicker-year{color:var(--tutor-body-color);font-size:20px;font-weight:500}.tutor-backend .ui-datepicker .ui-datepicker-calendar,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%;border:0!important}.tutor-backend .ui-datepicker .ui-datepicker-calendar .ui-state-default,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar .ui-state-default{background:0 0;border:none}.tutor-backend .ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-highlight,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-highlight{padding:5px;color:#41454f!important;background-color:#e9edfb!important;border:none!important;border-radius:100%!important}.tutor-backend .ui-datepicker .ui-datepicker-calendar td,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar td{cursor:pointer;width:30px;height:30px;transition:background-color .1s ease-in-out,color .1s ease-in-out;border-radius:50%!important}.tutor-backend .ui-datepicker .ui-datepicker-calendar td:hover,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar td:hover{color:#41454f!important;background-color:#e9edfb!important;border:none!important;border-radius:100%!important}.tutor-backend .ui-datepicker .ui-datepicker-calendar td a,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.tutor-backend .ui-datepicker .ui-datepicker-calendar tbody,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar tbody{border:0!important}.tutor-backend .ui-datepicker .ui-datepicker-calendar th,.tutor-backend .ui-datepicker .ui-datepicker-calendar td,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar th,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar td{text-align:center;padding:0;border:0!important}.tutor-backend .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{cursor:default;background-color:#fff}.tutor-backend .ui-datepicker .ui-datepicker-current-day,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-current-day{background-color:#3e64de!important;border-radius:100%!important}.tutor-backend .ui-datepicker .ui-datepicker-current-day,.tutor-backend .ui-datepicker .ui-datepicker-current-day a,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-current-day,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-current-day a{color:#fff!important}.tutor-backend .ui-datepicker .ui-datepicker-prev.ui-corner-all,.tutor-backend .ui-datepicker .ui-datepicker-next.ui-corner-all,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-prev.ui-corner-all,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-next.ui-corner-all{color:#3e64de}.tutor-backend .ui-datepicker .ui_tpicker_hour_slider,.tutor-backend .ui-datepicker .ui_tpicker_minute_slider,.tutor-screen-frontend-dashboard .ui-datepicker .ui_tpicker_hour_slider,.tutor-screen-frontend-dashboard .ui-datepicker .ui_tpicker_minute_slider{border:1px solid!important}.tutor-backend .ui-datepicker a,.tutor-backend .ui-datepicker a:hover,.tutor-screen-frontend-dashboard .ui-datepicker a,.tutor-screen-frontend-dashboard .ui-datepicker a:hover{text-decoration:none}.tutor-backend .ui-datepicker a:hover,.tutor-backend .ui-datepicker td:hover a,.tutor-screen-frontend-dashboard .ui-datepicker a:hover,.tutor-screen-frontend-dashboard .ui-datepicker td:hover a{color:#2a6496;transition:color .1s ease-in-out}.tutor-backend .ui-datepicker .ui-datepicker-header,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-header{text-align:center;margin-bottom:4px}.tutor-backend .ui-datepicker .ui-datepicker-header .ui-datepicker-title,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-header .ui-datepicker-title{font-weight:700}.tutor-backend .ui-datepicker .ui-datepicker-prev,.tutor-backend .ui-datepicker .ui-datepicker-next,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-prev,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-next{cursor:default;-webkit-font-smoothing:antialiased;width:30px;height:20px;margin-top:2px;font-family:tutor;font-style:normal;font-weight:400;line-height:1}.tutor-backend .ui-datepicker .ui-datepicker-prev,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.tutor-backend .ui-datepicker .ui-datepicker-prev:before,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-prev:before{content:""}.tutor-backend .ui-datepicker .ui-datepicker-next,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-next{float:right;text-align:right}.tutor-backend .ui-datepicker .ui-datepicker-next:before,.tutor-screen-frontend-dashboard .ui-datepicker .ui-datepicker-next:before{content:""}.tutor-backend .ui-datepicker .ui-icon,.tutor-screen-frontend-dashboard .ui-datepicker .ui-icon{display:none}.tutorPlayer,.tutorPlayer iframe{width:100%;max-width:100%;height:auto}.add_question_answers_option.disabled{color:#aaaeb5!important;cursor:none!important;pointer-events:none!important}.add_question_answers_option.disabled i{background-color:#aaaeb5!important}.tutor-valign-middle{vertical-align:middle}.tutor-btn{color:var(--tutor-color-primary);text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-sizing:border-box;cursor:pointer;background-color:transparent;border:1px solid transparent;border-radius:6px;align-items:center;padding:8px 16px;font-size:16px;font-weight:400;line-height:1.375;text-decoration:none;transition:color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;display:inline-flex}.tutor-btn[disabled],.tutor-btn.disabled{pointer-events:none;color:#858689}.tutor-btn-block{justify-content:center;width:100%;display:flex}.tutor-btn-fw{justify-content:center;min-width:120px;display:inline-flex}.tutor-btn-primary{border-color:var(--tutor-color-primary);background-color:var(--tutor-color-primary);color:#fff}.tutor-btn-primary:hover,.tutor-btn-primary:focus,.tutor-btn-primary:active{color:#fff;border-color:var(--tutor-color-primary-hover);background-color:var(--tutor-color-primary-hover)}.tutor-btn-primary[disabled],.tutor-btn-primary.disabled{background-color:#e9e9ea;border-color:#e9e9ea}.tutor-btn-outline-primary{border-color:var(--tutor-color-primary)}.tutor-btn-outline-primary:hover,.tutor-btn-outline-primary:focus,.tutor-btn-outline-primary:active{color:#fff;border-color:var(--tutor-color-primary-hover);background-color:var(--tutor-color-primary-hover)}.tutor-btn-outline-primary[disabled],.tutor-btn-outline-primary.disabled{border-color:#e9e9ea}.tutor-btn-secondary{background-color:rgba(var(--tutor-color-primary-rgb),.1);color:var(--tutor-color-primary)}.tutor-btn-secondary:hover,.tutor-btn-secondary:focus,.tutor-btn-secondary:active{color:#fff;background-color:var(--tutor-color-primary-hover)}.tutor-btn-secondary[disabled],.tutor-btn-secondary.disabled{background-color:#e9e9ea}.tutor-btn-outline-secondary{border-color:rgba(var(--tutor-color-primary-rgb),.1);background-color:rgba(var(--tutor-color-primary-rgb),.1);color:var(--tutor-color-primary)}.tutor-btn-outline-secondary:hover,.tutor-btn-outline-secondary:focus,.tutor-btn-outline-secondary:active{color:#fff;border-color:var(--tutor-color-primary-hover);background-color:var(--tutor-color-primary-hover)}.tutor-btn-outline-secondary[disabled],.tutor-btn-outline-secondary.disabled{background-color:#e9e9ea;border-color:#e9e9ea}.tutor-btn-tertiary{color:var(--tutor-color-secondary);border:1px solid var(--tutor-border-color);background-color:#fff}.tutor-btn-tertiary [class^=tutor-icon-]{color:#9197a8}.tutor-btn-tertiary:hover,.tutor-btn-tertiary:focus,.tutor-btn-tertiary:active{color:var(--tutor-color-secondary);background-color:#f5f6fa}.tutor-btn-tertiary[disabled],.tutor-btn-tertiary.disabled{background-color:#e9e9ea}.tutor-btn-danger{color:#fff;background-color:#f44337}.tutor-btn-danger:hover,.tutor-btn-danger:focus,.tutor-btn-danger:active{color:#fff}.tutor-btn-danger[disabled],.tutor-btn-danger.disabled{color:#000;background-color:#e9e9ea;border-color:#e9e9ea}.tutor-btn-link{font-size:inherit;position:relative;padding:0!important}.tutor-btn-link:after{content:" ";background:var(--tutor-color-primary-hover);width:0;height:1px;transition:width .2s ease-in-out;position:absolute;bottom:0;left:0}.tutor-btn-link:hover:after,.tutor-btn-link:focus:after,.tutor-btn-link:active:after{width:100%}.tutor-btn-ghost{color:#757c8e;border-radius:0;outline:0;position:relative;padding:0!important}.tutor-btn-ghost.tutor-has-underline{position:relative}.tutor-btn-ghost.tutor-has-underline:after{content:" ";background-color:#757c8e;width:100%;height:1px;transition:background-color .2s ease-in-out;position:absolute;bottom:0;left:0}.tutor-btn-ghost:hover,.tutor-btn-ghost:focus,.tutor-btn-ghost:active{color:var(--tutor-color-primary);box-shadow:none;outline:0}.tutor-btn-ghost:hover.tutor-has-underline:after,.tutor-btn-ghost:focus.tutor-has-underline:after,.tutor-btn-ghost:active.tutor-has-underline:after{background-color:var(--tutor-color-primary)}.tutor-btn-ghost-light{color:#fff}.tutor-btn-ghost-light.tutor-has-underline:after{background-color:#fff}.tutor-btn-ghost-light:hover,.tutor-btn-ghost-light:focus,.tutor-btn-ghost-light:active{color:rgba(255,255,255,.8)}.tutor-btn-ghost-light:hover.tutor-has-underline:after,.tutor-btn-ghost-light:focus.tutor-has-underline:after,.tutor-btn-ghost-light:active.tutor-has-underline:after{background-color:rgba(255,255,255,.8)}.tutor-btn-sm{padding:5px 12px;font-size:14px}.tutor-btn-md{padding:6px 12px}.tutor-btn-lg{padding:12px 32px;font-size:16px;line-height:1.5}.tutor-btn-xl{padding:15px 24px;font-size:18px}.tutor-btn.is-loading:before{margin-right:8px}.tutor-btn.is-loading [class^=tutor-icon-],.tutor-btn.is-loading [class*=\ tutor-icon-]{display:none}.tutor-iconic-btn-group{align-items:center;gap:4px;display:flex}.tutor-iconic-btn{color:#757c8e;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;background-color:transparent;border:1px solid transparent;border-radius:48px;justify-content:center;align-items:center;width:32px;height:32px;margin-top:-4px;margin-bottom:-4px;padding:0;font-size:16px;font-weight:400;line-height:1.375;text-decoration:none;transition:color .2s ease-in-out,background-color .2s ease-in-out;display:inline-flex}.tutor-iconic-btn [class^=tutor-icon-],.tutor-iconic-btn [class*=\ tutor-icon-]{pointer-events:none}.tutor-iconic-btn:hover,.tutor-iconic-btn:focus,.tutor-iconic-btn:active{color:var(--tutor-color-primary-hover);background-color:rgba(var(--tutor-color-primary-rgb),.1);border-color:rgba(var(--tutor-color-primary-rgb),.1)}.tutor-iconic-btn[disabled],.tutor-iconic-btn.disabled{background-color:#e9e9ea}.tutor-iconic-btn-outline{border-color:var(--tutor-color-primary);color:var(--tutor-color-primary)}.tutor-iconic-btn-outline:hover,.tutor-iconic-btn-outline:focus,.tutor-iconic-btn-outline:active{color:#fff;border-color:var(--tutor-color-primary-hover);background-color:var(--tutor-color-primary-hover)}.tutor-iconic-btn-outline[disabled],.tutor-iconic-btn-outline.disabled{border-color:#e9e9ea}.tutor-iconic-btn-secondary{background-color:rgba(var(--tutor-color-primary-rgb),.1);color:var(--tutor-color-primary)}.tutor-iconic-btn-secondary:hover,.tutor-iconic-btn-secondary:focus,.tutor-iconic-btn-secondary:active{color:#fff;background-color:var(--tutor-color-primary-hover)}.tutor-iconic-btn-secondary[disabled],.tutor-iconic-btn-secondary.disabled{background-color:#e9e9ea;border-color:#e9e9ea}.tutor-iconic-btn-light{color:#fff}.tutor-iconic-btn-light:hover,.tutor-iconic-btn-light:focus,.tutor-iconic-btn-light:active{color:#fff;background-color:var(--tutor-color-primary-hover)}.tutor-iconic-btn-light[disabled],.tutor-iconic-btn-light.disabled{background-color:#e9e9ea;border-color:#e9e9ea}.tutor-iconic-btn-md{width:40px;height:40px;font-size:20px}.tutor-iconic-btn-lg{width:48px;height:48px;font-size:24px}.tutor-btn-group{vertical-align:middle;display:inline-flex;position:relative}.tutor-btn-group .tutor-btn{flex:1;position:relative}.tutor-btn-group .tutor-btn:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tutor-btn-group .tutor-btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.tutor-btn.is-loading:before,.tutor-iconic-btn.is-loading:before{margin-top:-2px;margin-bottom:-2px;font-family:tutor;font-size:18px;line-height:1;animation:.8s linear infinite rotateSpinner;display:inline-block;content:""!important}.tutor-btn.is-loading [class^=tutor-icon-],.tutor-btn.is-loading [class*=\ tutor-icon-],.tutor-iconic-btn.is-loading [class^=tutor-icon-],.tutor-iconic-btn.is-loading [class*=\ tutor-icon-]{display:none}.tutor-animation-spin{animation:.8s linear infinite rotateSpinner}@keyframes rotateSpinner{to{transform:rotate(360deg)}}#tutor-pro-google-authentication{width:400px}.tutor-form-group{margin-bottom:32px}.tutor-form-wrap{display:flex;position:relative}.tutor-form-control{background-color:var(--tutor-color-white);box-sizing:border-box;width:100%;color:var(--tutor-color-black);height:auto;box-shadow:none;border-radius:6px;outline:none;padding:8px 16px;font-size:16px;font-weight:400;line-height:1.4;transition:color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;display:block;border:1px solid var(--tutor-border-color)!important}.tutor-form-control.tutor-placeholder{color:var(--tutor-color-muted)}.tutor-form-control::-webkit-input-placeholder{color:var(--tutor-color-muted)}.tutor-form-control::-ms-input-placeholder{color:var(--tutor-color-muted)}.tutor-form-control::placeholder{color:var(--tutor-color-muted)}.tutor-form-control:focus,.tutor-form-control.is-active{border-color:var(--tutor-color-primary);box-shadow:unset}.tutor-form-control[readonly]:focus,.tutor-form-control[readonly]{background-color:var(--tutor-disabled-bg);border-color:var(--tutor-disabled-bg);color:var(--tutor-disabled-color)}.tutor-form-control[readonly]:focus::-webkit-input-placeholder{color:var(--tutor-disabled-color)}.tutor-form-control[readonly]:focus::-ms-input-placeholder{color:var(--tutor-disabled-color)}.tutor-form-control[readonly]:focus::placeholder{color:var(--tutor-disabled-color)}.tutor-form-control[readonly]::-webkit-input-placeholder{color:var(--tutor-disabled-color)}.tutor-form-control[readonly]::-ms-input-placeholder{color:var(--tutor-disabled-color)}.tutor-form-control[readonly]::placeholder{color:var(--tutor-disabled-color)}.tutor-form-control:disabled{cursor:not-allowed;background:#e3e5eb;border-color:#e3e5eb}.tutor-form-control:disabled::-webkit-input-placeholder{color:var(--tutor-color-muted)}.tutor-form-control:disabled::-ms-input-placeholder{color:var(--tutor-color-muted)}.tutor-form-control:disabled::placeholder{color:var(--tutor-color-muted)}.tutor-form-control-sm{padding:5px 12px;font-size:14px}.tutor-form-control-md{padding:6px 12px}.tutor-form-control-lg{padding:10px 20px;font-size:18px}.tutor-form-control-xl{padding:15px 24px;font-size:18px}.tutor-form-select{text-align:left;cursor:pointer;min-width:180px;position:relative}.tutor-form-select-dropdown{z-index:10;background:#fff;border:1px solid #cdcfd5;border-radius:6px;flex-direction:column;width:100%;min-width:220px;max-height:300px;transition:all .1s;display:none;position:absolute;top:calc(100% + 5px);left:0;box-shadow:0 6px 20px rgba(28,49,104,.1)}.tutor-form-select-dropdown .tutor-form-control{border-top:0;border-left:0;border-right:0;padding-left:0;padding-right:0}.tutor-form-select.is-active .tutor-form-select-dropdown{display:flex}.tutor-form-select-options{flex-direction:column;gap:1px;margin:0;padding:8px 0;list-style:none;display:flex;overflow-y:auto}.tutor-form-select-option{cursor:pointer;font-weight:400;line-height:1.4}.tutor-form-select-option span{padding:8px 19px;font-size:14px;display:block}.tutor-form-select-option:hover,.tutor-form-select-option.is-active{background:#eff1f7}.tutor-form-label{color:var(--tutor-body-color);margin:0 0 10px;font-size:14px;font-weight:500;line-height:24px;display:block}.tutor-form-icon{width:40px;color:var(--tutor-color-muted);justify-content:center;align-items:center;font-size:16px;line-height:1.4;display:inline-flex;position:absolute;top:0;bottom:0;left:0}.tutor-form-icon:not(.tutor-password-reveal){pointer-events:none}.tutor-form-icon-reverse{left:auto;right:0}.tutor-form-icon-reverse~.tutor-form-control{padding-right:40px!important}.tutor-form-icon:not(.tutor-form-icon-reverse)~.tutor-form-control{padding-left:40px!important}textarea.tutor-form-control{resize:vertical;min-height:180px}textarea.tutor-form-control-auto-height{min-height:72px}select.tutor-form-control,.tutor-form-select{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-position:right .75rem center;background-repeat:no-repeat;background-size:16px 12px;padding-right:36px}.tutor-input-group{flex-wrap:wrap;align-items:stretch;width:100%;display:flex;position:relative}.tutor-input-group-addon{text-align:center;white-space:nowrap;background-color:var(--tutor-color-white);border:1px solid var(--tutor-border-color);border-radius:6px;align-items:center;padding:10px 16px;font-size:16px;font-weight:400;line-height:1.4;display:flex}.tutor-input-group>:not(.tutor-form-wrap):not(:last-child),.tutor-input-group>.tutor-form-wrap:not(:last-child)>.tutor-form-control{border-top-right-radius:0;border-bottom-right-radius:0}.tutor-input-group>:not(.tutor-form-wrap):not(:first-child),.tutor-input-group>.tutor-form-wrap:not(:first-child)>.tutor-form-control{border-top-left-radius:0;border-bottom-left-radius:0}.tutor-input-group>:not(.tutor-form-wrap):not(:first-child),.tutor-input-group>.tutor-form-wrap:not(:first-child){margin-left:-1px}.tutor-input-group>.tutor-form-control,.tutor-input-group>.tutor-form-wrap{flex:auto;width:1%;min-width:0;position:relative}.tutor-input-group .tutor-btn{z-index:2;position:relative}.tutor-input-group .tutor-btn:focus{z-index:3}.tutor-form-feedback{color:var(--tutor-color-muted);margin:12px 0 0;font-size:14px;line-height:1.4;display:flex;position:relative}.tutor-form-feedback .tutor-form-feedback-icon{margin-right:8px;font-size:18px}.tutor-form-check{display:inline-block}.tutor-form-check label{color:var(--tutor-body-color);cursor:pointer;font-size:16px;font-weight:500;margin:0!important;display:inline-block!important}.tutor-form-check input.tutor-form-check-input{margin-right:8px;margin-top:0!important}.tutor-form-check+.tutor-form-check{margin-left:16px}.tutor-form-check-input.tutor-form-check-input{vertical-align:top;background-color:var(--tutor-color-white);border:2px solid var(--tutor-border-color);cursor:pointer;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;color-adjust:exact;width:24px;height:24px;box-shadow:0 0 0 0 rgba(var(--tutor-color-primary-rgb),.1);background-position:50%;background-repeat:no-repeat;background-size:12px;border-radius:4px;flex:none;margin:0;transition:all .3s;display:inline-block;outline:none!important}.tutor-form-check-input.tutor-form-check-input:before,.tutor-form-check-input.tutor-form-check-input:after{display:none!important}.tutor-form-check-input.tutor-form-check-input:focus{box-shadow:0 0 0 6px rgba(var(--tutor-color-primary-rgb),.1)}.tutor-form-check-input.tutor-form-check-input[type=checkbox]{border-radius:4px}.tutor-form-check-input.tutor-form-check-input[type=checkbox].tutor-form-check-square{border-radius:0}.tutor-form-check-input.tutor-form-check-input[type=checkbox].tutor-form-check-circle{border-radius:50%}.tutor-form-check-input.tutor-form-check-input[type=checkbox]:checked{border-color:var(--tutor-color-primary);background-color:var(--tutor-color-primary);background-image:url("data:image/svg+xml,%3Csvg width='14' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.922 5.7a.627.627 0 01-.127-.194.72.72 0 010-.5.6.6 0 01.127-.195l.905-.867a.562.562 0 01.425-.195.592.592 0 01.25.05.665.665 0 01.207.145l2.73 2.734L11.295.82a.658.658 0 01.202-.145.613.613 0 01.484.002.568.568 0 01.191.143l.905.88a.6.6 0 01.127.195.72.72 0 010 .5.628.628 0 01-.127.194l-7.2 7.163a.575.575 0 01-.195.147.655.655 0 01-.5 0 .575.575 0 01-.195-.147L.922 5.7z' fill='%23fff'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}.tutor-form-check-input.tutor-form-check-input-radio{background-size:100%;border-radius:50%}.tutor-form-check-input.tutor-form-check-input[type=radio]{background-size:100%;border-radius:50%}input:checked+label .tutor-form-check-input-radio,.tutor-form-check-input.tutor-form-check-input-radio:checked,.tutor-form-check-input.tutor-form-check-input-radio.is-active{border-color:var(--tutor-color-primary);background-color:var(--tutor-color-primary);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");background-position:50%}.tutor-form-check-input.tutor-form-check-input[type=radio]:checked{border-color:var(--tutor-color-primary);background-color:var(--tutor-color-primary);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");background-position:50%}.tutor-form-check-input.tutor-form-check-input[type=radio].is-active{border-color:var(--tutor-color-primary);background-color:var(--tutor-color-primary);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");background-position:50%}.tutor-form-check-input.tutor-form-check-input.tutor-form-check-20{background-size:10px}.tutor-form-toggle{vertical-align:top;align-items:center;display:inline-flex}.tutor-form-toggle input{display:none}.tutor-form-toggle input~.tutor-form-toggle-control{vertical-align:top;cursor:pointer;background-color:#cdcfd5;border-radius:12px;flex-shrink:0;width:40px;height:24px;margin:0 4px;display:inline-block;position:relative}.tutor-form-toggle input~.tutor-form-toggle-control:before{content:"";background-color:var(--tutor-color-white);border-radius:50%;width:18px;height:18px;transition:all .1s;position:absolute;top:3px;left:4px;box-shadow:0 2px 4px rgba(0,0,0,.165)}.tutor-form-toggle input:checked~.tutor-form-toggle-control{background-color:var(--tutor-color-primary)}.tutor-form-toggle input:checked~.tutor-form-toggle-control:before{left:18px}.tutor-form-toggle input~.tutor-form-toggle-label{padding:0 4px}.tutor-form-toggle input~.tutor-form-toggle-label.tutor-form-toggle-checked{color:var(--tutor-border-color)}.tutor-form-toggle input:checked~.tutor-form-toggle-checked{color:inherit}.tutor-form-toggle input:checked~.tutor-form-toggle-unchecked{color:var(--tutor-border-color)}.tutor-control-button{cursor:pointer;color:#9197a8;background-color:transparent;border:none;width:24px;height:24px;font-size:16px}.tutor-control-button.active{color:var(--tutor-color-primary)}.tutor-control-button input{display:none}.tutor-badge,.tutor-badge-square{color:var(--tutor-color-white);box-sizing:border-box;border-radius:2px;padding:0 8px;font-size:13px;font-weight:700;line-height:21px}.tutor-badge-square{text-align:center;min-width:32px;padding:5px;font-size:15px;font-weight:500;line-height:22px}.tutor-profile-badge{box-sizing:border-box}.tutor-profile-badge img{max-width:50px;height:auto}.tutor-profile-badge .tutor-profile-badge-content{color:var(--tutor-color-muted);padding-left:20px;font-size:16px;font-weight:400;line-height:26px}.tutor-profile-badge .tutor-profile-badge-content h5{color:var(--tutor-body-color);margin:0;font-size:24px;font-weight:400;line-height:34px}.tutor-floating-badge{background-color:var(--tutor-color-danger);box-sizing:border-box;color:#fff;z-index:1;border-radius:40px;justify-content:center;align-items:center;min-width:20px;min-height:20px;padding:0 4px;font-size:12px;font-weight:700;line-height:1;display:inline-flex;position:absolute;top:-4px;right:-4px}.tutor-tag-list{margin:0 0 0 -15px;padding:0;list-style:none}.tutor-tag-list li{display:inline-block}.tutor-tag-list li a{border:1px solid var(--tutor-border-color);color:var(--tutor-color-secondary);border-radius:6px;margin-left:15px;padding:7px 23px;font-size:16px;line-height:26px;text-decoration:none;transition:all .2s;display:block}.tutor-tag-list li a:hover{color:var(--tutor-color-primary);border-color:var(--tutor-color-primary)}.tutor-ratings{align-items:center;display:flex}.tutor-ratings-stars{color:#ed9700;margin:0 -3px;font-size:16px}.tutor-ratings-stars>*{margin:0 3px}.tutor-ratings-average{color:var(--tutor-body-color);margin-left:12px;font-weight:500}.tutor-ratings-count{color:var(--tutor-color-muted);margin-left:8px}.tutor-ratings-progress-bar{height:8px!important}.tutor-ratings-progress-bar .tutor-progress-value{background-color:#ed9700}.tutor-ratings-selectable .tutor-ratings-stars{cursor:pointer}.tutor-ratings-lg .tutor-ratings-stars{font-size:20px}.tutor-ratings-xl .tutor-ratings-stars{font-size:40px}.tutor-badge-label{white-space:nowrap;border:1px solid transparent;border-radius:50px;align-items:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding-left:8px;padding-right:8px;font-size:12px;font-weight:500;line-height:1.5;display:inline-flex}.tutor-badge-label.label-default{background:var(--tutor-color-gray-10);color:var(--tutor-color-muted);border-color:var(--tutor-border-color)}.tutor-badge-label.label-primary{background:rgba(var(--tutor-color-primary-rgb),.15);color:var(--tutor-color-primary);border-color:rgba(var(--tutor-color-primary-rgb),.3)}.tutor-badge-label.label-success{background:rgba(var(--tutor-color-success-rgb),.15);color:var(--tutor-color-success);border-color:rgba(var(--tutor-color-success-rgb),.3)}.tutor-badge-label.label-warning{background:rgba(var(--tutor-color-warning-rgb),.15);color:var(--tutor-color-warning);border-color:rgba(var(--tutor-color-warning-rgb),.3)}.tutor-badge-label.label-danger{background:rgba(var(--tutor-color-danger-rgb),.15);color:var(--tutor-color-danger);border-color:rgba(var(--tutor-color-danger-rgb),.3)}.tutor-form-select-with-icon.select-primary{color:var(--tutor-color-primary);background:rgba(var(--tutor-color-primary-rgb),.15);border:1px solid rgba(var(--tutor-color-primary-rgb),.3)}.tutor-form-select-with-icon.select-primary select{color:var(--tutor-color-primary)}.tutor-form-select-with-icon.select-primary:focus{border-color:var(--tutor-color-primary)}.tutor-form-select-with-icon.select-primary .icon1:before{content:""}.tutor-form-select-with-icon.select-default{color:rgba(65,69,79,.9);border:1px solid var(--tutor-border-color);background:#eff1f6}.tutor-form-select-with-icon.select-default select{color:rgba(65,69,79,.9)}.tutor-form-select-with-icon.select-default:focus{border-color:rgba(65,69,79,.9)}.tutor-form-select-with-icon.select-default .icon1:before{content:""}.tutor-form-select-with-icon.select-success{color:var(--tutor-color-success);background:rgba(var(--tutor-color-success-rgb),.15);border:1px solid rgba(var(--tutor-color-success-rgb),.3)}.tutor-form-select-with-icon.select-success select{color:var(--tutor-color-success)}.tutor-form-select-with-icon.select-success:focus{border-color:var(--tutor-color-success)}.tutor-form-select-with-icon.select-success .icon1:before{content:""}.tutor-form-select-with-icon.select-danger{color:var(--tutor-color-danger);background:rgba(var(--tutor-color-danger-rgb),.15);border:1px solid rgba(var(--tutor-color-danger-rgb),.3)}.tutor-form-select-with-icon.select-danger select{color:var(--tutor-color-danger)}.tutor-form-select-with-icon.select-danger:focus{border-color:var(--tutor-color-danger)}.tutor-form-select-with-icon.select-danger .icon1:before{content:""}.tutor-form-select-with-icon.select-warning{color:var(--tutor-color-warning);background:rgba(var(--tutor-color-warning-rgb),.15);border:1px solid rgba(var(--tutor-color-warning-rgb),.3)}.tutor-form-select-with-icon.select-warning select{color:var(--tutor-color-warning)}.tutor-form-select-with-icon.select-warning:focus{border-color:var(--tutor-color-warning)}.tutor-form-select-with-icon.select-warning .icon1:before{content:""}.tutor-form-select-with-icon{border-radius:42px;justify-content:space-between;align-items:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;min-width:120px;max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;display:flex;position:relative}.tutor-form-select-with-icon select{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;z-index:1;cursor:pointer;background:0 0;border:none;outline:none;width:100%;margin:0;padding:5px 28px;display:block;position:relative;min-height:24px!important}.tutor-form-select-with-icon select:focus{box-shadow:none}.tutor-form-select-with-icon>i{font-size:14px;position:absolute}.tutor-form-select-with-icon .icon1{left:8px}.tutor-form-select-with-icon .icon2{right:8px}.tutor-tag{color:#202223;background-color:#e4e5e7;border-radius:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:4px 8px;font-size:14px;line-height:24px;display:inline-block}.tutor-tag.tag-default{background:var(--tutor-color-gray-10);color:var(--tutor-color-muted)}.tutor-tag.tag-primary{background:rgba(var(--tutor-color-primary-rgb),.15);color:var(--tutor-color-primary)}.tutor-tag.tag-success{background:rgba(var(--tutor-color-success-rgb),.15);color:#202223}.tutor-tag.tag-warning{background:rgba(var(--tutor-color-warning-rgb),.15);color:var(--tutor-color-warning)}.tutor-tag.tag-danger{background:rgba(var(--tutor-color-danger-rgb),.15);color:var(--tutor-color-danger)}.tutor-avatar{width:36px;height:36px;box-shadow:0px 0px 0px 1px var(--tutor-border-color);background-color:#fff;border-radius:100px;flex-shrink:0;display:inline-flex;overflow:hidden}.tutor-avatar-text{color:rgba(255,255,255,.8);background-color:var(--tutor-color-primary);justify-content:center;align-items:center;display:flex}.tutor-avatar-xl{width:96px;height:96px}.tutor-avatar-xl .tutor-avatar-text{font-size:24px;font-weight:500}.tutor-avatar-lg{width:64px;height:64px}.tutor-avatar-md{width:48px;height:48px}.tutor-avatar-sm{width:32px;height:32px}.tutor-avatar-xs{width:24px;height:24px}.tutor-avatar.tutor-is-lg{width:120px;height:120px}.tutor-avatar.tutor-is-sm{width:60px;height:60px}.tutor-avatar.tutor-is-xs{width:40px;height:40px}.tutor-table{border-collapse:separate;border-spacing:0;--tutor-table-border-radius:6px;width:100%;min-width:600px;margin:0}.tutor-table-responsive{-webkit-overflow-scrolling:touch;position:relative;overflow-x:auto}.tutor-table tbody,.tutor-table td,.tutor-table tfoot,.tutor-table th,.tutor-table thead,.tutor-table tr{border-color:inherit;box-sizing:border-box;border-style:solid;border-width:0}.tutor-table thead{vertical-align:bottom}.tutor-table tbody{vertical-align:inherit}.tutor-table tr th{border-bottom:1px solid var(--tutor-border-color);border-top:1px solid var(--tutor-border-color);white-space:nowrap;color:var(--tutor-color-secondary);background:#f4f6f9;padding:9px 16px;font-size:14px;font-weight:500;line-height:1.8}.tutor-table tr th:not(.tutor-text-left):not(.tutor-text-center):not(.tutor-text-right){text-align:left}.tutor-table tr th:first-child{border-left:1px solid var(--tutor-border-color)}.tutor-table tr th:last-child{border-right:1px solid var(--tutor-border-color)}.tutor-table tr td{border-bottom:1px solid var(--tutor-border-color);color:var(--tutor-body-color);background:#fff;padding:16px;font-size:16px;font-weight:500;line-height:1.6}.tutor-table tr td>a:not(.tutor-btn):not(.tutor-iconic-btn):not(.quiz-manual-review-action),.tutor-table tr td .tutor-table-link{color:var(--tutor-body-color);font-weight:500;text-decoration:none}.tutor-table tr td>a:not(.tutor-btn):not(.tutor-iconic-btn):not(.quiz-manual-review-action):hover,.tutor-table tr td .tutor-table-link:hover{color:var(--tutor-color-primary)}.tutor-table tr td:not(.tutor-text-left):not(.tutor-text-center):not(.tutor-text-right){text-align:left}.tutor-table tr td:first-child{border-left:1px solid var(--tutor-border-color)}.tutor-table tr td:last-child{border-right:1px solid var(--tutor-border-color)}.tutor-table tr:first-child th:first-child{border-top-left-radius:var(--tutor-table-border-radius)}.tutor-table tr:first-child th:last-child{border-top-right-radius:var(--tutor-table-border-radius)}.tutor-table tr:last-child td:first-child{border-bottom-left-radius:var(--tutor-table-border-radius)}.tutor-table tr:last-child td:last-child{border-bottom-right-radius:var(--tutor-table-border-radius)}.tutor-table-top td,.tutor-table-top th{vertical-align:top}.tutor-table-middle td,.tutor-table-middle th{vertical-align:middle}.tutor-table-bottom td,.tutor-table-bottom th{vertical-align:bottom}.tutor-table .tutor-td-top{vertical-align:top}.tutor-table .tutor-td-middle{vertical-align:middle}.tutor-table .tutor-td-bottom{vertical-align:bottom}.tutor-table.tutor-table-data-td-target .has-data-td-target.is-active:before{transform:rotate(180deg)}@media only screen and (max-width:575px){.tutor-table-mobile table{min-width:auto}.tutor-table-mobile table,.tutor-table-mobile thead,.tutor-table-mobile tbody,.tutor-table-mobile th,.tutor-table-mobile td,.tutor-table-mobile tr{display:block}.tutor-table-mobile thead tr{position:absolute;top:-9999px;left:-9999px}.tutor-table-mobile tr{border:1px solid var(--tutor-border-color);border-radius:6px;margin-bottom:20px;overflow:hidden}.tutor-table-mobile td{color:var(--tutor-body-color);border:none;border-bottom:1px solid var(--tutor-border-color);font-size:15px;font-weight:400}.tutor-table-mobile td[data-title]{grid-template-columns:1fr 1.5fr;align-items:center;display:grid}.tutor-table-mobile td:first-child{border-left:none!important;border-radius:0!important}.tutor-table-mobile td:last-child{border-bottom:none!important;border-right:none!important}.tutor-table-mobile td:before{content:attr(data-title);color:var(--tutor-color-subdued);text-align:left;font-size:13px;font-weight:500}}.tutor-thumbnail-uploader{width:100%}.tutor-thumbnail-uploader .thumbnail-wrapper{background:var(--tutor-color-white);box-sizing:border-box;border-radius:6px}.tutor-thumbnail-uploader .thumbnail-wrapper:not(.tutor-is-borderless){border:1px solid var(--tutor-border-color)}.tutor-thumbnail-uploader .thumbnail-preview{--width:235px;width:268px;height:98px;width:var(--width);height:calc(var(--width)/1.775);background:#eff1f6;border:2px solid #eff1f6;border-radius:3px;justify-content:center;align-items:center;display:flex;position:relative}.tutor-thumbnail-uploader .thumbnail-preview img{width:auto;max-width:100%;height:auto;max-height:100%}.tutor-thumbnail-uploader .thumbnail-preview img:before{content:"";background:#eff1f6 url("data:image/svg+xml;charset=UTF-8,%3csvg width='125' height='32' viewBox='0 0 125 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.66663 9.37562C4.66663 6.77485 6.75507 4.6665 9.33131 4.6665H22.1438C24.72 4.6665 26.8085 6.77485 26.8085 9.37562V19.4552C26.8085 19.9329 26.4249 20.3201 25.9517 20.3201C25.4785 20.3201 25.0949 19.9329 25.0949 19.4552V9.37562C25.0949 7.73023 23.7737 6.39638 22.1438 6.39638H9.33131C7.70145 6.39638 6.38018 7.73023 6.38018 9.37562V22.3102C6.38018 23.9556 7.70144 25.2894 9.33131 25.2894H19.3246C19.7978 25.2894 20.1813 25.6767 20.1813 26.1543C20.1813 26.632 19.7978 27.0193 19.3246 27.0193H9.33131C6.75507 27.0193 4.66663 24.9109 4.66663 22.3102V9.37562Z' fill='%23B4B7C0'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.9032 25.8664C21.9032 25.3887 22.2868 25.0015 22.76 25.0015L29.1432 25.0015C29.6164 25.0015 29.9999 25.3887 29.9999 25.8664C29.9999 26.3441 29.6164 26.7313 29.1432 26.7313L22.76 26.7313C22.2868 26.7313 21.9032 26.3441 21.9032 25.8664Z' fill='%23B4B7C0'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.0827 21.7856C26.5559 21.7856 26.9395 22.1729 26.9395 22.6506L26.9395 29.1348C26.9395 29.6125 26.5559 29.9998 26.0827 29.9998C25.6095 29.9998 25.2259 29.6125 25.2259 29.1348L25.2259 22.6506C25.2259 22.1729 25.6095 21.7856 26.0827 21.7856Z' fill='%23B4B7C0'/%3e%3cpath d='M9.03067 17.1587C8.9164 17.2781 8.85254 17.4377 8.85254 17.6038V21.9306C8.85254 22.4614 9.27875 22.8917 9.80451 22.8917H21.8629C22.3886 22.8917 22.8148 22.4614 22.8148 21.9306V17.6069C22.8148 17.439 22.7495 17.2778 22.6329 17.158L19.1287 13.5567C18.7763 13.1946 18.1969 13.1887 17.8373 13.5437L13.375 17.9483C13.2556 18.0662 13.0634 18.0648 12.9458 17.9452L11.2367 16.2087C10.8765 15.8427 10.2855 15.8469 9.93056 16.218L9.03067 17.1587Z' fill='%23B4B7C0'/%3e%3cpath d='M15.0194 10.7788C15.0194 11.9171 14.1054 12.8398 12.9779 12.8398C11.8503 12.8398 10.9363 11.9171 10.9363 10.7788C10.9363 9.64052 11.8503 8.71777 12.9779 8.71777C14.1054 8.71777 15.0194 9.64052 15.0194 10.7788Z' fill='%23B4B7C0'/%3e%3cpath d='M40.2588 21.1758C42.9175 21.1758 44.5288 19.6011 44.5288 17.2866V10.4312H42.8955V17.1548C42.8955 18.6929 41.9434 19.7256 40.2588 19.7256C38.5742 19.7256 37.6147 18.6929 37.6147 17.1548V10.4312H35.9741V17.2866C35.9741 19.6011 37.6074 21.1758 40.2588 21.1758ZM46.2866 23.5635H47.8687V19.7036H47.9053C48.3594 20.5972 49.2456 21.1538 50.3369 21.1538C52.2705 21.1538 53.5376 19.6084 53.5376 17.1548V17.1475C53.5376 14.6865 52.2778 13.1484 50.3149 13.1484C49.2163 13.1484 48.3667 13.7051 47.9053 14.6206H47.8687V13.2949H46.2866V23.5635ZM49.9048 19.7915C48.7109 19.7915 47.8613 18.7515 47.8613 17.1548V17.1475C47.8613 15.5435 48.7036 14.5034 49.9048 14.5034C51.1426 14.5034 51.9263 15.5068 51.9263 17.1475V17.1548C51.9263 18.7808 51.1499 19.7915 49.9048 19.7915ZM54.8267 21H56.4087V10.4312H54.8267V21ZM61.3452 21.1538C63.5498 21.1538 65 19.6304 65 17.1475V17.1328C65 14.6646 63.5352 13.1484 61.3379 13.1484C59.1479 13.1484 57.6904 14.6719 57.6904 17.1328V17.1475C57.6904 19.623 59.1333 21.1538 61.3452 21.1538ZM61.3525 19.8281C60.1147 19.8281 59.3091 18.854 59.3091 17.1475V17.1328C59.3091 15.4482 60.1221 14.4741 61.3379 14.4741C62.5757 14.4741 63.3813 15.4482 63.3813 17.1328V17.1475C63.3813 18.8467 62.5903 19.8281 61.3525 19.8281ZM68.4863 21.1392C69.5044 21.1392 70.3979 20.6118 70.8447 19.7842H70.874V21H72.4634V15.6899C72.4634 14.1445 71.2695 13.1484 69.3872 13.1484C67.4902 13.1484 66.3403 14.1665 66.2305 15.4922L66.2231 15.5728H67.7173L67.7319 15.5068C67.8638 14.8916 68.4277 14.4595 69.3433 14.4595C70.3247 14.4595 70.874 14.9722 70.874 15.8218V16.4004L68.7793 16.5249C66.9556 16.6348 65.9155 17.4551 65.9155 18.7954V18.8101C65.9155 20.1943 66.9482 21.1392 68.4863 21.1392ZM67.5122 18.7734V18.7588C67.5122 18.1069 68.0396 17.6895 68.9917 17.6309L70.874 17.5137V18.1143C70.874 19.1177 70.0317 19.8721 68.9185 19.8721C68.0688 19.8721 67.5122 19.4473 67.5122 18.7734ZM76.8799 21.1538C77.9858 21.1538 78.8354 20.5972 79.2969 19.6963H79.3262V21H80.9155V10.4312H79.3262V14.606H79.2969C78.8354 13.6978 77.9565 13.1484 76.8652 13.1484C74.9316 13.1484 73.6572 14.6865 73.6572 17.1401V17.1475C73.6572 19.6011 74.917 21.1538 76.8799 21.1538ZM77.2974 19.7915C76.0449 19.7915 75.2759 18.7881 75.2759 17.1475V17.1401C75.2759 15.5142 76.0522 14.5034 77.2974 14.5034C78.4839 14.5034 79.3335 15.5435 79.3335 17.1401V17.1475C79.3335 18.7515 78.4912 19.7915 77.2974 19.7915ZM86.4453 12.1084C86.9653 12.1084 87.3682 11.6982 87.3682 11.2002C87.3682 10.6948 86.9653 10.2847 86.4453 10.2847C85.9326 10.2847 85.5225 10.6948 85.5225 11.2002C85.5225 11.6982 85.9326 12.1084 86.4453 12.1084ZM85.6543 21H87.2363V13.2949H85.6543V21ZM88.8696 21H90.4517V16.2393C90.4517 15.2432 91.1182 14.5034 92.0557 14.5034C92.9492 14.5034 93.5132 15.0747 93.5132 15.9683V21H95.0659V16.1807C95.0659 15.2065 95.7178 14.5034 96.6553 14.5034C97.5928 14.5034 98.1274 15.082 98.1274 16.0854V21H99.7168V15.7046C99.7168 14.1592 98.7207 13.1484 97.1973 13.1484C96.0986 13.1484 95.1904 13.7271 94.7949 14.6646H94.7583C94.4507 13.6978 93.6743 13.1484 92.6123 13.1484C91.6016 13.1484 90.8179 13.6831 90.4883 14.4888H90.4517V13.2949H88.8696V21ZM103.511 21.1392C104.529 21.1392 105.422 20.6118 105.869 19.7842H105.898V21H107.488V15.6899C107.488 14.1445 106.294 13.1484 104.412 13.1484C102.515 13.1484 101.365 14.1665 101.255 15.4922L101.248 15.5728H102.742L102.756 15.5068C102.888 14.8916 103.452 14.4595 104.368 14.4595C105.349 14.4595 105.898 14.9722 105.898 15.8218V16.4004L103.804 16.5249C101.98 16.6348 100.94 17.4551 100.94 18.7954V18.8101C100.94 20.1943 101.973 21.1392 103.511 21.1392ZM102.537 18.7734V18.7588C102.537 18.1069 103.064 17.6895 104.016 17.6309L105.898 17.5137V18.1143C105.898 19.1177 105.056 19.8721 103.943 19.8721C103.093 19.8721 102.537 19.4473 102.537 18.7734ZM112.402 23.7173C114.578 23.7173 115.94 22.5454 115.94 20.7876V13.2949H114.351V14.606H114.314C113.86 13.7344 113.01 13.1484 111.926 13.1484C109.971 13.1484 108.682 14.6646 108.682 17.0815V17.0889C108.682 19.4912 109.956 21.0073 111.89 21.0073C112.996 21.0073 113.875 20.4727 114.314 19.6377H114.351V20.6924C114.351 21.769 113.655 22.4429 112.395 22.4429C111.406 22.4429 110.74 22.106 110.527 21.6152L110.498 21.5566H108.931L108.938 21.6226C109.172 22.8018 110.425 23.7173 112.402 23.7173ZM112.336 19.7183C111.084 19.7183 110.3 18.7222 110.3 17.1108V17.1035C110.3 15.5142 111.084 14.5034 112.336 14.5034C113.538 14.5034 114.351 15.5215 114.351 17.1035V17.1108C114.351 18.7002 113.545 19.7183 112.336 19.7183ZM120.796 21.1538C122.664 21.1538 123.85 20.0405 124.099 18.8174L124.114 18.7368H122.612L122.59 18.7954C122.393 19.374 121.77 19.8574 120.833 19.8574C119.573 19.8574 118.774 19.0078 118.745 17.5503H124.202V17.0156C124.202 14.7012 122.876 13.1484 120.715 13.1484C118.555 13.1484 117.163 14.7598 117.163 17.1694V17.1768C117.163 19.6084 118.533 21.1538 120.796 21.1538ZM120.723 14.4448C121.755 14.4448 122.502 15.0967 122.634 16.4297H118.767C118.906 15.1406 119.697 14.4448 120.723 14.4448Z' fill='%23B4B7C0'/%3e%3c/svg%3e ") 50% no-repeat;justify-content:center;align-items:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-thumbnail-uploader .thumbnail-preview span.delete-btn{cursor:pointer;background-color:#f44337;background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='14' viewBox='0 0 12 14' fill='none'%3e%3cpath d='M1.36301 12.0781C1.36301 12.3889 1.48628 12.687 1.7057 12.9068C1.92512 13.1265 2.22272 13.25 2.53302 13.25H9.55307C9.86337 13.25 10.161 13.1265 10.3804 12.9068C10.5998 12.687 10.7231 12.3889 10.7231 12.0781V3.875H1.36301V12.0781ZM7.99306 5.82813C7.99306 5.72453 8.03415 5.62517 8.10729 5.55191C8.18043 5.47866 8.27962 5.4375 8.38306 5.4375C8.48649 5.4375 8.58569 5.47866 8.65883 5.55191C8.73197 5.62517 8.77306 5.72453 8.77306 5.82813V11.2969C8.77306 11.4005 8.73197 11.4998 8.65883 11.5731C8.58569 11.6463 8.48649 11.6875 8.38306 11.6875C8.27962 11.6875 8.18043 11.6463 8.10729 11.5731C8.03415 11.4998 7.99306 11.4005 7.99306 11.2969V5.82813ZM5.65304 5.82813C5.65304 5.72453 5.69413 5.62517 5.76727 5.55191C5.84041 5.47866 5.93961 5.4375 6.04304 5.4375C6.14648 5.4375 6.24568 5.47866 6.31882 5.55191C6.39196 5.62517 6.43305 5.72453 6.43305 5.82813V11.2969C6.43305 11.4005 6.39196 11.4998 6.31882 11.5731C6.24568 11.6463 6.14648 11.6875 6.04304 11.6875C5.93961 11.6875 5.84041 11.6463 5.76727 11.5731C5.69413 11.4998 5.65304 11.4005 5.65304 11.2969V5.82813ZM3.31303 5.82813C3.31303 5.72453 3.35412 5.62517 3.42726 5.55191C3.50039 5.47866 3.59959 5.4375 3.70303 5.4375C3.80646 5.4375 3.90566 5.47866 3.9788 5.55191C4.05194 5.62517 4.09303 5.72453 4.09303 5.82813V11.2969C4.09303 11.4005 4.05194 11.4998 3.9788 11.5731C3.90566 11.6463 3.80646 11.6875 3.70303 11.6875C3.59959 11.6875 3.50039 11.6463 3.42726 11.5731C3.35412 11.4998 3.31303 11.4005 3.31303 11.2969V5.82813ZM11.1131 1.53125H8.18806L7.95893 1.07471C7.9104 0.977107 7.83563 0.895005 7.74305 0.837641C7.65046 0.780276 7.54373 0.749926 7.43487 0.750004H4.64879C4.54016 0.749586 4.43362 0.779823 4.34137 0.837251C4.24911 0.894679 4.17487 0.976976 4.12716 1.07471L3.89803 1.53125H0.97301C0.869575 1.53125 0.770377 1.57241 0.697237 1.64567C0.624097 1.71892 0.583008 1.81828 0.583008 1.92188L0.583008 2.70313C0.583008 2.80673 0.624097 2.90609 0.697237 2.97934C0.770377 3.0526 0.869575 3.09375 0.97301 3.09375H11.1131C11.2165 3.09375 11.3157 3.0526 11.3889 2.97934C11.462 2.90609 11.5031 2.80673 11.5031 2.70313V1.92188C11.5031 1.81828 11.462 1.71892 11.3889 1.64567C11.3157 1.57241 11.2165 1.53125 11.1131 1.53125Z' fill='white'/%3e%3c/svg%3e");background-position:50%;background-repeat:no-repeat;border-radius:50%;width:24px;height:24px;display:inline-block;position:absolute;top:-12px;right:-12px}.tutor-thumbnail-uploader .thumbnail-preview span.delete-btn:hover{background-color:#f2281a}.tutor-thumbnail-uploader .thumbnail-input input[type=file]{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;display:none}.tutor-thumbnail-uploader .thumbnail-input .tutor-btn{cursor:pointer;border-radius:6px;padding:6px 14px}.tutor-thumbnail-uploader .thumbnail-input .tutor-btn>.tutor-btn-icon{font-size:24px}.tutor-offcanvas .tutor-offcanvas-backdrop{z-index:1040;opacity:0;visibility:hidden;background-color:rgba(0,0,0,.25);width:100vw;height:100vh;transition:all .3s;position:fixed;top:0;bottom:0;left:0;right:0}.tutor-offcanvas .tutor-offcanvas-main{z-index:1050;opacity:0;visibility:hidden;background:#fff;padding:20px 0;transition:all .3s ease-in-out;position:fixed;box-shadow:0 6px 20px rgba(28,49,104,.1)}.tutor-offcanvas.tutor-offcanvas-right .tutor-offcanvas-main{width:360px;max-width:100%;height:100%;top:0;right:0;transform:translate(100%)}.tutor-offcanvas.tutor-offcanvas-left .tutor-offcanvas-main{width:360px;max-width:100%;height:100%;top:0;left:0;transform:translate(-100%)}.tutor-offcanvas.tutor-offcanvas-top .tutor-offcanvas-main{height:360px;max-height:100%;top:0;left:0;right:0;transform:translateY(-100%)}.tutor-offcanvas.tutor-offcanvas-bottom .tutor-offcanvas-main{width:100%;height:360px;max-height:100%;bottom:0;left:0;right:0;transform:translateY(100%)}.tutor-offcanvas.is-active{opacity:1;visibility:visible}.tutor-offcanvas.is-active .tutor-offcanvas-main{opacity:1;visibility:visible;transform:none}.tutor-offcanvas.is-active .tutor-offcanvas-backdrop{opacity:1;visibility:visible}.tutor-offcanvas .tutor-offcanvas-header{justify-content:space-between;align-items:center;margin:10px 0;display:flex}.tutor-offcanvas .tutor-offcanvas-main{--padding:20px}.tutor-offcanvas .tutor-offcanvas-header,.tutor-offcanvas .tutor-offcanvas-body{padding:0 var(--padding)}.tutor-notification-tab .tab-header{position:relative}.tutor-notification-tab .tab-header:before{content:" ";bottom:0;left:calc(-1*var(--padding));width:calc(100% + 2*var(--padding));border-bottom:1px solid var(--tutor-border-color);position:absolute}.tutor-notification-tab .tab-header-item{cursor:pointer;position:relative}.tutor-notification-tab .tab-header-item>*{pointer-events:none}.tutor-notification-tab .tab-header-item span{padding:10px;display:flex}.tutor-notification-tab .tab-header-item:before{content:"";border-bottom:2px solid #3e64de;width:100%;transition:all .3s ease-in;position:absolute;bottom:0;transform:scaleY(0)}.tutor-notification-tab .tab-header-item.is-active:before{transform:scaleY(1)}.tutor-notification-tab .tab-body{min-width:100%;width:calc(100% + var(--padding));min-height:200px;max-height:calc(100vmin - 120px);padding-right:var(--padding);--scrollbarBG:rgba(205,207,213,.5);--thumbBG:#3e64de;scrollbar-width:thin;scrollbar-color:var(--thumbBG)var(--scrollbarBG);overflow-y:auto}.tutor-notification-tab .tab-body-item{display:none}.tutor-notification-tab .tab-body-item.is-active{display:block}.tutor-notification-tab .tab-body::-webkit-scrollbar{width:4px}.tutor-notification-tab .tab-body::-webkit-scrollbar-track{background:var(--scrollbarBG)}.tutor-notification-tab .tab-body::-webkit-scrollbar-thumb{background-color:var(--thumbBG);border-radius:40px}.tutor-notification-element:not(.notification-read) .element-icon .element-primary,.tutor-notification-element:not(.notification-read) .element-content .header .element-primary{color:var(--tutor-color-primary)}.tutor-notification-element:not(.notification-read) .element-icon .element-success,.tutor-notification-element:not(.notification-read) .element-content .header .element-success{color:var(--tutor-color-success)}.tutor-notification-element:not(.notification-read) .element-icon .element-warning,.tutor-notification-element:not(.notification-read) .element-content .header .element-warning{color:var(--tutor-color-warning)}.tutor-notification-element:not(.notification-read) .element-icon .element-danger,.tutor-notification-element:not(.notification-read) .element-content .header .element-danger{color:var(--tutor-color-danger)}.tutor-notification-element:not(.notification-read) .element-icon .element-purple,.tutor-notification-element:not(.notification-read) .element-content .header .element-purple{color:#9b4ab4}.tutor-notification-element{gap:10px;padding-top:20px;padding-bottom:15px;display:flex}.tutor-notification-element .element-icon{color:var(--tutor-color-muted)}.tutor-notification-element .element-icon [class^=element-]{background:0 0;border-radius:50%;justify-content:center;align-items:center;width:24px;height:24px;font-size:18px;display:flex}.tutor-notification-element .element-content .header{justify-content:space-between;margin-bottom:10px;display:flex}.tutor-notification-element .element-content .header .meta{align-items:center;gap:8px;display:flex}.tutor-notification-element .element-content .header .meta .dot{background:var(--tutor-color-primary);border-radius:50%;width:8px;height:8px;display:inline-block;position:relative;box-shadow:0 0 0 2px #e9edfb}.tutor-notification-element .element-content .header .meta .dot:before{content:"";z-index:-1;border-radius:50%;position:absolute;top:0;bottom:0;left:0;right:0}@keyframes pulse-animation{0%{box-shadow:0 0 rgba(0,0,0,.1)}to{box-shadow:0 0 0 6px transparent}}.tutor-notification-element .element-content .header [class^=element-]{color:var(--tutor-color-secondary)}.tutor-notification-element .element-content .message span{font-weight:400}.tutor-notification-element.notification-read .element-content .header .meta .dot{display:none}.tutor-notification-element.notification-read .element-content .message,.tutor-notification-element.notification-read .element-content .message>*{color:var(--tutor-color-secondary)}.tutor-notification-element-empty{text-align:center;align-items:center;justify-items:center;display:grid}.tutor-notification-element-empty .element-content{max-width:250px}.tutor-course-certificate-tabs.tutor-nav{background:#f6f8fd;border-radius:6px;padding:4px;display:inline-flex}.tutor-course-certificate-tabs.tutor-nav>li>a{color:var(--tutor-color-muted)}.tutor-course-certificate-tabs.tutor-nav>li>a:hover{color:var(--tutor-color-primary);background-color:transparent}.tutor-course-certificate-tabs.tutor-nav>li>a.is-active{color:var(--tutor-color-primary);background-color:var(--tutor-color-white);box-shadow:0 1px 2px rgba(2,11,83,.2)}.tutor-certificate-templates{grid-template-rows:min-content;grid-template-columns:repeat(auto-fill,minmax(228px,1fr));gap:25px;min-height:580px;display:grid;position:relative}.tutor-certificate-template{flex-direction:column;align-items:flex-start;display:flex}.tutor-certificate-template label{cursor:pointer;flex-direction:column;width:100%;height:100%;margin:0;display:flex;position:relative}.tutor-certificate-template img{border-radius:6px;max-width:100%;height:auto;display:inline-block}.tutor-certificate-template-inner{box-shadow:0 0 0 1px var(--tutor-color-gray-10);z-index:1;background-color:#fff;border-radius:6px;flex-direction:column;justify-content:center;align-items:center;height:100%;display:flex;position:relative}.tutor-certificate-template-inner:after{content:"";background-image:url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.42318 12.9161C6.3686 12.8593 6.32513 12.7929 6.29503 12.7201C6.23499 12.558 6.23499 12.3797 6.29503 12.2175C6.32453 12.1445 6.36807 12.0779 6.42318 12.0215L7.33283 11.1496C7.38636 11.0869 7.45336 11.0371 7.52883 11.0038C7.60148 10.971 7.68026 10.9538 7.76001 10.9536C7.84642 10.9519 7.93217 10.9691 8.01129 11.0038C8.0895 11.0386 8.16031 11.0881 8.21985 11.1496L10.9639 13.8986L16.8539 8.00855C16.9119 7.94744 16.981 7.89797 17.0575 7.8628C17.1368 7.82861 17.2224 7.81149 17.3088 7.81255C17.3898 7.813 17.4698 7.83071 17.5435 7.8645C17.6171 7.8983 17.6827 7.94741 17.7359 8.00855L18.6456 8.89306C18.7007 8.9494 18.7442 9.01598 18.7737 9.08906C18.8338 9.25121 18.8338 9.42949 18.7737 9.59163C18.7436 9.66439 18.7002 9.73087 18.6456 9.78763L11.4061 16.9894C11.3522 17.0523 11.2853 17.1029 11.2101 17.1377C11.0492 17.2041 10.8685 17.2041 10.7076 17.1377C10.6323 17.1029 10.5655 17.0523 10.5116 16.9894L6.42318 12.9161Z' fill='white'/%3E%3C/svg%3E%0A");background-position:2px 50%;background-repeat:no-repeat;background-size:25px;background-color:var(--tutor-color-primary);z-index:1;opacity:0;border-radius:50%;width:28px;height:28px;transition:all .2s ease-in;position:absolute;top:-15px;right:-15px}.tutor-certificate-template input[type=radio]{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;display:none}.tutor-certificate-template input[type=radio]:checked+.tutor-certificate-template-inner{box-shadow:0 0 0 2px var(--tutor-color-primary)}.tutor-certificate-template input[type=radio]:checked+.tutor-certificate-template-inner:after{opacity:1}.tutor-certificate-template-icon{z-index:10;opacity:0;transition:all .2s ease-in;position:absolute;top:-20px;right:-12px}.tutor-certificate-template-overlay{-webkit-backdrop-filter:blur(30px);backdrop-filter:blur(30px);visibility:hidden;opacity:0;background:rgba(255,255,255,.6);border-radius:6px;flex-direction:column;justify-content:center;align-items:center;gap:16px;transition:all .2s ease-in;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-certificate-template:hover .tutor-certificate-template-overlay{visibility:visible;opacity:1}.tutor-dashboard-content-inner .field-label{color:var(--tutor-color-secondary)}.tutor-password-strength-checker{position:relative}.tutor-password-strength-checker .tutor-password-field{text-align:left}.tutor-password-strength-checker .tutor-password-field .field-group,.tutor-password-strength-checker .tutor-password-field .tutor-input-group{position:relative}.tutor-password-strength-checker .tutor-password-field input.password-checker{transition:border-color .3s}.tutor-password-strength-checker .show-hide-btn{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.70941 24C7.89169 24.3172 8.14035 24.7327 8.45342 25.2175C9.2055 26.382 10.3194 27.9309 11.7662 29.4741C14.687 32.5897 18.7868 35.5 23.875 35.5C28.9632 35.5 33.063 32.5897 35.9838 29.4741C37.4306 27.9309 38.5445 26.382 39.2966 25.2175C39.6096 24.7327 39.8583 24.3172 40.0406 24C39.8583 23.6828 39.6096 23.2673 39.2966 22.7825C38.5445 21.618 37.4306 20.0691 35.9838 18.5259C33.063 15.4103 28.9632 12.5 23.875 12.5C18.7868 12.5 14.687 15.4103 11.7662 18.5259C10.3194 20.0691 9.2055 21.618 8.45342 22.7825C8.14035 23.2673 7.89169 23.6828 7.70941 24ZM41.75 24C43.0916 23.3292 43.0914 23.3287 43.0911 23.3281L43.0904 23.3267L43.0886 23.3231L43.0831 23.3123L43.065 23.2769C43.0497 23.2472 43.0281 23.2054 43 23.1524C42.944 23.0465 42.8625 22.8955 42.7558 22.706C42.5427 22.3272 42.2287 21.7929 41.8167 21.155C40.9946 19.882 39.7726 18.1809 38.1724 16.4741C34.9995 13.0897 30.1618 9.5 23.875 9.5C17.5882 9.5 12.7505 13.0897 9.57757 16.4741C7.97744 18.1809 6.75544 19.882 5.9333 21.155C5.5213 21.7929 5.20726 22.3272 4.99415 22.706C4.88754 22.8955 4.80601 23.0465 4.74996 23.1524C4.72193 23.2054 4.70025 23.2472 4.68497 23.2769L4.66685 23.3123L4.6614 23.3231L4.65889 23.3281C4.65861 23.3287 4.65836 23.3292 6 24L4.65836 23.3292C4.44721 23.7515 4.44721 24.2485 4.65836 24.6708L6 24C4.65836 24.6708 4.65861 24.6713 4.65889 24.6719L4.6614 24.6769L4.66685 24.6877L4.68497 24.7231C4.70025 24.7529 4.72193 24.7946 4.74996 24.8476C4.80601 24.9535 4.88754 25.1045 4.99415 25.294C5.20726 25.6729 5.5213 26.2071 5.9333 26.845C6.75544 28.118 7.97744 29.8191 9.57757 31.5259C12.7505 34.9103 17.5882 38.5 23.875 38.5C30.1618 38.5 34.9995 34.9103 38.1724 31.5259C39.7726 29.8191 40.9946 28.118 41.8167 26.845C42.2287 26.2071 42.5427 25.6729 42.7558 25.294C42.8625 25.1045 42.944 24.9535 43 24.8476C43.0281 24.7946 43.0497 24.7529 43.065 24.7231L43.0831 24.6877L43.0886 24.6769L43.0904 24.6733L43.0911 24.6719C43.0914 24.6713 43.0916 24.6708 41.75 24ZM41.75 24L43.0916 24.6708C43.3028 24.2485 43.3028 23.7515 43.0916 23.3292L41.75 24Z' fill='%23212327'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.875 20.625C22.011 20.625 20.5 22.136 20.5 24C20.5 25.864 22.011 27.375 23.875 27.375C25.739 27.375 27.25 25.864 27.25 24C27.25 22.136 25.739 20.625 23.875 20.625ZM17.5 24C17.5 20.4792 20.3542 17.625 23.875 17.625C27.3958 17.625 30.25 20.4792 30.25 24C30.25 27.5208 27.3958 30.375 23.875 30.375C20.3542 30.375 17.5 27.5208 17.5 24Z' fill='%23212327'/%3E%3C/svg%3E");background-size:30px;width:30px;height:30px;font-size:15px;font-weight:600;display:none;position:absolute;top:50%;right:10px;transform:translateY(-50%)}.tutor-password-strength-checker .show-hide-btn.hide-btn{background-image:url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.9965 13.1362C23.0202 13.1339 22.047 13.2452 21.0964 13.4677C20.2898 13.6565 19.4828 13.1556 19.294 12.349C19.1052 11.5424 19.6061 10.7354 20.4127 10.5466C21.5891 10.2713 22.7935 10.1335 24.0018 10.1362C30.0093 10.1369 34.6277 13.5671 37.6511 16.7921C39.1767 18.4194 40.3415 20.0409 41.1251 21.2543C41.5179 21.8624 41.8173 22.3718 42.0206 22.7332C42.1223 22.9141 42.2002 23.0582 42.2537 23.1594C42.2805 23.2101 42.3013 23.2501 42.316 23.2786L42.3334 23.3127L42.3387 23.3231L42.3411 23.328C42.3414 23.3285 42.3416 23.3291 41 23.9999L42.3416 23.3291C42.5592 23.7642 42.5522 24.2779 42.3229 24.707C41.3355 26.5541 40.158 28.2931 38.8096 29.8956C38.2762 30.5295 37.3299 30.611 36.6961 30.0776C36.0622 29.5442 35.9807 28.598 36.5141 27.9641C37.5555 26.7265 38.4836 25.3986 39.2875 23.9963C39.117 23.7011 38.889 23.3215 38.605 22.8818C37.8914 21.777 36.8347 20.3076 35.4625 18.844C32.6908 15.8875 28.8098 13.1362 24 13.1362L23.9965 13.1362ZM13.9096 13.6277C14.5069 13.1717 15.3493 13.2279 15.8807 13.7592L21.7784 19.6569C21.7819 19.6604 21.7854 19.6639 21.7889 19.6674L28.3324 26.2109C28.3359 26.2145 28.3395 26.218 28.343 26.2216L34.2407 32.1192C34.5467 32.4252 34.7056 32.8486 34.6766 33.2804C34.6476 33.7122 34.4335 34.1105 34.0893 34.3728C31.1929 36.5806 27.666 37.8038 24.0245 37.8633L24 37.8635C17.9916 37.8635 13.3726 34.4329 10.3489 31.2076C8.82332 29.5803 7.6585 27.9588 6.87488 26.7455C6.48215 26.1374 6.18271 25.628 5.97939 25.2665C5.87767 25.0857 5.79984 24.9416 5.74625 24.8403C5.71945 24.7897 5.6987 24.7497 5.68404 24.7212L5.66662 24.6871L5.66134 24.6766L5.65889 24.6718C5.65861 24.6712 5.65836 24.6707 7 23.9999L5.65836 24.6707C5.44039 24.2348 5.44782 23.7201 5.67827 23.2906C7.70177 19.5196 10.5083 16.225 13.9096 13.6277ZM8.71331 24.0048C8.88371 24.2999 9.11149 24.6789 9.395 25.1179C10.1086 26.2228 11.1653 27.6921 12.5375 29.1558C15.3068 32.1098 19.1836 34.8588 23.9878 34.8635C26.404 34.8219 28.7586 34.1587 30.8297 32.9509L27.1742 29.2954C26.9214 29.456 26.6567 29.5982 26.3818 29.7207C25.6291 30.0561 24.8165 30.2364 23.9926 30.2509C23.1687 30.2655 22.3503 30.1139 21.5862 29.8053C20.8221 29.4967 20.128 29.0373 19.5453 28.4546C18.9626 27.8719 18.5032 27.1778 18.1946 26.4137C17.886 25.6496 17.7344 24.8312 17.7489 24.0073C17.7635 23.1833 17.9438 22.3708 18.2792 21.6181C18.4017 21.3432 18.5439 21.0784 18.7044 20.8256L14.7099 16.8311C12.3103 18.8548 10.2806 21.2821 8.71331 24.0048ZM20.933 23.0542C20.817 23.3767 20.7545 23.7165 20.7485 24.0602C20.741 24.4813 20.8185 24.8996 20.9763 25.2902C21.134 25.6807 21.3688 26.0354 21.6666 26.3333C21.9644 26.6311 22.3192 26.8659 22.7097 27.0236C23.1003 27.1814 23.5186 27.2588 23.9397 27.2514C24.2834 27.2453 24.6232 27.1828 24.9457 27.0669L20.933 23.0542Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93934 5.93934C6.52513 5.35355 7.47487 5.35355 8.06066 5.93934L42.0607 39.9393C42.6464 40.5251 42.6464 41.4749 42.0607 42.0607C41.4749 42.6464 40.5251 42.6464 39.9393 42.0607L5.93934 8.06066C5.35355 7.47487 5.35355 6.52513 5.93934 5.93934Z' fill='black'/%3E%3C/svg%3E%0A")}.tutor-password-strength-hint{justify-content:space-between;align-items:center;margin-top:7px;display:flex}.tutor-password-strength-hint .indicator{justify-content:space-between;align-items:center;gap:25px;height:10px;margin:10px 0;display:none}.tutor-password-strength-hint .indicator span{background:#d3d3d3;border-radius:5px;width:72px;height:2px;position:relative}.tutor-password-strength-hint .indicator span.active:before{content:"";border-radius:5px;width:100%;height:100%;position:absolute;top:0;left:0}.tutor-password-strength-hint .indicator span.weak:before{background-color:#f44337}.tutor-password-strength-hint .indicator span.medium:before{background-color:#ed9700}.tutor-password-strength-hint .indicator span.strong:before{background-color:var(--tutor-color-success)}.tutor-password-strength-hint .indicator span:nth-child(2){margin:0 3px}.tutor-password-strength-hint .text{text-align:right;text-transform:capitalize;display:none}.tutor-password-strength-hint .text.weak{color:#f44337}.tutor-password-strength-hint .text.medium{color:#ed9700}.tutor-password-strength-hint .text.strong{color:var(--tutor-color-success)}.tutor-card{word-wrap:break-word;background-color:#fff;border-radius:6px;flex-direction:column;min-width:0;display:flex;position:relative}.tutor-card:not(.tutor-no-border){border:1px solid var(--tutor-border-color)}.tutor-card-header{border-radius:5px 5px 0 0;justify-content:space-between;align-items:center;padding:16px 20px;display:flex}.tutor-card-header:not(.tutor-no-border){border-bottom:1px solid var(--tutor-border-color)}.tutor-card-title{margin:0;font-size:16px;font-weight:500}.tutor-card-body{flex:auto;padding:20px}.tutor-card-footer{border-radius:0 0 5px 5px;padding:16px 20px}.tutor-card-footer:not(.tutor-no-border){border-top:1px solid var(--tutor-border-color)}.tutor-card-image{border-radius:5px}.tutor-card-image-top{border-radius:5px 5px 0 0}.tutor-card-image-right{border-radius:0 5px 5px 0}.tutor-card-image-bottom{border-radius:0 0 5px 5px}.tutor-card-image-left{border-radius:5px 0 0 5px}.tutor-card-secondary{border:2px solid #e0e2ea}.tutor-card.is-selected{background-color:rgba(var(--tutor-color-primary-rgb),.05);border-color:rgba(var(--tutor-color-primary-rgb),.4)}.tutor-card.is-active{background-color:rgba(var(--tutor-color-primary-rgb),.05);border-color:var(--tutor-color-primary)}.tutor-card-sm .tutor-card-header{padding:10px 16px}.tutor-card-sm .tutor-card-body,.tutor-card-sm .tutor-card-footer{padding:16px}.tutor-card-md .tutor-card-header{padding:24px 32px}.tutor-card-md .tutor-card-body{padding:32px}.tutor-card-md .tutor-card-footer{padding:24px 32px}.tutor-card-list{border-radius:6px;flex-direction:column;margin-bottom:0;padding-left:0;display:flex}.tutor-card-list:first-child{border-top-width:0;border-top-left-radius:5px;border-top-right-radius:5px}.tutor-card-list-item{color:var(--tutor-body-color);background-color:#fff;text-decoration:none;display:block;position:relative}.tutor-card-list-item:nth-child(2n){background-color:#fcfcfd}.tutor-card-list-item:not(:last-child){border-bottom:1px solid #cdcfd5}.tutor-card-list-item:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.tutor-card-list-item:last-child{border-bottom-right-radius:6px;border-bottom-left-radius:6px}@media (min-width:1200px){.tutor-card-list-horizontal{flex-direction:row}.tutor-card-list-horizontal .tutor-card-list-item{border-bottom:0;border-radius:6px;flex-grow:1;flex-shrink:0}.tutor-card-list-horizontal .tutor-card-list-item:not(:last-child){border-right:1px solid #cdcfd5;border-top-right-radius:0;border-bottom-right-radius:0}}.tutor-accordion-item{background-color:#fff;border:1px solid #e0e2ea;border-radius:6px}.tutor-accordion-item:not(:last-child){margin-bottom:10px}@media (min-width:992px){.tutor-accordion-item:not(:last-child){margin-bottom:20px}}.tutor-accordion-item-header{color:var(--tutor-color-secondary);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;background-color:#fcfcfd;border-radius:6px;padding:16px 40px 16px 20px;font-size:20px;font-weight:500;line-height:1.4;transition:all .3s ease-in;position:relative;margin:0!important}.tutor-accordion-item-header:after{content:"";color:var(--tutor-color-primary);font-size:16px;font-weight:400;transition:all .15s;position:absolute;top:50%;right:16px;transform:translateY(-50%)rotate(0);font-family:tutor!important}.tutor-accordion-item-header:hover{color:var(--tutor-color-primary)}.tutor-accordion-item-header.is-active{color:var(--tutor-color-primary);background-color:#eff1f6;border-radius:6px 6px 0 0}.tutor-accordion-item-header.is-active:after{transform:translateY(-50%)rotate(-90deg)}.tutor-accordion-item-header .tooltip-wrap.tooltip-icon{margin-left:8px;font-size:16px;position:relative;top:1px}.tutor-accordion-item-body{overflow:hidden}.tutor-accordion-item-body-content{border-top:1px solid #e0e2ea;padding:0 16px}.tutor-modal{z-index:99999;outline:0;width:100%;height:100%;display:none;position:fixed;top:0;left:0;overflow-x:hidden;overflow-y:auto}.tutor-modal-open{overflow:hidden}.tutor-modal.tutor-is-active,.tutor-modal-active{display:block}.tutor-modal-overlay{z-index:-1;background-color:rgba(0,0,0,.75);width:100%;height:100%;position:fixed;top:0;left:0}.tutor-modal-window{pointer-events:none;align-items:center;width:auto;max-width:640px;min-height:calc(100% - 96px);margin:48px auto;display:flex;position:relative}.tutor-modal-window-lg{max-width:880px}.tutor-modal-window-md{max-width:520px}.tutor-modal-window-sm{max-width:430px}.tutor-modal-content{pointer-events:auto;border:1px solid var(--tutor-border-color);background-color:#eff1f7;background-clip:padding-box;border-radius:16px;outline:0;flex-direction:column;width:100%;display:flex;position:relative}.tutor-modal-content-white{background-color:#fff}.tutor-modal-header,.tutor-modal-footer{background-color:#fff;flex-shrink:0;justify-content:space-between;align-items:center;padding:16px 32px;display:flex}.tutor-modal-header{border-bottom:1px solid var(--tutor-border-color);border-top-left-radius:16px;border-top-right-radius:16px}.tutor-modal-header .tutor-modal-close{margin-right:-16px}.tutor-modal .tutor-modal-close-o{z-index:1;font-size:20px;position:absolute;top:16px;right:16px}.tutor-modal-title{color:var(--tutor-body-color);margin:0;font-size:20px;font-weight:700;line-height:1.2}.tutor-modal-footer{border-top:1px solid var(--tutor-border-color);border-bottom-right-radius:16px;border-bottom-left-radius:16px}.tutor-modal-body{flex:auto;padding:24px 32px;position:relative}.tutor-modal-scrollable .tutor-modal-window{height:calc(100% - 96px)}.tutor-modal-scrollable .tutor-modal-content{max-height:100%;overflow:hidden}.tutor-modal-scrollable .tutor-modal-body{overflow-y:auto}.tutor-modal-steps ul{justify-content:space-between;margin:0;padding:0;list-style:none;display:flex;position:relative;overflow:hidden}.tutor-modal-steps ul li{color:var(--tutor-color-muted);z-index:8;flex-direction:column;align-items:center;font-size:15px;line-height:24px;display:flex;position:relative}.tutor-modal-steps ul li:nth-child(2){z-index:7}.tutor-modal-steps ul li:nth-child(3){z-index:6}.tutor-modal-steps ul li:nth-child(4){z-index:5}.tutor-modal-steps ul li:nth-child(5){z-index:4}.tutor-modal-steps ul li:nth-child(6){z-index:3}.tutor-modal-steps ul li:nth-child(7){z-index:2}.tutor-modal-steps ul li:nth-child(8){z-index:1}.tutor-modal-steps ul li:nth-child(9){z-index:0}.tutor-modal-steps ul li .tutor-modal-step-btn{width:20px;height:20px;color:var(--tutor-color-muted);background:var(--tutor-color-gray);cursor:pointer;z-index:1;border:none;border-radius:50%;justify-content:center;align-items:center;margin:4px 0;font-size:13px;display:flex;position:relative}.tutor-modal-steps ul li .tutor-modal-step-btn:before{content:"";background-color:var(--tutor-color-gray);width:1000px;height:2px;margin-top:-1px;position:absolute;top:50%;right:100%}.tutor-modal-steps ul li.tutor-is-completed{color:var(--tutor-body-color)}.tutor-modal-steps ul li.tutor-is-completed .tutor-modal-step-btn{color:transparent;background-position:5px;background-repeat:no-repeat;background-size:10px;background-color:var(--tutor-color-primary);background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9'%3e%3cpath d='M.436496 4.58374C.391263 4.5367.355238 4.4816.330285 4.4213c-.049755-.13438-.049755-.28214 0-.41652a.499923.499923 0 01.106211-.16244l.753894-.72265c.04436-.05197.09989-.09326.16244-.12079.06021-.02724.1255-.04143.19159-.04165.07162-.00139.14269.01282.20826.04165.06482.02883.1235.06983.17285.12079L4.1997 5.39802 9.08124.516483c.04802-.050643.10527-.091641.16869-.120789.06572-.028338.13668-.042529.20825-.041652a.472749.472749 0 01.19453.043062c.06105.02801.11542.068706.15951.119379l.75388.733067c.0457.04668.0818.10187.1062.16244.0498.13438.0498.28213 0 .41651-.0249.0603-.061.1154-.1062.16244L4.56623 7.95958c-.04471.05213-.10011.09403-.16244.12287-.13338.05508-.28314.05508-.41651 0-.06233-.02884-.11773-.07074-.16244-.12287L.436496 4.58374z' fill='%23fff'/%3e%3c/svg%3e")}.tutor-modal-steps ul li.tutor-is-completed .tutor-modal-step-btn:before{background-color:var(--tutor-color-primary)}.tutor-modal-steps ul li:first-child .tutor-modal-step-btn:after,.tutor-modal-steps ul li:last-child .tutor-modal-step-btn:after{content:"";background-color:#fff;width:100px;height:2px;margin-top:-1px;position:absolute;top:50%;right:100%}.tutor-modal-steps ul li:last-child .tutor-modal-step-btn:after{left:100%;right:auto}.tutor-quiz-item{background:var(--tutor-color-white);border-radius:6px;display:flex}.tutor-quiz-item .tutor-quiz-item-label{flex-grow:1;align-items:flex-start;min-width:0;display:inline-flex}.tutor-quiz-item .tutor-quiz-item-label .tutor-quiz-item-name{margin:0;padding:9px 0;font-size:15px;font-weight:400;line-height:24px}.tutor-quiz-item .tutor-quiz-item-label .tutor-quiz-item-draggable{color:var(--tutor-color-muted);cursor:move;padding:0 15px 0 13px;line-height:42px}.tutor-quiz-item .tutor-quiz-item-action{align-items:flex-start;padding-left:20px;padding-right:3px;display:inline-flex}.tutor-quiz-item .tutor-quiz-item-action .tutor-quiz-item-type{align-items:center;width:165px;padding-right:10px;font-size:13px;line-height:42px;display:inline-flex}.tutor-radio-select{background:var(--tutor-color-white);cursor:pointer;border-radius:6px;padding:13px;display:flex}.tutor-radio-select .tutor-form-check-input{width:19px;height:19px;margin-top:4px}.tutor-radio-select .tutor-radio-select-content{color:var(--tutor-color-muted);padding-left:12px;font-size:13px;line-height:18px}.tutor-radio-select .tutor-radio-select-content .tutor-radio-select-title{color:var(--tutor-body-color);font-size:15px;line-height:24px;display:block}.tutor-radio-select .tutor-radio-select-content a{color:var(--tutor-color-primary);text-decoration:none}.tutor-radio-select .tutor-radio-select-content a:hover{color:var(--tutor-color-primary-hover)}.tutor-modal .tutor-alert{padding:8px 12px}.tutor-modal .tutor-alert.tutor-warning{background-color:rgba(var(--tutor-color-warning),.15);color:var(--tutor-color-warning);border-color:rgba(var(--tutor-color-warning),.3);text-align:left}.tutor-modal-ins-approval .tutor-modal-root{width:634px}.tutor-modal-ins-approval .tutor-modal-buttons .tutor-btn{max-width:280px}.tutor-modal-ins-approval .tutor-avatar{width:100px;height:100px}.tutor-modal-ins-approval .tutor-avatar img{object-fit:cover}.tutor-modal-ins-approval .tutor-modal-buttons{max-width:280px;margin-left:auto;margin-right:auto}@media (max-width:575.98px){.tutor-modal .tutor-btn:not(.tutor-is-icon-btn){width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;font-size:14px;font-weight:400;line-height:2;height:auto!important;padding:6px 20px!important}}.tutor-modal.tutor-login-modal .tutor-modal-root .tutor-modal-body{align-items:unset;padding:50px 57px}.tutor-modal.tutor-login-modal .tutor-modal-root .tutor-modal-body .tutor-form-check label{color:var(--tutor-color-muted)}.tutor-meta{align-items:center;gap:16px;display:flex}.tutor-meta>*{color:var(--tutor-color-hints);font-size:14px;line-height:1.6}.tutor-meta-value,.tutor-meta a{color:var(--tutor-body-color);font-weight:500}.tutor-meta a{text-decoration:none}.tutor-meta a:hover,.tutor-meta a:focus,.tutor-meta a:active{color:var(--tutor-color-primary);outline:0;text-decoration:none}.tutor-meta-icon{margin-right:4px;line-height:1.6}.tutor-wp-dashboard-filter{gap:30px}@media (max-width:1300px){.tutor-wp-dashboard-filter{flex-wrap:wrap;margin-top:40px}}@media (max-width:575.98px){.tutor-wp-dashboard-filter{flex-direction:row;display:block!important}.tutor-wp-dashboard-filter-items{display:block!important}.tutor-wp-dashboard-filter-items .tutor-input-group{width:100%!important;max-width:100%!important}.tutor-wp-dashboard-filter-item{margin-top:20px}}.tutor-wp-dashboard-filter .tutor-form-select-label{white-space:nowrap;text-overflow:ellipsis;vertical-align:middle;max-width:200px;display:inline-block;overflow:hidden}.tutor-wp-dashboard-filter .tutor-wp-dashboard-filter-items{gap:24px}.tutor-wp-dashboard-filter .tutor-wp-dashboard-filter-items .tutor-form-label{color:var(--tutor-color-secondary)}.tutor-wp-dashboard-header{border-bottom:1px solid #e0e2ea;margin-bottom:24px}.tutor-wp-dashboard-header-inner{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px;display:flex}.tutor-wp-dashboard-header-title{color:var(--tutor-body-color);font-size:24px;font-weight:400;line-height:40px}.tutor-wp-dashboard-course-filter{align-items:start;gap:24px;display:flex}@media (max-width:575.98px){.tutor-wp-dashboard-course-filter{flex-direction:column;gap:16px}}body:not(.rtl) .tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-right.tutor-flex-column .tutor-wp-dashboard-filter-tag-dropdown:last-child .tutor-form-select-dropdown{left:auto;right:0}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-order{color:#9197a8;border:1px solid var(--tutor-border-color);cursor:pointer;background-color:#fff;border-radius:6px;padding:12px;font-size:14px;line-height:1.5;transition:all .25s ease-in-out;display:flex}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-order i{transition:background-color .25s ease-in-out}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-order:hover{background-color:#f5f6fa;border-color:#9095a3}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-order:hover i{color:var(--tutor-color-primary)}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters{position:relative}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-button{color:#212327;border:1px solid var(--tutor-border-color);cursor:pointer;background-color:#fff;border-radius:6px;align-items:center;gap:8px;padding:6px 12px;font-size:14px;transition:all .25s ease-in-out;display:flex}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-button.active{padding:4px 6px 4px 12px}.rtl .tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-button.active{padding:4px 12px 4px 6px}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-button i{color:#9197a8;transition:background-color .25s ease-in-out}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-button:hover{background-color:#f5f6fa;border-color:#9095a3}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-button:hover i{color:var(--tutor-color-primary)}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-line{background:#e0e2ea;border-radius:4px;width:1px;height:24px}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters-count{width:30px;height:30px;color:var(--tutor-color-primary);background-color:#d2dbf5;border-radius:4px;justify-content:center;align-items:center;display:flex}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters .tutor-dropdown{border:none;border-radius:6px;min-width:266px;padding:16px;top:calc(100% + 2px)}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filters .tutor-form-label{margin-bottom:4px;font-weight:400}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-wrapper{align-items:center;gap:8px;display:flex}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-dropdown{background-color:#fff;border-radius:4px;align-items:center;display:flex}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-dropdown select.tutor-form-control{width:100px!important}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-dropdown .tutor-form-select{color:#41454f!important;background-color:transparent!important;border:none!important;border-radius:0!important;min-width:auto!important;font-size:14px!important;line-height:24px!important}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-dropdown a{color:#9197a8;width:40px;height:40px;transition:color .25 ease-in-out;border-left:1px solid #f5f5f5;flex-shrink:0;justify-content:center;align-items:center;font-size:14px;display:flex}.rtl .tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-dropdown a{border-left:none;border-right:1px solid #f5f5f5}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag-dropdown a:hover{color:var(--tutor-color-primary)}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag{color:var(--tutor-color-secondary);text-transform:capitalize;background-color:#fff;border-radius:4px;align-items:center;padding-left:12px;font-size:14px;line-height:18px;display:flex}.rtl .tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag{padding-left:0;padding-right:12px}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag a{color:#9197a8;width:40px;height:40px;transition:color .25 ease-in-out;border-left:1px solid #f5f5f5;justify-content:center;align-items:center;display:flex}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag a:hover{color:var(--tutor-color-primary)}.rtl .tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag a{border-left:none;border-right:1px solid #f5f5f5}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag .tutor-v2-date-picker input.tutor-form-control{background-color:transparent;width:90px;border:none!important;margin:0!important;padding:0!important;font-size:14px!important}.tutor-wp-dashboard-course-filter .tutor-wp-dashboard-filter-tag .tutor-v2-date-picker .tutor-form-icon{display:none}.tutor-course-details-header a{text-decoration:none}@media (min-width:992px){.tutor-course-details-title{max-width:80%}}.tutor-course-details-page-main .plyr--video,.tutor-course-details-page-main .tutor-course-thumbnail img,.tutor-course-details-page-main .tutor-video-player{border-radius:6px;overflow:hidden}@media (min-width:800px){.tutor-course-details-page .tutor-course-details-tab .tutor-is-sticky{-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);z-index:500;background:rgba(255,255,255,.6);position:-webkit-sticky;position:sticky;top:0}.admin-bar .tutor-course-details-tab .tutor-is-sticky{top:32px}}.tutor-course-details-widget ul{margin:0;padding:0}.tutor-course-details-widget-list{margin-top:16px}.tutor-course-details-widget-tags{margin-left:-16px}.tutor-course-details-widget-tags .tutor-tag-list li a{margin-bottom:16px}@media (min-width:768px){.tutor-course-details-widget-col-2 ul{flex-flow:wrap;justify-content:space-between;display:flex}.tutor-course-details-widget-col-2 ul>li{width:calc(50% - 1.2rem)}}.tutor-course-sidebar-card{border:1px solid var(--tutor-border-color);border-radius:6px;position:relative}.tutor-course-sidebar-card-footer{border-top:1px solid var(--tutor-border-color)}.tutor-course-sidebar-card-meta-list li>div{flex-basis:50%;justify-content:flex-start;max-width:50%}.tutor-course-sidebar-card-meta-list li:not(:last-child){margin-bottom:9px}.tutor-course-sidebar-card .tutor-alert .tutor-alert-text{align-items:flex-start}.tutor-course-sidebar-card .tutor-alert .tutor-alert-icon{margin-top:-4px}.tutor-course-sidebar-card-membership-plan{border-color:rgba(var(--tutor-color-primary),.2)}.tutor-course-sidebar-card-membership-plan-badge{position:absolute;top:-1px;right:30px}.tutor-course-sidebar-card-membership-plan-badge.badge-left{right:unset;left:30px}.tutor-course-sidebar-card-membership-plan.badge-triangle-ribbon{position:relative}.tutor-course-sidebar-card-membership-plan.badge-triangle-ribbon:before{content:"";color:#fff;-webkit-clip-path:polygon(100% 0,0 0,100% 100%);clip-path:polygon(100% 0,0 0,100% 100%);background:#3e64de url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.91728 2.33301C6.98861 2.33348 7.05929 2.34669 7.12598 2.37202C7.19764 2.39504 7.26396 2.43218 7.32103 2.48125C7.37943 2.53622 7.4259 2.60261 7.45756 2.6763L8.63177 5.06371L11.2884 5.45381C11.3645 5.46335 11.4377 5.4893 11.5029 5.52988C11.565 5.56953 11.6214 5.61743 11.6707 5.67227C11.7124 5.7317 11.744 5.7976 11.7643 5.86732C11.7833 5.93195 11.7931 5.99891 11.7935 6.06627C11.7945 6.13854 11.7784 6.21002 11.7467 6.27497C11.7144 6.33838 11.6722 6.3963 11.6219 6.44662L9.68894 8.33276L10.1454 10.9893C10.1601 11.0601 10.1601 11.1331 10.1454 11.2039C10.1292 11.2731 10.1015 11.339 10.0634 11.3989C10.0277 11.4611 9.97919 11.515 9.92105 11.5569C9.80242 11.6419 9.65634 11.6795 9.51144 11.6623C9.4421 11.6521 9.37565 11.6275 9.31639 11.5901L6.91728 10.3515L4.52596 11.5901C4.4667 11.6275 4.40025 11.6521 4.33091 11.6623C4.18602 11.6795 4.03993 11.6419 3.9213 11.5569C3.86317 11.515 3.81463 11.4611 3.77892 11.3989C3.74081 11.339 3.71311 11.2731 3.69699 11.2039C3.68227 11.1331 3.68227 11.0601 3.69699 10.9893L4.15341 8.33276L2.21266 6.45637C2.16394 6.40236 2.12381 6.34118 2.09368 6.27497C2.06362 6.20917 2.04578 6.13846 2.04102 6.06627C2.04088 5.99695 2.05074 5.92798 2.07027 5.86147C2.09099 5.79005 2.12618 5.72366 2.17365 5.66642C2.21755 5.61005 2.27103 5.56185 2.33164 5.52403C2.39717 5.48522 2.4704 5.46125 2.5462 5.45381L5.20278 5.06371L6.39259 2.66459C6.42351 2.59437 6.46945 2.53179 6.52717 2.48125C6.58425 2.43218 6.65057 2.39504 6.72223 2.37202C6.78461 2.34823 6.85054 2.33505 6.91728 2.33301V2.33301Z' fill='white'/%3E%3C/svg%3E%0A") 90% 10%/12px no-repeat;border-radius:0 5px 0 0;width:26px;height:26px;transition:all .2s;position:absolute;top:-1px;right:-1px}.tutor-course-sidebar-card-pick-plan-label{cursor:pointer;align-items:center;display:grid;position:relative}.tutor-course-sidebar-card-pick-plan-label input[type=radio]{border:2px solid var(--tutor-border-color);z-index:1;width:20px;height:20px;position:absolute;left:20px}.tutor-course-sidebar-card-pick-plan-label input[type=radio]:checked~.tutor-course-sidebar-card-pick-plan-input{background:rgba(var(--tutor-color-primary),.15);border-color:var(--tutor-color-primary)}.tutor-course-sidebar-card-pick-plan-label input[type=radio]:checked~.tutor-course-sidebar-card-pick-plan-input:before{opacity:1}.tutor-course-sidebar-card-pick-plan-input{grid-gap:10px;grid-template-columns:1fr auto;align-items:center;padding:16px 20px 16px 48px;transition:all .4s;display:grid;position:relative}.tutor-course-sidebar-card-pick-plan-input:before{content:"";color:#fff;-webkit-clip-path:polygon(100% 0,0 0,100% 100%);clip-path:polygon(100% 0,0 0,100% 100%);opacity:0;background:#3e64de url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.91728 2.33301C6.98861 2.33348 7.05929 2.34669 7.12598 2.37202C7.19764 2.39504 7.26396 2.43218 7.32103 2.48125C7.37943 2.53622 7.4259 2.60261 7.45756 2.6763L8.63177 5.06371L11.2884 5.45381C11.3645 5.46335 11.4377 5.4893 11.5029 5.52988C11.565 5.56953 11.6214 5.61743 11.6707 5.67227C11.7124 5.7317 11.744 5.7976 11.7643 5.86732C11.7833 5.93195 11.7931 5.99891 11.7935 6.06627C11.7945 6.13854 11.7784 6.21002 11.7467 6.27497C11.7144 6.33838 11.6722 6.3963 11.6219 6.44662L9.68894 8.33276L10.1454 10.9893C10.1601 11.0601 10.1601 11.1331 10.1454 11.2039C10.1292 11.2731 10.1015 11.339 10.0634 11.3989C10.0277 11.4611 9.97919 11.515 9.92105 11.5569C9.80242 11.6419 9.65634 11.6795 9.51144 11.6623C9.4421 11.6521 9.37565 11.6275 9.31639 11.5901L6.91728 10.3515L4.52596 11.5901C4.4667 11.6275 4.40025 11.6521 4.33091 11.6623C4.18602 11.6795 4.03993 11.6419 3.9213 11.5569C3.86317 11.515 3.81463 11.4611 3.77892 11.3989C3.74081 11.339 3.71311 11.2731 3.69699 11.2039C3.68227 11.1331 3.68227 11.0601 3.69699 10.9893L4.15341 8.33276L2.21266 6.45637C2.16394 6.40236 2.12381 6.34118 2.09368 6.27497C2.06362 6.20917 2.04578 6.13846 2.04102 6.06627C2.04088 5.99695 2.05074 5.92798 2.07027 5.86147C2.09099 5.79005 2.12618 5.72366 2.17365 5.66642C2.21755 5.61005 2.27103 5.56185 2.33164 5.52403C2.39717 5.48522 2.4704 5.46125 2.5462 5.45381L5.20278 5.06371L6.39259 2.66459C6.42351 2.59437 6.46945 2.53179 6.52717 2.48125C6.58425 2.43218 6.65057 2.39504 6.72223 2.37202C6.78461 2.34823 6.85054 2.33505 6.91728 2.33301V2.33301Z' fill='white'/%3E%3C/svg%3E%0A") 90% 10%/12px no-repeat;border-radius:0 5px 0 0;width:26px;height:26px;transition:all .2s;position:absolute;top:-1px;right:-1px}.tutor-course-sidebar-card-pick-plan.has-input-expandable .tutor-course-sidebar-card-pick-plan-label input[type=radio]{top:24px}.tutor-course-sidebar-card-pick-plan.has-input-expandable .tutor-course-sidebar-card-pick-plan-input{padding-left:16px;display:block}.tutor-course-sidebar-card-pick-plan.has-input-expandable .tutor-course-sidebar-card-pick-plan-input .input-plan{grid-gap:10px;grid-template-columns:1fr auto;align-items:center;padding:0 16px 0 40px;transition:all .4s;display:grid;position:relative}.tutor-course-sidebar-card-pick-plan.has-input-expandable .tutor-course-sidebar-card-pick-plan-input .input-plan-details{max-height:0;transition:max-height .25s linear;overflow:hidden}.tutor-course-sidebar-card-pick-plan.has-input-expandable .tutor-course-sidebar-card-pick-plan-input .input-plan-details>:first-child{margin-top:17px}.tutor-course-details-page ul.tutor-course-details-widget-list{padding:0;list-style:none}.tutor-course-details-page .tutor-course-thumbnail img{width:100%;max-height:100%}@media (min-width:992px){.tutor-course-details-page-main{grid-gap:32px;grid-template-columns:8fr 4fr;display:grid}}@media (min-width:1200px){.tutor-course-details-page-main{grid-gap:54px}}.tutor-course-content-list{margin:0 -16px;padding:0;list-style:none}.tutor-course-content-list-item{background-color:#fff;justify-content:space-between;align-items:start;gap:8px;padding:8px 16px;font-size:16px;transition:background-color .3s ease-in;display:flex}.tutor-course-content-list-item:last-child{border-radius:0 0 6px 6px}.tutor-course-content-list-item:hover{background-color:#eff1f6}.tutor-course-content-list-item-title{margin:0;padding:0;font-size:16px;font-weight:400;line-height:1.6}.tutor-course-content-list-item-title a{color:inherit}.tutor-course-content-list-item-icon{color:rgba(var(--tutor-body-color-rgb),.35)}.tutor-review-summary-average-rating{color:var(--tutor-body-color);font-size:80px;font-weight:500;line-height:81px}.tutor-review-summary-rating:not(:last-child){margin-bottom:8px}.tutor-quesanswer-askquestion textarea.tutor-form-control{min-height:72px}.tutor-quesanswer-commentlist{list-style:none}.tutor-quesanswer-commentlist .commentlist-comment{border-radius:6px;position:relative}.tutor-quesanswer-commentlist .commentlist-comment>*{z-index:1;position:relative}.tutor-quesanswer-commentlist .commentlist-comment:before{content:"";background:inherit;-webkit-clip-path:polygon(0% 0%,0% 100%,100% 0%);clip-path:polygon(0% 0%,0% 100%,100% 0%);border-radius:3px;width:20px;height:20px;position:absolute;top:-5px;left:15px;transform:rotate(45deg)}.tutor-quesanswer-commentlist .commentlist-comment:after{content:"";background:#fff;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-quesanswer-commentlist .commentlist-comment:before,.tutor-quesanswer-commentlist .commentlist-comment:after{opacity:.5}.tutor-quesanswer-commentlist-item-reply .commentlist-comment:before{left:unset;right:15px}.tutor-announcement{border:1px solid var(--tutor-border-color);border-radius:6px;overflow:hidden}.tutor-emptystate img{max-width:100%}.tutor-gradebook-finalgrade{box-sizing:border-box;background:#f6f8fd;border:1px solid #e9edfb;border-radius:6px}.tutor-gradebook-grade-badge{width:38px;height:38px;color:var(--tutor-color-primary);border:1px solid var(--tutor-color-primary);border-radius:100px;justify-content:center;align-items:center;font-size:16px;line-height:1.4px;display:inline-flex}.tutor-gradebook-grade-badge-lg{width:64px;height:64px;font-size:28px;font-weight:700}.tutor-course-card{height:100%}.tutor-course-card .tutor-card-body{flex-flow:column;display:flex}.tutor-course-card .tutor-course-bookmark{position:absolute;top:12px;right:12px}.tutor-course-card .tutor-course-co-author-badge{color:#fff;background:#3f51b5;border-radius:4px;padding:0 7px;font-size:10px;position:absolute;top:9px;right:10px}.tutor-course-card .tutor-course-difficulty-level{background:var(--tutor-color-primary);color:#fff;border-radius:50px;padding:4px 8px;font-size:12px;font-weight:500;line-height:1.4;position:absolute;top:12px;left:12px}.tutor-course-card .tutor-course-name{-webkit-line-clamp:3;text-overflow:ellipsis;white-space:normal;-webkit-box-orient:vertical;overflow:hidden;display:-webkit-box!important}.tutor-course-card .tutor-course-name,.tutor-course-card .tutor-course-name a{color:var(--tutor-body-color)}.tutor-course-card .tutor-course-name a:hover{color:var(--tutor-color-primary)}.tooltip-wrap{cursor:pointer;display:inline-block;position:relative}.tooltip-wrap.tooltip-icon{color:var(--tutor-color-muted);margin-left:4px}.tooltip-wrap.tooltip-icon:after{content:"";font-family:tutor}.tooltip-wrap.tutor-d-block{display:block!important}.tooltip-wrap.tutor-d-flex{display:flex!important}.tooltip-wrap .tooltip-txt{background:var(--tutor-body-color);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:208px;color:var(--tutor-color-white);text-align:center;z-index:100;opacity:0;visibility:hidden;border-radius:10px;padding:10px 15px;transition:all .2s ease-in;position:absolute}.tooltip-wrap .tooltip-txt:after{content:"";border:5px solid transparent;position:absolute}.tooltip-wrap:hover .tooltip-txt{opacity:1;visibility:visible;-webkit-filter:blur();filter:blur()}.tooltip-wrap .tooltip-top{bottom:calc(100% + 8px)}.tooltip-wrap .tooltip-top:after{border-top-color:var(--tutor-body-color);margin-left:-5px;top:100%;left:50%}.tooltip-wrap .tooltip-bottom{top:calc(100% + 8px)}.tooltip-wrap .tooltip-bottom:after{border-bottom-color:var(--tutor-body-color);margin-left:-5px;bottom:100%;left:50%}.tooltip-wrap .tooltip-top,.tooltip-wrap .tooltip-bottom{left:50%;transform:translate(-50%)}.tooltip-wrap .tooltip-left,.tooltip-wrap .tooltip-right{top:-5px}.tooltip-wrap .tooltip-left:after,.tooltip-wrap .tooltip-right:after{margin-top:-5px;top:18px}.tooltip-wrap .tooltip-left.arrow-center,.tooltip-wrap .tooltip-right.arrow-center{top:50%;transform:translateY(-50%)}.tooltip-wrap .tooltip-left.arrow-center:after,.tooltip-wrap .tooltip-right.arrow-center:after{margin-top:unset;top:50%;transform:translateY(-50%)}.tooltip-wrap .tooltip-right{left:calc(100% + 8px)}.tooltip-wrap .tooltip-right:after{border-right-color:var(--tutor-body-color);right:100%}.tooltip-wrap .tooltip-left{right:calc(100% + 8px)}.tooltip-wrap .tooltip-left:after{border-left-color:var(--tutor-body-color);left:100%}.tooltip-wrap .tooltip-top{transform:translate(-50%)translateY(-2px)}.tooltip-wrap .tooltip-bottom{transform:translate(-50%)translateY(2px)}.tooltip-wrap .tooltip-right{transform:translate(2px)}.tooltip-wrap .tooltip-left{transform:translate(-2px)}.tooltip-wrap:hover .tooltip-top,.tooltip-wrap:hover .tooltip-bottom{transform:translate(-50%)translateY(0)}.tooltip-wrap:hover .tooltip-right,.tooltip-wrap:hover .tooltip-left{transform:translate(0)}.tooltip-wrap:hover .arrow-center.tooltip-right,.tooltip-wrap:hover .arrow-center.tooltip-left{transform:translateY(-50%)translate(0)}.tooltip-wrap .arrow-center.tooltip-right{transform:translateY(-50%)translate(2px)}.tooltip-wrap .arrow-center.tooltip-left{transform:translateY(-50%)translate(-2px)}.tutor-download-certificate{max-width:750px;margin:auto;display:grid}.tutor-certificate-demo{max-width:730px;height:auto;overflow:hidden}.tutor-certificate-demo img{width:100%}.tutor-certificate-info{grid-template-columns:repeat(4,1fr);display:grid}@media (max-width:650px){.tutor-certificate-info{grid-template-columns:repeat(2,1fr)}.tutor-certificate-info .tutor-info-issued,.tutor-certificate-info .tutor-info-issued-date{padding-top:10px}.tutor-certificate-info .tutor-info-id-name,.tutor-certificate-info .tutor-info-expiration-name,.tutor-certificate-info .tutor-info-issued-name,.tutor-certificate-info .tutor-info-date-name{font-size:13px}.tutor-certificate-info .tutor-info-id-details,.tutor-certificate-info .tutor-info-expiration-value,.tutor-certificate-info .tutor-info-issued-value,.tutor-certificate-info .tutor-info-date-details{font-size:18px}}@media (max-width:400px){.tutor-certificate-info{grid-template-columns:repeat(1,1fr)}.tutor-certificate-info .tutor-info-expiration{padding-top:10px}}.tutor-dc-button-group{position:absolute;top:210px;right:20px}@media (min-width:992px){.tutor-download-certificate{padding-top:100px;padding-bottom:200px}}@media (min-width:992px) and (max-width:1200px){.tutor-dc-button-group{top:200px}}@media (max-width:991px){.tutor-dc-button-group{top:125px;right:0}}@media (min-width:768px) and (max-width:1200px){.tutor-certificate-demo{max-width:570px}}@media (min-width:577px) and (max-width:767px){.tutor-certificate-demo{max-width:420px}}@media (max-width:576px){.tutor-certificate-demo{max-width:82%}}.tutor-dc-button-group .tooltip-txt.tooltip-left{top:unset;right:calc(100% + 19px)}.tutor-app-process-image{max-width:920px;height:auto;overflow:hidden}.tutor-app-process-image img{border-radius:10px;width:100%}.tutor-ins-app-title{max-width:570px}@media (max-width:767px){span.tutor-app-process-title{font-size:28px}span.tutor-app-process-subtitle{font-size:16px}}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before{content:"";border:3px solid #ccc;border-width:3px 3px 0 0;width:9px;height:9px;display:block;position:absolute;top:6px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{width:0;margin-left:-4px;position:absolute}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{box-sizing:content-box;content:"";z-index:-1;border:8px solid transparent;width:1px;height:0;position:absolute;left:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-top:-8px;top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#aeaeae;top:-1px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{margin-bottom:-8px;bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{border-top-color:#fff;border-bottom:none}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{border-top-color:#aeaeae;bottom:-1px}.react-datepicker-wrapper{border:0;width:100%;padding:0;display:inline-block}.react-datepicker{color:#000;background-color:#fff;border:1px solid #aeaeae;border-radius:.3rem;font-family:Helvetica Neue,helvetica,arial,sans-serif;font-size:.8rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{padding-top:10px}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=top]{padding-bottom:10px}.react-datepicker-popper[data-placement^=right]{padding-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{padding-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;padding:8px 0;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-left-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-right-radius:.3rem}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{margin:0 2px;display:inline-block}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{color:#000;margin-top:0;font-size:.944rem;font-weight:700}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{text-align:center;cursor:pointer;z-index:1;text-indent:-999em;background:0 0;border:none;justify-content:center;align-items:center;width:32px;height:32px;padding:0;display:flex;position:absolute;top:2px;overflow:hidden}.react-datepicker__navigation--previous{left:2px}.react-datepicker__navigation--next{right:2px}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:85px}.react-datepicker__navigation--years{margin-left:auto;margin-right:auto;display:block;position:relative;top:0}.react-datepicker__navigation--years-previous{top:4px}.react-datepicker__navigation--years-upcoming{top:-4px}.react-datepicker__navigation:hover :before{border-color:#a6a6a6}.react-datepicker__navigation-icon{width:0;font-size:20px;position:relative;top:-1px}.react-datepicker__navigation-icon--next{left:-2px}.react-datepicker__navigation-icon--next:before{left:-7px;transform:rotate(45deg)}.react-datepicker__navigation-icon--previous{right:-2px}.react-datepicker__navigation-icon--previous:before{right:-7px;transform:rotate(225deg)}.tutor-react-datepicker .react-datepicker-popper{z-index:99999}.tutor-react-datepicker .datepicker-header-custom{justify-content:space-between;gap:2px;margin:0;display:flex}.tutor-react-datepicker .dropdown-container{position:relative}.tutor-react-datepicker .dropdown-container .dropdown-label{color:var(--tutor-body-color);cursor:pointer;border-radius:8px;align-items:center;padding:8px 10px;font-size:20px;font-weight:500;line-height:140%;display:flex}.tutor-react-datepicker .dropdown-container .dropdown-label:hover{color:var(--tutor-color-primary);background:rgba(var(--tutor-color-primary-rgb),.15)}.tutor-react-datepicker .dropdown-container .dropdown-label:hover>svg path{stroke:var(--tutor-color-primary)}.tutor-react-datepicker .dropdown-container>ul{margin:0;padding:0;list-style:none}.tutor-react-datepicker .dropdown-container .dropdown-list{text-align:left;box-sizing:border-box;z-index:9;opacity:0;visibility:hidden;--scrollbarBG:rgba(205,207,213,0);--thumbBG:#d2dbf5;scrollbar-width:thin;scrollbar-color:var(--thumbBG)var(--scrollbarBG);background:#fff;border:1px solid #e0e2ea;border-radius:6px;min-width:71px;max-width:112px;min-height:200px;max-height:258px;transition:all .2s ease-out;position:absolute;top:calc(100% - 8px);left:50%;overflow-y:auto;transform:translate(-50%)translateY(-4px);box-shadow:0 10px 14px rgba(0,0,0,.12)}.tutor-react-datepicker .dropdown-container .dropdown-list::-webkit-scrollbar{width:4px}.tutor-react-datepicker .dropdown-container .dropdown-list::-webkit-scrollbar-track{background:var(--scrollbarBG)}.tutor-react-datepicker .dropdown-container .dropdown-list::-webkit-scrollbar-thumb{background-color:var(--thumbBG);border-radius:30px}.tutor-react-datepicker .dropdown-container .dropdown-list li{color:var(--tutor-body-color);padding:4px 10px;font-size:15px;font-weight:400;line-height:160%}.tutor-react-datepicker .dropdown-container .dropdown-list li:hover{color:var(--tutor-color-primary);cursor:pointer;background:#f6f8fd}.tutor-react-datepicker .dropdown-container .dropdown-list li.is-current{color:#fff;background:var(--tutor-color-primary)}.tutor-react-datepicker .dropdown-container.dropdown-months .dropdown-list li{padding:4px 14px}.tutor-react-datepicker .dropdown-container.is-active .dropdown-list{opacity:1;visibility:visible;transform:translate(-50%)translateY(0)}.tutor-react-datepicker .dropdown-container.is-active .dropdown-label{color:var(--tutor-color-primary);background:rgba(var(--tutor-color-primary-rgb),.15)}.tutor-react-datepicker .dropdown-container.is-active .dropdown-label>svg path{stroke:var(--tutor-color-primary)}.tutor-react-datepicker .navigation-icon{gap:2px;display:flex}.tutor-react-datepicker .navigation-icon button{cursor:pointer;background:0 0;border:none;outline:none;align-items:center;width:36px;height:36px;padding:0;display:flex;position:relative}.tutor-react-datepicker .navigation-icon button:hover>svg path{fill:var(--tutor-color-primary)}.tutor-react-datepicker .react-datepicker{border:1px solid var(--tutor-border-color);box-sizing:border-box;background:#fff;border-radius:6px;min-width:350px;display:flex;box-shadow:0 6px 20px rgba(28,49,104,.1)}.tutor-react-datepicker .react-datepicker__custom-wrapper{width:100%}.tutor-react-datepicker .react-datepicker__month-container{float:unset;width:100%;min-width:348px}.tutor-react-datepicker .react-datepicker__header{background:0 0;border-bottom:none;padding:0}.tutor-react-datepicker .react-datepicker__week:not(:first-child){margin-top:15px}.tutor-react-datepicker .react-datepicker__day-names,.tutor-react-datepicker .react-datepicker__week{justify-content:space-between;display:flex}.tutor-react-datepicker .react-datepicker__day-name{text-align:center;color:#9ca0ac;font-size:13px;font-weight:400;line-height:138%}.tutor-react-datepicker .react-datepicker__day{cursor:pointer;text-align:center;color:#41454f;border-radius:6px;justify-content:center;align-items:center;width:26px;height:26px;margin:0;padding:0;font-size:15px;font-weight:500;line-height:160%;transition:all .1s;display:flex}.tutor-react-datepicker .react-datepicker__day:not(:-webkit-any(.react-datepicker__day--keyboard-selected,.react-datepicker__day--selected,.react-datepicker__day--range-start,.react-datepicker__day--in-range)):hover{color:#41454f;background:#f6f8fd;box-shadow:0 0 0 1px #d2dbf5}.tutor-react-datepicker .react-datepicker__day:not(:-moz-any(.react-datepicker__day--keyboard-selected,.react-datepicker__day--selected,.react-datepicker__day--range-start,.react-datepicker__day--in-range)):hover{color:#41454f;background:#f6f8fd;box-shadow:0 0 0 1px #d2dbf5}.tutor-react-datepicker .react-datepicker__day:not(:is(.react-datepicker__day--keyboard-selected,.react-datepicker__day--selected,.react-datepicker__day--range-start,.react-datepicker__day--in-range)):hover{color:#41454f;background:#f6f8fd;box-shadow:0 0 0 1px #d2dbf5}.tutor-react-datepicker .react-datepicker__day--selected{background:var(--tutor-color-primary);color:#fff}.tutor-react-datepicker .react-datepicker__day--keyboard-selected{background:rgba(var(--tutor-color-primary-rgb),.8);color:#fff}.tutor-react-datepicker .react-datepicker__day-names{margin:26px 0 0}.tutor-react-datepicker .react-datepicker__day--outside-month,.tutor-react-datepicker .react-datepicker__day--disabled{color:#b4b7c0}.tutor-react-datepicker .react-datepicker__day-name,.tutor-react-datepicker .react-datepicker__month{margin:0;padding:0}.tutor-react-datepicker .react-datepicker__header,.tutor-react-datepicker .react-datepicker__month,.tutor-react-datepicker .react-datepicker__timepicker{padding:10px 20px}.tutor-react-datepicker .react-datepicker__month{padding-bottom:20px}.tutor-react-datepicker .react-datepicker__time-container{float:unset;width:unset;border-left:1px solid #c0c3cb}.rtl .tutor-react-datepicker .react-datepicker__time-container{border-left:0;border-right:1px solid #c0c3cb}.tutor-react-datepicker .react-datepicker__time-container .react-datepicker-time__input{margin-left:0}.tutor-react-datepicker .react-datepicker__time-container .react-datepicker-time__input>input{box-sizing:border-box;color:#212327;background:#fff;border:1px solid #c0c3cb;border-radius:6px;height:40px;padding:4px 10px;font-size:16px;font-weight:400;line-height:162%;transition:all .2s ease-out}.tutor-react-datepicker .react-datepicker__time-container .react-datepicker-time__input>input::-webkit-calendar-picker-indicator{justify-content:center;align-items:center;margin-left:20px;padding:0;font-size:24px;display:flex}.tutor-react-datepicker .react-datepicker__time-container .react-datepicker-time__input>input:focus-visible{border-color:var(--tutor-color-primary);outline:none}.tutor-react-datepicker .react-datepicker__time-container .react-datepicker-time__caption{display:none}.tutor-react-datepicker .react-datepicker__time-list{overflow:auto;height:calc(276px + .85rem)!important}.tutor-react-datepicker .react-datepicker__time-list-item{height:40px!important;padding:11px 10px!important}.tutor-react-datepicker__selects-range .react-datepicker__navigation{--pd:15px;top:18px}.tutor-react-datepicker__selects-range .react-datepicker__navigation--next{right:var(--pd)}.tutor-react-datepicker__selects-range .react-datepicker__navigation--previous{left:var(--pd)}.tutor-react-datepicker__selects-range .react-datepicker__navigation:hover :before{border-color:var(--tutor-color-primary)}.tutor-react-datepicker__selects-range .react-datepicker__day{z-index:1;position:relative}.tutor-react-datepicker__selects-range .react-datepicker__day:before{content:"";z-index:-1;opacity:0;background:#f6f8fd;transition:all .1s;position:absolute;top:1px;bottom:1px;left:-50%;right:-50%;box-shadow:0 1px #d2dbf5,0 -1px #d2dbf5}.tutor-react-datepicker__selects-range .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--selecting-range-start){color:#41454f;background:#f6f8fd;box-shadow:0 0 0 1px #d2dbf5}.tutor-react-datepicker__selects-range .react-datepicker__day--range-start,.tutor-react-datepicker__selects-range .react-datepicker__day--range-end{background:var(--tutor-color-primary);color:#fff}.tutor-react-datepicker__selects-range .react-datepicker__day--range-start:after,.tutor-react-datepicker__selects-range .react-datepicker__day--range-end:after{content:"";z-index:-1;background:var(--tutor-color-primary);border-radius:6px;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-react-datepicker__selects-range .react-datepicker__day--in-range:before{opacity:1}.tutor-react-datepicker__selects-range .react-datepicker__day--in-range__day--range-start,.tutor-react-datepicker__selects-range .react-datepicker__day--in-range__day--range-end{background:var(--tutor-color-primary);color:#fff}.tutor-react-datepicker__selects-range .react-datepicker__day--in-range:first-child:before{left:0}.tutor-react-datepicker__selects-range .react-datepicker__day--in-range:last-child:before{right:0}.tutor-react-datepicker__selects-range .react-datepicker__day--range-start.react-datepicker__day--in-range:before{left:50%}.tutor-react-datepicker__selects-range .react-datepicker__day--range-end.react-datepicker__day--in-range:before{right:50%}.tutor-react-datepicker__selects-range .react-datepicker__header{padding:20px 20px 10px}.tutor-react-datepicker__selects-range .react-datepicker__current-month{text-align:center;color:#212327;font-size:16px;font-weight:500;line-height:26px}.tutor-react-datepicker__selects-range .react-datepicker__custom-footer{color:#9ca0ac;border-top:1px solid #e3e6eb;justify-content:space-between;align-items:center;padding:15px 24px;font-size:13px;font-weight:500;line-height:162%;display:flex}.tutor-react-datepicker__selects-range .react-datepicker__custom-footer .tutor-btns{grid-gap:10px;align-items:center;display:flex}.tutor-react-datepicker__selects-range .react-datepicker__custom-footer .tutor-btn:not(.tutor-btn-icon).tutor-btn-md{padding:7px 16.8px}.tutor-screen-frontend-dashboard .tutor-react-datepicker .react-datepicker__input-container input:focus{border-color:var(--tutor-color-primary)}.react-datepicker__input-container{position:relative}.react-datepicker__input-container .react-datepicker__close-icon{cursor:pointer;--color:#b3b3b3;color:#fff;border:none;border-radius:50%;outline:0;justify-content:center;align-items:center;width:20px;height:20px;display:flex;position:absolute;top:50%;right:10px;transform:translateY(-50%);background:var(--color)!important;border-color:var(--color)!important;padding:0!important}.rtl .react-datepicker__input-container .react-datepicker__close-icon{left:10px;right:auto}.react-datepicker__input-container .react-datepicker__close-icon:hover{--color:gray;background:var(--color)!important;border-color:var(--color)!important}.react-datepicker__input-container .react-datepicker__close-icon:after{content:"×";margin-top:-2px}.tutor-pagination{border:1px solid var(--tutor-border-color);background:0 0;border-radius:6px;flex-direction:column;justify-content:space-between;align-items:center;padding:7px 18px;display:flex}@media (min-width:768px){.tutor-pagination{flex-direction:row}}.tutor-pagination ul.tutor-pagination-numbers{align-items:center;gap:11px;margin:0;padding:0;list-style:none;display:flex}@media (max-width:767.98px){.tutor-pagination ul.tutor-pagination-numbers{gap:10px;margin-top:10px}}.tutor-pagination ul.tutor-pagination-numbers a{color:inherit;text-decoration:none}.tutor-pagination ul.tutor-pagination-numbers .page-numbers{color:var(--tutor-body-color);justify-content:center;align-items:center;padding:0 5px;display:flex;position:relative}.tutor-pagination ul.tutor-pagination-numbers .page-numbers:hover{color:var(--tutor-color-primary)}.tutor-pagination ul.tutor-pagination-numbers .page-numbers a{padding:1px 6px}.tutor-pagination ul.tutor-pagination-numbers .page-numbers.prev,.tutor-pagination ul.tutor-pagination-numbers .page-numbers.next{background:rgba(var(--tutor-color-primary-rgb),.1);border-radius:6px;justify-content:center;align-items:center;width:32px;height:32px;padding:0;transition:all .15s linear;display:flex}.tutor-pagination ul.tutor-pagination-numbers .page-numbers.prev:hover,.tutor-pagination ul.tutor-pagination-numbers .page-numbers.next:hover{color:var(--tutor-color-white);background:var(--tutor-color-primary)}@media (min-width:1200px){.tutor-pagination ul.tutor-pagination-numbers .page-numbers{--margin:32px}.tutor-pagination ul.tutor-pagination-numbers .page-numbers.prev{margin-right:var(--margin)}.tutor-pagination ul.tutor-pagination-numbers .page-numbers.next{margin-left:var(--margin)}}.tutor-pagination ul.tutor-pagination-numbers .page-numbers:before{content:"";background:var(--tutor-color-primary);transform-origin:bottom;width:100%;height:2px;transition:transform .1s linear;position:absolute;bottom:-12px;left:0;transform:scaleY(0)}.tutor-pagination ul.tutor-pagination-numbers .page-numbers.current{color:var(--tutor-color-primary)}.tutor-pagination ul.tutor-pagination-numbers .page-numbers.current:before{transform:scaleY(1)}.tutor-pagination[data-tutor_pagination_ajax]{position:relative}.tutor-pagination[data-tutor_pagination_ajax]:not(.is-ajax-pagination-enabled):before{content:"";z-index:99;border-radius:inherit;opacity:.03;background:#000;display:block;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-dropdown-select{display:flex;position:relative}.tutor-dropdown-select label{cursor:pointer}.tutor-dropdown-select input[type=radio]{display:none}.tutor-dropdown-select h3,.tutor-dropdown-select h5{margin:0!important}.tutor-dropdown-select-options-container{z-index:10;border:1px solid var(--tutor-border-color);opacity:0;visibility:hidden;background:#fff;border-radius:6px;order:1;width:100%;max-height:290px;transition:all .1s;position:absolute;top:calc(100% + 5px);overflow-y:auto;box-shadow:0 6px 20px rgba(28,49,104,.1)}.tutor-dropdown-select-options-container.is-active{opacity:1;visibility:visible}.tutor-dropdown-select-options-container.is-active+.tutor-dropdown-select-selected:after{transform:translateY(-50%)rotate(-180deg)}.tutor-dropdown-select-selected{border:1px solid var(--tutor-border-color);background:#fff;border-radius:6px;order:0;width:100%;margin-bottom:12px;position:relative}.tutor-dropdown-select-selected:after{content:"";color:#7a7a7a;transition:transform .2s linear;position:absolute;top:50%;right:8px;transform:translateY(-50%);font-family:tutor!important}.tutor-dropdown-select-option{cursor:pointer;padding:8px 19px}.tutor-dropdown-select-option:hover{background:#eff1f6}.tutor-dropdown-select-option:last-child{border-top:1px solid #cdcfd5}.tutor-dropdown-select-selected{cursor:pointer;padding:10px 16px;font-size:16px;font-weight:400;line-height:1.4}.tutor-dropdown-select-selected>div:first-child{color:var(--tutor-body-color)}.tutor-dropdown-select-options-container.is-active+.tutor-dropdown-select-selected{border-color:var(--tutor-color-primary)}.tutor-form-group-select-sm .tutor-dropdown-select{height:40px}.tutor-form-group-select-md .tutor-dropdown-select{height:48px}.tutor-form-group-select-lg .tutor-dropdown-select{height:54px}.tutor-dropdown{background-color:var(--tutor-color-white);border:1px solid var(--tutor-border-color);z-index:1025;border-radius:4px;padding:8px 0;list-style:none;display:none;position:absolute;top:calc(100% - 4px);right:0;box-shadow:0 6px 20px rgba(28,49,104,.1)}.tutor-dropdown>li{margin:0;padding:0}.tutor-dropdown-item{color:var(--tutor-color-secondary);white-space:nowrap;background-color:transparent;padding:8px 16px;font-size:16px;font-weight:500;text-decoration:none;display:block}.tutor-dropdown-item:hover,.tutor-dropdown-item:focus,.tutor-dropdown-item.is-active{color:var(--tutor-color-primary);background-color:rgba(var(--tutor-color-primary-rgb),.1)}.tutor-dropdown-dark{background-color:#212327;border:1px solid #212327}.tutor-dropdown-dark .tutor-dropdown-item,.tutor-dropdown-dark .tutor-dropdown-item:hover,.tutor-dropdown-dark .tutor-dropdown-item:focus{color:#fff}.tutor-dropdown-dark .tutor-dropdown-item:hover,.tutor-dropdown-dark .tutor-dropdown-item:focus{background-color:#41454f}.tutor-dropdown-dark .tutor-dropdown-item.is-active{color:#fff;background-color:#41454f}.tutor-dropdown-parent{position:relative}.tutor-dropdown-parent.is-open .tutor-dropdown{display:block}.tutor-notification{border:1px solid var(--tutor-border-color);box-sizing:border-box;overflow-wrap:anywhere;background:var(--tutor-color-white);border-radius:10px;align-items:center;width:340px;padding:16px 20px;display:flex;position:relative}.tutor-notification.tutor-bg-primary{border-color:var(--tutor-color-primary)}.tutor-notification.tutor-bg-success{border-color:var(--tutor-color-success)}.tutor-notification.tutor-bg-warning{border-color:var(--tutor-color-warning)}.tutor-notification.tutor-bg-danger{border-color:var(--tutor-color-color)}.tutor-notification-icon{color:var(--tutor-color-primary);margin-right:16px;font-size:32px}.tutor-notification-content{color:var(--tutor-color-muted);flex-grow:1;font-size:14px;line-height:18px}.tutor-notification-content h5{color:var(--tutor-color-primary);margin:0;font-size:16px;font-weight:500;line-height:26px}.tutor-notification-content p{margin:0}.tutor-notification-close{color:var(--tutor-border-color);cursor:pointer;background:0 0;border:none;outline:none;padding:5px;transition:all .2s;position:absolute;top:6px;right:6px}.tutor-notification-close:hover{color:var(--tutor-body-color)}.tutor-notification-close span{font-size:16px;display:block}.tutor-alert{grid-gap:24px;background:var(--tutor-color-white);border:1px solid var(--tutor-border-color);border-radius:6px;margin-bottom:16px;padding:13px 16px;font-size:16px;display:grid}@media (min-width:576px){.tutor-alert{grid-template-columns:1fr auto}}.tutor-alert.tutor-primary{color:#41454f;border:1px solid rgba(var(--tutor-color-primary-rgb),.7);background:#fff}.tutor-alert.tutor-primary .tutor-alert-icon{color:var(--tutor-color-primary)}.tutor-alert.tutor-primary .tutor-btn:not(.tutor-btn-outline-primary){color:var(--tutor-color-primary);background:rgba(var(--tutor-color-primary-rgb),.15);border:1px solid rgba(var(--tutor-color-primary-rgb),.3)}.tutor-alert.tutor-success{color:#41454f;border:1px solid rgba(var(--tutor-color-success-rgb),.7);background:#fff}.tutor-alert.tutor-success .tutor-alert-icon{color:var(--tutor-color-success)}.tutor-alert.tutor-success .tutor-btn:not(.tutor-btn-outline-primary){color:var(--tutor-color-success);background:rgba(var(--tutor-color-success-rgb),.15);border:1px solid rgba(var(--tutor-color-success-rgb),.3)}.tutor-alert.tutor-danger{color:#41454f;border:1px solid rgba(var(--tutor-color-danger-rgb),.7);background:#fff}.tutor-alert.tutor-danger .tutor-alert-icon{color:var(--tutor-color-danger)}.tutor-alert.tutor-danger .tutor-btn:not(.tutor-btn-outline-primary){color:var(--tutor-color-danger);background:rgba(var(--tutor-color-danger-rgb),.15);border:1px solid rgba(var(--tutor-color-danger-rgb),.3)}.tutor-alert.tutor-warning{color:#41454f;border:1px solid rgba(var(--tutor-color-warning-rgb),.7);background:#fff}.tutor-alert.tutor-warning .tutor-alert-icon{color:var(--tutor-color-warning)}.tutor-alert.tutor-warning .tutor-btn:not(.tutor-btn-outline-primary){color:var(--tutor-color-warning);background:rgba(var(--tutor-color-warning-rgb),.15);border:1px solid rgba(var(--tutor-color-warning-rgb),.3)}.tutor-alert .tutor-alert-text{color:var(--tutor-color-secondary);display:flex}@media (min-width:768px){.tutor-alert .tutor-alert-text{align-items:center}}.tutor-alert .alert-btn-group{grid-gap:10px;justify-self:flex-end;align-items:center;display:flex}.tutor-alert .tutor-btn:not(.tutor-btn-icon).tutor-btn-sm{padding:7.5px 13px}.tutor-alert .tutor-btn.tutor-btn-outline-primary{border-color:var(--tutor-border-color)}.tutor-alert .tutor-alert-close{cursor:pointer}@media (max-width:575.98px){.tutor-alert .tutor-alert-close{display:none}}.tutor-large-notification{-webkit-backdrop-filter:blur(24px);backdrop-filter:blur(24px);border:1px solid var(--tutor-border-color);background:#fff;display:flex;position:relative;box-shadow:0 2px 4px rgba(0,0,0,.05)}@media (min-width:1200px){.tutor-large-notification{padding-right:90px}}.tutor-large-notification-icon{margin-right:20px;font-size:32px}.tutor-large-notification-btns .tutor-btn:not(.tutor-btn-icon).tutor-btn-sm{padding:8px 12px}.tutor-large-notification-btns>:not(:last-child){margin-right:10px}.tutor-large-notification .tutor-noti-close{cursor:pointer;position:absolute;top:16px;right:13px}.tutor-large-notification.tutor-large-notification-primary .tutor-large-notification-icon,.tutor-large-notification.tutor-large-notification-primary .tutor-large-notification-title{color:var(--tutor-color-primary)}.tutor-large-notification.tutor-large-notification-primary .tutor-btn:not(.tutor-is-outline).tutor-btn-secondary{border-color:rgba(var(--tutor-color-primary-rgb),.3);background:rgba(var(--tutor-color-primary-rgb),.15);color:var(--tutor-color-primary)}.tutor-large-notification.tutor-large-notification-success .tutor-large-notification-icon,.tutor-large-notification.tutor-large-notification-success .tutor-large-notification-title{color:var(--tutor-color-success)}.tutor-large-notification.tutor-large-notification-success .tutor-btn:not(.tutor-is-outline).tutor-btn-secondary{border-color:rgba(var(--tutor-color-success-rgb),.3);background:rgba(var(--tutor-color-success-rgb),.15);color:var(--tutor-color-success)}.tutor-large-notification.tutor-large-notification-warning .tutor-large-notification-icon,.tutor-large-notification.tutor-large-notification-warning .tutor-large-notification-title{color:var(--tutor-color-warning)}.tutor-large-notification.tutor-large-notification-warning .tutor-btn:not(.tutor-is-outline).tutor-btn-secondary{border-color:rgba(var(--tutor-color-warning-rgb),.3);background:rgba(var(--tutor-color-warning-rgb),.15);color:var(--tutor-color-warning)}.tutor-large-notification.tutor-large-notification-danger .tutor-large-notification-icon,.tutor-large-notification.tutor-large-notification-danger .tutor-large-notification-title{color:var(--tutor-color-danger)}.tutor-large-notification.tutor-large-notification-danger .tutor-btn:not(.tutor-is-outline).tutor-btn-secondary{border-color:rgba(var(--tutor-color-danger-rgb),.3);background:rgba(var(--tutor-color-danger-rgb),.15);color:var(--tutor-color-danger)}.tutor-nav{flex-wrap:wrap;margin:0;padding:0;list-style:none;display:flex}.tutor-nav>li{margin:0;padding:0;line-height:1.6;position:relative}.tutor-nav-link{color:var(--tutor-color-secondary);cursor:pointer;align-items:center;padding:8px 20px;font-size:16px;font-weight:400;display:flex}.tutor-nav-link,.tutor-nav-link:focus,.tutor-nav-link:hover,.tutor-nav-link:active{box-shadow:none;background:0 0;outline:0;line-height:1.6;text-decoration:none}.tutor-nav-link:hover,.tutor-nav-link.is-active{color:var(--tutor-color-primary)}.tutor-nav .tutor-nav-more{margin-left:auto!important}.tutor-nav .tutor-nav-more-icon{color:var(--tutor-color-primary);margin-left:4px;font-size:12px;transition:transform .2s ease-in;transform:rotate(-45deg)}.tutor-nav .tutor-nav-more.tutor-nav-opened .tutor-dropdown{display:block}.tutor-nav .tutor-nav-more.tutor-nav-opened .tutor-nav-more-icon{transform:rotate(0)}.tutor-nav:not(.tutor-nav-pills):not(.tutor-nav-tabs){border-bottom:1px solid var(--tutor-border-color)}.tutor-nav:not(.tutor-nav-pills):not(.tutor-nav-tabs) .tutor-nav-link{border-bottom:2px solid transparent;margin-bottom:-1px}.tutor-nav:not(.tutor-nav-pills):not(.tutor-nav-tabs) .tutor-nav-link.is-active{border-bottom-color:var(--tutor-color-primary)}.tutor-nav-pills{border-bottom:0}.tutor-nav-pills .tutor-nav-item:not(:last-child){margin-right:4px}.tutor-nav-pills .tutor-nav-link{border-radius:6px}.tutor-nav-pills .tutor-nav-link:hover{color:var(--tutor-color-secondary);background-color:#edf0f9}.tutor-nav-pills .tutor-nav-link.is-active{background-color:var(--tutor-color-primary);color:#fff;margin-bottom:0}.tutor-nav-tabs{background-color:#fafafb;border-bottom:1px solid #cdcfd5;border-radius:6px 6px 0 0}.tutor-nav-tabs .tutor-nav-link{border-right:1px solid var(--tutor-border-color);border-top:2px solid transparent;border-bottom:1px solid var(--tutor-border-color);flex-direction:column;justify-content:center;align-items:flex-start;width:100%;margin-top:-1px;margin-bottom:-1px;padding:16px 32px;position:relative}.tutor-nav-tabs .tutor-nav-link.is-active{border-top-color:var(--tutor-color-primary);background-color:#fff;border-bottom-color:#fff}.tutor-nav-tabs .tutor-nav-item{flex:auto;align-items:stretch;display:flex}.tutor-nav-tabs .tutor-nav-item:first-child .tutor-nav-link{border-radius:5px 0 0}.tutor-nav-tabs .tutor-nav-item:last-child .tutor-nav-link{border-right:0;border-radius:0 5px 0 0}.tutor-nav-tabs-container{border:1px solid var(--tutor-border-color);background-color:#fff;border-radius:6px}.tutor-nav-v{border-bottom:0;flex-direction:column}.tutor-nav-v .tutor-nav-item{margin-right:0}.tutor-nav-v .tutor-nav-item:not(:last-child){margin-bottom:4px}.tutor-nav-admin{border-bottom:0!important}.tutor-nav-admin .tutor-nav-item{margin:0}.tutor-nav-admin .tutor-nav-link{padding:20px 16px}.tutor-tab-item:not(.is-active){display:none}.tutor-widget-title{color:var(--tutor-body-color);margin:0 0 24px;font-size:20px;font-weight:500}.tutor-list{margin:0;padding:0;list-style:none}.tutor-list-item{color:var(--tutor-body-color);font-size:16px;text-decoration:none;display:block;position:relative}.tutor-list-item:not(:last-child){margin-bottom:16px}.tutor-list-item label{cursor:pointer;align-items:center;margin:0;padding:0;display:flex}.tutor-list-item label input[type=checkbox]{margin-right:16px}.tutor-progress-bar{background:#e3e5eb;border-radius:10px;width:100%;height:4px;position:relative;overflow:hidden}.tutor-progress-value{background:var(--tutor-color-primary);width:var(--tutor-progress-value);height:100%;position:absolute}.tutor-progress-circle{--w:24px;--pd:3px;width:var(--w);height:var(--w);padding:var(--pd);background:conic-gradient(var(--tutor-color-primary)var(--pro),0,rgba(var(--tutor-color-primary-rgb),.15)100%);border-radius:50%;position:relative}.tutor-progress-circle:before{content:"";inset:calc(0% + var(--pd));background:#fff;border-radius:50%;position:absolute!important}
/*! This file is auto-generated */
.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.wp-core-ui button::-moz-focus-inner,.wp-core-ui input[type=button]::-moz-focus-inner,.wp-core-ui input[type=reset]::-moz-focus-inner,.wp-core-ui input[type=submit]::-moz-focus-inner{border-width:0;border-style:none;padding:0}.wp-core-ui .button-group.button-large .button,.wp-core-ui .button.button-large{min-height:32px;line-height:2.30769231;padding:0 12px}.wp-core-ui .button-group.button-small .button,.wp-core-ui .button.button-small{min-height:26px;line-height:2.18181818;padding:0 8px;font-size:11px}.wp-core-ui .button-group.button-hero .button,.wp-core-ui .button.button-hero{font-size:14px;min-height:46px;line-height:3.14285714;padding:0 36px}.wp-core-ui .button.hidden{display:none}.wp-core-ui input[type=reset],.wp-core-ui input[type=reset]:active,.wp-core-ui input[type=reset]:focus,.wp-core-ui input[type=reset]:hover{background:0 0;border:none;box-shadow:none;padding:0 2px 1px;width:auto}.wp-core-ui .button,.wp-core-ui .button-secondary{color:#2271b1;border-color:#2271b1;background:#f6f7f7;vertical-align:top}.wp-core-ui p .button{vertical-align:baseline}.wp-core-ui .button-secondary:hover,.wp-core-ui .button.hover,.wp-core-ui .button:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}.wp-core-ui .button-secondary:focus,.wp-core-ui .button.focus,.wp-core-ui .button:focus{background:#f6f7f7;border-color:#3582c4;color:#0a4b78;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent;outline-offset:0}.wp-core-ui .button-secondary:active,.wp-core-ui .button:active{background:#f6f7f7;border-color:#8c8f94;box-shadow:none}.wp-core-ui .button.active,.wp-core-ui .button.active:hover{background-color:#dcdcde;color:#135e96;border-color:#0a4b78;box-shadow:inset 0 2px 5px -3px #0a4b78}.wp-core-ui .button.active:focus{border-color:#3582c4;box-shadow:inset 0 2px 5px -3px #0a4b78,0 0 0 1px #3582c4}.wp-core-ui .button-disabled,.wp-core-ui .button-secondary.disabled,.wp-core-ui .button-secondary:disabled,.wp-core-ui .button-secondary[disabled],.wp-core-ui .button.disabled,.wp-core-ui .button:disabled,.wp-core-ui .button[disabled]{color:#a7aaad!important;border-color:#dcdcde!important;background:#f6f7f7!important;box-shadow:none!important;cursor:default;transform:none!important}.wp-core-ui .button-secondary[aria-disabled=true],.wp-core-ui .button[aria-disabled=true]{cursor:default}.wp-core-ui .button-link{margin:0;padding:0;box-shadow:none;border:0;border-radius:0;background:0 0;cursor:pointer;text-align:left;color:#2271b1;text-decoration:underline;transition-property:border,background,color;transition-duration:.05s;transition-timing-function:ease-in-out}.wp-core-ui .button-link:active,.wp-core-ui .button-link:hover{color:#135e96}.wp-core-ui .button-link:focus{color:#043959;box-shadow:0 0 0 2px #2271b1;outline:2px solid transparent}.wp-core-ui .button-link-delete{color:#d63638}.wp-core-ui .button-link-delete:focus,.wp-core-ui .button-link-delete:hover{color:#d63638;background:0 0}.wp-core-ui .button-link-delete:disabled{background:0 0!important}.wp-core-ui .button-primary{background:#2271b1;border-color:#2271b1;color:#fff;text-decoration:none;text-shadow:none}.wp-core-ui .button-primary.focus,.wp-core-ui .button-primary.hover,.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:hover{background:#135e96;border-color:#135e96;color:#fff}.wp-core-ui .button-primary.focus,.wp-core-ui .button-primary:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px #2271b1}.wp-core-ui .button-primary.active,.wp-core-ui .button-primary.active:focus,.wp-core-ui .button-primary.active:hover,.wp-core-ui .button-primary:active{background:#135e96;border-color:#135e96;box-shadow:none;color:#fff}.wp-core-ui .button-primary-disabled,.wp-core-ui .button-primary.disabled,.wp-core-ui .button-primary:disabled,.wp-core-ui .button-primary[disabled]{color:#a7aaad!important;background:#f6f7f7!important;border-color:#dcdcde!important;box-shadow:none!important;text-shadow:none!important;cursor:default}.wp-core-ui .button-primary[aria-disabled=true]{cursor:default}.wp-core-ui .button-group{position:relative;display:inline-block;white-space:nowrap;font-size:0;vertical-align:middle}.wp-core-ui .button-group>.button{display:inline-block;border-radius:0;margin-right:-1px}.wp-core-ui .button-group>.button:first-child{border-radius:3px 0 0 3px}.wp-core-ui .button-group>.button:last-child{border-radius:0 3px 3px 0}.wp-core-ui .button-group>.button-primary+.button{border-left:0}.wp-core-ui .button-group>.button:focus{position:relative;z-index:1}.wp-core-ui .button-group>.button.active{background-color:#dcdcde;color:#135e96;border-color:#0a4b78;box-shadow:inset 0 2px 5px -3px #0a4b78}.wp-core-ui .button-group>.button.active:focus{border-color:#3582c4;box-shadow:inset 0 2px 5px -3px #0a4b78,0 0 0 1px #3582c4}@media screen and (max-width:782px){.wp-core-ui .button,.wp-core-ui .button.button-large,.wp-core-ui .button.button-small,a.preview,input#publish,input#save-post{padding:0 14px;line-height:2.71428571;font-size:14px;vertical-align:middle;min-height:40px;margin-bottom:4px}.wp-core-ui .copy-to-clipboard-container .copy-attachment-url{margin-bottom:0}#media-upload.wp-core-ui .button{padding:0 10px 1px;min-height:24px;line-height:22px;font-size:13px}.media-frame.mode-grid .bulk-select .button{margin-bottom:0}.wp-core-ui .save-post-status.button{position:relative;margin:0 14px 0 10px}.wp-core-ui.wp-customizer .button{font-size:13px;line-height:2.15384615;min-height:30px;margin:0;vertical-align:inherit}.wp-customizer .theme-overlay .theme-actions .button{margin-bottom:5px}.media-modal-content .media-toolbar-primary .media-button{margin-top:10px;margin-left:5px}.interim-login .button.button-large{min-height:30px;line-height:2;padding:0 12px 2px}}
/*! This file is auto-generated */
@font-face{font-family:dashicons;src:url("https://brisk.uicore.co/education/wp-includes/css/../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800");src:url("https://brisk.uicore.co/education/wp-includes/css/../fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix") format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"),url("https://brisk.uicore.co/education/wp-includes/css/../fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800") format("truetype");font-weight:400;font-style:normal}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in}.dashicons-admin-appearance:before{content:"\f100"}.dashicons-admin-collapse:before{content:"\f148"}.dashicons-admin-comments:before{content:"\f101"}.dashicons-admin-customizer:before{content:"\f540"}.dashicons-admin-generic:before{content:"\f111"}.dashicons-admin-home:before{content:"\f102"}.dashicons-admin-links:before{content:"\f103"}.dashicons-admin-media:before{content:"\f104"}.dashicons-admin-multisite:before{content:"\f541"}.dashicons-admin-network:before{content:"\f112"}.dashicons-admin-page:before{content:"\f105"}.dashicons-admin-plugins:before{content:"\f106"}.dashicons-admin-post:before{content:"\f109"}.dashicons-admin-settings:before{content:"\f108"}.dashicons-admin-site-alt:before{content:"\f11d"}.dashicons-admin-site-alt2:before{content:"\f11e"}.dashicons-admin-site-alt3:before{content:"\f11f"}.dashicons-admin-site:before{content:"\f319"}.dashicons-admin-tools:before{content:"\f107"}.dashicons-admin-users:before{content:"\f110"}.dashicons-airplane:before{content:"\f15f"}.dashicons-album:before{content:"\f514"}.dashicons-align-center:before{content:"\f134"}.dashicons-align-full-width:before{content:"\f114"}.dashicons-align-left:before{content:"\f135"}.dashicons-align-none:before{content:"\f138"}.dashicons-align-pull-left:before{content:"\f10a"}.dashicons-align-pull-right:before{content:"\f10b"}.dashicons-align-right:before{content:"\f136"}.dashicons-align-wide:before{content:"\f11b"}.dashicons-amazon:before{content:"\f162"}.dashicons-analytics:before{content:"\f183"}.dashicons-archive:before{content:"\f480"}.dashicons-arrow-down-alt:before{content:"\f346"}.dashicons-arrow-down-alt2:before{content:"\f347"}.dashicons-arrow-down:before{content:"\f140"}.dashicons-arrow-left-alt:before{content:"\f340"}.dashicons-arrow-left-alt2:before{content:"\f341"}.dashicons-arrow-left:before{content:"\f141"}.dashicons-arrow-right-alt:before{content:"\f344"}.dashicons-arrow-right-alt2:before{content:"\f345"}.dashicons-arrow-right:before{content:"\f139"}.dashicons-arrow-up-alt:before{content:"\f342"}.dashicons-arrow-up-alt2:before{content:"\f343"}.dashicons-arrow-up-duplicate:before{content:"\f143"}.dashicons-arrow-up:before{content:"\f142"}.dashicons-art:before{content:"\f309"}.dashicons-awards:before{content:"\f313"}.dashicons-backup:before{content:"\f321"}.dashicons-bank:before{content:"\f16a"}.dashicons-beer:before{content:"\f16c"}.dashicons-bell:before{content:"\f16d"}.dashicons-block-default:before{content:"\f12b"}.dashicons-book-alt:before{content:"\f331"}.dashicons-book:before{content:"\f330"}.dashicons-buddicons-activity:before{content:"\f452"}.dashicons-buddicons-bbpress-logo:before{content:"\f477"}.dashicons-buddicons-buddypress-logo:before{content:"\f448"}.dashicons-buddicons-community:before{content:"\f453"}.dashicons-buddicons-forums:before{content:"\f449"}.dashicons-buddicons-friends:before{content:"\f454"}.dashicons-buddicons-groups:before{content:"\f456"}.dashicons-buddicons-pm:before{content:"\f457"}.dashicons-buddicons-replies:before{content:"\f451"}.dashicons-buddicons-topics:before{content:"\f450"}.dashicons-buddicons-tracking:before{content:"\f455"}.dashicons-building:before{content:"\f512"}.dashicons-businessman:before{content:"\f338"}.dashicons-businessperson:before{content:"\f12e"}.dashicons-businesswoman:before{content:"\f12f"}.dashicons-button:before{content:"\f11a"}.dashicons-calculator:before{content:"\f16e"}.dashicons-calendar-alt:before{content:"\f508"}.dashicons-calendar:before{content:"\f145"}.dashicons-camera-alt:before{content:"\f129"}.dashicons-camera:before{content:"\f306"}.dashicons-car:before{content:"\f16b"}.dashicons-carrot:before{content:"\f511"}.dashicons-cart:before{content:"\f174"}.dashicons-category:before{content:"\f318"}.dashicons-chart-area:before{content:"\f239"}.dashicons-chart-bar:before{content:"\f185"}.dashicons-chart-line:before{content:"\f238"}.dashicons-chart-pie:before{content:"\f184"}.dashicons-clipboard:before{content:"\f481"}.dashicons-clock:before{content:"\f469"}.dashicons-cloud-saved:before{content:"\f137"}.dashicons-cloud-upload:before{content:"\f13b"}.dashicons-cloud:before{content:"\f176"}.dashicons-code-standards:before{content:"\f13a"}.dashicons-coffee:before{content:"\f16f"}.dashicons-color-picker:before{content:"\f131"}.dashicons-columns:before{content:"\f13c"}.dashicons-controls-back:before{content:"\f518"}.dashicons-controls-forward:before{content:"\f519"}.dashicons-controls-pause:before{content:"\f523"}.dashicons-controls-play:before{content:"\f522"}.dashicons-controls-repeat:before{content:"\f515"}.dashicons-controls-skipback:before{content:"\f516"}.dashicons-controls-skipforward:before{content:"\f517"}.dashicons-controls-volumeoff:before{content:"\f520"}.dashicons-controls-volumeon:before{content:"\f521"}.dashicons-cover-image:before{content:"\f13d"}.dashicons-dashboard:before{content:"\f226"}.dashicons-database-add:before{content:"\f170"}.dashicons-database-export:before{content:"\f17a"}.dashicons-database-import:before{content:"\f17b"}.dashicons-database-remove:before{content:"\f17c"}.dashicons-database-view:before{content:"\f17d"}.dashicons-database:before{content:"\f17e"}.dashicons-desktop:before{content:"\f472"}.dashicons-dismiss:before{content:"\f153"}.dashicons-download:before{content:"\f316"}.dashicons-drumstick:before{content:"\f17f"}.dashicons-edit-large:before{content:"\f327"}.dashicons-edit-page:before{content:"\f186"}.dashicons-edit:before{content:"\f464"}.dashicons-editor-aligncenter:before{content:"\f207"}.dashicons-editor-alignleft:before{content:"\f206"}.dashicons-editor-alignright:before{content:"\f208"}.dashicons-editor-bold:before{content:"\f200"}.dashicons-editor-break:before{content:"\f474"}.dashicons-editor-code-duplicate:before{content:"\f494"}.dashicons-editor-code:before{content:"\f475"}.dashicons-editor-contract:before{content:"\f506"}.dashicons-editor-customchar:before{content:"\f220"}.dashicons-editor-expand:before{content:"\f211"}.dashicons-editor-help:before{content:"\f223"}.dashicons-editor-indent:before{content:"\f222"}.dashicons-editor-insertmore:before{content:"\f209"}.dashicons-editor-italic:before{content:"\f201"}.dashicons-editor-justify:before{content:"\f214"}.dashicons-editor-kitchensink:before{content:"\f212"}.dashicons-editor-ltr:before{content:"\f10c"}.dashicons-editor-ol-rtl:before{content:"\f12c"}.dashicons-editor-ol:before{content:"\f204"}.dashicons-editor-outdent:before{content:"\f221"}.dashicons-editor-paragraph:before{content:"\f476"}.dashicons-editor-paste-text:before{content:"\f217"}.dashicons-editor-paste-word:before{content:"\f216"}.dashicons-editor-quote:before{content:"\f205"}.dashicons-editor-removeformatting:before{content:"\f218"}.dashicons-editor-rtl:before{content:"\f320"}.dashicons-editor-spellcheck:before{content:"\f210"}.dashicons-editor-strikethrough:before{content:"\f224"}.dashicons-editor-table:before{content:"\f535"}.dashicons-editor-textcolor:before{content:"\f215"}.dashicons-editor-ul:before{content:"\f203"}.dashicons-editor-underline:before{content:"\f213"}.dashicons-editor-unlink:before{content:"\f225"}.dashicons-editor-video:before{content:"\f219"}.dashicons-ellipsis:before{content:"\f11c"}.dashicons-email-alt:before{content:"\f466"}.dashicons-email-alt2:before{content:"\f467"}.dashicons-email:before{content:"\f465"}.dashicons-embed-audio:before{content:"\f13e"}.dashicons-embed-generic:before{content:"\f13f"}.dashicons-embed-photo:before{content:"\f144"}.dashicons-embed-post:before{content:"\f146"}.dashicons-embed-video:before{content:"\f149"}.dashicons-excerpt-view:before{content:"\f164"}.dashicons-exit:before{content:"\f14a"}.dashicons-external:before{content:"\f504"}.dashicons-facebook-alt:before{content:"\f305"}.dashicons-facebook:before{content:"\f304"}.dashicons-feedback:before{content:"\f175"}.dashicons-filter:before{content:"\f536"}.dashicons-flag:before{content:"\f227"}.dashicons-food:before{content:"\f187"}.dashicons-format-aside:before{content:"\f123"}.dashicons-format-audio:before{content:"\f127"}.dashicons-format-chat:before{content:"\f125"}.dashicons-format-gallery:before{content:"\f161"}.dashicons-format-image:before{content:"\f128"}.dashicons-format-quote:before{content:"\f122"}.dashicons-format-status:before{content:"\f130"}.dashicons-format-video:before{content:"\f126"}.dashicons-forms:before{content:"\f314"}.dashicons-fullscreen-alt:before{content:"\f188"}.dashicons-fullscreen-exit-alt:before{content:"\f189"}.dashicons-games:before{content:"\f18a"}.dashicons-google:before{content:"\f18b"}.dashicons-googleplus:before{content:"\f462"}.dashicons-grid-view:before{content:"\f509"}.dashicons-groups:before{content:"\f307"}.dashicons-hammer:before{content:"\f308"}.dashicons-heading:before{content:"\f10e"}.dashicons-heart:before{content:"\f487"}.dashicons-hidden:before{content:"\f530"}.dashicons-hourglass:before{content:"\f18c"}.dashicons-html:before{content:"\f14b"}.dashicons-id-alt:before{content:"\f337"}.dashicons-id:before{content:"\f336"}.dashicons-image-crop:before{content:"\f165"}.dashicons-image-filter:before{content:"\f533"}.dashicons-image-flip-horizontal:before{content:"\f169"}.dashicons-image-flip-vertical:before{content:"\f168"}.dashicons-image-rotate-left:before{content:"\f166"}.dashicons-image-rotate-right:before{content:"\f167"}.dashicons-image-rotate:before{content:"\f531"}.dashicons-images-alt:before{content:"\f232"}.dashicons-images-alt2:before{content:"\f233"}.dashicons-index-card:before{content:"\f510"}.dashicons-info-outline:before{content:"\f14c"}.dashicons-info:before{content:"\f348"}.dashicons-insert-after:before{content:"\f14d"}.dashicons-insert-before:before{content:"\f14e"}.dashicons-insert:before{content:"\f10f"}.dashicons-instagram:before{content:"\f12d"}.dashicons-laptop:before{content:"\f547"}.dashicons-layout:before{content:"\f538"}.dashicons-leftright:before{content:"\f229"}.dashicons-lightbulb:before{content:"\f339"}.dashicons-linkedin:before{content:"\f18d"}.dashicons-list-view:before{content:"\f163"}.dashicons-location-alt:before{content:"\f231"}.dashicons-location:before{content:"\f230"}.dashicons-lock-duplicate:before{content:"\f315"}.dashicons-lock:before{content:"\f160"}.dashicons-marker:before{content:"\f159"}.dashicons-media-archive:before{content:"\f501"}.dashicons-media-audio:before{content:"\f500"}.dashicons-media-code:before{content:"\f499"}.dashicons-media-default:before{content:"\f498"}.dashicons-media-document:before{content:"\f497"}.dashicons-media-interactive:before{content:"\f496"}.dashicons-media-spreadsheet:before{content:"\f495"}.dashicons-media-text:before{content:"\f491"}.dashicons-media-video:before{content:"\f490"}.dashicons-megaphone:before{content:"\f488"}.dashicons-menu-alt:before{content:"\f228"}.dashicons-menu-alt2:before{content:"\f329"}.dashicons-menu-alt3:before{content:"\f349"}.dashicons-menu:before{content:"\f333"}.dashicons-microphone:before{content:"\f482"}.dashicons-migrate:before{content:"\f310"}.dashicons-minus:before{content:"\f460"}.dashicons-money-alt:before{content:"\f18e"}.dashicons-money:before{content:"\f526"}.dashicons-move:before{content:"\f545"}.dashicons-nametag:before{content:"\f484"}.dashicons-networking:before{content:"\f325"}.dashicons-no-alt:before{content:"\f335"}.dashicons-no:before{content:"\f158"}.dashicons-open-folder:before{content:"\f18f"}.dashicons-palmtree:before{content:"\f527"}.dashicons-paperclip:before{content:"\f546"}.dashicons-pdf:before{content:"\f190"}.dashicons-performance:before{content:"\f311"}.dashicons-pets:before{content:"\f191"}.dashicons-phone:before{content:"\f525"}.dashicons-pinterest:before{content:"\f192"}.dashicons-playlist-audio:before{content:"\f492"}.dashicons-playlist-video:before{content:"\f493"}.dashicons-plugins-checked:before{content:"\f485"}.dashicons-plus-alt:before{content:"\f502"}.dashicons-plus-alt2:before{content:"\f543"}.dashicons-plus:before{content:"\f132"}.dashicons-podio:before{content:"\f19c"}.dashicons-portfolio:before{content:"\f322"}.dashicons-post-status:before{content:"\f173"}.dashicons-pressthis:before{content:"\f157"}.dashicons-printer:before{content:"\f193"}.dashicons-privacy:before{content:"\f194"}.dashicons-products:before{content:"\f312"}.dashicons-randomize:before{content:"\f503"}.dashicons-reddit:before{content:"\f195"}.dashicons-redo:before{content:"\f172"}.dashicons-remove:before{content:"\f14f"}.dashicons-rest-api:before{content:"\f124"}.dashicons-rss:before{content:"\f303"}.dashicons-saved:before{content:"\f15e"}.dashicons-schedule:before{content:"\f489"}.dashicons-screenoptions:before{content:"\f180"}.dashicons-search:before{content:"\f179"}.dashicons-share-alt:before{content:"\f240"}.dashicons-share-alt2:before{content:"\f242"}.dashicons-share:before{content:"\f237"}.dashicons-shield-alt:before{content:"\f334"}.dashicons-shield:before{content:"\f332"}.dashicons-shortcode:before{content:"\f150"}.dashicons-slides:before{content:"\f181"}.dashicons-smartphone:before{content:"\f470"}.dashicons-smiley:before{content:"\f328"}.dashicons-sort:before{content:"\f156"}.dashicons-sos:before{content:"\f468"}.dashicons-spotify:before{content:"\f196"}.dashicons-star-empty:before{content:"\f154"}.dashicons-star-filled:before{content:"\f155"}.dashicons-star-half:before{content:"\f459"}.dashicons-sticky:before{content:"\f537"}.dashicons-store:before{content:"\f513"}.dashicons-superhero-alt:before{content:"\f197"}.dashicons-superhero:before{content:"\f198"}.dashicons-table-col-after:before{content:"\f151"}.dashicons-table-col-before:before{content:"\f152"}.dashicons-table-col-delete:before{content:"\f15a"}.dashicons-table-row-after:before{content:"\f15b"}.dashicons-table-row-before:before{content:"\f15c"}.dashicons-table-row-delete:before{content:"\f15d"}.dashicons-tablet:before{content:"\f471"}.dashicons-tag:before{content:"\f323"}.dashicons-tagcloud:before{content:"\f479"}.dashicons-testimonial:before{content:"\f473"}.dashicons-text-page:before{content:"\f121"}.dashicons-text:before{content:"\f478"}.dashicons-thumbs-down:before{content:"\f542"}.dashicons-thumbs-up:before{content:"\f529"}.dashicons-tickets-alt:before{content:"\f524"}.dashicons-tickets:before{content:"\f486"}.dashicons-tide:before{content:"\f10d"}.dashicons-translation:before{content:"\f326"}.dashicons-trash:before{content:"\f182"}.dashicons-twitch:before{content:"\f199"}.dashicons-twitter-alt:before{content:"\f302"}.dashicons-twitter:before{content:"\f301"}.dashicons-undo:before{content:"\f171"}.dashicons-universal-access-alt:before{content:"\f507"}.dashicons-universal-access:before{content:"\f483"}.dashicons-unlock:before{content:"\f528"}.dashicons-update-alt:before{content:"\f113"}.dashicons-update:before{content:"\f463"}.dashicons-upload:before{content:"\f317"}.dashicons-vault:before{content:"\f178"}.dashicons-video-alt:before{content:"\f234"}.dashicons-video-alt2:before{content:"\f235"}.dashicons-video-alt3:before{content:"\f236"}.dashicons-visibility:before{content:"\f177"}.dashicons-warning:before{content:"\f534"}.dashicons-welcome-add-page:before{content:"\f133"}.dashicons-welcome-comments:before{content:"\f117"}.dashicons-welcome-learn-more:before{content:"\f118"}.dashicons-welcome-view-site:before{content:"\f115"}.dashicons-welcome-widgets-menus:before{content:"\f116"}.dashicons-welcome-write-blog:before{content:"\f119"}.dashicons-whatsapp:before{content:"\f19a"}.dashicons-wordpress-alt:before{content:"\f324"}.dashicons-wordpress:before{content:"\f120"}.dashicons-xing:before{content:"\f19d"}.dashicons-yes-alt:before{content:"\f12a"}.dashicons-yes:before{content:"\f147"}.dashicons-youtube:before{content:"\f19b"}.dashicons-editor-distractionfree:before{content:"\f211"}.dashicons-exerpt-view:before{content:"\f164"}.dashicons-format-links:before{content:"\f103"}.dashicons-format-standard:before{content:"\f109"}.dashicons-post-trash:before{content:"\f182"}.dashicons-share1:before{content:"\f237"}.dashicons-welcome-edit-page:before{content:"\f119"}
.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(https://brisk.uicore.co/education/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(https://brisk.uicore.co/education/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(https://brisk.uicore.co/education/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}
.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}
/*! This file is auto-generated */
.media-modal *{box-sizing:content-box}.media-modal input,.media-modal select,.media-modal textarea{box-sizing:border-box}.media-frame,.media-modal{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;-webkit-overflow-scrolling:touch}.media-modal legend{padding:0;font-size:13px}.media-modal label{font-size:13px}.media-modal .legend-inline{position:absolute;transform:translate(-100%,50%);margin-left:-1%;line-height:1.2}.media-frame a{border-bottom:none;color:#2271b1}.media-frame a:active,.media-frame a:hover{color:#135e96}.media-frame a:focus{box-shadow:0 0 0 2px #2271b1;color:#043959;outline:2px solid transparent}.media-frame a.button{color:#2c3338}.media-frame a.button:hover{color:#1d2327}.media-frame a.button-primary,.media-frame a.button-primary:hover{color:#fff}.media-frame input,.media-frame textarea{padding:6px 8px}.media-frame select,.wp-admin .media-frame select{min-height:30px;vertical-align:middle}.media-frame input[type=color],.media-frame input[type=date],.media-frame input[type=datetime-local],.media-frame input[type=datetime],.media-frame input[type=email],.media-frame input[type=month],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=tel],.media-frame input[type=text],.media-frame input[type=time],.media-frame input[type=url],.media-frame input[type=week],.media-frame select,.media-frame textarea{box-shadow:0 0 0 transparent;border-radius:4px;border:1px solid #8c8f94;background-color:#fff;color:#2c3338;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;line-height:1.38461538}.media-frame input[type=date],.media-frame input[type=datetime-local],.media-frame input[type=datetime],.media-frame input[type=email],.media-frame input[type=month],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=tel],.media-frame input[type=text],.media-frame input[type=time],.media-frame input[type=url],.media-frame input[type=week]{padding:0 8px;line-height:2.15384615}.media-frame.mode-grid .wp-filter input[type=search]{font-size:14px;line-height:2}.media-frame input[type=email]:focus,.media-frame input[type=number]:focus,.media-frame input[type=password]:focus,.media-frame input[type=search]:focus,.media-frame input[type=text]:focus,.media-frame input[type=url]:focus,.media-frame select:focus,.media-frame textarea:focus{border-color:#3582c4;box-shadow:0 0 0 1px #3582c4;outline:2px solid transparent}.media-frame input:disabled,.media-frame input[readonly],.media-frame textarea:disabled,.media-frame textarea[readonly]{background-color:#f0f0f1}.media-frame input[type=search]{-webkit-appearance:textfield}.media-frame ::-webkit-input-placeholder{color:#646970}.media-frame ::-moz-placeholder{color:#646970}.media-frame .hidden,.media-frame .setting.hidden{display:none}/*!
 * jQuery UI Draggable/Sortable 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 */.ui-draggable-handle,.ui-sortable-handle{touch-action:none}.media-modal{position:fixed;top:30px;left:30px;right:30px;bottom:30px;z-index:160000}.wp-customizer .media-modal{z-index:560000}.media-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;min-height:360px;background:#000;opacity:.7;z-index:159900}.wp-customizer .media-modal-backdrop{z-index:559900}.media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#646970;z-index:1000;cursor:pointer;outline:0;transition:color .1s ease-in-out,background .1s ease-in-out}.media-modal-close:active,.media-modal-close:hover{color:#135e96}.media-modal-close:focus{color:#135e96;border-color:#4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8);outline:2px solid transparent}.media-modal-close span.media-modal-icon{background-image:none}.media-modal-close .media-modal-icon:before{content:"\f158";content:"\f158"/'';font:normal 20px/1 dashicons;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.media-modal-content{position:absolute;top:0;left:0;right:0;bottom:0;overflow:auto;min-height:300px;box-shadow:0 5px 15px rgba(0,0,0,.7);background:#fff;-webkit-font-smoothing:subpixel-antialiased}.media-modal-content .media-frame select.attachment-filters{margin-top:32px;margin-right:2%;width:42%;width:calc(48% - 12px)}.wp-core-ui .media-modal-icon{background-image:url(https://brisk.uicore.co/education/wp-includes/css/../images/uploader-icons.png);background-repeat:no-repeat}.media-toolbar{position:absolute;top:0;left:0;right:0;z-index:100;height:60px;padding:0 16px;border:0 solid #dcdcde;overflow:hidden}.media-frame-toolbar .media-toolbar{top:auto;bottom:-47px;height:auto;overflow:visible;border-top:1px solid #dcdcde}.media-toolbar-primary{float:right;height:100%;position:relative}.media-toolbar-secondary{float:left;height:100%}.media-toolbar-primary>.media-button,.media-toolbar-primary>.media-button-group{margin-left:10px;float:left;margin-top:15px}.media-toolbar-secondary>.media-button,.media-toolbar-secondary>.media-button-group{margin-right:10px;margin-top:15px}.media-sidebar{position:absolute;top:0;right:0;bottom:0;width:267px;padding:0 16px;z-index:75;background:#f6f7f7;border-left:1px solid #dcdcde;overflow:auto;-webkit-overflow-scrolling:touch}.media-sidebar::after{content:"";display:flex;clear:both;height:24px}.hide-toolbar .media-sidebar{bottom:0}.image-details .media-embed h2,.media-sidebar h2{position:relative;font-weight:600;text-transform:uppercase;font-size:12px;color:#646970;margin:24px 0 8px}.attachment-details .setting,.media-sidebar .setting{display:block;float:left;width:100%;margin:0 0 10px}.attachment-details h2{display:grid;grid-template-columns:auto 5em}.media-sidebar .collection-settings .setting{margin:1px 0}.attachment-details .setting.has-description,.media-sidebar .setting.has-description{margin-bottom:5px}.media-sidebar .setting .link-to-custom{margin:3px 2px 0}.attachment-details .setting .name,.attachment-details .setting span,.media-sidebar .setting .name,.media-sidebar .setting .value,.media-sidebar .setting span{min-width:30%;margin-right:4%;font-size:12px;text-align:right;word-wrap:break-word}.media-sidebar .setting .name{max-width:80px}.media-sidebar .setting .value{text-align:left}.media-sidebar .setting select{max-width:65%}.attachment-details .field input[type=checkbox],.attachment-details .field input[type=radio],.attachment-details .setting input[type=checkbox],.attachment-details .setting input[type=radio],.media-sidebar .field input[type=checkbox],.media-sidebar .field input[type=radio],.media-sidebar .setting input[type=checkbox],.media-sidebar .setting input[type=radio]{float:none;margin:8px 3px 0;padding:0}.attachment-details .setting .name,.attachment-details .setting .value,.attachment-details .setting span,.compat-item label span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting .name,.media-sidebar .setting .value,.media-sidebar .setting span{float:left;min-height:22px;padding-top:8px;line-height:1.33333333;font-weight:400;color:#646970}.media-sidebar .checkbox-label-inline{font-size:12px}.attachment-details .copy-to-clipboard-container,.media-sidebar .copy-to-clipboard-container{flex-wrap:wrap;margin-top:10px;margin-left:calc(35% - 1px);padding-top:10px}.attachment-details .attachment-info .copy-to-clipboard-container{float:none}.attachment-details .copy-to-clipboard-container .success,.media-sidebar .copy-to-clipboard-container .success{padding:0;min-height:0;line-height:2.18181818;text-align:left;color:#007017}.compat-item label span{text-align:right}.attachment-details .setting .value,.attachment-details .setting input[type=email],.attachment-details .setting input[type=number],.attachment-details .setting input[type=password],.attachment-details .setting input[type=search],.attachment-details .setting input[type=tel],.attachment-details .setting input[type=text],.attachment-details .setting input[type=url],.attachment-details .setting textarea,.attachment-details .setting+.description,.media-sidebar .setting .value,.media-sidebar .setting input[type=email],.media-sidebar .setting input[type=number],.media-sidebar .setting input[type=password],.media-sidebar .setting input[type=search],.media-sidebar .setting input[type=tel],.media-sidebar .setting input[type=text],.media-sidebar .setting input[type=url],.media-sidebar .setting textarea{box-sizing:border-box;margin:1px;width:65%;float:right}.attachment-details .setting .value,.attachment-details .setting+.description,.media-sidebar .setting .value{margin:0 1px;text-align:left}.attachment-details .setting+.description{clear:both;font-size:12px;font-style:normal;margin-bottom:10px}.attachment-details .setting textarea,.compat-item .field textarea,.media-sidebar .setting textarea{height:62px;resize:vertical}.alt-text textarea,.attachment-details .alt-text textarea,.compat-item .alt-text textarea,.media-sidebar .alt-text textarea{height:50px}.compat-item{float:left;width:100%;overflow:hidden}.compat-item table{width:100%;table-layout:fixed;border-spacing:0;border:0}.compat-item tr{padding:2px 0;display:block;overflow:hidden}.compat-item .field,.compat-item .label{display:block;margin:0;padding:0}.compat-item .label{min-width:30%;margin-right:4%;float:left;text-align:right}.compat-item .label span{display:block;width:100%}.compat-item .field{float:right;width:65%;margin:1px}.compat-item .field input[type=email],.compat-item .field input[type=number],.compat-item .field input[type=password],.compat-item .field input[type=search],.compat-item .field input[type=tel],.compat-item .field input[type=text],.compat-item .field input[type=url],.compat-item .field textarea{width:100%;margin:0;box-sizing:border-box}.sidebar-for-errors .attachment-details,.sidebar-for-errors .compat-item,.sidebar-for-errors .media-sidebar .media-progress-bar,.sidebar-for-errors .upload-details{display:none!important}.media-menu{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:50px 0 10px;background:#f6f7f7;border-right-width:1px;border-right-style:solid;border-right-color:#c3c4c7;-webkit-user-select:none;user-select:none}.media-menu .media-menu-item{display:block;box-sizing:border-box;width:100%;position:relative;border:0;margin:0;padding:8px 20px;font-size:14px;line-height:1.28571428;background:0 0;color:#2271b1;text-align:left;text-decoration:none;cursor:pointer}.media-menu .media-menu-item:hover{background:rgba(0,0,0,.04)}.media-menu .media-menu-item:active{color:#2271b1;outline:0}.media-menu .active,.media-menu .active:hover{color:#1d2327;font-weight:600}.media-menu .media-menu-item:focus{box-shadow:0 0 0 2px #2271b1;color:#043959;outline:2px solid transparent}.media-menu .separator{height:0;margin:12px 20px;padding:0;border-top:1px solid #dcdcde}.media-router{position:relative;padding:0 6px;margin:0;clear:both}.media-router .media-menu-item{position:relative;float:left;border:0;margin:0;padding:8px 10px 9px;height:18px;line-height:1.28571428;font-size:14px;text-decoration:none;background:0 0;cursor:pointer;transition:none}.media-router .media-menu-item:last-child{border-right:0}.media-router .media-menu-item:active,.media-router .media-menu-item:hover{color:#2271b1}.media-router .active,.media-router .active:hover{color:#1d2327}.media-router .media-menu-item:focus{box-shadow:0 0 0 2px #2271b1;color:#043959;outline:2px solid transparent;z-index:1}.media-router .active,.media-router .media-menu-item.active:last-child{margin:-1px -1px 0;background:#fff;border:1px solid #dcdcde;border-bottom:none}.media-router .active:after{display:none}.media-frame{overflow:hidden;position:absolute;top:0;left:0;right:0;bottom:0}.media-frame-menu{position:absolute;top:0;left:0;bottom:0;width:200px;z-index:150}.media-frame-title{position:absolute;top:0;left:200px;right:0;height:50px;z-index:200}.media-frame-router{position:absolute;top:50px;left:200px;right:0;height:36px;z-index:200}.media-frame-content{position:absolute;top:84px;left:200px;right:0;bottom:61px;height:auto;width:auto;margin:0;overflow:auto;background:#fff;border-top:1px solid #dcdcde}.media-frame-toolbar{position:absolute;left:200px;right:0;z-index:100;bottom:60px;height:auto}.media-frame.hide-menu .media-frame-content,.media-frame.hide-menu .media-frame-router,.media-frame.hide-menu .media-frame-title,.media-frame.hide-menu .media-frame-toolbar{left:0}.media-frame.hide-toolbar .media-frame-content{bottom:0}.media-frame.hide-router .media-frame-content{top:50px}.media-frame.hide-menu .media-frame-menu,.media-frame.hide-menu .media-frame-menu-heading,.media-frame.hide-router .media-frame-router,.media-frame.hide-toolbar .media-frame-toolbar{display:none}.media-frame-title h1{padding:0 16px;font-size:22px;line-height:2.27272727;margin:0}.media-attachments-filter-heading,.media-frame-menu-heading{position:absolute;left:20px;top:22px;margin:0;font-size:13px;line-height:1;z-index:151}.media-attachments-filter-heading{top:10px;left:16px}.mode-grid .media-attachments-filter-heading{top:0;left:-9999px}.mode-grid .media-frame-actions-heading{display:none}.wp-core-ui .button.media-frame-menu-toggle{display:none}.media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}.media-frame-content .crop-content{height:100%}.options-general-php .crop-content.site-icon,.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon{margin-right:300px}.media-frame-content .crop-content .crop-image{display:block;margin:auto;max-width:100%;max-height:100%}.media-frame-content .crop-content .upload-errors{position:absolute;width:300px;top:50%;left:50%;margin-left:-150px;margin-right:-150px;z-index:600000}.media-frame .media-iframe{overflow:hidden}.media-frame .media-iframe,.media-frame .media-iframe iframe{height:100%;width:100%;border:0}.media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:42%;max-width:calc(48% - 12px)}.media-frame select.attachment-filters:last-of-type{margin-right:0}.media-frame .search{margin:32px 0 0;padding:4px;font-size:13px;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;-webkit-appearance:none}.media-toolbar-primary .search{max-width:100%}.media-modal .media-frame .media-search-input-label{position:absolute;left:0;top:10px;margin:0;line-height:1}.wp-core-ui .attachments{margin:0;-webkit-overflow-scrolling:touch}.wp-core-ui .attachment{position:relative;float:left;padding:8px;margin:0;color:#3c434a;cursor:pointer;list-style:none;text-align:center;-webkit-user-select:none;user-select:none;width:25%;box-sizing:border-box}.wp-core-ui .attachment.details:focus,.wp-core-ui .attachment:focus,.wp-core-ui .selected.attachment:focus{box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #4f94d4;outline:2px solid transparent;outline-offset:-6px}.wp-core-ui .selected.attachment{box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #c3c4c7}.wp-core-ui .attachment.details{box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #2271b1}.wp-core-ui .attachment-preview{position:relative;box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);background:#f0f0f1;cursor:pointer}.wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}.wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}.wp-core-ui .attachment .thumbnail{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;opacity:1;transition:opacity .1s}.wp-core-ui .attachment .portrait img{max-width:100%}.wp-core-ui .attachment .landscape img{max-height:100%}.wp-core-ui .attachment .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.wp-core-ui .attachment .thumbnail img{top:0;left:0}.wp-core-ui .attachment .thumbnail .centered{position:absolute;top:0;left:0;width:100%;height:100%;transform:translate(50%,50%)}.wp-core-ui .attachment .thumbnail .centered img{transform:translate(-50%,-50%)}.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{transform:translate(-50%,-70%)}.wp-core-ui .attachment .filename{position:absolute;left:0;right:0;bottom:0;overflow:hidden;max-height:100%;word-wrap:break-word;text-align:center;font-weight:600;background:rgba(255,255,255,.8);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.wp-core-ui .attachment .filename div{padding:5px 10px}.wp-core-ui .attachment .thumbnail img{position:absolute}.wp-core-ui .attachment-close{display:block;position:absolute;top:5px;right:5px;height:22px;width:22px;padding:0;background-color:#fff;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.3);transition:none}.wp-core-ui .attachment-close .media-modal-icon{display:inline-block;background-position:-96px 4px;height:22px;width:22px}.wp-core-ui .attachment-close:focus .media-modal-icon,.wp-core-ui .attachment-close:hover .media-modal-icon{background-position:-36px 4px}.wp-core-ui .attachment .check{display:none;height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;right:0;outline:0;background:#f0f0f1;cursor:pointer;box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}.wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}.wp-core-ui .attachment.selected .check{display:block}.wp-core-ui .attachment.details .check,.wp-core-ui .attachment.selected .check:focus,.wp-core-ui .media-frame.mode-grid .attachment.selected .check{background-color:#2271b1;box-shadow:0 0 0 1px #fff,0 0 0 2px #2271b1}.wp-core-ui .attachment.selected .check:focus{outline:2px solid transparent}.wp-core-ui .attachment.details .check .media-modal-icon,.wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon{background-position:-21px 0}.wp-core-ui .attachment.details .check:hover .media-modal-icon,.wp-core-ui .attachment.selected .check:focus .media-modal-icon,.wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon{background-position:-60px 0}.wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:0 8px;font-size:12px;border-radius:0}.media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}.attachments-browser .media-toolbar{right:300px;height:72px;background:#fff}.attachments-browser.hide-sidebar .media-toolbar{right:0}.attachments-browser .media-toolbar-primary>.media-button,.attachments-browser .media-toolbar-primary>.media-button-group,.attachments-browser .media-toolbar-secondary>.media-button,.attachments-browser .media-toolbar-secondary>.media-button-group{margin:10px 0}.attachments-browser .attachments{padding:2px 8px 8px}.attachments-browser .uploader-inline,.attachments-browser.has-load-more .attachments-wrapper,.attachments-browser:not(.has-load-more) .attachments{position:absolute;top:72px;left:0;right:300px;bottom:0;overflow:auto;outline:0}.attachments-browser .uploader-inline.hidden{display:none}.attachments-browser .media-toolbar-primary{max-width:33%}.mode-grid .attachments-browser .media-toolbar-primary{display:flex;align-items:center;column-gap:.5rem;margin:11px 0}.mode-grid .attachments-browser .media-toolbar-mode-select .media-toolbar-primary{display:none}.attachments-browser .media-toolbar-secondary{max-width:66%}.uploader-inline .close{background-color:transparent;border:0;cursor:pointer;height:48px;outline:0;padding:0;position:absolute;right:2px;text-align:center;top:2px;width:48px;z-index:1}.uploader-inline .close:before{font:normal 30px/1 dashicons!important;color:#50575e;display:inline-block;content:"\f335";content:"\f335"/'';font-weight:300;margin-top:1px}.uploader-inline .close:focus{outline:1px solid #4f94d4;box-shadow:0 0 3px rgba(34,113,177,.8)}.attachments-browser.hide-sidebar .attachments,.attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}.attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:1.38461538;font-size:13px;color:#646970}.attachments-browser .no-media{padding:2em 0 0 2em}.more-loaded .attachment:not(.found-media){background:#dcdcde}.load-more-wrapper{clear:both;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;padding:1em 0}.load-more-wrapper .load-more-count{min-width:100%;margin:0 0 1em;text-align:center}.load-more-wrapper .load-more{margin:0}.media-frame .load-more-wrapper .load-more+.spinner{float:none;margin:0 -30px 0 10px}.media-frame .load-more-wrapper .load-more.hidden+.spinner{margin:0}.load-more-wrapper::after{content:"";min-width:100%;order:1}.load-more-wrapper .load-more-jump{margin:0 0 0 12px}.attachment.new-media{outline:2px dotted #c3c4c7}.media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#dcdcde;background:rgba(0,0,0,.1)}.media-progress-bar div{height:10px;min-width:20px;width:0;background:#2271b1;border-radius:10px;transition:width .3s}.media-uploader-status .media-progress-bar{display:none;width:100%}.uploading.media-uploader-status .media-progress-bar{display:block}.attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0}.media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}.uploader-inline .media-uploader-status h2{display:none}.media-uploader-status .upload-details{display:none;font-size:12px;color:#646970}.uploading.media-uploader-status .upload-details{display:block}.media-uploader-status .upload-detail-separator{padding:0 4px}.media-uploader-status .upload-count{color:#3c434a}.media-uploader-status .upload-dismiss-errors,.media-uploader-status .upload-errors{display:none}.errors.media-uploader-status .upload-dismiss-errors,.errors.media-uploader-status .upload-errors{display:block}.media-uploader-status .upload-dismiss-errors{transition:none;text-decoration:none}.upload-errors .upload-error{padding:12px;margin-bottom:12px;background:#fff;border-left:4px solid #d63638;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.uploader-inline .upload-errors .upload-error{padding:12px 30px;background-color:#fcf0f1;box-shadow:none}.upload-errors .upload-error-filename{font-weight:600}.upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}.uploader-window,.wp-editor-wrap .uploader-editor{top:0;left:0;right:0;bottom:0;text-align:center;display:none}.uploader-window{position:fixed;z-index:250000;opacity:0;transition:opacity 250ms}.wp-editor-wrap .uploader-editor{position:absolute;z-index:99998;background:rgba(140,143,148,.9)}.uploader-window,.wp-editor-wrap .uploader-editor.droppable{background:rgba(10,75,120,.9)}.uploader-window-content,.wp-editor-wrap .uploader-editor-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}.uploader-window .uploader-editor-title,.uploader-window h1,.wp-editor-wrap .uploader-editor .uploader-editor-title{position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);font-size:3em;line-height:1.3;font-weight:600;color:#fff;margin:0;padding:0 10px}.wp-editor-wrap .uploader-editor .uploader-editor-title{display:none}.wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}.uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}.uploader-window .media-progress-bar div{background:#fff}.uploading .uploader-window .media-progress-bar{display:block}.media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}.uploader-inline-content{position:absolute;top:30%;left:0;right:0}.uploader-inline-content .upload-ui{margin:2em 0}.uploader-inline-content .post-upload-ui{margin-bottom:2em}.uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}.uploader-inline h2{font-size:20px;line-height:1.4;font-weight:400;margin:0}.uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#3c434a;font-weight:400}.uploader-inline .drop-instructions{display:none}.supports-drag-drop .uploader-inline .drop-instructions{display:block}.uploader-inline p{margin:.5em 0}.uploader-inline .media-progress-bar{display:none}.uploading.uploader-inline .media-progress-bar{display:block}.uploader-inline .browser{display:inline-block!important}.media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}.media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}.media-selection.editing,.media-selection.empty{display:none}.media-selection.one .edit-selection{display:none}.media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:1.42857142;font-weight:600}.media-selection .button-link{float:left;padding:1px 8px;margin:1px 8px 1px -8px;line-height:1.4;border-right:1px solid #dcdcde;color:#2271b1;text-decoration:none}.media-selection .button-link:focus,.media-selection .button-link:hover{color:#135e96}.media-selection .button-link:last-child{border-right:0;margin-right:0}.selection-info .clear-selection{color:#d63638}.selection-info .clear-selection:focus,.selection-info .clear-selection:hover{color:#d63638}.media-selection .selection-view{display:inline-block;vertical-align:top}.media-selection .attachments{display:inline-block;height:48px;margin:6px;padding:0;overflow:hidden;vertical-align:top}.media-selection .attachment{width:40px;padding:0;margin:4px}.media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}.media-selection .attachment .icon{width:50%}.media-selection .attachment-preview{box-shadow:none;background:0 0}.wp-core-ui .media-selection .attachment.details:focus,.wp-core-ui .media-selection .attachment:focus,.wp-core-ui .media-selection .selected.attachment:focus{box-shadow:0 0 0 1px #fff,0 0 2px 3px #4f94d4;outline:2px solid transparent}.wp-core-ui .media-selection .selected.attachment{box-shadow:none}.wp-core-ui .media-selection .attachment.details{box-shadow:0 0 0 1px #fff,0 0 0 3px #2271b1}.media-selection:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;width:25px;background-image:linear-gradient(to left,#fff,rgba(255,255,255,0))}.media-selection .attachment .filename{display:none}.media-frame .spinner{background:url(https://brisk.uicore.co/education/wp-includes/css/../images/spinner.gif) no-repeat;background-size:20px 20px;float:right;display:inline-block;visibility:hidden;opacity:.7;width:20px;height:20px;margin:0;vertical-align:middle}.media-frame .media-sidebar .settings-save-status .spinner{position:absolute;right:0;top:0}.media-frame.mode-grid .spinner{margin:0;float:none;vertical-align:middle}.media-modal .media-toolbar .spinner{float:none;vertical-align:bottom;margin:0 0 5px 5px}.media-frame .instructions+.spinner.is-active{vertical-align:middle}.media-frame .spinner.is-active{visibility:visible}.attachment-details{position:relative;overflow:auto}.attachment-details .settings-save-status{text-align:right;text-transform:none;font-weight:400}.attachment-details .settings-save-status .spinner{float:none;margin-left:5px}.attachment-details .settings-save-status .saved{display:none}.attachment-details.save-waiting .settings-save-status .spinner{visibility:visible}.attachment-details.save-complete .settings-save-status .saved{display:inline-block}.attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:1.5;color:#646970;border-bottom:1px solid #dcdcde;padding-bottom:11px}.attachment-info .wp-media-wrapper{margin-bottom:8px}.attachment-info .wp-media-wrapper.wp-audio{margin-top:13px}.attachment-info .filename{font-weight:600;color:#3c434a;word-wrap:break-word}.attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}.uploading .attachment-info .thumbnail{width:120px;height:80px;box-shadow:inset 0 0 15px rgba(0,0,0,.1)}.uploading .attachment-info .media-progress-bar{margin-top:35px}.attachment-info .thumbnail-image:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);overflow:hidden}.attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}.attachment-info .details{float:left;font-size:12px;max-width:100%}.attachment-info .delete-attachment,.attachment-info .edit-attachment,.attachment-info .trash-attachment,.attachment-info .untrash-attachment{display:block;text-decoration:none;white-space:nowrap}.attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}.attachment-info .edit-attachment{display:block}.media-modal .delete-attachment,.media-modal .trash-attachment,.media-modal .untrash-attachment{display:inline;padding:0;color:#d63638}.media-modal .delete-attachment:focus,.media-modal .delete-attachment:hover,.media-modal .trash-attachment:focus,.media-modal .trash-attachment:hover,.media-modal .untrash-attachment:focus,.media-modal .untrash-attachment:hover{color:#d63638}.attachment-display-settings{width:100%;float:left;overflow:hidden}.collection-settings{overflow:hidden}.collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}.collection-settings .setting .name,.collection-settings .setting span{min-width:inherit}.media-modal .imgedit-wrap{position:static}.media-modal .imgedit-wrap .imgedit-panel-content{padding:16px 16px 0;overflow:visible}.media-modal .imgedit-wrap .imgedit-save-target{margin:8px 0 24px}.media-modal .imgedit-group{background:0 0;border:none;box-shadow:none;margin:0;padding:0;position:relative}.media-modal .imgedit-group.imgedit-panel-active{margin-bottom:16px;padding-bottom:16px}.media-modal .imgedit-group-top{margin:0}.media-modal .imgedit-group-top h2,.media-modal .imgedit-group-top h2 .button-link{display:inline-block;text-transform:uppercase;font-size:12px;color:#646970;margin:0;margin-top:3px}.media-modal .imgedit-group-top h2 .button-link,.media-modal .imgedit-group-top h2 a{text-decoration:none;color:#646970}.wp-core-ui.media-modal .image-editor .imgedit-help-toggle,.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active,.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover{border:1px solid transparent;margin:0;padding:0;background:0 0;color:#2271b1;font-size:20px;line-height:1;cursor:pointer;box-sizing:content-box;box-shadow:none}.wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus{color:#2271b1;border-color:#2271b1;box-shadow:0 0 0 1px #2271b1;outline:2px solid transparent}.wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}.wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}.media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142";content:"\f142"/''}.media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}.imgedit-thumbnail-preview-caption{display:block}.media-modal .imgedit-wrap .notice,.media-modal .imgedit-wrap div.updated{margin:0 16px}.embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}.media-frame .embed-url input{font-size:18px;line-height:1.22222222;padding:12px 40px 12px 14px;width:100%;min-width:200px;box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1)}.media-frame .embed-url input::-ms-clear{display:none}.media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}.media-frame .embed-loading .embed-url .spinner{visibility:visible}.embed-link-settings,.embed-media-settings{position:absolute;top:82px;left:0;right:0;bottom:0;padding:0 16px;overflow:auto}.media-embed .embed-link-settings .link-text{margin-top:0}.embed-link-settings::after,.embed-media-settings::after{content:"";display:flex;clear:both;height:24px}.media-embed .embed-link-settings{overflow:visible}.embed-preview embed,.embed-preview iframe,.embed-preview img,.mejs-container video{max-width:100%;vertical-align:middle}.embed-preview a{display:inline-block}.embed-preview img{display:block;height:auto}.mejs-container:focus{outline:1px solid #2271b1;box-shadow:0 0 0 2px #2271b1}.image-details .media-modal{left:140px;right:140px}.image-details .media-frame-content,.image-details .media-frame-router,.image-details .media-frame-title{left:0}.image-details .embed-media-settings{top:0;overflow:visible;padding:0}.image-details .embed-media-settings::after{content:none}.image-details .embed-media-settings,.image-details .embed-media-settings div{box-sizing:border-box}.image-details .column-settings{background:#f6f7f7;border-right:1px solid #dcdcde;min-height:100%;width:55%;position:absolute;top:0;left:0}.image-details .column-settings h2{margin:20px;padding-top:20px;border-top:1px solid #dcdcde;color:#1d2327}.image-details .column-image{width:45%;position:absolute;left:55%;top:0}.image-details .image{margin:20px}.image-details .image img{max-width:100%;max-height:500px}.image-details .advanced-toggle{padding:0;color:#646970;text-transform:uppercase;text-decoration:none}.image-details .advanced-toggle:active,.image-details .advanced-toggle:hover{color:#646970}.image-details .advanced-toggle:after{font:normal 20px/1 dashicons;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f140";content:"\f140"/'';display:inline-block;margin-top:-2px}.image-details .advanced-visible .advanced-toggle:after{content:"\f142";content:"\f142"/''}.image-details .custom-size .custom-size-setting,.image-details .custom-size label{display:block;float:left}.image-details .custom-size .custom-size-setting label{float:none}.image-details .custom-size input{width:5em}.image-details .custom-size .sep{float:left;margin:26px 6px 0}.image-details .custom-size .description{margin-left:0}.media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}.media-embed .thumbnail img{max-height:200px;display:block}.media-embed .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.media-embed .setting,.media-embed .setting-group{width:100%;margin:10px 0;float:left;display:block;clear:both}.media-embed .setting-group .setting:not(.checkbox-setting){margin:0}.media-embed .setting.has-description{margin-bottom:5px}.media-embed .description{clear:both;font-style:normal}.media-embed .content-track+.description{line-height:1.4;max-width:none!important}.media-embed .remove-track{margin-bottom:10px}.image-details .embed-media-settings .setting,.image-details .embed-media-settings .setting-group{float:none;width:auto}.image-details .actions{margin:10px 0}.image-details .hidden{display:none}.media-embed .setting input[type=text],.media-embed .setting textarea,.media-embed fieldset{display:block;width:100%;max-width:400px}.image-details .embed-media-settings .setting input[type=text],.image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}.image-details .description,.image-details .embed-media-settings .custom-size,.image-details .embed-media-settings .link-target,.image-details .embed-media-settings .setting input.link-to-custom,.image-details .embed-media-settings .setting-group{margin-left:27%;width:70%}.image-details .description{font-style:normal;margin-top:0}.image-details .embed-media-settings .link-target{margin-top:16px}.audio-details .checkbox-label,.image-details .checkbox-label,.video-details .checkbox-label{vertical-align:baseline}.media-embed .setting input.hidden,.media-embed .setting textarea.hidden{display:none}.media-embed .setting .name,.media-embed .setting span,.media-embed .setting-group .name{display:inline-block;font-size:13px;line-height:1.84615384;color:#646970}.media-embed .setting span{display:block;width:200px}.image-details .embed-media-settings .setting .name,.image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0;line-height:1.1}.image-details .embed-media-settings .setting .button-group,.media-frame .setting-group .button-group{width:auto}.media-embed-sidebar{position:absolute;top:0;left:440px}.advanced-section,.link-settings{margin-top:10px}.media-frame .setting .button-group{display:flex;margin:0!important;max-width:none!important}.rtl .media-frame,.rtl .media-frame .search,.rtl .media-frame input[type=email],.rtl .media-frame input[type=number],.rtl .media-frame input[type=password],.rtl .media-frame input[type=search],.rtl .media-frame input[type=tel],.rtl .media-frame input[type=text],.rtl .media-frame input[type=url],.rtl .media-frame select,.rtl .media-frame textarea,.rtl .media-modal{font-family:Tahoma,sans-serif}:lang(he-il) .rtl .media-frame,:lang(he-il) .rtl .media-frame .search,:lang(he-il) .rtl .media-frame input[type=email],:lang(he-il) .rtl .media-frame input[type=number],:lang(he-il) .rtl .media-frame input[type=password],:lang(he-il) .rtl .media-frame input[type=search],:lang(he-il) .rtl .media-frame input[type=text],:lang(he-il) .rtl .media-frame input[type=url],:lang(he-il) .rtl .media-frame select,:lang(he-il) .rtl .media-frame textarea,:lang(he-il) .rtl .media-modal{font-family:Arial,sans-serif}@media only screen and (max-width:900px){.media-modal .media-frame-title{height:40px}.media-modal .media-frame-title h1{line-height:2.22222222;font-size:18px}.media-modal-close{width:42px;height:42px}.media-frame .media-frame-title{position:static;padding:0 44px;text-align:center}.media-frame:not(.hide-menu) .media-frame-content,.media-frame:not(.hide-menu) .media-frame-router,.media-frame:not(.hide-menu) .media-frame-toolbar{left:0}.media-frame:not(.hide-menu) .media-frame-router{top:80px}.media-frame:not(.hide-menu) .media-frame-content{top:114px}.media-frame.hide-router .media-frame-content{top:80px}.media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}.media-frame:not(.hide-menu) .media-menu{display:none;width:auto;max-width:80%;overflow:auto;z-index:2000;top:75px;left:50%;transform:translateX(-50%);right:auto;bottom:auto;padding:5px 0;border:1px solid #c3c4c7}.media-frame:not(.hide-menu) .media-menu.visible{display:block}.media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}.media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}.media-frame-menu-heading{clip-path:inset(50%);height:1px;overflow:hidden;padding:0;width:1px;border:0;margin:-1px;word-wrap:normal!important}.wp-core-ui .media-frame:not(.hide-menu) .button.media-frame-menu-toggle{display:inline-flex;align-items:center;position:absolute;left:50%;transform:translateX(-50%);margin:-6px 0 0;padding:0 2px 0 12px;font-size:.875rem;font-weight:600;text-decoration:none;background:0 0;height:.1%;min-height:40px}.wp-core-ui .button.media-frame-menu-toggle:active,.wp-core-ui .button.media-frame-menu-toggle:hover{background:0 0;transform:none}.wp-core-ui .button.media-frame-menu-toggle:focus{outline:1px solid transparent}.media-sidebar{width:230px}.options-general-php .crop-content.site-icon,.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon{margin-right:262px}.attachments-browser .attachments,.attachments-browser .attachments-wrapper,.attachments-browser .media-toolbar,.attachments-browser .uploader-inline,.attachments-browser.has-load-more .attachments-wrapper{right:262px}.attachments-browser .media-toolbar{height:82px}.attachments-browser .attachments,.attachments-browser .uploader-inline,.media-frame-content .attachments-browser .attachments-wrapper{top:82px}.attachment-details .setting,.media-sidebar .setting{margin:6px 0}.attachment-details .setting .name,.attachment-details .setting input,.attachment-details .setting textarea,.compat-item label span,.media-sidebar .setting .name,.media-sidebar .setting input,.media-sidebar .setting textarea{float:none;display:inline-block}.attachment-details .setting span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting span{float:none}.media-sidebar .setting .select-label-inline{display:inline}.attachment-details .setting .name,.compat-item label span,.media-sidebar .checkbox-label-inline,.media-sidebar .setting .name{text-align:inherit;min-height:16px;margin:0;padding:8px 2px 2px}.attachment-details .attachment-info .copy-to-clipboard-container,.media-sidebar .setting .copy-to-clipboard-container{margin-left:0;padding-top:0}.attachment-details .attachment-info .copy-attachment-url,.media-sidebar .setting .copy-attachment-url{margin:0 1px}.attachment-details .setting .value,.media-sidebar .setting .value{float:none;width:auto}.attachment-details .setting input[type=email],.attachment-details .setting input[type=number],.attachment-details .setting input[type=password],.attachment-details .setting input[type=search],.attachment-details .setting input[type=tel],.attachment-details .setting input[type=text],.attachment-details .setting input[type=url],.attachment-details .setting select,.attachment-details .setting textarea,.attachment-details .setting+.description,.media-sidebar .setting input[type=email],.media-sidebar .setting input[type=number],.media-sidebar .setting input[type=password],.media-sidebar .setting input[type=search],.media-sidebar .setting input[type=tel],.media-sidebar .setting input[type=text],.media-sidebar .setting input[type=url],.media-sidebar .setting select,.media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}.media-frame .media-toolbar input[type=search]{line-height:2.25}.attachment-details .setting select.columns,.media-sidebar .setting select.columns{width:auto}.media-frame .search,.media-frame input,.media-frame textarea{padding:3px 6px}.wp-admin .media-frame select{min-height:40px;font-size:16px;line-height:1.625;padding:5px 24px 5px 8px}.image-details .column-image{width:30%;left:70%}.image-details .column-settings{width:70%}.image-details .media-modal{left:30px;right:30px}.image-details .embed-media-settings .setting,.image-details .embed-media-settings .setting-group{margin:20px}.image-details .embed-media-settings .setting .name,.image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px;margin-left:0}.media-modal .legend-inline{position:static;transform:none;margin-left:0;margin-bottom:6px}.image-details .embed-media-settings .setting-group .setting{margin-bottom:0}.image-details .embed-media-settings .setting input.link-to-custom,.image-details .embed-media-settings .setting input[type=text],.image-details .embed-media-settings .setting textarea{width:100%;margin-left:0}.image-details .embed-media-settings .setting.has-description{margin-bottom:5px}.image-details .description{width:auto;margin:0 20px}.image-details .embed-media-settings .custom-size{margin-left:20px}.collection-settings .setting input[type=checkbox]{float:none;margin-top:0}.media-selection{min-width:120px}.media-selection:after{background:0 0}.media-selection .attachments{display:none}.media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}.media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}.media-frame input[type=email],.media-frame input[type=number],.media-frame input[type=password],.media-frame input[type=search],.media-frame input[type=text],.media-frame input[type=url],.media-frame select,.media-frame textarea{font-size:16px;line-height:1.5}.media-frame .media-toolbar input[type=search]{line-height:2.3755}.media-modal .media-toolbar .spinner{margin-bottom:10px}}@media screen and (max-width:782px){.imgedit-panel-content{grid-template-columns:auto}.media-frame-toolbar .media-toolbar{bottom:-54px}.mode-grid .attachments-browser .media-toolbar-primary{display:grid;grid-template-columns:auto 1fr}.mode-grid .attachments-browser .media-toolbar-primary input[type=search]{width:100%}.attachment-details .copy-to-clipboard-container .success,.media-sidebar .copy-to-clipboard-container .success{font-size:14px;line-height:2.71428571}.media-frame .wp-filter .media-toolbar-secondary{position:unset}.media-frame .media-toolbar-secondary .spinner{position:absolute;top:0;bottom:0;margin:auto;left:0;right:0;z-index:9}.media-bg-overlay{content:'';background:#fff;width:100%;height:100%;display:none;position:absolute;left:0;right:0;top:0;bottom:0;opacity:.6}}@media only screen and (max-width:640px),screen and (max-height:400px){.image-details .media-modal,.media-modal{position:fixed;top:0;left:0;right:0;bottom:0}.media-modal-backdrop{position:fixed}.options-general-php .crop-content.site-icon,.wp-customizer:not(.mobile) .media-frame-content .crop-content.site-icon{margin-right:0}.media-sidebar{z-index:1900;max-width:70%;bottom:120%;box-sizing:border-box;padding-bottom:0}.media-sidebar.visible{bottom:0}.attachments-browser .attachments,.attachments-browser .media-toolbar,.attachments-browser .uploader-inline,.media-frame-content .attachments-browser .attachments-wrapper{right:0}.image-details .media-frame-title{display:block;top:0;font-size:14px}.image-details .column-image,.image-details .column-settings{width:100%;position:relative;left:0}.image-details .column-settings{padding:4px 0}.media-frame-content .media-toolbar .instructions{display:none}.load-more-wrapper .load-more-jump{margin:12px 0 0}}@media only screen and (min-width:901px) and (max-height:400px){.media-frame:not(.hide-menu) .media-menu,.media-menu{top:0;padding-top:44px}.load-more-wrapper .load-more-jump{margin:12px 0 0}}@media only screen and (max-width:480px){.wp-core-ui.wp-customizer .media-button{margin-top:13px}}@media print,(min-resolution:120dpi){.wp-core-ui .media-modal-icon{background-image:url(https://brisk.uicore.co/education/wp-includes/css/../images/uploader-icons-2x.png);background-size:134px 15px}.media-frame .spinner{background-image:url(https://brisk.uicore.co/education/wp-includes/css/../images/spinner-2x.gif)}}.media-frame-content[data-columns="1"] .attachment{width:100%}.media-frame-content[data-columns="2"] .attachment{width:50%}.media-frame-content[data-columns="3"] .attachment{width:33.33%}.media-frame-content[data-columns="4"] .attachment{width:25%}.media-frame-content[data-columns="5"] .attachment{width:20%}.media-frame-content[data-columns="6"] .attachment{width:16.66%}.media-frame-content[data-columns="7"] .attachment{width:14.28%}.media-frame-content[data-columns="8"] .attachment{width:12.5%}.media-frame-content[data-columns="9"] .attachment{width:11.11%}.media-frame-content[data-columns="10"] .attachment{width:10%}.media-frame-content[data-columns="11"] .attachment{width:9.09%}.media-frame-content[data-columns="12"] .attachment{width:8.33%}
/*
 * imgAreaSelect animated border style
 */

.imgareaselect-border1 {
	background: url(https://brisk.uicore.co/education/wp-includes/js/imgareaselect/border-anim-v.gif) repeat-y left top;
}

.imgareaselect-border2 {
    background: url(https://brisk.uicore.co/education/wp-includes/js/imgareaselect/border-anim-h.gif) repeat-x left top;
}

.imgareaselect-border3 {
    background: url(https://brisk.uicore.co/education/wp-includes/js/imgareaselect/border-anim-v.gif) repeat-y right top;
}

.imgareaselect-border4 {
    background: url(https://brisk.uicore.co/education/wp-includes/js/imgareaselect/border-anim-h.gif) repeat-x left bottom;
}

.imgareaselect-border1, .imgareaselect-border2,
.imgareaselect-border3, .imgareaselect-border4 {
    filter: alpha(opacity=50);
	opacity: 0.5;
}

.imgareaselect-handle {
    background-color: #fff;
	border: solid 1px #000;
    filter: alpha(opacity=50);
	opacity: 0.5;
}

.imgareaselect-outer {
	background-color: #000;
    filter: alpha(opacity=50);
	opacity: 0.5;
}

.imgareaselect-selection {
}

:root{--tutor-text-size:16px;--tutor-color-white:#fff;--tutor-color-success:#24a148;--tutor-color-success-rgb:36,161,72;--tutor-color-warning:#ed9700;--tutor-color-warning-rgb:237,151,0;--tutor-color-danger:#f44337;--tutor-color-danger-rgb:244,67,55;--tutor-color-secondary:#41454f;--tutor-color-subdued:#5b616f;--tutor-color-hints:#767c8e;--tutor-color-muted:#757c8e;--tutor-color-gray:#e3e5eb;--tutor-color-gray-10:#eff1f6}.tutor-color-black{color:var(--tutor-body-color)}.tutor-color-white{color:#fff}.tutor-color-primary{color:var(--tutor-color-primary)}.tutor-color-success{color:#24a148}.tutor-color-warning{color:#ed9700}.tutor-color-danger{color:#f44337}.tutor-color-secondary{color:#41454f}.tutor-color-muted{color:#757c8e}.tutor-color-subdued{color:#5b616f}.tutor-color-hints{color:#767c8e}.tutor-color-gray-20{color:#e3e5eb}.tutor-color-gray-10{color:#eff1f6}.tutor-bg-black{background-color:var(--tutor-body-color)}.tutor-bg-white{background-color:#fff}.tutor-bg-primary{background-color:var(--tutor-color-primary)}.tutor-bg-success{background-color:#24a148}.tutor-bg-warning{background-color:#ed9700}.tutor-bg-danger{background-color:#f44337}.tutor-bg-secondary{background-color:#41454f}.tutor-bg-muted{background-color:#757c8e}.tutor-bg-subdued{background-color:#5b616f}.tutor-bg-hints{background-color:#767c8e}.tutor-bg-gray-20{background-color:#e3e5eb}.tutor-bg-gray-10{background-color:#eff1f6}.text-regular-body,.tutor-text-regular-body{font-size:16px;font-weight:400;line-height:162%}.text-regular-caption,.tutor-text-regular-caption{font-size:15px;font-weight:400;line-height:160%}.text-regular-small,.text-body,.tutor-text-regular-small{font-size:13px;font-weight:400;line-height:138%}.text-regular-tiny,.tutor-text-regular-tiny{font-size:11px;font-weight:400;line-height:145%}.text-medium-h1,.tutor-text-medium-h1{font-size:80px;font-weight:500;line-height:101%}.text-medium-h2,.tutor-text-medium-h2{font-size:60px;font-weight:500;line-height:117%}.text-medium-h3,.tutor-text-medium-h3{font-size:40px;font-weight:500;line-height:120%}.text-medium-h4,.tutor-text-medium-h4{font-size:30px;font-weight:500;line-height:123%}.text-medium-h5,.tutor-text-medium-h5{font-size:24px;font-weight:500;line-height:142%}.text-medium-h6,.tutor-text-medium-h6{font-size:20px;font-weight:500;line-height:140%}.text-medium-body,.tutor-text-medium-body{font-size:16px;font-weight:500;line-height:162%}.text-medium-caption,.tutor-instructor-filter .course-category-filter .tutor-form-check label.text-medium-caption,.tutor-text-medium-caption{font-size:15px;font-weight:500;line-height:160%}.text-medium-small,.tutor-text-medium-small{font-size:13px;font-weight:500;line-height:162%}.text-medium-tiny,.tutor-text-medium-tiny{font-size:11px;font-weight:500;line-height:145%}.text-semi-h1,.tutor-text-semi-h1{font-size:80px;font-weight:600;line-height:101%}.text-semi-h2,.tutor-text-semi-h2{font-size:60px;font-weight:600;line-height:117%}.text-semi-h3,.tutor-text-semi-h3{font-size:40px;font-weight:600;line-height:120%}.text-semi-h4,.tutor-text-semi-h4{font-size:30px;font-weight:600;line-height:123%}.text-semi-h5,.tutor-text-semi-h5{font-size:24px;font-weight:600;line-height:142%}.text-semi-h6,.tutor-text-semi-h6{font-size:20px;font-weight:600;line-height:150%}.text-semi-caption,.tutor-text-semi-caption{font-size:15px;font-weight:600;line-height:165%}.text-semi-small,.tutor-text-semi-small{font-size:13px;font-weight:600;line-height:128%}.text-bold-h1,.tutor-text-bold-h1{font-size:80px;font-weight:700;line-height:101%}.text-bold-h2,.tutor-text-bold-h2{font-size:60px;font-weight:700;line-height:117%}.text-bold-h3,.tutor-text-bold-h3{font-size:40px;font-weight:700;line-height:120%}.text-bold-h4,.tutor-text-bold-h4{font-size:30px;font-weight:700;line-height:123%}.text-bold-h5,.tutor-text-bold-h5{font-size:24px;font-weight:700;line-height:142%}.text-bold-h6,.tutor-text-bold-h6{font-size:20px;font-weight:700;line-height:150%}.text-bold-body,.tutor-text-bold-body{font-size:16px;font-weight:700;line-height:162%}.text-bold-caption,.tutor-text-bold-caption{font-size:15px;font-weight:700;line-height:160%}.text-bold-small,.tutor-text-bold-small{font-size:13px;font-weight:700;line-height:162%}.text-bold-tiny,.tutor-text-bold-tiny{font-size:11px;font-weight:700;line-height:145%}.text-btn-xlarge,.tutor-text-btn-xlarge{font-size:18px;font-weight:500;line-height:178%}.text-btn-large,.tutor-text-btn-large{font-size:16px;font-weight:500;line-height:200%}.text-btn-medium,.tutor-text-btn-medium{font-size:15px;font-weight:500;line-height:160%}.text-btn-small,.tutor-text-btn-small{font-size:13px;font-weight:500;line-height:123%}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.tutor-frontend *,body.tutor-frontend :before,body.tutor-frontend :after{box-sizing:border-box}body .media-modal *{box-sizing:content-box}.tutor-wrap{color:var(--tutor-body-color)}.tutor-wrap img{max-width:100%;height:auto}.tutor-custom-list-style{margin:0;padding:0;list-style:none}.tutor-custom-list-style li{margin-bottom:5px;padding-left:25px;line-height:30px;position:relative}.tutor-custom-list-style li:before{content:"";color:var(--tutor-color-primary);font-family:tutor;position:absolute;left:0}.tutor-entry-content>br{display:none}.tutor-entry-content p:not(:last-child){word-wrap:break-word;padding-bottom:20px}.tutor-segment-title{color:#000;margin-bottom:13px;font-size:18px;font-weight:500;line-height:23px}.tutor-course-topics-header{flex-wrap:wrap;justify-content:space-between;margin-bottom:8px;display:flex}.tutor-course-topics-header .tutor-course-topics-header-right span:not(:first-child){margin-left:45px}.tutor-course-topics-contents h4{font-size:var(--tutor-text-size);color:var(--tutor-body-color);margin-bottom:0;font-weight:500}.tutor-course-topics-contents .tutor-course-title{cursor:pointer}.tutor-course-topics-contents .tutor-course-title h4{color:var(--tutor-color-primary);margin-top:0;font-size:16px;line-height:25px;overflow:hidden}.tutor-course-topic.tutor-active .tutor-course-title h4>i:before{content:""}.tutor-course-topics-contents .tutor-course-title h4 i{float:left;margin-right:10px;font-size:15px;line-height:25px}.tutor-course-topics-contents .tutor-course-topic{border:1px solid #dce4e6;border-radius:5px;margin-bottom:20px;overflow:hidden}.tutor-course-title,.tutor-course-lesson{padding:14px 20px}.tutor-course-lesson{border-top:1px solid #dce4e6}.tutor-course-lesson h5{line-height:22px;font-size:var(--tutor-text-size);color:inherit;margin-top:0;margin-bottom:0;display:flex}.tutor-course-lesson h5 a{color:var(--tutor-color-primary);transition:all .3s}.tutor-course-lesson h5 a:hover{color:var(--tutor-color-primary-hover)}.tutor-course-lesson h5 i{vertical-align:text-top;color:var(--tutor-color-muted);margin-right:10px;line-height:22px;display:block}.tutor-course-lesson h5 .lesson-preview-icon i{margin-left:10px;margin-right:0}.tutor-course-lesson h5 .tutor-lesson-duration{align-self:flex-start;margin-left:auto;padding-left:5px}.tutor-course-lesson .lesson-preview-title{flex-direction:row;flex:1 0 0;align-items:flex-start;display:flex}table.course-single-gradebooks .datetime{margin:0;font-size:80%}.tutor-course-lessons .tutor-course-lesson h5 i.tutor-lesson-thumbnail-icon{text-align:center;color:#fff;z-index:1;border-radius:3px;width:70px;height:50px;margin-right:10px;font-size:20px;line-height:50px;position:relative;overflow:hidden;background-position:50%!important;background-size:cover!important}.tutor-course-lessons .tutor-course-lesson h5 i.tutor-lesson-thumbnail-icon:after{content:"";z-index:-1;background:rgba(0,0,0,.5);width:100%;height:100%;position:absolute;top:0;left:0}.theme-twentytwentytwo .select2-container .select2-selection{padding:.2rem}.tutor-password-protected-course .tutor-modal-overlay{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.tutor-password-protected-course .tutor-course-thumbnail{margin-bottom:60px}.tutor-password-protected-course .tutor-course-thumbnail img{width:100%}.tutor-password-protected-course .tutor-locked-badge{color:#202223;background-color:#fdf4e3;border-radius:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:4px 8px;font-size:14px;line-height:24px;display:inline-block}.tutor-password-protected-course .tutor-btn{justify-content:center;min-width:110px}.tutor-quiz-questions-pagination{margin-top:24px}.tutor-quiz-questions-pagination ul{flex-wrap:wrap;gap:10px;margin:0;list-style:none;display:flex;padding:0!important}.tutor-quiz-questions-pagination ul li{display:inline-block}.tutor-quiz-questions-pagination ul li a{border:1px solid var(--tutor-color-primary);color:var(--tutor-color-primary);border-radius:50%;justify-content:center;align-items:center;width:30px;height:30px;padding:7px 13px;font-size:15px;font-weight:700;display:flex}.tutor-quiz-questions-pagination ul li a:hover,.tutor-quiz-questions-pagination ul li a.active{background-color:var(--tutor-color-primary);color:#fff}.tutor-quiz-questions-pagination ul li a:hover:hover,.tutor-quiz-questions-pagination ul li a.active:hover{opacity:.8}.tutor-info-msg,.tutor-success-msg,.tutor-warning-msg,.tutor-error-msg{border-radius:3px;margin:10px 0;padding:10px}.tutor-info-msg{color:var(--tutor-color-primary);background-color:#bef}.tutor-success-msg{color:var(--tutor-color-success);background-color:#dff2bf}.tutor-warning-msg{color:#9f6000;background-color:#feefb3}.tutor-error-msg{color:#d8000c;background-color:#fbdcdc;border:1px solid #d8000c}.tutor-profile-photo-upload-wrap{width:200px;height:auto;margin-bottom:70px;position:relative}.tutor-profile-photo-upload-wrap img{width:100%;height:auto;display:block}a.tutor-profile-photo-upload-btn,button.tutor-profile-photo-upload-btn{background-color:var(--tutor-color-primary);color:#fff;text-align:center;width:100%;padding:9px 0;display:block;position:absolute;top:100%}a.tutor-profile-photo-upload-btn:hover,button.tutor-profile-photo-upload-btn:hover{background-color:var(--tutor-color-primary-hover);color:#fff}.tutor-profile-photo-delete-btn{color:#ff000c;position:absolute;top:10px;right:10px}.single-instructor-wrap{border:1px solid #e8eff1;border-radius:4px;margin-bottom:30px}.single-instructor-wrap .single-instructor-top{border-bottom:1px solid #e8eff1;padding:20px;display:flex}@media (max-width:767px){.single-instructor-wrap .single-instructor-top{flex-wrap:wrap}}.single-instructor-wrap .single-instructor-top h3,.single-instructor-wrap .single-instructor-top h4{margin:0;padding:0}.single-instructor-wrap .tutor-instructor-left{flex:none;padding-right:30px}@media (max-width:767px){.single-instructor-wrap .tutor-instructor-left{width:100%;margin-bottom:15px}}.single-instructor-wrap .instructor-name{float:left;max-width:180px;padding-left:20px}.single-instructor-wrap .instructor-name h3{color:var(--tutor-body-color);font-size:16px;font-weight:600}.single-instructor-wrap .instructor-name h3 a{color:var(--tutor-body-color);font-weight:500}.single-instructor-wrap .instructor-name h4{color:var(--tutor-color-muted);font-weight:500}.single-instructor-wrap .single-instructor-bottom{text-align:right;padding:15px 20px;overflow:hidden}@media (max-width:767px){.single-instructor-wrap .single-instructor-bottom{text-align:left}}.single-instructor-wrap .single-instructor-bottom p{margin:0}.single-instructor-wrap .single-instructor-bottom .ratings{float:left}.single-instructor-wrap .single-instructor-bottom .ratings i{margin-right:4px}.single-instructor-wrap .single-instructor-bottom .courses,.single-instructor-wrap .single-instructor-bottom .students{margin-left:20px;display:inline-block}.single-instructor-wrap .single-instructor-bottom .courses i,.single-instructor-wrap .single-instructor-bottom .students i{vertical-align:middle;margin-right:2px;font-size:18px;display:inline-block}.single-instructor-wrap .single-instructor-bottom .ratings .rating-total-meta{color:#bac0cf}.single-instructor-wrap .single-instructor-bottom .ratings .rating-generated{color:#f8c51c}.tutor-dashboard-pagination-results-stats{margin:10px 0 30px}.statement-address{color:#555;margin:10px 0}.statement-order-completed{background:var(--tutor-color-success);color:#fff;border:none;padding:2px 5px}.tutor-login-wrap,#tutor-registration-wrap{border-radius:5px;max-width:520px;margin:0 auto;padding:40px 0 32px;box-shadow:0 0 15px rgba(0,0,0,.1)}.tutor-login-form-wrapper,#tutor-registration-form{padding:24px}.tutor-login-form-wrapper .tutor-password-strength-checker .show-hide-btn,#tutor-registration-form .tutor-password-strength-checker .show-hide-btn{top:45%}@media (max-width:767px){.tutor-login-form-wrapper .tutor-password-strength-checker .show-hide-btn,#tutor-registration-form .tutor-password-strength-checker .show-hide-btn{top:42%}}.tutor-login-wrap form{margin:0}.tutor-login-wrap .tutor-login-title{text-align:center;margin-bottom:25px;padding:0 40px}.tutor-login-rememeber-wrap{text-align:right;margin-bottom:30px;overflow:hidden}.tutor-login-rememeber-wrap p{float:left;display:inline-block}.tutor-login-rememeber-wrap p,.tutor-login-rememeber-wrap label{margin:0}.tutor-form-register-wrap a,.tutor-login-rememeber-wrap a,.tutor-login-rememeber-wrap label{color:#606c8f;vertical-align:middle;opacity:.5;transition:all .3s}.tutor-form-register-wrap a:hover,.tutor-login-rememeber-wrap a:hover,.tutor-login-rememeber-wrap label:hover{opacity:1}.tutor-form-register-wrap{text-align:center;margin-top:15px}.tutor-course-login-wrap h4{color:var(--tutor-body-color);margin-bottom:20px;font-size:42px;line-height:1.2}.login-overlay-close{z-index:-1;background:0 0;width:100%;height:100%;position:absolute}.course-login-title{margin-bottom:50px}.tutor-option-field-row label,.tutor-form-group label{margin-top:-2px;margin-bottom:10px;display:block}.tutor-option-field textarea,.tutor-form-group textarea{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-option-field input[type=text]{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-option-field input[type=number]{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-option-field input[type=pas\.tutor-dashboard-content-innersword]{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-form-group input[type=text]{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-form-group input[type=number]{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-form-group input[type=password]{width:100%;box-shadow:none;text-indent:15px;background:#fff;border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:0;font-size:16px;line-height:48px;transition:all .3s;display:block}.tutor-option-field textarea,.tutor-form-group textarea{text-indent:0;height:180px;padding:15px;line-height:26px}.tutor-option-field textarea:focus,.tutor-form-group textarea:focus,.tutor-option-field input:focus,.tutor-form-group input:focus{outline:none}.tutor-option-field textarea:focus,.tutor-form-group textarea:focus{background:#fff;border-color:var(--tutor-color-primary)!important}.tutor-option-field input:not([type=submit]):focus{background:#fff;border-color:var(--tutor-color-primary)!important}.tutor-form-group input:not([type=submit]):focus{background:#fff;border-color:var(--tutor-color-primary)!important}.tutor-option-field textarea::-webkit-input-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field input::-webkit-input-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group textarea::-webkit-input-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group input::-webkit-input-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field textarea::-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field input::-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group textarea::-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group input::-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field textarea:-ms-input-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field input:-ms-input-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group textarea:-ms-input-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group input:-ms-input-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field textarea:-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-option-field input:-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group textarea:-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group input:-moz-placeholder{color:#b0b6c8;opacity:1}.tutor-form-group.tutor-reg-form-btn-wrap{text-align:right}.tutor-option-field p.desc{opacity:.7;margin:-10px 0 20px;font-size:13px;font-style:italic}.tutor-option-field:last-child .tutor-option-field p.desc{margin-bottom:0}.tutor-option-gorup-fields-wrap .tutor-lesson-video-runtime{display:flex}.tutor-option-gorup-fields-wrap .tutor-lesson-video-runtime .tutor-option-group-field{padding-right:30px}.tutor-price-preview-box{border:1px solid #dcdfe5;border-radius:4px;margin-bottom:30px;padding:20px;overflow:hidden}.tutor-price-box-thumbnail{margin:-20px -20px 20px}.tutor-price-box-thumbnail .tutor-single-lesson-segment{margin-bottom:0}.tutor-price-preview-box .price{margin:0 0 20px;font-size:35px;font-weight:500;line-height:1;overflow:hidden}.tutor-price-preview-box .price .subscription-details{font-size:var(--tutor-text-size);margin-top:12px;line-height:1.2em;display:block}.tutor-price-preview-box .price>.price{margin-bottom:0}.tutor-price-preview-box .price del+ins{float:left;margin-left:0}.tutor-course-reviews-wrap{border:1px solid #e8eff1;border-radius:4px}.tutor-course-avg-rating-total{color:var(--tutor-color-muted)}.tutor-course-avg-rating-total span{color:var(--tutor-body-color)}.tutor-review-individual-item{border-top:1px solid #e8eff1;padding:30px;overflow:hidden}.tutor-review-individual-item p{margin:0;padding:0}.course-avg-rating-wrap{padding:20px 20px 20px 40px}.tutor-review-individual-item .review-left{float:left;width:200px;overflow:hidden}.tutor-review-individual-item .review-content{padding-left:200px}@media (max-width:991px){.tutor-review-individual-item .review-left{float:none;width:100%;margin-bottom:25px}.tutor-review-individual-item .review-content{padding-left:0}}.tutor-review-individual-item .review-avatar{float:left;width:50px}.tutor-review-individual-item .review-avatar img{border:none;border-radius:50%;max-width:100%;height:auto;margin:0}.tutor-review-individual-item .tutor-review-user-info{float:left;padding-left:20px}.tutor-review-individual-item .tutor-review-user-info p{margin-bottom:0}.tutor-review-individual-item .tutor-review-user-info a{color:var(--tutor-body-color)}.review-avatar .tutor-text-avatar,.tutor-dashboard-avater .tutor-text-avatar,.instructor-avatar .tutor-text-avatar{text-align:center;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.4);border-radius:50%;width:50px;height:50px;line-height:50px;display:block}.course-avg-rating-wrap .course-avg-rating{font-size:76px;font-weight:400;line-height:1}.course-avg-rating-wrap p{margin:0}.tutor-review-individual-item .tutor-review-name{font-size:16px;font-weight:600}.tutor-review-individual-item .review-meta{color:var(--tutor-color-muted)}.individual-review-rating-wrap{color:#f8c51c}.individual-review-rating-wrap i,.course-avg-rating-html i{color:#f8c51c;margin-right:4px}.tutor-course-tags{margin:-5px}.tutor-course-tags a{color:var(--tutor-body-color);background:#e8eff1;border-radius:2px;margin:5px;padding:6px 15px;transition:all .3s;display:inline-block}.tutor-course-tags a:hover{color:#000}#tutor-single-entry-content .tutor-course-prerequisites{padding:60px}.prerequisites-course-lists{margin:0;padding:0;list-style:none}.prerequisites-course-lists li a{color:var(--tutor-color-primary);border:1px solid #dcdfe5;border-radius:4px;margin-bottom:20px;padding:13px 15px;font-size:16px;font-weight:500}.prerequisites-course-lists li:first-child{color:#b39f70;background:#fffff5;border:1px solid #f7e5b9;border-radius:4px;margin-bottom:20px;padding:13px 40px 13px 60px;font-weight:500;position:relative}.prerequisites-course-lists li:first-child>span{position:absolute;top:13px;left:20px}.prerequisites-course-lists li .prerequisites-course-item{align-items:center;display:flex}.prerequisites-course-feature-image img{border-radius:2px;width:70px;height:auto;box-shadow:0 0 1px rgba(0,0,0,.08);margin:0!important}.prerequisites-course-lists li .prerequisites-course-title{flex-grow:1;padding-left:15px;transition:all .3s}.prerequisites-course-lists li a:hover .prerequisites-course-title{color:var(--tutor-color-primary)}.prerequisites-course-checkmark{text-transform:uppercase;min-width:107px;height:24px;font-size:12px;font-weight:700;line-height:24px}.prerequisites-course-checkmark i{color:#dbdddd;text-align:center;background:#dbdddd;border-radius:2px;width:24px;height:24px;margin-right:3px;display:inline-block}.prerequisites-course-checkmark.is-complete i{background:var(--tutor-color-success);color:#fff}.rtl .tutor-progress-bar .tutor-progress-filled:after{left:auto;right:var(--tutor-progress-left);transform:translateY(-50%)translate(50%)}.rtl .tutor-progress-percent{padding-left:0;padding-right:20px}.rtl .tutor-course-lesson h5 i{margin-left:10px;margin-right:0}.rtl .tutor-course-lesson h5 .lesson-preview-icon i{margin-left:0;margin-right:10px}.rtl .tutor-course-lesson h5 .tutor-lesson-duration{text-align:left;flex-grow:1}.rtl .tutor-custom-list-style li{padding-left:0;padding-right:25px}.rtl .tutor-custom-list-style li:before{left:auto;right:0}.rtl .single-instructor-wrap .instructor-name{float:right;padding-left:0;padding-right:20px}.rtl .single-instructor-wrap .instructor-bio{padding-left:0;padding-right:260px}.rtl .tutor-lessons-under-topic .tutor-lesson-right-icons{left:15px;right:auto}.rtl .tutor-lessons-under-topic .tutor-lesson-right-icons .tutor-lesson-complete{margin-left:0;margin-right:8px}.rtl .tutor-single-lesson-button-group .tutor-single-lesson-button a>i:first-child,.rtl .tutor-topics-in-single-lesson .tutor-single-lesson-items a>i:first-child{margin-left:10px;margin-right:0}.rtl .tutor-topbar-home-btn{margin-left:0;margin-right:20px}@media screen and (max-width:546px){.rtl .tutor-topbar-home-btn{margin-right:10px}}.label-order-status{border-radius:3px;padding:3px 5px}.label-status-completed{color:#fff;background-color:#4bd863}.label-status-cancelled{color:#fff;background-color:#fd6a03}.label-status-on-hold{color:#fff;background-color:#db5382}.tutor-lesson-content-area h2{margin-top:20px;margin-bottom:25px;font-weight:500}.assignment-result-wrap{text-align:center;padding:10px 0}.submitted-assignment-grade-pass{color:var(--tutor-color-success)}.submitted-assignment-grade-failed{color:red}.received-marks{color:var(--tutor-color-primary)}.video-poster-img img{max-width:200px;height:auto}.tutor-assignment-information{font-size:16px}.tutor-assignment-information ul{flex-wrap:wrap;justify-content:space-between;align-items:center;margin:0 0 22px;padding:0;list-style:none;display:flex}.tutor-assignment-information ul li strong{font-weight:700}.tutor-assignment-attachment-upload-wrap .tutor-form-group{display:inline-block}.tutor-assignment-attachment-upload-wrap .tutor-form-group label+input{display:none}.tutor-assignment-attachment-upload-wrap .tutor-form-group label{cursor:pointer;border:1px solid #dcdfe5;border-radius:4px;margin-right:15px;padding:15px 17px;overflow:hidden}.tutor-assignment-attachment-upload-wrap .tutor-form-group label i{float:left;margin-right:12px;font-size:30px;line-height:30px}.tutor-assignment-attachment-upload-wrap .tutor-form-group label span{line-height:30px}.tutor-assignment-attachment-upload-wrap{margin-bottom:40px}.ui-sortable-placeholder{visibility:visible;background-color:rgba(221,221,221,.867)}.lesson-modal-close-wrap a{text-align:center;color:#3a3d42;background:#fff;width:50px;height:59px;font-size:15px;line-height:57px;display:inline-block;position:absolute;top:0;right:0}.lesson-modal-close-wrap a:hover{color:red}.lesson-modal-field.tutor-lesson-modal-title-wrap{width:95%}.lesson-modal-field-row input[type=text]{box-shadow:none;color:#333;vertical-align:middle;background-color:#fff;border:1px solid #ddd;border-radius:3px;min-width:400px;min-height:35px;margin:0 10px 0 0;padding:7px 12px;display:inline-block}.tutor-lesson-modal-title-wrap input{width:100%}.tutor-lesson-modal-wrap .modal-footer{background-color:#fff;width:100%;padding:10px 20px;position:-webkit-sticky;position:sticky;bottom:0}.tutor-option-field .tutor-lesson-edit-feature-img{width:100px;position:relative}.tutor-option-field .tutor-lesson-edit-feature-img img{width:100%;height:auto}.tutor-get-pro-text{color:#e02424}.updating-icon:before{content:"";font-family:tutor;animation:1s linear infinite spin;display:inline-block}.tutor-notice-warning{background-color:#fcf8e3;border-color:#faebcc;margin-bottom:10px;padding:20px}.quiz-modal-btn-cancel,.quiz-modal-btn-back{color:#4b5981;border:1px solid #d4dadb}.tutor-quiz-builder-group{margin-bottom:25px}.tutor-quiz-builder-group>p.warning{color:red;font-size:12px}.tutor-quiz-builder-group>p.help{color:#a4a4a4;margin-top:7px;font-size:12px}.tutor-quiz-builder-group>h4{color:#393c40;margin:0 0 15px;font-weight:600}.tutor-quiz-builder-row{align-items:center;margin-left:-10px;margin-right:-10px;display:flex}.tutor-quiz-builder-col{flex-grow:1;padding-left:10px;padding-right:10px}.tutor-quiz-builder-col.auto-width{flex:none}.tutor-quiz-builder-group textarea{text-indent:15px;box-shadow:none;color:#393c40;background:#fff;border:1px solid #dedede;border-radius:3px;width:100%;height:40px;margin:0;padding:5px 0;line-height:40px;display:inline-block}.tutor-quiz-builder-group input[type=text]{text-indent:15px;box-shadow:none;color:#393c40;background:#fff;border:1px solid #dedede;border-radius:3px;width:100%;height:40px;margin:0;padding:5px 0;line-height:40px;display:inline-block}.tutor-quiz-builder-group input[type=email]{text-indent:15px;box-shadow:none;color:#393c40;background:#fff;border:1px solid #dedede;border-radius:3px;width:100%;height:40px;margin:0;padding:5px 0;line-height:40px;display:inline-block}.tutor-quiz-builder-group input[type=number]{text-indent:15px;box-shadow:none;color:#393c40;background:#fff;border:1px solid #dedede;border-radius:3px;width:100%;height:40px;margin:0;padding:5px 0;line-height:40px;display:inline-block}.tutor-quiz-builder-group input[type=password]{text-indent:15px;box-shadow:none;color:#393c40;background:#fff;border:1px solid #dedede;border-radius:3px;width:100%;height:40px;margin:0;padding:5px 0;line-height:40px;display:inline-block}.tutor-quiz-builder-group textarea:focus{border-color:var(--tutor-color-primary)}.tutor-quiz-builder-group input[type=text]:focus{border-color:var(--tutor-color-primary)}.tutor-quiz-builder-group input[type=email]:focus{border-color:var(--tutor-color-primary)}.tutor-quiz-builder-group input[type=number]:focus{border-color:var(--tutor-color-primary)}.tutor-quiz-builder-group input[type=password]:focus{border-color:var(--tutor-color-primary)}.tutor-quiz-builder-group textarea{resize:none;text-indent:0;height:80px;padding:11px 15px;line-height:22px}.tutor-quiz-builder-group textarea[name=quiz_description]{height:150px}.tutor-quiz-builder-group select{box-shadow:none;border:1px solid #ccc;margin:0;line-height:1;height:42px!important;padding:0 12px!important}.question-type-pro{color:#fff;font-size:9px;position:absolute;top:50%;right:11px;transform:translateY(-50%)}.quiz-builder-question{background:#fff;border:1px solid #e2e2e2;border-radius:3px;flex:1;max-width:calc(100% - 52px);padding:10px;display:flex}.quiz-builder-question .question-sorting{margin-right:10px;line-height:22px}.quiz-builder-question .question-sorting i{line-height:24px;display:block}.quiz-builder-question .question-edit-icon{line-height:22px}.quiz-builder-question .question-title{text-overflow:ellipsis;white-space:nowrap;flex:1;margin-right:10px;line-height:22px;overflow:hidden}.quiz-builder-question .question-icon{flex:0 0 155px}.quiz-builder-qustion-trash a{color:rgba(57,60,64,.4);padding:0 0 0 10px;font-size:20px;line-height:44px;display:block}.tutor-quiz-answer-wrap{display:flex}.tutor-quiz-answer-trash-wrap a.answer-trash-btn{padding:0 10px;line-height:44px;display:inline-block}span.tutor-quiz-answer-title{flex:1}.tutor-quiz-answer-media .option-media-preview{margin-bottom:20px}.tutor-quiz-answer-media .option-media-preview img{max-width:80px;height:auto}.tutor-question-answer-image{margin-right:10px}.tutor-question-answer-image img{width:auto;max-height:25px}.tutor-video-embeded-wrap{max-width:100%;height:0;padding-bottom:56.25%;position:relative;overflow:hidden}.tutor-video-embeded-wrap iframe,.tutor-video-embeded-wrap object,.tutor-video-embeded-wrap embed{width:100%;height:100%;position:absolute;top:0;left:0}.select2-selection__rendered [class^=tutor-icon-]{vertical-align:top;margin-right:6px;display:inline-block}.select2-results__options [class^=tutor-icon-]{color:var(--tutor-color-primary);vertical-align:top;margin-right:6px;display:inline-block}.select2-results__option--highlighted [class^=tutor-icon-]{color:#fff}.video-metabox-source-input-wrap{background-color:#f4f7f8;border:1px solid #dcdfe5;border-radius:3px;padding:30px}.no-memberhsip-msg-wrap p{margin:0}.content-drip-message-wrap.tutor-error-msg{margin:40px 50px}.content-drip-message-wrap{margin:120px}.content-drip-wrap-flex{display:flex}.content-drip-wrap-flex .content-drip-left{margin-right:50px}.content-drip-wrap-flex ul{margin:0;list-style-position:inside}.content-drip-wrap-flex ul li a{color:var(--tutor-color-primary)}.gradename-bg{text-align:center;color:#fff;border-radius:20px;min-width:32px;height:32px;margin-right:7px;padding:0 8px;font-size:16px;font-weight:700;line-height:32px;display:inline-block}.gradename-outline{text-align:center;border:2px solid;border-radius:20px;min-width:32px;height:32px;margin-right:7px;padding:0 8px;font-size:16px;line-height:26px;display:inline-block}.generate-course-gradebook-btn-wrap{margin:10px 0}.gradebook-result-for-label{background-color:#e8eff1;margin:0 0 10px;padding:4px 7px;display:inline-block}table.course-single-gradebooks{border-spacing:0;border-collapse:collapse;border:1px solid #dcdfe5;width:100%}table.course-single-gradebooks th{text-align:left;vertical-align:top;border-bottom:1px solid #dcdfe5;padding:1em 1.41575em;font-weight:600}table.course-single-gradebooks thead th{vertical-align:middle;background-color:rgba(220,223,229,.14);padding:1.41575em}table.course-single-gradebooks tbody td{border-bottom:1px solid #dcdfe5;background-color:#fff!important}table.course-single-gradebooks a{color:#4b5981}.text-label{background-color:#e8eff1;border-radius:3px;margin:0;padding:4px 7px;display:inline-block}.text-label.submitted-assignment-grade-pass{color:#fff;background-color:#86b223}.text-label.submitted-assignment-grade-failed{color:#fff;background-color:#d71830}.tutor-bp-message-recipient-header{margin-bottom:20px;display:flex}.tutor-bp-recipient-info-wrap{flex-grow:1}.tutor-bp-message-recipient-avatar-wrap img{border-radius:50%;width:70px;height:70px}.tutor-bp-message-recipient-avatar-wrap{margin-right:35px}.tutor-bp-message-recipient-header .tutor-bp-thread-recipient-name h3{font-size:22px;font-weight:600;line-height:28px;margin:10px 0 8px!important}.tutor-bp-message-recipient-header .tutor-bp-thread-recipient-name h4{font-size:16px;font-weight:500;line-height:1;margin:0 0 20px!important}.tutor-bp-enrolled-courses-wrap{margin:0}.tutor-bp-enrolled-courses-wrap .tutor-bp-enrolled-total-course-notice{color:#1c294b;font-weight:400;margin:10px 0 8px!important}.tutor-bp-enrolled-courses-wrap ul{color:#50616f;margin:0;padding:0 0 0 17px}.tutor-bp-enrolled-courses-wrap ul li a{color:#54616d;padding-left:10px;line-height:1.7;display:block}.tutor-bp-enrolled-courses-wrap ul li a:hover{color:var(--tutor-color-primary);opacity:1;transition:all .3s;text-decoration:underline!important}.oxy-tutor-element{width:100%}.list-item-price ins{text-decoration:none}.list-item-price del{color:#757c8e;font-size:15px;font-weight:400;line-height:160%}.list-item-button .ajax_add_to_cart.added,.tutor-course-booking-availability .ajax_add_to_cart.added{display:none}@media only screen and (min-width:1200px){.tutor-course-list-pagination.tutor-pagination{width:80%;margin:50px auto 0}}@media only screen and (max-width:1199px){.tutor-course-list-pagination.tutor-pagination{width:90%;margin:50px auto 0}}.list-item-button .edd-has-js.edd-no-js{display:none!important}.tutor-forgot-password-form,.tutor-reset-password-form{max-width:520px;margin:0 auto;padding:15px;padding:15px!important}.tutor-social-share-wrap button{color:#fff;cursor:pointer;border:none;border-radius:6px;align-items:center;margin-right:16px;padding:8px 15px;display:inline-flex}@media (max-width:575.98px){.tutor-social-share-wrap button{justify-content:center;width:150px}.tutor-social-share-wrap button:not(:first-child){margin-top:10px}}.tutor-social-share-wrap button span{color:#fff;font-size:15px;font-style:normal;font-weight:500;position:relative;top:1px;left:2px}.tutor-social-share-wrap .tutor_share.s_linkedin i{margin-top:-2px}.tutor-course-loop-price{color:var(--tutor-body-color);gap:5px;font-size:16px}.tutor-course-loop-price>.price{flex-wrap:wrap;justify-content:space-between;align-items:center;font-weight:600;display:flex}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap{margin-left:auto}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a{color:var(--tutor-body-color);vertical-align:top;background:0 0;padding:0;font-weight:400;line-height:20px;display:block;position:relative}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a.added{display:none}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a:hover{color:var(--tutor-color-primary)}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap a:before{content:"";speak:none;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;color:var(--tutor-color-primary);margin-right:5px;font-style:normal;font-weight:400;line-height:20px;font-family:tutor!important}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap .tutor-course-booked-fully{margin-left:auto}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap .tutor-course-booked-fully>*{vertical-align:middle;display:inline-block}.tutor-course-loop-price>.price .tutor-loop-cart-btn-wrap .tutor-course-booked-fully img{width:24px;height:24px}.tutor-course-loop-price>.price .subscription-details{margin-left:4px;font-size:15px;font-weight:400}.tutor-course-loop-price>.price del{font-weight:400}.tutor-course-loop-price>.price del>span{margin-right:6px}.tutor-course-loop-price>.price del span{color:var(--tutor-color-muted);text-decoration:line-through}.tutor-course-loop-price>.price del+ins{background:0 0;margin-left:0;text-decoration:none}@media (max-width:1199px){.tutor-course-filter-container{z-index:999999;background-color:#fff;width:340px;padding:32px;transition:all .3s ease-in;position:fixed;top:0;bottom:0;right:-100%;overflow-y:auto}.tutor-course-filter-backdrop{z-index:-1;opacity:0;mix-blend-mode:normal;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background-color:rgba(22,22,22,.5);width:100%;height:100%;transition:all .3s ease-in;position:fixed;top:0;left:0}body.tutor-course-filter-open .tutor-course-filter-container{right:0}body.tutor-course-filter-open .tutor-course-filter-backdrop{opacity:1;z-index:999998}}@media (min-width:1200px){.tutor-course-filter-backdrop{display:none}}.tutor-single-course-wrapper{overflow:auto}.tutor-single-course-wrapper>div{float:left;width:100%}@media (min-width:992px){.tutor-single-course-wrapper>div:first-child{width:calc(100% - 370px)}.tutor-single-course-wrapper>div:last-child{float:right;width:350px}}.course-enrolled-nav-wrap{border-bottom:1px solid #dedfe0;margin-bottom:45px}.course-enrolled-nav-wrap .course-enrolled-nav ul{margin:0 0 -1px;padding:0;list-style:none}.course-enrolled-nav-wrap .course-enrolled-nav ul li{display:inline-block}.course-enrolled-nav-wrap .course-enrolled-nav ul li a{color:var(--tutor-color-muted);border-bottom:2px solid transparent;margin-right:20px;padding:5px 0 20px;font-size:16px;display:block}.course-enrolled-nav-wrap .course-enrolled-nav ul li:not(:first-child) a{margin-left:20px}.course-enrolled-nav-wrap .course-enrolled-nav ul li.active a{border-bottom:2px solid var(--tutor-color-primary);color:var(--tutor-body-color)}.course_template_shortcode .tutor-courses-wrap{margin-top:0}.course-players{position:relative;overflow:hidden}.tutor-single-course-sidebar.tutor-sidebar-sticky{z-index:501;position:-webkit-sticky;position:sticky;top:50px}.tutor-single-course-sidebar .tutor-sidebar-card .tutor-card-body{background-color:#f4f6f9;border-top-left-radius:6px;border-top-right-radius:6px}.tutor-single-course-sidebar .tutor-course-single-info-card{background-color:#fcfcfd}.tutor-single-course-sidebar-more>div{border-left:1px solid var(--tutor-border-color);border-right:1px solid var(--tutor-border-color);background-color:#fcfcfd;margin:0;padding:16px 32px}.tutor-single-course-sidebar-more>div:first-child{border-top:1px solid var(--tutor-border-color);border-top-left-radius:6px;border-top-right-radius:6px;padding-top:24px}.tutor-single-course-sidebar-more>div:last-child{border-bottom:1px solid var(--tutor-border-color);border-bottom-right-radius:6px;border-bottom-left-radius:6px;padding-bottom:24px}.tutor-single-course-sidebar-more .tutor-course-details-instructors{padding-bottom:24px}.tutor-single-course-sidebar-more .tutor-course-details-instructors+div{border-top:1px solid var(--tutor-border-color);padding-top:24px}.tutor-course-author img{vertical-align:middle;border-radius:50%;width:34px;height:34px;margin-right:8px;overflow:hidden}.tutor-course-author span{color:#757c8e;font-size:16px;font-style:normal;font-weight:400}.tutor-course-author strong{color:#3f435b;font-size:16px;font-style:normal;font-weight:500}.tutor-text-ellipsis,.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-selected>*,.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-selected{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-option:last-child{border-top:none}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-selected{align-items:center;margin-bottom:0;display:grid}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-selected .text-medium-body{padding-right:20px}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-options-container{z-index:-1;flex-direction:column;min-width:228px;display:flex;overflow-y:hidden}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-options-container .tutor-input-search input{border-color:#dcdbdc;border-top-style:none;border-top-width:medium;border-left-style:none;border-left-width:medium;border-right-style:none;border-right-width:medium;border-bottom-left-radius:unset!important;border-bottom-right-radius:unset!important}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-options-container .tutor-input-search input:active,.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-options-container .tutor-input-search input:focus{box-shadow:none;border-color:#dcdbdc}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-options-container.is-active{z-index:999;text-align:left}.tutor-dropdown-select.select-dropdown .tutor-dropdown-select-options-container .tutor-frequencies{max-height:100%;overflow-y:auto}.tutor-zoom-meeting-modal-wrap .tutor-dropdown-select.select-dropdown{width:100%}.tutor-dashboard-content{margin-bottom:60px}.tutor-dashboard-content>h2{margin-bottom:20px}.tutor-dashboard-assignment-submitted-table tr td{text-align:center}.tutor-dashboard-assignment-submitted-table tr td a{color:#8c94a8;transition:all .3s}.tutor-dashboard-assignment-submitted-table tr td a:hover{color:var(--tutor-color-primary)}.tutor-dashboard-assignment-submitted-table tr td,.tutor-dashboard-assignment-submitted-table tr th{border:1px solid #dcdfe5}.tutor-assignment-review-header{margin-bottom:30px}.tutor-assignment-review-header h3{margin-bottom:10px;line-height:28px}.tutor-assignment-evaluate-wraps h3,.tutor-assignment-review-header h3 a{color:var(--tutor-body-color);font-size:22px;font-weight:700;display:block}.tutor-assignment-review-header p{color:var(--tutor-body-color);margin:0;font-weight:400}.tutor-assignment-review-header p a{color:var(--tutor-body-color);font-weight:400}.tutor-assignment-review-header a{transition:all .3s}.tutor-assignment-review-header a:hover{color:var(--tutor-color-primary)}.tutor-option-field-label label br{display:none}.tutor-option-field-label label p{margin:0;display:inline-block}.tutor-dashboard-avater img{border-radius:50%;width:70px;height:70px;display:block}.tutor-dashboard-student-info h4{color:var(--tutor-color-muted);margin-bottom:0;font-size:18px}.tutor-dashboard-student-info h4 a{color:var(--tutor-body-color)}.tutor-dashboard-user-role{font-weight:400}@media (max-width:991px){.tutor-dashboard-student .tutor-col-3,.tutor-dashboard-student .tutor-col-9{flex:0 0 100%;max-width:100%}.profile-completion-warning-details{margin-bottom:10px}}.tutor-dashboard-menu-divider{background-color:var(--tutor-border-color);height:1px;margin:10px 0;overflow:hidden}.tutor-dashboard-menu-divider-header{color:#acacac;cursor:default;padding:10px 20px}.tutor-date-range-wrap{display:inline-block}.date-range-input{width:100%;position:relative}.date-range-input:last-child{margin-right:0}.date-range-input:last-child button{border-radius:0}.date-range-input input{box-shadow:none;width:100%;margin:0;padding-top:0;padding-bottom:0;padding-right:30px;line-height:29px}.date-range-input input[type=text]{box-shadow:none;width:100%;margin:0;padding-top:0;padding-bottom:0;padding-right:30px;line-height:29px}.date-range-input i.tutor-icon-calendar{position:absolute;top:7px;right:10px}.date-range-input button{background-color:var(--tutor-color-primary);color:#fff;border:none;padding:0 15px;line-height:30px}.date-range-input button:hover{background-color:var(--tutor-color-primary-hover)}.tutor-dashboard-statement-table-wrap{overflow-x:auto}table.tutor-dashboard-statement-table p{margin:0;padding:0}table.tutor-dashboard-statement-table p.small-text{color:#666;font-size:12px}@media (max-width:580px){.profile-completion-warning-details li{display:block!important}}.tutor-mycourse-view,.tutor-mycourse-edit,.tutor-mycourse-delete{color:var(--tutor-color-muted);transition:all .3s}.tutor-mycourse-view i,.tutor-mycourse-edit i,.tutor-mycourse-delete i{line-height:inherit;vertical-align:top;color:var(--tutor-color-primary);display:inline-block}.tutor-mycourse-view:hover,.tutor-mycourse-edit:hover,.tutor-mycourse-delete:hover{color:var(--tutor-color-primary)}.tutor-dashboard-content-inner .tutor-mycourse-wrap{border:1px solid #dcdfe5;border-radius:4px;flex-direction:row;margin-bottom:30px;display:flex;position:relative;overflow:hidden}@media (max-width:580px){.tutor-dashboard-content-inner .tutor-mycourse-wrap{flex-wrap:wrap}}.tutor-dashboard-content-inner .tutor-mycourse-wrap .tutor-course-status h4{display:none}.tutor-dashboard-content-inner .tutor-mycourse-wrap p:last-child{margin-bottom:0}@media screen and (max-width:767.98px){.tutor-header-right-side{justify-content:flex-start;margin-bottom:20px}}@media (max-width:767.98px){.tutor-header-right-side{margin-top:20px}}.submitted-assignment-title a,.submitted-assignment-title h3{margin-bottom:20px}.submitted-assignments-sorting-wrap{margin-bottom:30px}.submitted-assignments-sorting-wrap .tutor-form-group{align-items:center;display:flex;flex-basis:25%!important}.submitted-assignments-sorting-wrap .tutor-form-group label,.submitted-assignments-sorting-wrap .tutor-form-group select{margin-bottom:0}.submitted-assignments-sorting-wrap .tutor-form-group label{flex-basis:35%}.submitted-assignments-sorting-wrap .tutor-form-group select{height:40px}.tutor-dashboard-assignment-table .student-column{align-items:center;display:flex}.tutor-dashboard-assignment-table .student-column .student-avatar{width:34px;margin-right:10px}.tutor-dashboard-assignment-table .student-column .student-avatar img{border-radius:50%}.tutor-dashboard-assignment-table .student-column .student-avatar span{text-align:center;border-radius:50%;width:34px;height:34px;font-size:12px;line-height:34px;display:block}.tutor-dashboard-assignment-table .student-column .student-details h4,.tutor-dashboard-assignment-table .student-column .student-details p{margin-bottom:0;line-height:1.3}.tutor-dashboard-assignment-table span.review-required,.tutor-dashboard-assignment-table span.result-pass,.tutor-dashboard-assignment-table span.result-fail{color:#fff;background:#df3247;border-radius:2px;padding:4px 11px;font-size:14px;font-weight:700}.tutor-dashboard-assignment-table span.result-pass{background:var(--tutor-color-success)}.tutor-dashboard-assignment-table span.review-required{background:#f5b30d}.tutor-assignment-review-header p span{color:var(--tutor-body-color);font-weight:600}.tutor-assignment-submitted-page{border-bottom:none}.tutor-assignment-submitted-page .assignment-info{align-items:center;display:flex}.tutor-assignment-submitted-page .assignment-info p{margin-right:15px}.tutor-assignment-submitted-page h3{margin:5px 0}.tutor-dashboard-announcement-sorting-input{grid-template-columns:1fr 3fr;align-items:center;max-width:294px;display:grid}.tutor-dashboard-announcement-sorting-wrap{column-gap:15px;display:flex}.tutor-dashboard-announcement-sorting-wrap div:first-child{flex-basis:50%}.tutor-dashboard-announcement-sorting-wrap div:nth-child(2){flex-basis:20%}.tutor-dashboard-announcement-sorting-wrap div:nth-child(3){flex-basis:30%}.tutor-announcement-datepicker{position:relative}.tutor-announcement-datepicker input,.tutor-announcement-datepicker i{position:absolute}.tutor-announcement-datepicker i{color:#3e64de;top:50%;right:10px}table.frontend-dashboard-table tbody tr td[data-th=Date]{vertical-align:baseline}table.frontend-dashboard-table tbody tr td[data-th=Date] div.td-datetime{margin-top:3px}.tutor-quiz-attempt-info-row .attempt-view-bottom,.tutor-quiz-attempt-info-row .attempt-view-top{justify-content:space-between;display:flex}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col,.tutor-quiz-attempt-info-row .attempt-view-top .attempt-info-col{align-items:center;max-width:30%;display:inline-flex}.tutor-quiz-attempt-info-row .attempt-view-bottom .attempt-info-col{align-items:flex-start}.tutor-quiz-attempt-info-row .attempt-info-content span.result-review-required,.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass,.tutor-quiz-attempt-info-row .attempt-info-content span.result-fail{color:#fff;background:#df3247;border-radius:2px;margin-right:13px;padding:1px 4px;font-size:14px;font-weight:400}.tutor-quiz-attempt-info-row .attempt-info-content span.result-pass{background:var(--tutor-color-success)}.tutor-quiz-attempt-info-row .attempt-info-content span.result-review-required{background:#f5b30d}.tutor-quiz-attempt-info-row .attempt-info-content h4,.tutor-quiz-attempt-info-row .attempt-info-content h5{color:#7a7f85;margin:0;font-size:14px;font-weight:400;line-height:25px}.tutor-quiz-attempt-info-row .attempt-info-content h4 a,.tutor-quiz-attempt-info-row .attempt-info-content h4{color:var(--tutor-body-color);margin-top:7px;font-weight:700}.tutor-quiz-attempt-info-row .attempt-view-top{border-bottom:1px solid #dcdfe5;margin-bottom:30px;padding-bottom:30px}.tutor-quiz-attempt-info-row .attempt-view-bottom{margin-bottom:60px}.attempt-user-details{align-items:center;display:flex}.attempt-user-details .attempt-user-avatar{padding-right:20px}.attempt-user-details .attempt-user-avatar img{border-radius:50%;width:70px;height:70px;display:block}.attempt-user-details .attempt-info-content h4{font-size:18px}.attempt-review-notice-wrap{justify-content:space-between;margin-bottom:60px;display:flex}.attempt-review-notice-wrap p{align-items:center;margin:0;display:inline-flex}.attempt-review-notice-wrap p.attempt-review-notice i{color:#f5c813;margin-right:9px;font-size:16px}.attempt-review-notice-wrap p.attempt-review-at>span{color:var(--tutor-color-primary);margin-right:7px;font-size:16px}.attempt-review-notice-wrap p>strong{margin-right:5px;font-weight:400}.quiz-view-attempts-wrapper{flex-direction:row;justify-content:flex-start;align-items:center;display:flex}.quiz-view-attempts-wrapper .back-to-quiz-btn{margin-left:10px;color:#fff!important}.tutor-status-blocked-context i,.tutor-status-approved-context i,.quiz-correct-answer-text i,.quiz-incorrect-answer-text i{text-align:center;color:#fff;background:#7bbc30;border-radius:2px;width:20px;height:20px;margin-right:6px;font-size:14px;line-height:20px;display:inline-block}.tutor-status-blocked-context i,.quiz-incorrect-answer-text i{background:#f44337;font-size:10px;font-weight:900}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-rating-media.content-for-desktop,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-rating-media.content-for-desktop{flex-direction:column;display:flex}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .tutor-rating-container,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .tutor-rating-container{align-self:flex-end}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .ratings,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .ratings{align-items:flex-end;display:flex}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .ratings .text-regular-caption,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .ratings .text-regular-caption{color:#c0c3cb!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-rating-media.content-for-desktop{row-gap:15px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle{row-gap:3px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .ratings{display:flex}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3{margin-bottom:15px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding-left:40px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name span{font-weight:400;color:var(--tutor-color-secondary)!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-pic{border-radius:50%;width:200px;height:200px;border:none!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-rating-container{margin-top:30px;padding-left:80px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{top:110px}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-pic{border-radius:50%;width:160px;height:160px}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area{top:-147px}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .tutor-social-container{margin-top:2px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name{padding-left:23px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name span{font-weight:300}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-pic{border-radius:10px;width:235px;height:275px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .tutor-social-container{margin-top:12px}.tutor-user-public-profile .photo-area{height:414px;margin-top:30px;overflow:hidden}.tutor-user-public-profile .photo-area .cover-area{border-radius:6px;position:relative;overflow:hidden}.tutor-user-public-profile .photo-area .cover-area>div:first-child{background-position:50%;background-repeat:no-repeat;background-size:cover;height:352px}.tutor-user-public-profile .photo-area .cover-area>div:last-child{background-image:linear-gradient(transparent,rgba(0,0,0,.6));height:70%;position:absolute;bottom:0;left:0;right:0}.tutor-user-public-profile .photo-area .pp-area{align-items:center;gap:30px;padding-left:40px;display:flex;position:relative;top:-141px}@media (max-width:992px){.tutor-user-public-profile .photo-area .pp-area{gap:10px}}.tutor-user-public-profile .photo-area .pp-area .profile-pic{background-position:50%;background-repeat:no-repeat;background-size:cover;border:8px solid #fff;display:inline-block}.tutor-user-public-profile .photo-area .pp-area .profile-name h3{color:#fff;margin:0;font-size:40px;font-style:normal;font-weight:600;line-height:48px}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media{text-align:right;flex:1;padding-bottom:20px;padding-right:30px}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container{font-size:16px}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container .rating-digits{color:#fff;font-size:16px;font-weight:500}.tutor-user-public-profile .photo-area .pp-area .profile-rating-media .tutor-rating-container .rating-total-meta{color:#757575}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container{text-align:right}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container a{color:#f5f5f5;cursor:pointer;margin-left:15px;font-size:16px;text-decoration:none;display:inline-block}.tutor-user-public-profile .photo-area .pp-area .tutor-social-container a:hover{color:#fff}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area{overflow:initial}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .profile-rating-media{padding-bottom:137px}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .tutor-user-profile-sidebar{margin-top:79px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area{height:auto}.tutor-user-public-profile.tutor-user-public-profile-no-cp .cover-area{display:none}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{top:0}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding-top:40px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3{color:#161616!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span>span{color:#000!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{position:absolute;top:15px;left:226px}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media .rating-digits{color:#161616!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-rating-container{text-align:left}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{text-align:left!important;margin-top:5px!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container a{margin-right:20px;color:#41454f!important;margin-left:0!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container a:hover{color:#161616!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{width:calc(100% - 157px)}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container{position:absolute;left:auto;right:36px}@media (min-width:768px){.tutor-user-public-profile .content-for-mobile{display:none}.tutor-user-public-profile .content-for-desktop{display:block}}@media (max-width:991px){.tutor-user-public-profile .profile-name span{color:#757575!important}.tutor-user-public-profile .content-for-mobile{margin:22px 0 0;display:block;padding:0!important}.tutor-user-public-profile .content-for-mobile .ratings{justify-content:center;align-items:center}.tutor-user-public-profile .content-for-desktop{display:none!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .photo-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area{height:auto}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .photo-area .cover-area>div:first-child,.tutor-user-public-profile.tutor-user-public-profile-no-cp .photo-area .cover-area>div:first-child,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .photo-area .cover-area>div:first-child{height:220px}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{flex-wrap:wrap;justify-content:center;padding-left:0!important;top:-82px!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-rating-media{text-align:center!important;width:100%!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name>span>span,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span>span,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name>span>span{color:#000!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name>span:nth-of-type(2)>span,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name>span:nth-of-type(2)>span,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name>span:nth-of-type(2)>span{color:#c4c4c4!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .profile-name h3,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name h3,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-name h3{color:#161616!important;font-size:30px!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .rating-digits,.tutor-user-public-profile.tutor-user-public-profile-no-cp .rating-digits,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .rating-digits{color:#161616!important}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{top:-98px!important}.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .profile-pic{width:153px!important;height:160px!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area,.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media,.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-social-container,.tutor-user-public-profile.tutor-user-public-profile-no-cp .ratings{text-align:center!important;position:static!important;top:0!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-name{padding:0!important}.tutor-user-public-profile .tutor-social-container{margin:15px 0 0!important}.tutor-user-public-profile .tutor-social-container a{color:#41454f!important}.tutor-user-public-profile .profile-name{padding:0!important}.tutor-user-public-profile.tutor-user-public-profile-pp-circle .pp-area,.tutor-user-public-profile.tutor-user-public-profile-pp-rectangle .pp-area{margin-top:-83px!important;position:relative!important;top:0!important}.tutor-user-public-profile .tutor-user-profile-sidebar{margin-top:0!important}}.tutor-user-public-profile .tutor-user-profile-sidebar{float:left;width:278px;padding:15px}.tutor-user-public-profile .tutor-user-profile-content{float:right;width:calc(100% - 278px);margin-bottom:30px;padding-left:30px}.tutor-user-public-profile .tutor-user-profile-content h3{color:var(--tutor-body-color);margin-top:20px;font-style:normal;font-weight:400;line-height:34px;font-size:24px!important}.tutor-user-public-profile .tutor-user-profile-content h3:first-child{margin-top:0}.tutor-user-public-profile .tutor-user-profile-content p{color:var(--tutor-color-secondary);font-size:16px;line-height:28px}@media (max-width:991px){.tutor-user-public-profile.tutor-user-public-profile-no-cp .pp-area{padding-left:0!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .profile-rating-media{left:178px!important}.tutor-user-public-profile.tutor-user-public-profile-no-cp .tutor-rating-container{padding-left:0}.tutor-user-public-profile .tutor-user-profile-sidebar,.tutor-user-public-profile .tutor-user-profile-content{float:none;width:100%;padding:10px 0}}@media (min-width:992px){.tutor-user-public-profile .photo-area{margin-bottom:-90px}}@media (max-width:992px){.tutor-user-public-profile .student-details-table-wrapper{margin-top:40px}}.analytics-profile-authormeta{gap:20px}@media (min-width:1200px){.analytics-profile-authormeta{gap:40px;display:flex}.analytics-profile-authormeta>:first-child{position:relative}.analytics-profile-authormeta>:first-child:before{content:"";background:#c4c4c4;border-radius:50%;width:4px;height:4px;position:absolute;top:50%;right:-20px;transform:translateY(-50%)}}@media (max-width:1200px){.analytics-profile-authormeta>*{display:block}}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap .withdraw-history-table-title h4{margin-top:45px}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table .tutor-withdrawals-method{grid-gap:15px;grid-template-columns:40px auto;align-items:center;display:grid}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history{box-sizing:border-box;border:1px solid #dcdbdc;position:relative}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history th{background:#f3f3f3}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history th,.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history td{text-align:left;vertical-align:middle;border-collapse:collapse;border:none;border-bottom:1px solid #dcdbdc;padding:10px;font-size:13px;font-weight:400}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history th:first-child,.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history td:first-child{padding:10px 0 15px 15px}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history th:last-child,.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history td:last-child{text-align:right;width:50px;padding-right:15px}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history th:nth-child(4),.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history td:nth-child(4){width:105px}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history td .withdraw-method-name{font-size:15px;line-height:20px;display:block}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history small{font-size:13px}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history .tutor-status-text-container .tool-tip-container{cursor:pointer;height:24px;display:inline-block;position:relative}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history .tutor-status-text-container .tool-tip-container img{width:16px;display:inline-block!important}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history .tutor-status-text{color:#fff;background:gray;border-radius:2px;padding:3px 9px;font-size:13px;font-weight:700;display:inline-block}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history .tutor-status-text.status-approved{background:#24a148}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history .tutor-status-text.status-pending{background:#ed9700}.tutor-frontend-dashboard-withdrawal .withdraw-history-table-wrap table.withdrawals-history .tutor-status-text.status-rejected{background:#f44337}.tutor-tooltip-inside .tooltip{z-index:2;clip:rect(0,0,0,0);box-sizing:border-box;cursor:default;color:#fff;text-align:center;white-space:nowrap;opacity:0;text-align:center;white-space:normal;background:#353535;border:0 solid #6d6e71;border-top-color:#373739;border-radius:10px;width:0;height:auto;padding:7px;font-family:Helvetica,Arial,sans-serif;font-size:12px;line-height:normal;transition:opacity .3s ease-in .3s;position:absolute;overflow:hidden}.tutor-tooltip-inside .tooltip.isVisible{clip:auto;opacity:1;border-width:1px;width:150px;height:auto;padding:10px 15px;overflow:visible}.tutor-tooltip-inside .tooltip,.tutor-tooltip-inside .tooltip.tip-bottom,.tutor-tooltip-inside .tooltip.tip-top{left:50%;transform:translate(-50%)}.tutor-tooltip-inside .tooltip,.tutor-tooltip-inside .tooltip.tip-bottom,.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-bottom-right{top:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-top,.tutor-tooltip-inside .tooltip.tip-top-left,.tutor-tooltip-inside .tooltip.tip-top-right{top:auto;bottom:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-bottom-right,.tutor-tooltip-inside .tooltip.tip-top-left,.tutor-tooltip-inside .tooltip.tip-top-right{transform:none}.tutor-tooltip-inside .tooltip.tip-bottom-left,.tutor-tooltip-inside .tooltip.tip-top-left{margin-right:-25px;left:auto;right:50%}.tutor-tooltip-inside .tooltip.tip-bottom-right,.tutor-tooltip-inside .tooltip.tip-top-right{margin-left:-25px}.tutor-tooltip-inside .tooltip.tip-left,.tutor-tooltip-inside .tooltip.tip-right{top:50%;transform:translateY(-50%)}.tutor-tooltip-inside .tooltip.tip-left{left:auto;right:calc(100% + 13px)}.tutor-tooltip-inside .tooltip.tip-right{left:calc(100% + 13px)}.tutor-tooltip-inside .tooltip:after{content:" ";pointer-events:none;border-style:solid;border-width:10px;width:0;height:0;display:block;position:absolute}.tutor-tooltip-inside .tooltip:after,.tutor-tooltip-inside .tooltip.tip-bottom:after,.tutor-tooltip-inside .tooltip.tip-top:after{margin-left:-10px;left:50%}.tutor-tooltip-inside .tooltip:after,.tutor-tooltip-inside .tooltip.tip-bottom:after,.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-bottom-right:after{border-color:transparent transparent #373739;top:-20px}.tutor-tooltip-inside .tooltip.tip-top:after,.tutor-tooltip-inside .tooltip.tip-top-left:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{border-color:#373739 transparent transparent;top:auto;bottom:-20px}.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-bottom-right:after,.tutor-tooltip-inside .tooltip.tip-top-left:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{margin-left:0}.tutor-tooltip-inside .tooltip.tip-bottom-left:after,.tutor-tooltip-inside .tooltip.tip-top-left:after{left:auto;right:15px}.tutor-tooltip-inside .tooltip.tip-bottom-right:after,.tutor-tooltip-inside .tooltip.tip-top-right:after{left:15px}.tutor-tooltip-inside .tooltip.tip-left:after,.tutor-tooltip-inside .tooltip.tip-right:after{margin-top:-10px;margin-left:auto;top:50%}.tutor-tooltip-inside .tooltip.tip-left:after{border-color:transparent transparent transparent #373739;left:auto;right:-20px}.tutor-tooltip-inside .tooltip.tip-right:after{border-color:transparent #373739 transparent transparent;left:-20px}.tutor-instructor-list-item .tutor-instructor-cover-photo{border-radius:5px 5px 0 0}.tutor-instructor-list-item .tutor-avatar{z-index:1;box-shadow:0 0 0 1px var(--tutor-border-color);position:relative}.tutor-instructor-list-item.tutor-instructor-layout-cover .tutor-avatar{box-shadow:0 0 0 1px var(--tutor-border-color),0 0 0 6px #fff;margin-top:-69px}.tutor-instructor-list-item.tutor-instructor-layout-portrait-horizontal .tutor-instructor-cover-photo{border-radius:5px 0 0 5px}.tutor-instructor-filter{overflow:auto}.tutor-instructor-filter>div{float:left}.tutor-instructor-filter>div:first-child{width:230px}@media (min-width:1024px){.tutor-instructor-filter>div:last-child{width:calc(100% - 250px);padding:0 51px}}.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field{box-sizing:border-box;border:1px solid #bababa;border-radius:6px;margin-bottom:30px;padding:5px}.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field i{color:#3e64de;padding:0 5px}.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field i,.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field input{font-size:16px}.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field input{background:0 0;border:none;width:calc(100% - 40px);padding:0}.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field input,.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field input:hover,.tutor-instructor-filter .tutor-instructor-filter-result .keyword-field input:active{outline:0}.tutor-instructor-rejection-notice{clear:both;background:#fff7f7;border:1px solid #fdd9d7;border-radius:6px;width:100%;margin:41px 0 0;padding:16.5px}.tutor-instructor-rejection-notice span{color:#c62828;font-size:16px;font-weight:400}.tutor-instructor-rejection-notice span i{color:#f44337;margin-right:14px;font-size:27px;display:inline-block}.tutor-instructor-rejection-notice a{float:right;color:#f44337;cursor:pointer;font-weight:700}.tutor-instructor-rejection-notice a:hover{color:#e41304}.tutor-instructor-filter *{box-sizing:border-box}.tutor-instructor-filter .tutor-instructor-ratings-wrapper{border-top:1px solid #e3e6eb;padding-top:33px}.tutor-instructor-filter .filter-result-container{position:relative}.tutor-disabled-wrapper{flex-direction:column;justify-content:center;max-width:444px;margin:auto;padding:60px 0 30px;display:flex}.tutor-disabled-wrapper .tutor-disabled-content-wrapper{text-align:center;flex-direction:column;align-items:center}.tutor-disabled-wrapper .tutor-disabled-content-wrapper img{margin-bottom:30px}.tutor-disabled-wrapper .tutor-disabled-content-wrapper p{margin-bottom:38px}.tutor-disabled-wrapper .tutor-disabled-content-wrapper h3{font-size:20px;font-weight:500}.tutor-disabled-wrapper .tutor-disabled-content-wrapper p{font-size:15px;font-weight:400}.tutor-video-player{position:relative}.tutor-video-player .loading-spinner:before{margin-top:-25px;margin-left:-25px;top:50%}.tutor-video-player-wrapper{position:relative}.tutor-course-single-content-wrapper .tutor-lesson-feature-image img{width:auto;max-width:100%;height:auto;max-height:100%;margin:0 auto;display:block}.tutor-course-single-content-wrapper .tutor-video-player .loading-spinner{background:var(--tutor-color-gray-10);z-index:10;border-radius:3px;position:absolute;top:0;bottom:0;left:0;right:0}.tutor-course-single-content-wrapper .tutor-video-player .loading-spinner:before{content:"";box-sizing:border-box;border:2px solid #eee;border-top-color:var(--tutor-color-primary);border-radius:50%;width:20px;height:20px;margin-top:-10px;margin-left:-10px;animation:.8s linear infinite spinner;position:absolute;top:50%;left:50%}@keyframes spinner{to{transform:rotate(360deg)}}.tutor-course-single-content-wrapper .tutor-video-player .loading-spinner:before{width:50px;height:50px;top:calc(50% - 25px)}.tutor-course-single-content-wrapper .tutor-video-player .loading-spinner.hide{display:none}.tutor-course-single-content-wrapper .tutor-video-player iframe{border:none;width:100%;height:100%}.tutor-course-single-content-wrapper .tutor-video-player .plyr--vimeo .plyr__captions{display:none!important}.site-content{padding-bottom:0!important}.tutor-course-single-sidebar-title{background-color:#fff;border-bottom:1px solid #e0e2ea;align-items:center;height:60px;padding:8px 16px;display:flex}.tutor-course-single-sidebar-wrapper{background-color:#eff1f6;border-right:1px solid #e0e2ea;flex:0 0 400px;width:400px}@media (max-width:1199.98px){.tutor-course-single-sidebar-wrapper{opacity:0;z-index:-1;flex:0 0 100%;width:100%;position:absolute;top:0}}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header{color:var(--tutor-body-color);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#eff1f6;border-bottom:1px solid #e0e2ea;border-radius:0;padding:12px 44px 12px 16px;font-size:16px;font-weight:500}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header:after{color:var(--tutor-color-muted);font-size:14px}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header:hover,.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header.is-active,.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header.is-active:after{color:var(--tutor-color-primary)}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header .tutor-course-topic-title{position:relative}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header .tutor-course-topic-title-info{cursor:pointer;display:inline-flex;position:relative;top:2px}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header .tutor-course-topic-title-info-icon{color:rgba(var(--tutor-body-color-rgb),.5);font-size:14px}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-header .tutor-course-topic-summary{color:var(--tutor-color-muted);font-size:12px}.tutor-course-single-sidebar-wrapper .tutor-accordion-item-body{background-color:#fff;padding-top:8px;padding-bottom:8px}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item{position:relative}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item a{background-color:#fff;flex-wrap:nowrap;justify-content:space-between;width:100%;padding:10px 16px;text-decoration:none;display:flex}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item-icon{color:rgba(var(--tutor-body-color-rgb),.3);font-size:18px;transition:all .3s ease-in}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item-title{color:var(--tutor-color-secondary);transition:all .3s ease-in}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item:hover .tutor-course-topic-item-icon,.tutor-course-single-sidebar-wrapper .tutor-course-topic-item:hover .tutor-course-topic-item-title,.tutor-course-single-sidebar-wrapper .tutor-course-topic-item.is-active .tutor-course-topic-item-icon,.tutor-course-single-sidebar-wrapper .tutor-course-topic-item.is-active .tutor-course-topic-item-title{color:var(--tutor-color-primary)}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item.is-active a{background-color:#eff1f6}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item .tutor-form-check-circle[checked]{border-color:var(--tutor-color-success);background-color:var(--tutor-color-success)}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item .tutor-check-pending{background-image:url("data:image/svg+xml,%3Csvg fill='%23FFF' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14' height='10' viewBox='0 0 459.313 459.314' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M459.313,229.648c0,22.201-17.992,40.199-40.205,40.199H40.181c-11.094,0-21.14-4.498-28.416-11.774 C4.495,250.808,0,240.76,0,229.66c-0.006-22.204,17.992-40.199,40.202-40.193h378.936 C441.333,189.472,459.308,207.456,459.313,229.648z'/%3E%3C/g%3E%3C/svg%3E");border-color:var(--tutor-color-warning)!important;background-color:var(--tutor-color-warning)!important}.tutor-course-single-sidebar-wrapper .tutor-course-topic-item .tutor-check-fail{background-image:url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' viewBox='0 0 100 100' xml:space='preserve'%3E%3Cpath d='M49.9,78c-4.2,0-7.6,3.5-7.6,7.8v1.5c0,4.3,3.4,7.7,7.6,7.7c4.2,0,7.7-3.4,7.7-7.7v-1.5C57.6,81.5,54.2,78,49.9,78L49.9,78z M49.8,5c-6.3,0-11.9,6.1-11.3,12.4l3.8,47c0.2,3.7,3.1,6.9,6.9,7.2c4.3,0.3,8.1-3,8.4-7.2l3.9-47C62,11.1,56.6,5,49.8,5z'%3E%3C/path%3E%3C/svg%3E");border-color:var(--tutor-color-danger)!important;background-color:var(--tutor-color-danger)!important}body.rtl .tutor-course-single-sidebar-wrapper .tutor-accordion-item-header{padding:12px 16px 12px 44px}.tutor-course-single-content-wrapper{width:100%;display:flex;position:relative}.tutor-course-single-content-wrapper a{text-decoration:none}.tutor-course-single-content-wrapper ul,.tutor-course-single-content-wrapper ol,.tutor-course-single-content-wrapper li>ul,.tutor-course-single-content-wrapper li>ol{padding-left:1em}.tutor-course-single-content-wrapper a,.tutor-course-single-content-wrapper a:hover,.tutor-course-single-content-wrapper a:active,.tutor-course-single-content-wrapper a:focus{text-decoration:none}.tutor-course-single-content-wrapper.tutor-course-single-sidebar-hidden .tutor-course-single-sidebar-wrapper{display:none}.tutor-course-single-content-wrapper.tutor-course-single-sidebar-hidden .tutor-course-topics-sidebar-toggler .tutor-icon-left{transform:rotate(180deg)}@media (max-width:1199.98px){.tutor-course-single-content-wrapper.tutor-course-single-sidebar-open .tutor-course-single-sidebar-wrapper{opacity:1;z-index:1026;background-color:#fff;height:100vh;padding-bottom:150px;overflow-y:auto;right:0!important}.tutor-course-single-content-wrapper.tutor-course-single-sidebar-open .tutor-course-single-sidebar-wrapper .tutor-course-single-sidebar-title{z-index:1027;position:-webkit-sticky;position:sticky;top:0}}.tutor-course-single-content-wrapper input.tutor-form-check-input.tutor-form-check-circle{width:20px;height:20px;margin-top:1px}.tutor-course-single-content-wrapper #tutor-single-entry-content{flex-direction:column;width:100%;display:flex;position:relative}@media (min-width:1200px){.tutor-course-single-content-wrapper #tutor-single-entry-content{min-height:100vh}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header{background:var(--tutor-color-primary);min-height:60px;color:var(--tutor-color-white);flex-shrink:0;align-items:center;padding:8px 16px;display:flex;position:relative}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header .tutor-topbar-mark-btn{color:var(--tutor-color-white);border-color:var(--tutor-color-white);background-color:transparent}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header .tutor-topbar-mark-btn:hover{color:var(--tutor-color-primary);background-color:var(--tutor-color-white);border-color:var(--tutor-color-white)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header .tutor-iconic-btn{color:#fff}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header .tutor-iconic-btn:hover{color:var(--tutor-color-primary);background-color:#fff}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header .tutor-iconic-btn-secondary{background-color:rgba(0,0,0,.2)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header-icon{font-size:24px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-footer{border-top:1px solid rgba(var(--tutor-color-primary-rgb),.15);background-color:rgba(var(--tutor-color-primary-rgb),.1);flex-wrap:wrap;flex-shrink:0;justify-content:center;align-items:center;gap:16px;display:flex}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-mobile-footer-navigation{background:var(--tutor-color-white);z-index:1;border:1px solid #eff1f6;width:100%;height:90px;position:fixed;bottom:0;left:0;box-shadow:0 0 16px rgba(176,182,209,.18)}@media (min-width:576px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-mobile-footer-navigation{display:none}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-mobile-footer-navigation .tutor-footer-content{flex-basis:70%}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-mobile-footer-navigation .tutor-quiz-skip-button{flex-basis:50%}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-mobile-footer-navigation .tutor-quiz-skip-button button{border:0;padding:0}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-mobile-footer-navigation .tutor-footer-complete-btn button{padding:8px 20px}.tutor-course-single-content-wrapper #tutor-single-entry-content #tutor-start-quiz{display:inline-block}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-dotted-box{border:2px dashed var(--tutor-border-color);border-radius:5px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-dotted-box span[class^=tutor-icon-],.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-dotted-box span[class*=\ tutor-icon-]{display:none}.tutor-course-single-content-wrapper #tutor-single-entry-content .quiz-image img{max-width:100%;height:auto}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-dropzone.tutor-drop-over{border:2px dashed var(--tutor-color-primary)!important}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-dropzone input{display:none}.tutor-course-single-content-wrapper #tutor-single-entry-content .question-type-image_answering>div:not(:last-child){margin-bottom:70px}.tutor-course-single-content-wrapper #tutor-single-entry-content .question-type-image_answering .tutor-image-answer{max-width:500px}.tutor-course-single-content-wrapper #tutor-single-entry-content .question-type-image_answering .tutor-image-answer img{border-radius:6px;width:100%}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper{padding:80px 24px}@media (max-width:575.98px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper{padding:40px 16px}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-start-quiz-wrapper{border:1px solid #c0c3cb;border-radius:10px;max-width:560px;margin:0 auto}@media (min-width:1200px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-start-quiz-wrapper{padding:65px 95px}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-start-quiz-wrapper .tutor-start-quiz-title{border-bottom:1px solid var(--tutor-border-color)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-start-quiz-wrapper .tutor-quiz-info-area .tutor-quiz-info:not(:first-child){padding-top:15px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap{width:100%;max-width:980px;margin:0 auto}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info{justify-content:space-between;display:flex}@media (max-width:575.98px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info{flex-direction:column;gap:16px}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-left{gap:35px;display:flex}@media (max-width:767.98px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-left{gap:16px}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining #tutor-quiz-time-update{text-align:right;min-width:50px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-progress-circle,.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-expired-circle{width:40px;height:25px;margin-top:1px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-progress-circle svg{width:50px;height:50px;margin-top:-3px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-progress-circle svg circle{transform:translate(17px,15px)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-progress-circle svg circle:first-child{stroke:var(--tutor-color-primary);stroke-width:13px;stroke-dasharray:44;stroke-dashoffset:0}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-progress-circle svg circle:last-child{fill:none;stroke:var(--tutor-color-gray);stroke-dasharray:44;stroke-dashoffset:calc(44 - 44*var(--quizProgress)/100);stroke-width:13px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-expired-circle svg{width:50px;height:50px;margin-top:-3px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-meta-info .quiz-meta-info-right .quiz-time-remaining .quiz-time-remaining-expired-circle svg circle{stroke:#f44337;stroke-dashoffset:0;stroke-dasharray:75;stroke-width:2px;fill:#fff;transform:translate(17px,15px)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-border-box{cursor:move;border:1px solid var(--tutor-border-color);border-radius:6px;justify-content:space-between;align-items:center;padding:10px 18px;display:flex}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-border-box .tutor-icon-hamburger-menu{cursor:move}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-border-box input{display:none}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-dotted-box{color:#9ca0ac;border:2px dashed #ddd;border-radius:5px;padding:8px 12px;font-size:1rem;line-height:1.5}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box{border-radius:6px;padding:9px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box.time-remaining-warning{border:1px solid rgba(var(--tutor-color-warning-rgb),.3)}@media (max-width:600px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box{flex-wrap:wrap}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box .flash-info span:first-child{font-size:27px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box .flash-action button{color:var(--tutor-color-white);border:unset;background:#ed9700}@media (max-width:600px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box .flash-action button{margin-top:10px}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-flash-message .tutor-quiz-warning-box.time-over{border:1px solid #f44337}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .matching-quiz-question-desc{grid-template-columns:repeat(auto-fit,minmax(163px,1fr));gap:20px;display:grid!important}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-question-item{cursor:pointer;display:block;position:relative}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-question-item-has-media .tutor-form-check-input{z-index:1;position:absolute;top:8px;right:8px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .tutor-quiz-question-item-has-media .tutor-form-check-input:checked+.tutor-card{border-color:var(--tutor-color-primary);box-shadow:0 0 0 1px var(--tutor-color-primary)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .quiz-short-ans-image{width:100%;max-width:444px;height:auto}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .quiz-question-ans-choice label{border:1px solid var(--tutor-border-color);cursor:pointer;border-radius:6px;min-width:240px;padding:9.5px 15px;display:inline-block}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .quiz-question-ans-choice label input{margin-top:1px;margin-right:8px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .quiz-question-ans-choice .tutor-quiz-correct-ans span:first-child{font-size:28px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .fill-in-the-gap .fill-blank{border-bottom:2px dashed var(--tutor-color-secondary);margin:0 0 10px;display:inline-block}@media (max-width:575.98px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .fill-in-the-gap .fill-blank{margin:0 10px 5px 0}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-question-ans-choice-area .fill-in-the-gap input{background-color:var(--tutor-color-white);border:1px solid var(--tutor-border-color);box-shadow:none;border-radius:5px;margin:0 0 3px;padding:2px 5px;transition:color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area>div:not(:last-child){margin-bottom:25px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .quiz-matching-ans{flex-wrap:wrap;align-items:center;max-width:500px;display:flex}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .quiz-matching-ans .tutor-quiz-ans-no{width:230px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .quiz-matching-ans .quiz-matching-ans-item{align-items:center;width:270px;display:flex}@media (max-width:575.98px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .quiz-matching-ans .quiz-matching-ans-item{margin-top:20px}}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .quiz-matching-ans .quiz-matching-ans-item>span{margin:0 20px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .quiz-matching-ans .quiz-matching-ans-item .tutor-quiz-dotted-box{width:230px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .tutor-matching-item{flex-direction:column;margin-right:10px;display:flex}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-matching-ans-area .tutor-matching-item .tutor-matching-image{border-radius:6px;overflow:hidden}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-ordering-ans-area{counter-reset:serial-number}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-ordering-ans-area>div:not(:last-child){margin-bottom:25px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-ordering-ans-area .quiz-ordering-ans-item .tutor-quiz-border-box{width:250px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-ordering-ans-area .snum:before{counter-increment:serial-number;content:counter(serial-number)}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans{cursor:pointer;grid-template-columns:30px 315px;display:grid}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans .quiz-image-ordering-ans-item{border:1px solid #c0c3cb;border-radius:6px;grid-template-columns:46px auto;width:315px;display:grid}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans .quiz-image-ordering-ans-item .tutor-quiz-image-ordering-icon{background:#f4f6f9;border-radius:6px 0 0 6px;width:46px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans .quiz-image-ordering-ans-item .tutor-quiz-image-ordering-icon span{font-size:27px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans .quiz-image-ordering-ans-item .tutor-quiz-image-ordering-item{grid-template-rows:auto;grid-template-columns:80px auto;display:grid}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans .quiz-image-ordering-ans-item .tutor-quiz-image-ordering-item img{border-radius:6px;width:80px;height:80px}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap .quiz-image-ordering-ans .quiz-image-ordering-ans-item .tutor-quiz-image-ordering-item span{word-break:break-word}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-image-matching-ans-area .quiz-image-matching-ans{grid-template-columns:repeat(auto-fit,minmax(162px,1fr));gap:20px;display:grid!important}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-image-matching-ans-area .quiz-image{border-radius:6px;width:100%;height:162px;overflow:hidden}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-wrap #quiz-image-matching-ans-area .quiz-image img{object-fit:contain;width:100%;height:100%}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-result-summary{border-top:1px solid var(--tutor-border-color);border-bottom:1px solid var(--tutor-border-color);justify-content:space-between;margin-top:20px;margin-bottom:20px;padding-top:20px;padding-bottom:20px;display:flex}@media (max-width:575.98px){.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-wrapper .tutor-quiz-result-summary{flex-direction:column;gap:16px}}.tutor-course-single-content-wrapper #tutor-single-entry-content #tutor-quiz-time-expire-wrapper{margin-bottom:40px;display:none}.tutor-course-single-content-wrapper #tutor-single-entry-content #tutor-quiz-time-expire-wrapper.tutor-alert-show{display:flex!important}.tutor-course-single-content-wrapper #tutor-single-entry-content #tutor-quiz-time-expire-wrapper .flash-info span:first-child.tutor-icon-cross-circle-outline-filled:before{color:#f44337}.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-quiz-time-expired{color:#f44337;font-size:16px;font-weight:500;line-height:26px}.tutor-course-single-content-wrapper mjx-container,.tutor-course-single-content-wrapper .MathJax_Display{display:inline!important}.tutor-course-spotlight-wrapper .tutor-course-spotlight-tab{padding-top:32px;padding-bottom:32px}.tutor-course-spotlight-wrapper .tutor-lesson-wrapper iframe{max-width:100%}.tutor-course-spotlight-wrapper .tutor-exercise-files{word-break:break-all;grid-template-columns:repeat(2,1fr);gap:20px;display:grid}@media (max-width:575.98px){.tutor-course-spotlight-wrapper .tutor-exercise-files{grid-template-columns:repeat(1,1fr)}}.tutor-course-spotlight-wrapper .tutor-exercise-files .tutor-instructor-card{cursor:pointer}.tutor-course-spotlight-wrapper .tutor-exercise-files .tutor-instructor-card:hover .tutor-avatar{background:var(--tutor-color-primary)}.tutor-course-spotlight-wrapper .tutor-exercise-files .tutor-instructor-card:hover .tutor-avatar span{color:var(--tutor-color-white)}.tutor-course-spotlight-wrapper .tutor-exercise-files .tutor-instructor-card .tutor-avatar{background:rgba(var(--tutor-color-primary-rgb),.15)}.tutor-course-spotlight-wrapper .tutor-exercise-files .tutor-instructor-card .tutor-avatar span{font-size:30px}.tutor-course-spotlight-wrapper .tutor-conversation{border-bottom:1px solid #ddd;padding:0 0 55px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-no-comments-show{border:1px solid var(--tutor-border-color);border-radius:6px;padding:47px 33px}@media (max-width:575.98px){.tutor-course-spotlight-wrapper .tutor-conversation .tutor-no-comments-show{flex-direction:column;justify-content:center;align-items:center;padding:30px 20px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-no-comments-show p{text-align:center}}.tutor-course-spotlight-wrapper .tutor-conversation .comment-avatar img{border-radius:50%;width:50px;height:50px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-textarea:before,.tutor-course-spotlight-wrapper .tutor-conversation .tutor-actual-comment:before{content:"";border:1px solid var(--tutor-border-color);-webkit-clip-path:polygon(0% 0%,100% 100%,0% 100%);clip-path:polygon(0% 0%,100% 100%,0% 100%);background-color:#fff;border-radius:0 0 0 3px;width:10px;height:10px;display:block;position:absolute;top:18px;left:-6px;transform:rotate(45deg)}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-textarea:after,.tutor-course-spotlight-wrapper .tutor-conversation .tutor-actual-comment:after{content:"";background-color:#fff;border:1px solid #fff;border-radius:3px 0 0 3px;width:10px;height:10px;display:block;position:absolute;top:18px;left:-2px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-box{grid-template-columns:70px auto;display:grid}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-box .tutor-comment-textarea{border:1px solid var(--tutor-border-color);border-radius:6px;grid-area:1/2/1/3;position:relative}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-box .tutor-comment-textarea.is-focused,.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-box .tutor-comment-textarea.is-focused:before{border:1px solid var(--tutor-color-primary)}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-box .tutor-comment-textarea textarea{border-color:transparent;min-height:96px;padding:20px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-box .tutor-comment-submit-btn{grid-area:2/2/2/3;justify-self:end;margin-top:20px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list{grid-template-columns:70px auto;display:grid}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-actual-comment{border:1px solid var(--tutor-border-color);background-color:#fff;border-radius:6px;padding:15px 20px;position:relative}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-actual-comment .tutor-comment-author span:first-child{color:#161d25}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-actual-comment .tutor-comment-author span:last-child{color:#808993}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-comment-actions span{cursor:pointer;text-transform:capitalize}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-comment-actions span:not(:last-child){margin-right:23px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-comment-box.tutor-reply-box{min-height:54px;padding:16px 0 16px 16px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-comment-box.tutor-reply-box .tutor-comment-textarea textarea{min-height:56px;padding:15px 20px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment{position:relative}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-comment-line{background:var(--tutor-border-color);width:1px;position:absolute;top:50px;left:24px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-child-comment{position:relative}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-child-comment:after{content:"";background:var(--tutor-border-color);width:45px;height:1px;position:absolute;top:25px;left:-45px}.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-child-comment:before{content:"";background:var(--tutor-border-color);z-index:9;width:45px;height:1px;position:absolute;top:3px;left:-68px;transform:rotate(90deg)}@media (max-width:575.98px){.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-child-comment .tutor-single-comment .tutor-actual-comment .tutor-comment-author{flex-direction:column;display:flex}}.tutor-spotlight-mobile-progress-complete{background:#fff;margin-top:16px;box-shadow:0 0 16px rgba(176,182,209,.18)}@media (max-width:420px){.tutor-spotlight-mobile-progress-complete .tutor-col-6{flex:none;width:100%}}.tutor-spotlight-mobile-progress-right{text-align:center}@media (min-width:420px){.tutor-spotlight-mobile-progress-right .tutor-topbar-complete-btn{text-align:right}}@media (max-width:420px){.tutor-spotlight-mobile-progress-right .tutor-topbar-complete-btn.tutor-ml-24{margin-left:0!important}}.tutor-spotlight-mobile-progress-right [class*=tutor-icon-]{display:none}.tutor-course-spotlight-comments{max-width:670px;margin:auto}body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-textarea:before,body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-actual-comment:before{left:initial;border-radius:0 3px 0 0;right:-6px;transform:rotate(220deg)}body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-textarea:after,body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-actual-comment:after{left:initial;right:-2px}body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list .tutor-single-comment .tutor-comment-actions span:not(:last-child){margin-right:initial;margin-left:23px}body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-comment-line{left:initial;right:24px}body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-child-comment:after{left:initial;right:-45px}body.rtl .tutor-course-spotlight-wrapper .tutor-conversation .tutor-comments-list.tutor-parent-comment .tutor-child-comment:before{left:initial;right:-68px;transform:rotate(90deg)}#tutor-assignment-wrap .tutor-assignment-attachments-list{grid-gap:20px;grid-template-columns:1fr 1fr;display:grid}@media (max-width:768px){#tutor-assignment-wrap .tutor-assignment-attachments-list{grid-template-columns:1fr}}#tutor-assignment-wrap .tutor-assignment-meta-info{border-top:1px solid var(--tutor-border-color);border-bottom:1px solid var(--tutor-border-color)}@media (min-width:576px) and (max-width:1192px){#tutor-assignment-wrap .tutor-assignment-meta-info{flex-direction:column}}#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info>div:not(:last-child){margin-right:16px}@media (min-width:576px) and (max-width:1192px){#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignment-duration,#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignmetn-deadline,#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignment-marks,#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignmetn-pass-mark{flex-basis:50%}}@media (max-width:575px){#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignment-duration,#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignmetn-deadline,#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignment-marks,#tutor-assignment-wrap .tutor-assignment-meta-info .tutor-assignment-detail-info .tutor-assignmetn-pass-mark{flex-direction:column;flex-basis:50%;display:flex}}@media (max-width:576px){#tutor-assignment-wrap .tutor-assignment-meta-info{flex-direction:column}}#tutor-assignment-wrap .tutor-assignment-border-bottom{border-bottom:1px solid var(--tutor-border-color)}#tutor-assignment-wrap .tutor-instructor-card{background-color:var(--tutor-color-white);cursor:pointer;border-radius:6px;grid-template-columns:auto 40px;min-width:100%;display:grid}#tutor-assignment-wrap .tutor-instructor-card .tutor-icard-content>div:first-child{margin-right:10px}#tutor-assignment-wrap .tutor-instructor-card .tutor-icard-content>div{word-break:break-all}@media (max-width:768px){#tutor-assignment-wrap.tutor-course-assignment-details .tutor-assignment-footer .tutor-assignment-footer-btn{flex-direction:column}#tutor-assignment-wrap.tutor-course-assignment-details .tutor-assignment-footer .tutor-assignment-footer-btn a,#tutor-assignment-wrap.tutor-course-assignment-details .tutor-assignment-footer .tutor-assignment-footer-btn button{justify-content:center;align-items:center;width:100%;display:flex}}#tutor-assignment-wrap.tutor-course-assignment-details .no-before:before,#tutor-assignment-wrap.tutor-course-assignment-details #full-text{display:none}#tutor-assignment-wrap.tutor-time-out-assignment .quiz-flash-message .tutor-quiz-warning-box{background-color:rgba(var(--tutor-color-danger-rgb),.15);border:1px solid rgba(var(--tutor-color-danger-rgb),.3)}#tutor-assignment-wrap.tutor-time-out-assignment .tutor-time-out-assignment-details .tutor-to-assignment{position:relative}#tutor-assignment-wrap.tutor-time-out-assignment .tutor-time-out-assignment-details .tutor-to-assignment:before{content:"";background:linear-gradient(rgba(255,255,255,0) 1.31%,rgba(255,255,255,0) 15.41%,#fff 100%);width:100%;height:120px;position:absolute;bottom:0}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body{max-width:730px}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment{background-color:#eff1f6;border-radius:6px}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-input-type-size span{font-weight:500}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-attachment-files{grid-template-columns:180px auto;display:grid}@media (max-width:767.98px){#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-attachment-files{grid-template-columns:1fr;gap:10px}}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-attachment-files .tutor-assignment-upload-btn input,#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-attachment-files .tutor-assignment-upload-btn input#tutor-assignment-file-upload{display:none}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-asisgnment-upload-file-preview{grid-template-columns:repeat(2,1fr);gap:20px;display:grid}@media (max-width:600px){#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-submission .tutor-assignment-body .tutor-assignment-attachment .tutor-asisgnment-upload-file-preview{grid-template-columns:1fr}}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-description-details .tutor-ad-body{position:relative}#tutor-assignment-wrap.tutor-submit-assignment .tutor-assignment-description-details .tutor-ad-body:before{content:"";background:linear-gradient(rgba(255,255,255,0) 1.31%,rgba(255,255,255,0) 15.41%,#fff 100%);width:100%;height:120px;position:absolute;bottom:0}#tutor-assignment-wrap.tutor-assignment-result-pending .tutor-assignment-details .tutor-ar-body{border:1px solid var(--tutor-border-color);box-sizing:border-box;border-radius:6px}#tutor-assignment-wrap.tutor-assignment-result-pending .tutor-assignment-details .tutor-ar-body .tutor-input-files{max-width:330px}#tutor-assignment-wrap.tutor-assignment-result-pending .tutor-assignment-description-details .tutor-ad-body{position:relative}#tutor-assignment-wrap.tutor-assignment-result-pending .tutor-assignment-description-details .tutor-ad-body:before{content:"";background:linear-gradient(rgba(255,255,255,0) 1.31%,rgba(255,255,255,0) 15.41%,#fff 100%);width:100%;height:120px;position:absolute;bottom:0}#tutor-assignment-wrap .tutor-instructor-note{background-color:rgba(var(--tutor-color-primary-rgb),.2);border:1px solid rgba(var(--tutor-color-primary-rgb),.4);border-radius:6px}#tutor-assignment-wrap.tutor-assignment-results .tutor-instructor-note{background-color:rgba(var(--tutor-color-primary-rgb),.2);border:1px solid rgba(var(--tutor-color-primary-rgb),.2);border-radius:6px}#tutor-assignment-wrap.tutor-assignment-results .tutor-assignment-details .tutor-ar-body{border:1px solid var(--tutor-border-color);box-sizing:border-box;border-radius:6px}#tutor-assignment-wrap.tutor-assignment-results .tutor-assignment-details .tutor-ar-body .tutor-input-files{max-width:330px}#tutor-assignment-wrap.tutor-assignment-results .tutor-assignment-description-details .tutor-ad-body{position:relative}#tutor-assignment-wrap.tutor-assignment-results .tutor-assignment-description-details .tutor-ad-body:before{content:"";background:linear-gradient(rgba(255,255,255,0) 1.31%,rgba(255,255,255,0) 15.41%,#fff 100%);width:100%;height:120px;position:absolute;bottom:0}.submited-files>div:not(:last-child){margin-right:15px}.submited-files .tutor-instructor-card{width:100%}.submited-files .tutor-instructor-card .tutor-icard-content{padding-right:10px}.tutor-qna-single-question table.tutor-table-data-td-target [data-td-target]{padding:12px!important}.tutor-qna-single-question table.tutor-table tr:last-child td:last-child{border-radius:0}.tutor-qna-single-question table.tutor-table-data-td-target .is-active:not(.expand-btn){background-color:#fff!important}body.wp-admin .tutor-qna-single-wrapper .tutor-qa-reply{border-top-left-radius:6px;border-top-right-radius:6px;overflow:hidden}.tutor-qna-single-question .tutor-qna-single-wrapper .qna-back-button{color:#5b616f;font-size:16px;font-style:normal;font-weight:400}.tutor-qna-single-question .tutor-qa-reply{z-index:10;background:#fff;bottom:0}.tutor-qna-single-question .tutor-qa-reply textarea{border:none;border:1px solid var(--tutor-border-color);resize:none;border-radius:6px;width:100%;padding:15px;min-height:initial!important;height:80px!important}.tutor-qna-single-question .tutor-qa-reply textarea,.tutor-qna-single-question .tutor-qa-reply textarea:focus,.tutor-qna-single-question .tutor-qa-reply textarea:active{box-shadow:none;outline:none!important}.tutor-qna-single-question .tutor-qna-badges .tutor-btn:not(:last-child){margin-right:18px}.tutor-qna-single-question .tutor-qna-single-wrapper{max-height:calc(100vh - 100px);overflow-y:auto}.tutor-qna-single-question .tutor-qa-sticky-bar{border-bottom:1px solid var(--tutor-border-color);z-index:9;margin-bottom:16px;position:-webkit-sticky;position:sticky;top:0}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat{flex-direction:column;margin-bottom:30px;display:flex}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat .tutor-qna-user{align-items:center;gap:16px;margin-bottom:16px;display:flex}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat .tutor-qna-user img{border-radius:50%;width:48px;height:48px}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat .tutor-qna-text{background:#fff;border-radius:8px;max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;margin:0;padding:16px 24px;position:relative}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat .tutor-qna-text:before{content:"";background:inherit;-webkit-clip-path:polygon(0% 0%,0% 100%,100% 0%);clip-path:polygon(0% 0%,0% 100%,100% 0%);border-radius:3px;width:20px;height:20px;position:absolute;top:-5px;transform:rotate(45deg)}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat.tutor-qna-left .tutor-qna-text:before{left:15px}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat.tutor-qna-right{align-items:flex-end}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat.tutor-qna-right .tutor-qna-user{flex-direction:row-reverse}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat.tutor-qna-right .tutor-qna-text:before{right:15px}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat p{margin:0}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat ul{padding-left:2rem}.tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat ul li{list-style-type:disc}.tutor-qna-single-question:not([data-context=backend-dashboard-qna-single]) .tutor-qna-left .tutor-qna-text{min-width:50px;color:var(--tutor-body-color);background:#e3e9f7}.tutor-qna-single-question:not([data-context=backend-dashboard-qna-single]) .tutor-qna-right .tutor-qna-text{color:var(--tutor-body-color);background:#dbe9eb}.tutor-qna-single-question .tutor-toggle-reply{text-align:right}.tutor-qna-single-question .tutor-toggle-reply span{cursor:pointer}.tutor-qna-single-question .tutor-toggle-reply span:hover{color:#41454f;font-style:normal;font-weight:400;text-decoration:underline}body.wp-admin .tutor-qa-chatlist{margin-top:16px;margin-right:16px}table.qna-list-table .tutor-icon-msg-important-filled{color:var(--tutor-color-muted)}table.qna-list-table .tutor-icon-msg-important-fill-filled{color:#ed9700}table.qna-list-table tr .tutor-qna-title{color:#212327;font-size:16px;font-style:normal;font-weight:500;display:block}table.qna-list-table tr:not(.is-qna-read) .tutor-qna-title{color:#212327;font-size:16px;font-weight:700}table.qna-list-table .tutor-qna-question-col i{margin-right:13px;top:2px;left:-6px;font-size:24px!important}table.qna-list-table .tutor-qna-question-col span{margin-bottom:5px}table.qna-list-table .tutor-qna-question-col small{color:#525252;font-size:13px;font-style:normal;font-weight:500}table.qna-list-table .tutor-qna-question-col:not(.is-read) i{color:var(--tutor-color-primary)}table.qna-list-table .tutor-qna-question-col:not(.is-read) .tutor-qna-content{color:var(--tutor-body-color);font-size:16px;font-style:normal;font-weight:700}table.qna-list-table .tutor-qna-question-col:not(.is-read) .tutor-qna-content ul{padding-left:2rem}table.qna-list-table .tutor-qna-question-col:not(.is-read) .tutor-qna-content ul li{line-height:1.5;list-style-type:disc}table.qna-list-table .tutor-qna-question-col.is-read i{color:#c0c3cb}table.qna-list-table .tutor-qna-question-col.is-read .tutor-qna-content{color:#212327;font-size:16px;font-style:normal;font-weight:500}table.qna-list-table .tutor-qna-question-col.is-read .tutor-qna-content ul{padding-left:2rem}table.qna-list-table .tutor-qna-question-col.is-read .tutor-qna-content ul li{line-height:1.5;list-style-type:disc}.tutor-qna-spotlight-sidebar{padding:15px}.tutor-qna-spotlight-sidebar .tutor-qa-new[data-context=course-single-qna-sidebar]{background:#f4f6f9;width:100%;margin:-15px;padding:15px;position:absolute;bottom:15px}.tutor-qna-spotlight-sidebar .tutor-qa-reply{position:initial!important}.tutor-qa-reply[data-context=course-single-qna-sidebar],.tutor-qa-reply[data-context=course-single-qna-sidebar] textarea,.tutor-qa-reply[data-context=course-single-qna-single],.tutor-qa-reply[data-context=course-single-qna-single] textarea{border:none!important}.tutor-qa-reply[data-context=course-single-qna-sidebar] textarea,.tutor-qa-reply[data-context=course-single-qna-single] textarea{border:1px solid #cdcfd5!important;border-radius:6px!important}#sidebar-qna-tab-content-bak .tutor-qna-single-question .tutor-qa-chatlist .tutor-qna-chat{max-width:100%;margin-bottom:10px}#sidebar-qna-tab-content-bak .tutor-qna-single-question .tutor-qa-reply div{padding:10px 0 0}#sidebar-qna-tab-content-bak .tutor-qa-new .tutor-quesanswer-askquestion:not(.tutor-quesanswer-askquestion-expand) .sidebar-ask-new-qna-submit,#sidebar-qna-tab-content-bak .tutor-qa-new .tutor-quesanswer-askquestion:not(.tutor-quesanswer-askquestion-expand) textarea,#sidebar-qna-tab-content-bak .tutor-qa-new .tutor-quesanswer-askquestion.tutor-quesanswer-askquestion-expand .sidebar-ask-new-qna-btn-wrap{display:none}#sidebar-qna-tab-content-bak .tutor-qa-reply textarea:focus{border:1px solid var(--tutor-color-primary)!important}body.wp-admin .tutor-qna-single-wrapper>*{padding:20px!important}body.wp-admin .tutor-qna-single-wrapper .tutor-qa-reply{border-radius:0}body.wp-admin .tutor-qa-reply{background:0 0}#tutor-course-details-tab-questions .tutor-qna-reply-editor .wp-editor-container{border:none}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-tinymce.mce-panel{box-shadow:none;background:#fff;border:none}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-tinymce.mce-panel>.mce-container-body{border:1px solid #dcdfe6;border-radius:6px}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-toolbar-grp{background:0 0;border-bottom:none}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-top-part:before{box-shadow:0 1px #cdcfd5}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-statusbar{border-top:none}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-statusbar>.mce-container-body .mce-path{visibility:hidden}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-statusbar.mce-last{background-color:transparent}#tutor-course-details-tab-questions .tutor-qna-reply-editor .mce-toolbar .mce-ico{color:#767c8e;--size:22px;width:var(--size);height:var(--size);justify-content:center;align-items:center;display:flex}.answer-image-matched-wrap{display:block}.answer-image-matched-wrap .image-matching-item{align-items:center;display:flex}.answer-image-matched-wrap .image-matching-item:not(:last-child){margin-bottom:12px}.answer-image-matched-wrap .image-matching-item img{max-width:35px}.answer-image-matched-wrap .image-matching-item .dragged-caption{margin-left:12px;font-size:14px}.correct-answer-wrap .matching-type{flex-direction:column;align-items:flex-start;display:flex}.correct-answer-wrap .matching-type:not(:last-child){margin-bottom:12px}.correct-answer-wrap .text-image-type{align-items:center;display:flex}.correct-answer-wrap .text-image-type .image{margin-right:12px}.correct-answer-wrap img{max-width:32px;max-height:32px}.tutor-quiz-attempt-details img{width:100%}.tutor-quiz-attempt-details .tutor-icon-rounded{box-sizing:border-box;cursor:pointer;border-style:solid;border-width:1px;border-radius:3px;justify-content:center;align-items:center;width:26px;height:26px;font-size:14px;display:inline-flex;overflow:hidden}.tutor-quiz-attempt-details .tutor-icon-rounded:not(:hover){opacity:.8}.tutor-quiz-attempt-details tr td{vertical-align:middle}.tutor-quiz-attempt-details tr:not(:hover).tutor-quiz-answer-status-correct .tutor-icon-rounded.tutor-color-danger,.tutor-quiz-attempt-details tr:not(:hover).tutor-quiz-answer-status-wrong .tutor-icon-rounded.tutor-color-success,.tutor-quiz-attempt-details tr:not(:hover).tutor-quiz-answer-status-pending .tutor-icon-rounded.tutor-color-success,.tutor-quiz-attempt-details tr:not(:hover).tutor-quiz-answer-status-pending .tutor-icon-rounded.tutor-color-danger{color:#cdcfd5!important;border-color:#cdcfd5!important}.tutor-quiz-attempt-details .explain-toggle{background:#f4f6f9;padding:4px;text-align:center!important}.tutor-quiz-attempt-details .explain-toggle button{margin:0;line-height:32px}@media (max-width:575.98px){.tutor-quiz-attempt-details .tutor-manual-review-wrapper{text-align:left}}.tutor-quiz-type-icon{color:#fff;text-align:center;vertical-align:middle;background-color:var(--tutor-color-primary);border-radius:4px;width:32px;height:32px;margin-right:8px;padding:0;font-size:20px;line-height:32px;display:inline-block}.rtl .tutor-quiz-type-icon{margin-left:8px;margin-right:0}.tutor-quiz-type-boolean{background-color:#3e64de}.tutor-quiz-type-single-choice{background-color:#00b890}.tutor-quiz-type-multiple-choices{background-color:#9034a9}.tutor-quiz-type-open-ended{background-color:#fe3129}.tutor-quiz-type-fill-blanks{background-color:#ffbf00}.tutor-quiz-type-short-answer{background-color:#f37512}.tutor-quiz-type-matching{background-color:#8a4a1b}.tutor-quiz-type-image-matching{background-color:#f37512}.tutor-quiz-type-image-answering{background-color:#a322f9}.tutor-quiz-type-ordering{background-color:#1b52d8}.tutor-instructor-note.tutor-quiz-attempt-note{background-color:rgba(var(--tutor-color-primary-rgb),.15);border:1px solid rgba(var(--tutor-color-primary-rgb),.4);border-radius:6px}.tutor-snackbar-wrapper{text-align:center;z-index:2147483647;-o-transition:all 1s;padding:0 15px;transition:all 1s;display:none;position:fixed;bottom:0;left:0;right:0}.tutor-snackbar-wrapper.tutor-snackbar-show{display:block}.tutor-snackbar-wrapper .tutor-btn-outline-primary{color:#fff}.tutor-snackbar-wrapper>div{text-align:initial;color:#fff;-webkit-backdrop-filter:blur(28px);backdrop-filter:blur(28px);background:rgba(0,0,0,.66);border-radius:10px;margin:15px auto;padding:7px 14px;font-size:15px;display:inline-block;box-shadow:0 5px 30px rgba(58,57,132,.06)}.tutor-snackbar-wrapper>div>div{white-space:nowrap;margin:5px 0;display:inline-block}.tutor-snackbar-wrapper .tutor-snackbar-title-icon{color:#fff;vertical-align:middle;margin-right:13px;font-size:24px}.tutor-snackbar-wrapper .tutor-snackbar-close{cursor:pointer;padding:5px;font-size:12px;display:inline-block;color:#7a7a7a!important}.tutor-snackbar-wrapper p{color:#fff;margin:8px 45px 8px 0;font-size:16px;font-weight:400;display:inline-block}.tutor-cart-page{padding:80px 0}@media (max-width:575.98px){.tutor-cart-page{padding:40px 0}}.tutor-cart-page .tutor-cart-course-list{border:1px solid var(--tutor-border-color);border-radius:6px;flex-direction:column;gap:8px;display:flex}.tutor-cart-page .tutor-cart-course-item{align-items:stretch;gap:24px;padding:32px;display:flex}@media (max-width:575.98px){.tutor-cart-page .tutor-cart-course-item{flex-direction:column;padding:16px}}.tutor-cart-page .tutor-cart-course-item:not(:last-child){border-bottom:1px solid var(--tutor-border-color)}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-thumb{border-radius:8px;width:160px;height:90px;overflow:hidden}@media (max-width:575.98px){.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-thumb{width:100%;height:auto}}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-thumb img{object-fit:cover;width:100%;height:100%}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-title{flex-direction:column;gap:8px;display:flex}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-title a{color:var(--tutor-body-color);text-decoration:none}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-title a:hover{opacity:1}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-info{align-items:center;gap:32px;margin:auto 0 0;padding:0;list-style:none;display:flex}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-info li{color:rgba(0,0,0,.6);font-size:13px;line-height:18px;position:relative}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-info li:not(.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-info li:last-child):before{content:"";background:#e3e6eb;border-radius:50%;width:10px;height:10px;position:absolute;top:4px;right:-20px}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-info li:not(.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-info li:last-child):after{content:"";background-color:#4b505c;border-radius:50%;width:6px;height:6px;position:absolute;top:6px;right:-18px}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-price-wrapper{flex-direction:column;justify-content:space-between;align-items:end;margin-left:auto;display:flex}@media (max-width:575.98px){.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-price-wrapper{flex-direction:row;align-items:start;margin-left:0}}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-price-wrapper .tutor-cart-course-price{color:var(--tutor-body-color);flex-direction:column;align-items:end;display:flex}@media (max-width:575.98px){.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-price-wrapper .tutor-cart-course-price{flex-direction:row;gap:8px}}.tutor-cart-page .tutor-cart-course-item .tutor-cart-course-price-wrapper .tutor-cart-discount-price{color:#767c8e;font-size:13px;text-decoration:line-through}.tutor-cart-page .tutor-cart-summery{border:1px solid var(--tutor-border-color);border-radius:6px}.tutor-cart-page .tutor-cart-summery .tutor-cart-summery-top{border-bottom:1px solid var(--tutor-border-color);flex-direction:column;gap:16px;padding:32px;display:flex}@media (max-width:575.98px){.tutor-cart-page .tutor-cart-summery .tutor-cart-summery-top{padding:16px}}.tutor-cart-page .tutor-cart-summery .tutor-cart-summery-bottom{padding:32px}@media (max-width:575.98px){.tutor-cart-page .tutor-cart-summery .tutor-cart-summery-bottom{padding:16px}}.tutor-cart-page .tutor-cart-summery .tutor-cart-summery-item{color:var(--tutor-body-color);justify-content:space-between;align-items:center;display:flex}.tutor-cart-page .tutor-cart-empty-state{border:1px solid var(--tutor-border-color);border-radius:6px;flex-direction:column;justify-content:center;align-items:center;max-width:800px;margin:0 auto;padding:32px;display:flex}.tutor-cart-page .tutor-cart-empty-state p{color:var(--tutor-body-color);margin-bottom:24px;padding:0;font-size:24px;line-height:32px}.tutor-cart-page .tutor-cart-empty-state a{justify-content:center;width:280px}.tutor-checkout-page{padding:40px 0}.tutor-checkout-page select{text-indent:0;padding:0 10px;line-height:36px}.tutor-checkout-page input[type=text]{text-indent:0;padding:0 10px;line-height:36px}.tutor-checkout-page input[type=email]{text-indent:0;padding:0 10px;line-height:36px}.tutor-checkout-page .tutor-checkout-container{max-width:1032px;margin:0 auto}.tutor-checkout-page .tutor-checkout-details .tutor-checkout-details-inner{background-color:#fafafa;border-radius:5px;padding:24px 24px 12px}.tutor-checkout-page .tutor-checkout-detail-item{padding:24px 0}.tutor-checkout-page .tutor-checkout-detail-item:not(:last-child){border-bottom:1px solid var(--tutor-border-color)}@media (max-width:575.98px){.tutor-checkout-page .tutor-checkout-detail-item{padding:16px}}.tutor-checkout-page .tutor-checkout-courses{flex-direction:column;gap:24px;display:flex}.tutor-checkout-page .tutor-checkout-course-item{color:var(--tutor-body-color);flex-direction:column;display:flex}.tutor-checkout-page .tutor-checkout-course-content{justify-content:space-between;align-items:start;gap:24px;display:flex}.tutor-checkout-page .tutor-checkout-course-thumb-title{grid-template-columns:56px 1fr;align-items:start;gap:8px;display:grid}.tutor-checkout-page .tutor-checkout-course-thumb-title img{border-radius:3px;max-width:100%;margin-top:6px}.tutor-checkout-page .tutor-checkout-enrollment-fee{justify-content:space-between;align-items:start;margin-top:16px;font-size:14px;display:flex}.tutor-checkout-page .tutor-checkout-course-plan-badge{color:#41454f;background-color:#f0f1f5;border-radius:2px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:4px 8px;font-size:11px;font-weight:500;line-height:14px;display:inline-block}.tutor-checkout-page .tutor-checkout-course-title{margin:0;font-size:16px;font-weight:500;line-height:26px}.tutor-checkout-page .tutor-checkout-course-title a{color:var(--tutor-body-color);text-decoration:none}.tutor-checkout-page .tutor-checkout-course-title a:hover{opacity:1}.tutor-checkout-page .tutor-checkout-coupon-badge{color:#41454f;background-color:#f1f1f1;border-radius:4px;align-items:center;gap:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;padding:3px 6px;font-size:11px;line-height:16px;display:flex}.tutor-checkout-page .tutor-checkout-coupon-badge.tutor-has-delete-button{padding:10px 8px;font-size:13px;line-height:18px}.tutor-checkout-page .tutor-checkout-coupon-badge button{color:var(--tutor-color-hints);cursor:pointer;background-color:transparent;border:none;outline:none;padding:0;font-size:14px;display:flex}.tutor-checkout-page .tutor-checkout-discount-price{color:#767c8e;font-size:13px;text-decoration:line-through}.tutor-checkout-page .tutor-checkout-summary{flex-direction:column;gap:8px;display:flex}.tutor-checkout-page .tutor-checkout-summary-item{color:var(--tutor-body-color);justify-content:space-between;align-items:center;display:flex}.tutor-checkout-page .tutor-checkout-separator{color:var(--tutor-body-color);text-align:center;margin-top:16px;margin-bottom:16px;font-size:13px;line-height:18px;position:relative}.tutor-checkout-page .tutor-checkout-separator span{z-index:1;background-color:#f9fafc;padding:0 4px;position:relative}.tutor-checkout-page .tutor-checkout-separator:before{content:"";background-color:var(--tutor-border-color);width:100%;height:1px;position:absolute;top:8px;left:0}.tutor-checkout-page .tutor-payment-instructions{border:1px solid var(--tutor-border-color);white-space:pre-line;background-color:#fafafa;border-radius:6px;margin-top:16px;padding:16px}.tutor-checkout-page .tutor-apply-coupon-form{border:1px solid var(--tutor-border-color);background-color:#fff;border-radius:6px;padding:4px;display:flex}.tutor-checkout-page .tutor-apply-coupon-form input{width:100%;box-shadow:none;background-color:transparent;border:none;outline:none}.tutor-checkout-page .tutor-apply-coupon-form button{border:none;padding:4px 16px;font-size:13px;font-weight:500;line-height:24px}.tutor-checkout-page .tutor-show-tax-rates{color:var(--tutor-color-primary);cursor:pointer;background:0 0;border:0;outline:0}.tutor-checkout-page .tutor-show-tax-rates:hover{text-decoration:underline}.tutor-checkout-page .tutor-tax-breakdown-modal{z-index:99999;width:100%;height:100%;position:fixed;top:0;left:0}.tutor-checkout-page .tutor-tax-breakdown-modal__backdrop{z-index:1;background:rgba(22,22,22,.7);position:absolute;top:0;bottom:0;left:0;right:0}.tutor-checkout-page .tutor-tax-breakdown-modal__content{z-index:2;background-color:#fff;border-radius:6px;flex-direction:column;gap:16px;padding:24px;display:flex;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 8px 24px rgba(17,18,19,.12)}.tutor-checkout-page .tutor-tax-breakdown-modal__header{justify-content:space-between;display:flex}.tutor-checkout-page .tutor-tax-breakdown-modal__header button{color:#9197a8;cursor:pointer;background:0 0;border:0;outline:0;width:32px;height:32px}.tutor-checkout-page .tutor-tax-breakdown-modal__header h6{font-size:1rem}.tutor-checkout-page .tutor-tax-breakdown-modal__item{grid-template-columns:2fr 1fr 1fr;display:grid}.tutor-checkout-page .tutor-tax-breakdown-modal__item>span{font-size:.875rem}.tutor-checkout-page .tutor-tax-breakdown-modal__item>span:not(:first-of-type){text-align:right;font-weight:600}.tutor-checkout-page .tutor-checkout-spinner{padding:0;position:absolute;top:12px;right:0}.tutor-checkout-page .tutor-plan-trial-price{background-color:#f5fbf7;border-radius:4px;justify-content:space-between;align-items:start;padding:8px;display:flex}.tutor-checkout-page .tutor-plan-trial-price .tutor-plan-trial-icon-wrapper{align-items:center;gap:4px;display:flex}.tutor-checkout-billing .tutor-billing-fields .tutor-form-label{display:none}.tutor-checkout-billing .tutor-billing-fields .tutor-mb-16{margin:0!important}.tutor-checkout-billing .tutor-billing-fields .tutor-form-control{border-radius:0;height:40px}.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:not(:last-of-type) .tutor-form-control{border-bottom:none!important}.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:first-of-type .tutor-form-control{border-top-left-radius:6px}.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:last-of-type .tutor-form-control{border-bottom-right-radius:6px;border-bottom-left-radius:6px}@media (min-width:992px){.tutor-checkout-billing .tutor-billing-fields .tutor-col-sm-6:nth-of-type(odd) .tutor-form-control{border-right:none!important}.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:nth-of-type(2) .tutor-form-control{border-top-right-radius:6px}}@media (min-width:576px) and (max-width:767px){.tutor-checkout-billing .tutor-billing-fields .tutor-col-sm-6:nth-of-type(odd) .tutor-form-control{border-right:none!important}.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:nth-of-type(2) .tutor-form-control{border-top-right-radius:6px}}@media (min-width:768px) and (max-width:991px){.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:first-of-type .tutor-form-control{border-top-right-radius:6px}}@media (max-width:575px){.tutor-checkout-billing .tutor-billing-fields .tutor-col-12:first-of-type .tutor-form-control{border-top-right-radius:6px}}.tutor-checkout-payment-options{border:1px solid var(--tutor-border-color);background-color:#fff;border-radius:6px;flex-direction:column;display:flex}.tutor-checkout-payment-options .tutor-checkout-payment-item{cursor:pointer;background-color:transparent;border:none;align-items:center;gap:12px;margin:0;padding:16px;line-height:24px;display:flex}.tutor-checkout-payment-options .tutor-checkout-payment-item:not(:last-child){border-bottom:1px solid var(--tutor-border-color)}.tutor-checkout-payment-options .tutor-checkout-payment-item .tutor-payment-item-content{color:#212529;gap:6px;width:100%;font-size:16px;font-weight:600;display:flex}.tutor-checkout-payment-options .tutor-checkout-payment-item .tutor-payment-item-content img{max-width:24px}.tutor-checkout-payment-options .tutor-checkout-payment-item.active{background-color:#e9edfb;border-color:transparent;box-shadow:0 0 0 1px #7391f0}.tutor-checkout-payment-options .tutor-checkout-payment-item.active:first-of-type{border-top-left-radius:6px;border-top-right-radius:6px}.tutor-checkout-payment-options .tutor-checkout-payment-item.active:last-of-type{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.tutor-checkout-payment-options .tutor-alert{margin:-1px}.tutor-order-status-wrapper{text-align:center;border-radius:24px;flex-direction:column;justify-content:space-between;align-items:center;gap:32px;max-width:450px;min-height:400px;margin:80px auto;padding:48px 32px 32px;display:flex;box-shadow:0 4px 4px rgba(0,0,0,.06),0 0 6px rgba(0,0,0,.08)}.tutor-order-status-wrapper .tutor-btn{padding-left:24px;padding-right:24px;font-size:15px;font-weight:500}.tutor-display-none{display:none}.tutor-page-wrap{width:100%}
:root{--tutor-text-size:16px;--tutor-color-white:#fff;--tutor-color-success:#24a148;--tutor-color-success-rgb:36,161,72;--tutor-color-warning:#ed9700;--tutor-color-warning-rgb:237,151,0;--tutor-color-danger:#f44337;--tutor-color-danger-rgb:244,67,55;--tutor-color-secondary:#41454f;--tutor-color-subdued:#5b616f;--tutor-color-hints:#767c8e;--tutor-color-muted:#757c8e;--tutor-color-gray:#e3e5eb;--tutor-color-gray-10:#eff1f6}.tutor-color-black{color:var(--tutor-body-color)}.tutor-color-white{color:#fff}.tutor-color-primary{color:var(--tutor-color-primary)}.tutor-color-success{color:#24a148}.tutor-color-warning{color:#ed9700}.tutor-color-danger{color:#f44337}.tutor-color-secondary{color:#41454f}.tutor-color-muted{color:#757c8e}.tutor-color-subdued{color:#5b616f}.tutor-color-hints{color:#767c8e}.tutor-color-gray-20{color:#e3e5eb}.tutor-color-gray-10{color:#eff1f6}.tutor-bg-black{background-color:var(--tutor-body-color)}.tutor-bg-white{background-color:#fff}.tutor-bg-primary{background-color:var(--tutor-color-primary)}.tutor-bg-success{background-color:#24a148}.tutor-bg-warning{background-color:#ed9700}.tutor-bg-danger{background-color:#f44337}.tutor-bg-secondary{background-color:#41454f}.tutor-bg-muted{background-color:#757c8e}.tutor-bg-subdued{background-color:#5b616f}.tutor-bg-hints{background-color:#767c8e}.tutor-bg-gray-20{background-color:#e3e5eb}.tutor-bg-gray-10{background-color:#eff1f6}.text-regular-body,.tutor-text-regular-body{font-size:16px;font-weight:400;line-height:162%}.text-regular-caption,.tutor-text-regular-caption{font-size:15px;font-weight:400;line-height:160%}.text-regular-small,.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .tutor-option-field-label .desc,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .tutor-option-field-label .desc,.text-body,.tutor-text-regular-small{font-size:13px;font-weight:400;line-height:138%}.text-regular-tiny,.tutor-text-regular-tiny{font-size:11px;font-weight:400;line-height:145%}.text-medium-h1,.tutor-text-medium-h1{font-size:80px;font-weight:500;line-height:101%}.text-medium-h2,.tutor-text-medium-h2{font-size:60px;font-weight:500;line-height:117%}.text-medium-h3,.tutor-text-medium-h3{font-size:40px;font-weight:500;line-height:120%}.text-medium-h4,.tutor-text-medium-h4{font-size:30px;font-weight:500;line-height:123%}.text-medium-h5,.tutor-text-medium-h5{font-size:24px;font-weight:500;line-height:142%}.text-medium-h6,.tutor-text-medium-h6{font-size:20px;font-weight:500;line-height:140%}.text-medium-body,.tutor-text-medium-body{font-size:16px;font-weight:500;line-height:162%}.text-medium-caption,.tutor-text-medium-caption{font-size:15px;font-weight:500;line-height:160%}.text-medium-small,.tutor-text-medium-small{font-size:13px;font-weight:500;line-height:162%}.text-medium-tiny,.tutor-text-medium-tiny{font-size:11px;font-weight:500;line-height:145%}.text-semi-h1,.tutor-text-semi-h1{font-size:80px;font-weight:600;line-height:101%}.text-semi-h2,.tutor-text-semi-h2{font-size:60px;font-weight:600;line-height:117%}.text-semi-h3,.tutor-text-semi-h3{font-size:40px;font-weight:600;line-height:120%}.text-semi-h4,.tutor-text-semi-h4{font-size:30px;font-weight:600;line-height:123%}.text-semi-h5,.tutor-text-semi-h5{font-size:24px;font-weight:600;line-height:142%}.text-semi-h6,.tutor-text-semi-h6{font-size:20px;font-weight:600;line-height:150%}.text-semi-caption,.tutor-text-semi-caption{font-size:15px;font-weight:600;line-height:165%}.text-semi-small,.tutor-text-semi-small{font-size:13px;font-weight:600;line-height:128%}.text-bold-h1,.tutor-text-bold-h1{font-size:80px;font-weight:700;line-height:101%}.text-bold-h2,.tutor-text-bold-h2{font-size:60px;font-weight:700;line-height:117%}.text-bold-h3,.tutor-text-bold-h3{font-size:40px;font-weight:700;line-height:120%}.text-bold-h4,.tutor-text-bold-h4{font-size:30px;font-weight:700;line-height:123%}.text-bold-h5,.tutor-text-bold-h5{font-size:24px;font-weight:700;line-height:142%}.text-bold-h6,.tutor-text-bold-h6{font-size:20px;font-weight:700;line-height:150%}.text-bold-body,.tutor-text-bold-body{font-size:16px;font-weight:700;line-height:162%}.text-bold-caption,.tutor-text-bold-caption{font-size:15px;font-weight:700;line-height:160%}.text-bold-small,.tutor-text-bold-small{font-size:13px;font-weight:700;line-height:162%}.text-bold-tiny,.tutor-text-bold-tiny{font-size:11px;font-weight:700;line-height:145%}.text-btn-xlarge,.tutor-text-btn-xlarge{font-size:18px;font-weight:500;line-height:178%}.text-btn-large,.tutor-text-btn-large{font-size:16px;font-weight:500;line-height:200%}.text-btn-medium,.tutor-text-btn-medium{font-size:15px;font-weight:500;line-height:160%}.text-btn-small,.tutor-text-btn-small{font-size:13px;font-weight:500;line-height:123%}.tutor-dashboard .tutor-phone-input .intl-tel-input{display:inline-block;position:relative}.tutor-dashboard .tutor-phone-input .intl-tel-input *{box-sizing:border-box}.tutor-dashboard .tutor-phone-input .intl-tel-input .hide{display:none}.tutor-dashboard .tutor-phone-input .intl-tel-input .v-hide{visibility:hidden}.tutor-dashboard .tutor-phone-input .intl-tel-input input{z-index:0;margin-right:0;padding-right:36px;position:relative;margin-top:0!important;margin-bottom:0!important}.tutor-dashboard .tutor-phone-input .intl-tel-input input[type=text]{z-index:0;margin-right:0;padding-right:36px;position:relative;margin-top:0!important;margin-bottom:0!important}.tutor-dashboard .tutor-phone-input .intl-tel-input input[type=tel]{z-index:0;margin-right:0;padding-right:36px;position:relative;margin-top:0!important;margin-bottom:0!important}.tutor-dashboard .tutor-phone-input .intl-tel-input .flag-container{padding:1px;position:absolute;top:0;bottom:0;right:0}.tutor-dashboard .tutor-phone-input .intl-tel-input .selected-flag{z-index:1;width:36px;height:100%;padding:0 0 0 8px;position:relative}.tutor-dashboard .tutor-phone-input .intl-tel-input .selected-flag .iti-flag{margin:auto;position:absolute;top:0;bottom:0}.tutor-dashboard .tutor-phone-input .intl-tel-input .selected-flag .iti-arrow{border-top:4px solid #555;border-left:3px solid transparent;border-right:3px solid transparent;width:0;height:0;margin-top:-2px;position:absolute;top:50%;right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input .selected-flag .iti-arrow.up{border-top:none;border-bottom:4px solid #555}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list{z-index:2;text-align:left;white-space:nowrap;background-color:#fff;border:1px solid #ccc;max-height:200px;margin:0 0 0 -1px;padding:0;list-style:none;position:absolute;overflow-y:scroll;box-shadow:1px 1px 4px rgba(0,0,0,.2)}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list.dropup{margin-bottom:-1px;bottom:100%}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .flag-box{width:20px;display:inline-block}@media (max-width:500px){.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list{white-space:normal}}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .divider{border-bottom:1px solid #ccc;margin-bottom:5px;padding-bottom:5px}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .country{padding:5px 10px}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .country .dial-code{color:#999}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .country.highlight{background-color:rgba(0,0,0,.05)}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .flag-box,.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .country-name,.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .dial-code{vertical-align:middle}.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .flag-box,.tutor-dashboard .tutor-phone-input .intl-tel-input .country-list .country-name{margin-right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input,.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code input{margin-left:0;padding-left:52px;padding-right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input[type=text]{margin-left:0;padding-left:52px;padding-right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input[type=tel]{margin-left:0;padding-left:52px;padding-right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code input[type=text]{margin-left:0;padding-left:52px;padding-right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code input[type=tel]{margin-left:0;padding-left:52px;padding-right:6px}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown .flag-container,.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code .flag-container{left:0;right:auto}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown .selected-flag,.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code .selected-flag{width:46px}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown .flag-container:hover{cursor:pointer}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag{background-color:rgba(0,0,0,.05)}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover{cursor:default}.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.tutor-dashboard .tutor-phone-input .intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag{background-color:transparent}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code .selected-flag{background-color:rgba(0,0,0,.05);display:table}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code .selected-dial-code{vertical-align:middle;padding-left:28px;display:table-cell}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-2 input{padding-left:66px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text]{padding-left:66px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel]{padding-left:66px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag{width:60px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input{padding-left:76px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text]{padding-left:76px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel]{padding-left:76px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag{width:70px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-3 input{padding-left:74px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text]{padding-left:74px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel]{padding-left:74px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag{width:68px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input{padding-left:84px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text]{padding-left:84px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel]{padding-left:84px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag{width:78px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-4 input{padding-left:82px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text]{padding-left:82px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel]{padding-left:82px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag{width:76px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input{padding-left:92px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text]{padding-left:92px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel]{padding-left:92px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag{width:86px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-5 input{padding-left:90px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text]{padding-left:90px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel]{padding-left:90px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag{width:84px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input{padding-left:100px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text]{padding-left:100px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel]{padding-left:100px}.tutor-dashboard .tutor-phone-input .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag{width:94px}.tutor-dashboard .tutor-phone-input .intl-tel-input.iti-container{z-index:1060;padding:1px;position:absolute;top:-1000px;left:-1000px}.tutor-dashboard .tutor-phone-input .intl-tel-input.iti-container:hover{cursor:pointer}.tutor-dashboard .tutor-phone-input .iti-mobile .intl-tel-input.iti-container{position:fixed;top:30px;bottom:30px;left:30px;right:30px}.tutor-dashboard .tutor-phone-input .iti-mobile .intl-tel-input .country-list{width:100%;max-height:100%}.tutor-dashboard .tutor-phone-input .iti-mobile .intl-tel-input .country-list .country{padding:10px;line-height:1.5em}.tutor-dashboard .tutor-phone-input .iti-flag{width:20px}.tutor-dashboard .tutor-phone-input .iti-flag.be{width:18px}.tutor-dashboard .tutor-phone-input .iti-flag.ch{width:15px}.tutor-dashboard .tutor-phone-input .iti-flag.mc{width:19px}.tutor-dashboard .tutor-phone-input .iti-flag.ne{width:18px}.tutor-dashboard .tutor-phone-input .iti-flag.np{width:13px}.tutor-dashboard .tutor-phone-input .iti-flag.va{width:15px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.tutor-dashboard .tutor-phone-input .iti-flag{background-size:5630px 15px}}.tutor-dashboard .tutor-phone-input .iti-flag.ac{background-position:0 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ad{background-position:-22px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ae{background-position:-44px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.af{background-position:-66px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ag{background-position:-88px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ai{background-position:-110px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.al{background-position:-132px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.am{background-position:-154px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ao{background-position:-176px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.aq{background-position:-198px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ar{background-position:-220px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.as{background-position:-242px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.at{background-position:-264px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.au{background-position:-286px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.aw{background-position:-308px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ax{background-position:-330px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.az{background-position:-352px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ba{background-position:-374px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.bb{background-position:-396px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bd{background-position:-418px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.be{background-position:-440px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.bf{background-position:-460px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bg{background-position:-482px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.bh{background-position:-504px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.bi{background-position:-526px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.bj{background-position:-548px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bl{background-position:-570px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bm{background-position:-592px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.bn{background-position:-614px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.bo{background-position:-636px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bq{background-position:-658px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.br{background-position:-680px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bs{background-position:-702px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.bt{background-position:-724px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.bv{background-position:-746px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.bw{background-position:-768px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.by{background-position:-790px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.bz{background-position:-812px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ca{background-position:-834px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.cc{background-position:-856px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.cd{background-position:-878px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.cf{background-position:-900px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.cg{background-position:-922px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ch{background-position:-944px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.ci{background-position:-961px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ck{background-position:-983px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.cl{background-position:-1005px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.cm{background-position:-1027px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.cn{background-position:-1049px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.co{background-position:-1071px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.cp{background-position:-1093px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.cr{background-position:-1115px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.cu{background-position:-1137px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.cv{background-position:-1159px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.cw{background-position:-1181px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.cx{background-position:-1203px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.cy{background-position:-1225px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.cz{background-position:-1247px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.de{background-position:-1269px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.dg{background-position:-1291px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.dj{background-position:-1313px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.dk{background-position:-1335px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.dm{background-position:-1357px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.do{background-position:-1379px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.dz{background-position:-1401px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ea{background-position:-1423px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ec{background-position:-1445px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ee{background-position:-1467px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.eg{background-position:-1489px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.eh{background-position:-1511px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.er{background-position:-1533px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.es{background-position:-1555px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.et{background-position:-1577px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.eu{background-position:-1599px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.fi{background-position:-1621px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.fj{background-position:-1643px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.fk{background-position:-1665px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.fm{background-position:-1687px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.fo{background-position:-1709px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.fr{background-position:-1731px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ga{background-position:-1753px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.gb{background-position:-1775px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.gd{background-position:-1797px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.ge{background-position:-1819px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gf{background-position:-1841px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gg{background-position:-1863px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gh{background-position:-1885px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gi{background-position:-1907px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.gl{background-position:-1929px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gm{background-position:-1951px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gn{background-position:-1973px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gp{background-position:-1995px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gq{background-position:-2017px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gr{background-position:-2039px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.gs{background-position:-2061px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.gt{background-position:-2083px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.gu{background-position:-2105px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.gw{background-position:-2127px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.gy{background-position:-2149px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.hk{background-position:-2171px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.hm{background-position:-2193px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.hn{background-position:-2215px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.hr{background-position:-2237px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ht{background-position:-2259px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.hu{background-position:-2281px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ic{background-position:-2303px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.id{background-position:-2325px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ie{background-position:-2347px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.il{background-position:-2369px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.im{background-position:-2391px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.in{background-position:-2413px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.io{background-position:-2435px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.iq{background-position:-2457px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ir{background-position:-2479px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.is{background-position:-2501px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.it{background-position:-2523px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.je{background-position:-2545px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.jm{background-position:-2567px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.jo{background-position:-2589px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.jp{background-position:-2611px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ke{background-position:-2633px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.kg{background-position:-2655px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.kh{background-position:-2677px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.ki{background-position:-2699px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.km{background-position:-2721px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.kn{background-position:-2743px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.kp{background-position:-2765px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.kr{background-position:-2787px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.kw{background-position:-2809px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ky{background-position:-2831px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.kz{background-position:-2853px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.la{background-position:-2875px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.lb{background-position:-2897px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.lc{background-position:-2919px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.li{background-position:-2941px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.lk{background-position:-2963px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.lr{background-position:-2985px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.ls{background-position:-3007px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.lt{background-position:-3029px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.lu{background-position:-3051px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.lv{background-position:-3073px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ly{background-position:-3095px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ma{background-position:-3117px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mc{background-position:-3139px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.md{background-position:-3160px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.me{background-position:-3182px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.mf{background-position:-3204px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mg{background-position:-3226px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mh{background-position:-3248px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.mk{background-position:-3270px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ml{background-position:-3292px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mm{background-position:-3314px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mn{background-position:-3336px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.mo{background-position:-3358px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mp{background-position:-3380px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.mq{background-position:-3402px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mr{background-position:-3424px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ms{background-position:-3446px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.mt{background-position:-3468px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mu{background-position:-3490px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mv{background-position:-3512px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mw{background-position:-3534px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.mx{background-position:-3556px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.my{background-position:-3578px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.mz{background-position:-3600px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.na{background-position:-3622px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.nc{background-position:-3644px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ne{background-position:-3666px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.nf{background-position:-3686px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ng{background-position:-3708px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.ni{background-position:-3730px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.nl{background-position:-3752px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.no{background-position:-3774px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.np{background-position:-3796px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.nr{background-position:-3811px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.nu{background-position:-3833px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.nz{background-position:-3855px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.om{background-position:-3877px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.pa{background-position:-3899px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.pe{background-position:-3921px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.pf{background-position:-3943px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.pg{background-position:-3965px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.ph{background-position:-3987px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.pk{background-position:-4009px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.pl{background-position:-4031px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.pm{background-position:-4053px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.pn{background-position:-4075px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.pr{background-position:-4097px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ps{background-position:-4119px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.pt{background-position:-4141px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.pw{background-position:-4163px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.py{background-position:-4185px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.qa{background-position:-4207px 0;height:8px}.tutor-dashboard .tutor-phone-input .iti-flag.re{background-position:-4229px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ro{background-position:-4251px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.rs{background-position:-4273px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ru{background-position:-4295px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.rw{background-position:-4317px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sa{background-position:-4339px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sb{background-position:-4361px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.sc{background-position:-4383px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.sd{background-position:-4405px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.se{background-position:-4427px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.sg{background-position:-4449px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sh{background-position:-4471px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.si{background-position:-4493px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.sj{background-position:-4515px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.sk{background-position:-4537px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sl{background-position:-4559px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sm{background-position:-4581px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.sn{background-position:-4603px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.so{background-position:-4625px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sr{background-position:-4647px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ss{background-position:-4669px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.st{background-position:-4691px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.sv{background-position:-4713px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.sx{background-position:-4735px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sy{background-position:-4757px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.sz{background-position:-4779px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ta{background-position:-4801px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.tc{background-position:-4823px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.td{background-position:-4845px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.tf{background-position:-4867px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.tg{background-position:-4889px 0;height:13px}.tutor-dashboard .tutor-phone-input .iti-flag.th{background-position:-4911px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.tj{background-position:-4933px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.tk{background-position:-4955px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.tl{background-position:-4977px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.tm{background-position:-4999px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.tn{background-position:-5021px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.to{background-position:-5043px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.tr{background-position:-5065px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.tt{background-position:-5087px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.tv{background-position:-5109px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.tw{background-position:-5131px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.tz{background-position:-5153px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ua{background-position:-5175px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ug{background-position:-5197px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.um{background-position:-5219px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.us{background-position:-5241px 0;height:11px}.tutor-dashboard .tutor-phone-input .iti-flag.uy{background-position:-5263px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.uz{background-position:-5285px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.va{background-position:-5307px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.vc{background-position:-5324px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ve{background-position:-5346px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.vg{background-position:-5368px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.vi{background-position:-5390px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.vn{background-position:-5412px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.vu{background-position:-5434px 0;height:12px}.tutor-dashboard .tutor-phone-input .iti-flag.wf{background-position:-5456px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.ws{background-position:-5478px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag.xk{background-position:-5500px 0;height:15px}.tutor-dashboard .tutor-phone-input .iti-flag.ye{background-position:-5522px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.yt{background-position:-5544px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.za{background-position:-5566px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.zm{background-position:-5588px 0;height:14px}.tutor-dashboard .tutor-phone-input .iti-flag.zw{background-position:-5610px 0;height:10px}.tutor-dashboard .tutor-phone-input .iti-flag{background-color:#dbdbdb;background-image:url(https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags.png);background-position:20px 0;background-repeat:no-repeat;width:20px;height:15px;box-shadow:0 0 1px #888}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){.tutor-dashboard .tutor-phone-input .iti-flag{background-image:url(https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/11.0.9/img/flags@2x.png)}}.tutor-dashboard .tutor-phone-input .iti-flag.np{background-color:transparent}.tutor-dashboard .tutor-phone-input *{box-sizing:border-box}.tutor-dashboard .tutor-phone-input body{color:#555;margin:20px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px}.tutor-dashboard .tutor-phone-input .hide{display:none}.tutor-dashboard .tutor-phone-input pre{display:inline-block;margin:0!important}.tutor-dashboard .tutor-phone-input .token.operator,.tutor-dashboard .tutor-phone-input .token.entity,.tutor-dashboard .tutor-phone-input .token.url,.tutor-dashboard .tutor-phone-input .language-css .token.string,.tutor-dashboard .tutor-phone-input .style .token.string,.tutor-dashboard .tutor-phone-input .token.variable{background:0 0}.tutor-dashboard .tutor-phone-input input,.tutor-dashboard .tutor-phone-input button{height:35px;color:inherit;border-radius:2px;margin:0;padding:6px 12px;font-family:inherit;font-size:100%}.tutor-dashboard .tutor-phone-input input[disabled],.tutor-dashboard .tutor-phone-input button[disabled]{background-color:#eee}.tutor-dashboard .tutor-phone-input input,.tutor-dashboard .tutor-phone-input select{border:1px solid #ccc;width:250px}.tutor-dashboard .tutor-phone-input ::-webkit-input-placeholder{color:#bbb}.tutor-dashboard .tutor-phone-input ::-moz-placeholder{color:#bbb;opacity:1}.tutor-dashboard .tutor-phone-input :-ms-input-placeholder{color:#bbb}.tutor-dashboard .tutor-phone-input button{color:#fff;background-color:#428bca;border:1px solid #357ebd}.tutor-dashboard .tutor-phone-input button:hover{cursor:pointer;background-color:#3276b1;border-color:#285e8e}.tutor-dashboard .tutor-phone-input #result{margin-bottom:100px}.tutor-dashboard .tutor-frontend-dashboard-header{padding-bottom:25px;position:relative}.tutor-dashboard .tutor-frontend-dashboard-header:after{content:"";background:var(--tutor-border-color);width:calc(100% - 30px);height:1px;position:absolute;bottom:0;left:15px}.tutor-dashboard .tutor-frontend-dashboard-header .tutor-dashboard-header .tutor-dashboard-header-info{flex:1;padding-top:15px;padding-bottom:15px;padding-left:24px}.tutor-dashboard .tutor-frontend-dashboard-header .tutor-dashboard-header .tutor-dashboard-header-info .tutor-dashboard-header-display-name h4{color:var(--tutor-body-color);margin:0;font-size:30px;font-style:normal;font-weight:500}.tutor-dashboard .tutor-frontend-dashboard-header .tutor-dashboard-header .tutor-dashboard-header-info .tutor-dashboard-header-stats{flex-wrap:wrap;line-height:25px;display:flex}.tutor-dashboard .tutor-frontend-dashboard-header .tutor-dashboard-header .tutor-dashboard-header-info .tutor-dashboard-header-stats>div:not(:first-child){margin-left:30px}.tutor-dashboard .tutor-frontend-dashboard-header .tutor-dashboard-header-greetings,.tutor-dashboard .tutor-frontend-dashboard-header .tutor-dashboard-header-username{text-transform:capitalize}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks{margin:0 15px 20px 0;padding:25px 0;list-style:none}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a,.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:hover,.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:active,.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:focus{text-decoration:none;opacity:1!important}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks a:hover:before{opacity:1;color:var(--tutor-color-primary-hover)}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li a{padding:8px 20px}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li a:hover{background-color:rgba(var(--tutor-color-primary-rgb),.1)}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.active a{background-color:var(--tutor-color-primary);color:var(--tutor-color-white)}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.active a:hover{background-color:var(--tutor-color-primary-hover)}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li.active a:before{color:var(--tutor-color-white)}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-menu-item-link{color:var(--tutor-body-color);border-radius:4px 0 0 4px;align-items:center;font-size:16px;font-weight:400;display:flex}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-menu-item-icon{color:var(--tutor-color-primary);font-size:24px}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-menu-item.active a,.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-menu-item.active a .tutor-dashboard-menu-item-icon{color:var(--tutor-color-white)}.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-menu-item:not(:last-child){margin-bottom:5px}@media (max-width:767px){.tutor-dashboard:not(.is-sidebar-expanded) .tutor-dashboard-left-menu{display:none}}.tutor-dashboard.is-sidebar-expanded ul.tutor-dashboard-permalinks{border-right:none!important}.tutor-dashboard.is-sidebar-expanded ul.tutor-dashboard-permalinks li.active a{border-radius:0}.tutor-dashboard .tutor-frontend-dashboard-maincontent ul.tutor-dashboard-permalinks{height:100%;position:relative}.tutor-dashboard .tutor-frontend-dashboard-maincontent ul.tutor-dashboard-permalinks:before{content:"";border-right:1px solid var(--tutor-border-color);z-index:1;width:auto;height:100%;position:absolute;top:0;right:0}body.rtl .tutor-dashboard-left-menu .tutor-dashboard-menu-item-link{border-radius:0 4px 4px 0}body.rtl .tutor-frontend-dashboard-maincontent ul.tutor-dashboard-permalinks:before{right:initial;left:0}.tutor-dashboard #tutor-dashboard-footer-mobile{z-index:9999999;background:#fff;padding:10px;display:block;position:fixed;bottom:0;left:0;right:0;box-shadow:0 0 16px rgba(176,182,209,.18)}@media (min-width:768px){.tutor-dashboard #tutor-dashboard-footer-mobile{display:none!important}}@media (max-width:767px){.tutor-screen-frontend-dashboard{padding-bottom:94px}}.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a{text-align:center;text-overflow:ellipsis;color:var(--tutor-color-muted);border-bottom:5px solid transparent;padding-top:5px;padding-bottom:5px;font-size:13px;font-style:normal;font-weight:400;overflow:hidden}.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a:hover{color:var(--tutor-color-primary)}.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a.active{border-bottom:5px solid var(--tutor-color-primary)}.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a,.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a:hover,.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a:active,.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a:focus{box-shadow:none;border:none;outline:none;text-decoration:none}.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a i{font-size:21px}.tutor-dashboard #tutor-dashboard-footer-mobile>div>div>a span{padding:0 7px 7px;display:block}.tutor-dashboard .tutor-dashboard-my-courses .tutor-iconic-btn.tutor-my-course-edit{opacity:0}.tutor-dashboard .tutor-dashboard-my-courses .tutor-course-card:hover .tutor-iconic-btn.tutor-my-course-edit{opacity:1}.tutor-dashboard .tutor-dashboard-content{padding-top:28px}.tutor-dashboard .tutor-dashboard-content>h3,.tutor-dashboard .tutor-dashboard-content>h4{color:var(--tutor-body-color);margin:0 0 25px;font-size:24px;font-style:normal;font-weight:500;line-height:34px}.tutor-dashboard .tutor-dashboard-content>h3.popular-courses-heading-dashboard{margin-top:28px}.tutor-dashboard .tutor-dashboard-content .tutor-table.tutor-table-quiz-attempts tr th{white-space:break-spaces}.tutor-dashboard .tutor-dashboard-content .tutor-table.tutor-table-quiz-attempts tr th,.tutor-dashboard .tutor-dashboard-content .tutor-table.tutor-table-quiz-attempts tr td{vertical-align:middle}.tutor-dashboard .tutor-dashboard-content .tutor-table.tutor-table-quiz-attempts tr th:first-child,.tutor-dashboard .tutor-dashboard-content .tutor-table.tutor-table-quiz-attempts tr td:first-child{min-width:200px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social .tutor-social-field>div:first-child{color:var(--tutor-color-secondary);padding-top:5px;padding-bottom:5px;font-size:15px;font-style:normal;font-weight:400}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social .tutor-social-field>div:first-child i{color:#1a1b1e;width:20px;display:inline-block}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor{height:344px;position:relative}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area{text-align:right;margin-top:16px;padding-left:190px}@media (max-width:492px){.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area{padding-left:120px}}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area>img,.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area>span{vertical-align:middle;display:inline-block}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area>span{white-space:nowrap;color:#7a7a7a;font-size:13px;font-style:normal;font-weight:400;line-height:18px}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area>span>span{color:#000}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_meta_area>span.loader-area{display:none}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_cover_area{background-color:#e9edfb;background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:6px;height:245px;position:relative;overflow:hidden}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_cover_area .tutor_overlay{background-image:linear-gradient(transparent,rgba(0,0,0,.6));height:70%;position:absolute;bottom:0;left:0;right:0}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_uploader{position:absolute;bottom:22px;right:22px}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_deleter{color:#fff;text-align:center;cursor:pointer;background:rgba(0,0,0,.247);border-radius:50%;width:36px;height:36px;font-size:18px;line-height:40px;position:absolute;top:22px;right:22px}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_cover_area .tutor_cover_deleter:hover{background:rgba(0,0,0,.44)}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_profile_area{background-color:#e9edfb;background-position:50%;background-repeat:no-repeat;background-size:cover;border:5px solid #fff;border-radius:50%;width:142px;height:142px;position:absolute;top:145px;left:35px;overflow:hidden}@media (max-width:688px){.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_profile_area{width:120px;height:120px;top:168px;left:31px}}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_profile_area .tutor_overlay{cursor:pointer;color:#fff;background:rgba(0,0,0,.255);justify-content:center;align-items:center;height:37px;padding:0;display:flex;position:absolute;bottom:0;left:0;right:0}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_profile_area .tutor_overlay:hover{background:rgba(0,0,0,.41)}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option{color:#fff;z-index:99;background:#353535;border-radius:6px;width:157px;display:none;position:absolute;top:294px;left:27px}@media (max-width:688px){.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option{top:294px;left:10px}}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option span{cursor:pointer;color:#fff;padding:5px 10px;font-size:16px;font-style:normal;font-weight:400;line-height:26px;display:block;overflow:hidden}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option span:first-of-type{border-top-left-radius:6px;border-top-right-radius:6px}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option span:last-of-type{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option span:hover{background:#6b6b6b}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option .profile-uploader{justify-content:flex-start;align-items:center;display:flex}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option .up-arrow{text-align:center;height:0}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option .up-arrow i{border-bottom:5px solid #353535;border-left:5px solid transparent;border-right:5px solid transparent;width:0;height:0;display:inline-block;position:relative;top:-17px}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option>:not(:last-child){z-index:1;position:relative}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_pp_option>div:last-child{z-index:0;z-index:0;background:0 0;position:fixed;top:0;bottom:0;left:0;right:0}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor.pop-up-opened #tutor_pp_option{display:block}.tutor-dashboard .tutor-dashboard-content #tutor_profile_cover_photo_editor #tutor_photo_dialogue_box{display:none}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-withdraw .tutor-radio-select .tutor-form-check-input{margin-top:unset}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social input.tutor-form-control::-webkit-input-placeholder{color:var(--tutor-color-muted)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social input.tutor-form-control::-ms-input-placeholder{color:var(--tutor-color-muted)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social input.tutor-form-control::placeholder{color:var(--tutor-color-muted)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social textarea.tutor-form-control::-webkit-input-placeholder{color:var(--tutor-color-muted)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social textarea.tutor-form-control::-ms-input-placeholder{color:var(--tutor-color-muted)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-setting-social textarea.tutor-form-control::placeholder{color:var(--tutor-color-muted)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-assignment-review-header table td:last-child,.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-assignment-review-header table td:last-child a{color:var(--tutor-body-color);font-size:16px;font-style:normal;font-weight:500;line-height:26px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area{background:var(--tutor-color-gray-10);box-sizing:border-box;border:1px solid #e3e6eb;border-radius:6px;margin-bottom:40px;padding:25px;font-weight:400}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area h4,.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area h5{color:var(--tutor-body-color);font-size:16px;font-weight:700;line-height:23px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area h5{margin-bottom:15px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area h3{color:var(--tutor-body-color);margin:0 0 20px;font-size:20px;font-style:normal;font-weight:500}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area label{color:var(--tutor-color-secondary);font-size:15px;font-style:normal;font-weight:400}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area [type=number]{color:var(--tutor-body-color);margin-right:10px;font-size:20px;font-style:normal;font-weight:500;display:inline-block;max-width:100px!important}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-assignment-review .tutor-dashboard-assignment-review-area [type=number]+p{color:var(--tutor-color-secondary);font-size:15px;font-style:italic;font-weight:400;display:inline-block!important}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.tutor-form-toggle .tutor-form-toggle-control{border:1px solid var(--tutor-color-primary);background-color:transparent;width:38px;height:22px;margin:0 7px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.tutor-form-toggle .tutor-form-toggle-label{font-weight:400!important}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.tutor-form-toggle .tutor-form-toggle-control:before{width:16px;height:16px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-instructor .tutor-form-toggle-label.tutor-form-toggle-checked{color:var(--tutor-color-primary)!important}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-instructor .tutor-form-toggle-label.tutor-form-toggle-unchecked{color:var(--tutor-border-color)!important}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-instructor .tutor-form-toggle-control:before{background:var(--tutor-color-primary);top:2px;left:17px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-instructor span:nth-of-type(3){color:#41454f;font-size:16px;font-style:normal;font-weight:500}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-instructor span:first-of-type{color:#c0c3cb;font-size:16px;font-style:normal;font-weight:400}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-student .tutor-form-toggle-label.tutor-form-toggle-checked{color:var(--tutor-color-primary)}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-student .tutor-form-toggle-label.tutor-form-toggle-unchecked{color:#c0c3cb}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-student .tutor-form-toggle-control:before{background:var(--tutor-color-primary);top:2px}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-student span:first-of-type{color:#41454f;font-size:16px;font-style:normal;font-weight:500}.tutor-dashboard .tutor-dashboard-content .tutor-dashboard-qna-vew-as.current-view-student span:nth-of-type(3){color:#c0c3cb;font-size:16px;font-style:normal;font-weight:400}.tutor-dashboard .tutor-dashboard-content .tutor-qna-single-wrapper .qna-back-button{align-items:center;display:flex}.tutor-dashboard .tutor-dashboard-content .tutor-form-feedback .tutor-form-feedback-icon{margin-top:2px}.tutor-dashboard .tutor-dashboard-content .tutor-table.qna-list-table .tooltip-wrap.tooltip-icon-custom{justify-content:center;align-items:center;width:24px;height:24px;display:flex}.tutor-dashboard .tutor-dashboard-content .tutor-table.qna-list-table .tooltip-wrap.tooltip-icon-custom i{display:block}.tutor-dashboard .tutor-dashboard-content .tutor-order-history-actions{justify-content:flex-end;align-items:center;display:flex}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps .item-wrapper,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps .item-wrapper{background-position:right 25px center;background-repeat:no-repeat;background-size:50%}.rtl .tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps .item-wrapper,.rtl .tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps .item-wrapper{background-position:25px 50%}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps h4,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps h4{color:#161616;margin-bottom:24px;font-size:24px;font-weight:700;line-height:1.42}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps ul,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps ul{counter-reset:listItem}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps ul li,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps ul li{margin-bottom:13px;font-size:15px;line-height:1.6;list-style:none;display:block}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps ul li:before,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps ul li:before{counter-increment:listItem;content:counter(listItem)".";margin-right:12px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps .create-certificate-btn,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps .create-certificate-btn{margin-top:28px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .create-certificate-steps .item-wrapper,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .create-certificate-steps .item-wrapper{padding:42px 52px 54px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page.tutor-cb-templates-table .item-wrapper,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table.tutor-cb-templates-table .item-wrapper{box-sizing:border-box;background-position:right -1px center;border:1px solid #e0e2ea;border-radius:10px;margin-bottom:16px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page.tutor-cb-templates-table .tutor-certificate-step-description,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table.tutor-cb-templates-table .tutor-certificate-step-description{max-width:374px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .all-certificate .tutor-option-field-row,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .all-certificate .tutor-option-field-row{grid-gap:20px;grid-template-columns:98px 1fr auto}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .all-certificate .certificate-thumb,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .all-certificate .certificate-thumb{justify-self:center;display:inline-flex;position:relative}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .all-certificate .certificate-thumb:before,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .all-certificate .certificate-thumb:before{content:"";-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);opacity:0;background-color:rgba(22,22,22,.5);background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='18' viewBox='0 0 24 18' fill='none'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 0.75C6.54545 0.75 1.85455 4.13182 0 8.93182C1.85455 13.7318 6.54545 17.1136 12 17.1136C17.4545 17.1136 22.1455 13.7318 24 8.93182C22.1455 4.13182 17.4545 0.75 12 0.75ZM12.0007 14.3863C8.94617 14.3863 6.54617 11.9863 6.54617 8.93177C6.54617 5.87723 8.94617 3.47723 12.0007 3.47723C15.0553 3.47723 17.4553 5.87723 17.4553 8.93177C17.4553 11.9863 15.0553 14.3863 12.0007 14.3863ZM8.72754 8.93195C8.72754 7.0774 10.1457 5.65922 12.0003 5.65922C13.8548 5.65922 15.273 7.0774 15.273 8.93195C15.273 10.7865 13.8548 12.2047 12.0003 12.2047C10.1457 12.2047 8.72754 10.7865 8.72754 8.93195Z' fill='white'/%3e%3c/svg%3e");background-position:50%;background-repeat:no-repeat;border-radius:3px;width:100%;height:100%;transition:all .2s linear;position:absolute}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .all-certificate .certificate-thumb:hover:before,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .all-certificate .certificate-thumb:hover:before{opacity:1}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .no-certificate .certificate-thumb,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .no-certificate .certificate-thumb{text-align:center}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .no-certificate .certificate-thumb p,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .no-certificate .certificate-thumb p{margin-top:24px;font-size:20px;line-height:1.5}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .no-certificate .item-wrapper,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .no-certificate .item-wrapper{padding-top:50px;padding-bottom:50px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-template .tutor-option-field-row,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-template .tutor-option-field-row{border-bottom:none}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-template .radio-thumbnail,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-template .radio-thumbnail{grid-gap:18px 16px;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));display:grid}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-template .radio-thumbnail label,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-template .radio-thumbnail label{margin:unset;cursor:pointer;display:inline-flex}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-template .radio-thumbnail input[type=radio]:checked~.icon-wrapper img{box-shadow:0 0 0 1px var(--tutor-color-primary)}.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-template .radio-thumbnail input[type=radio]:checked~.icon-wrapper img{box-shadow:0 0 0 1px var(--tutor-color-primary)}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-upload-wrap,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-upload-wrap{text-align:left;padding-top:7px;padding-bottom:13px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-upload,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-upload{text-align:left;align-items:center;display:flex}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-preview,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-preview{border:2px solid #e8e8e8;border-radius:3px;justify-content:center;width:200px;height:60px;padding:2px 0;display:flex}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-preview img,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-preview img{object-fit:scale-down;width:100%;height:100%}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-info,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-info{margin-left:23px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-upload span.delete-btn,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-upload span.delete-btn{cursor:pointer;background-color:#f44337;background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='14' viewBox='0 0 12 14' fill='none'%3e%3cpath d='M1.36301 12.0781C1.36301 12.3889 1.48628 12.687 1.7057 12.9068C1.92512 13.1265 2.22272 13.25 2.53302 13.25H9.55307C9.86337 13.25 10.161 13.1265 10.3804 12.9068C10.5998 12.687 10.7231 12.3889 10.7231 12.0781V3.875H1.36301V12.0781ZM7.99306 5.82813C7.99306 5.72453 8.03415 5.62517 8.10729 5.55191C8.18043 5.47866 8.27962 5.4375 8.38306 5.4375C8.48649 5.4375 8.58569 5.47866 8.65883 5.55191C8.73197 5.62517 8.77306 5.72453 8.77306 5.82813V11.2969C8.77306 11.4005 8.73197 11.4998 8.65883 11.5731C8.58569 11.6463 8.48649 11.6875 8.38306 11.6875C8.27962 11.6875 8.18043 11.6463 8.10729 11.5731C8.03415 11.4998 7.99306 11.4005 7.99306 11.2969V5.82813ZM5.65304 5.82813C5.65304 5.72453 5.69413 5.62517 5.76727 5.55191C5.84041 5.47866 5.93961 5.4375 6.04304 5.4375C6.14648 5.4375 6.24568 5.47866 6.31882 5.55191C6.39196 5.62517 6.43305 5.72453 6.43305 5.82813V11.2969C6.43305 11.4005 6.39196 11.4998 6.31882 11.5731C6.24568 11.6463 6.14648 11.6875 6.04304 11.6875C5.93961 11.6875 5.84041 11.6463 5.76727 11.5731C5.69413 11.4998 5.65304 11.4005 5.65304 11.2969V5.82813ZM3.31303 5.82813C3.31303 5.72453 3.35412 5.62517 3.42726 5.55191C3.50039 5.47866 3.59959 5.4375 3.70303 5.4375C3.80646 5.4375 3.90566 5.47866 3.9788 5.55191C4.05194 5.62517 4.09303 5.72453 4.09303 5.82813V11.2969C4.09303 11.4005 4.05194 11.4998 3.9788 11.5731C3.90566 11.6463 3.80646 11.6875 3.70303 11.6875C3.59959 11.6875 3.50039 11.6463 3.42726 11.5731C3.35412 11.4998 3.31303 11.4005 3.31303 11.2969V5.82813ZM11.1131 1.53125H8.18806L7.95893 1.07471C7.9104 0.977107 7.83563 0.895005 7.74305 0.837641C7.65046 0.780276 7.54373 0.749926 7.43487 0.750004H4.64879C4.54016 0.749586 4.43362 0.779823 4.34137 0.837251C4.24911 0.894679 4.17487 0.976976 4.12716 1.07471L3.89803 1.53125H0.97301C0.869575 1.53125 0.770377 1.57241 0.697237 1.64567C0.624097 1.71892 0.583008 1.81828 0.583008 1.92188L0.583008 2.70313C0.583008 2.80673 0.624097 2.90609 0.697237 2.97934C0.770377 3.0526 0.869575 3.09375 0.97301 3.09375H11.1131C11.2165 3.09375 11.3157 3.0526 11.3889 2.97934C11.462 2.90609 11.5031 2.80673 11.5031 2.70313V1.92188C11.5031 1.81828 11.462 1.71892 11.3889 1.64567C11.3157 1.57241 11.2165 1.53125 11.1131 1.53125Z' fill='white'/%3e%3c/svg%3e");background-position:50%;background-repeat:no-repeat;border-radius:50%;width:24px;height:24px;position:absolute;top:-12px;right:-12px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-upload span.delete-btn:hover,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-upload span.delete-btn:hover{background-color:#f2281a}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .signature-upload .signature-preview,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .signature-upload .signature-preview{background:#f3f3f3;position:relative}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .tutor-btn,.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .tutor-btn{margin-top:24px}.tutor-dashboard .tutor-dashboard-content .tutor-option-nav-page .certificate-settings .tutor-btn input[type=file]{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;display:none}.tutor-dashboard .tutor-dashboard-content .tutor-cb-templates-table .certificate-settings .tutor-btn input[type=file]{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;display:none}.tutor-snackbar-wrapper{text-align:center;z-index:2147483647;-o-transition:all 1s;padding:0 15px;transition:all 1s;display:none;position:fixed;bottom:0;left:0;right:0}.tutor-snackbar-wrapper.tutor-snackbar-show{display:block}.tutor-snackbar-wrapper .tutor-btn-outline-primary{color:#fff}.tutor-snackbar-wrapper>div{text-align:initial;color:#fff;-webkit-backdrop-filter:blur(28px);backdrop-filter:blur(28px);background:rgba(0,0,0,.66);border-radius:10px;margin:15px auto;padding:7px 14px;font-size:15px;display:inline-block;box-shadow:0 5px 30px rgba(58,57,132,.06)}.tutor-snackbar-wrapper>div>div{white-space:nowrap;margin:5px 0;display:inline-block}.tutor-snackbar-wrapper .tutor-snackbar-title-icon{color:#fff;vertical-align:middle;margin-right:13px;font-size:24px}.tutor-snackbar-wrapper .tutor-snackbar-close{cursor:pointer;padding:5px;font-size:12px;display:inline-block;color:#7a7a7a!important}.tutor-snackbar-wrapper p{color:#fff;margin:8px 45px 8px 0;font-size:16px;font-weight:400;display:inline-block}