@charset "UTF-8";




/* Counter Widget CSS */
.hfe-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Default alignments that will be overridden by controls */
.hfe-counter-wrapper[style*="flex-direction: column"] {
    align-items: center; /* horizontal alignment for column layouts */
    justify-content: center; /* vertical alignment for column layouts */
}

.hfe-counter-wrapper[style*="flex-direction: row"] {
    justify-content: center; /* horizontal alignment for row layouts */
    align-items: center; /* vertical alignment for row layouts */
}

.hfe-counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
}


.hfe-counter-number {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
}

.hfe-counter-title {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

.hfe-counter-prefix,
.hfe-counter-suffix {
    font-size: inherit;
    line-height: inherit;
}



/* Title styling - flex enabled for alignment controls */
.hfe-counter-title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Ensure counter content doesn't shrink */
.hfe-counter-content {
    flex-shrink: 0;
}

/* Equal width distribution for horizontal layouts */
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-title,
.hfe-counter-wrapper[style*="flex-direction: row-reverse"] .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Alternative approach - apply to all potential horizontal layouts */
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-title,
.hfe-counter-wrapper:not([style*="column"]) .hfe-counter-content {
    flex: 1;
    min-width: 0;
}

/* Ensure counter content maintains flex display in all layouts */
.hfe-counter-content {
    display: flex !important;
    align-items: center;
    justify-content: center;
}


/* Responsive equal width distribution */
@media (max-width: 1024px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-title,
    .elementor-widget-hfe-counter .hfe-counter-wrapper[style*="row"] .hfe-counter-content {
        flex: 1;
        min-width: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hfe-counter-number {
        font-size: 36px;
    }
    
    .hfe-counter-title {
        font-size: 16px;
    }
}

/* Navigation Menu CSS */

ul.hfe-nav-menu,
.hfe-nav-menu li,
.hfe-nav-menu ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.hfe-nav-menu li.menu-item {
    position: relative;
}

.hfe-flyout-container .hfe-nav-menu li.menu-item {
    position: relative;
    background: unset;
}

.hfe-nav-menu .sub-menu li.menu-item {
    position: relative;
    background: inherit;
}
.hfe-nav-menu__theme-icon-yes button.sub-menu-toggle {
    display: none;
}

div.hfe-nav-menu,
.elementor-widget-hfe-nav-menu .elementor-widget-container{
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hfe-nav-menu__layout-horizontal,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hfe-nav-menu .parent-has-no-child .hfe-menu-toggle {
    display: none;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu,
.hfe-submenu-action-hover .hfe-layout-vertical .hfe-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 16;
    visibility: hidden;
    opacity: 0;
    text-align: left;
    -webkit-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: visible;
    opacity: 1;
}

.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-submenu-action-click .hfe-nav-menu .menu-item-has-children:focus > .sub-menu {
    visibility: hidden;
    opacity: 0;
}

.hfe-nav-menu .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.hfe-flyout-container .hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-nav-menu .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
.hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.hfe-nav-menu:before,
.hfe-nav-menu:after {
    content: '';
    display: table;
    clear: both;
}

/* Alignemnt CSS */
.hfe-nav-menu__align-right .hfe-nav-menu {
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          -webkit-justify-content: flex-end;
          -moz-box-pack: end;
          justify-content: flex-end; }

.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: right;
}
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li.hfe-button-wrapper,
.rtl .hfe-nav-menu__align-right .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: left;
}
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-has-submenu .hfe-button-wrapper,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li.hfe-button-wrapper{
    text-align: center;
}
.hfe-nav-menu__align-left .hfe-nav-menu {
  margin-right: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-left .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-box-pack: start;
          justify-content: flex-start; }

.hfe-nav-menu__align-center .hfe-nav-menu {
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-menu-item,
.hfe-nav-menu__align-center .hfe-nav-menu__layout-vertical li a.hfe-sub-menu-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-box-pack: center;
          justify-content: center; }

.hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
}
.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
    width: 100%; 
}
  .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.menu-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            -webkit-flex-grow: 1;
            -moz-box-flex: 1;
            flex-grow: 1; }
    .hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              -webkit-justify-content: center;
              -moz-box-pack: center;
              justify-content: center; }

/* Alignment CSS ends */

.hfe-active-menu + nav li:not(:last-child) a.hfe-menu-item,
.hfe-active-menu + nav li:not(:last-child) a.hfe-sub-menu-item {
    border-bottom-width: 0;
}

/*  Horizontal Menu */

.hfe-nav-menu a.hfe-menu-item,
.hfe-nav-menu a.hfe-sub-menu-item {
    line-height: 1;
    text-decoration: none;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.hfe-nav-menu a.hfe-menu-item:hover,
.hfe-nav-menu a.hfe-sub-menu-item:hover {
    text-decoration: none;
}

.hfe-nav-menu .sub-menu {
    min-width: 220px;
    margin: 0;
    z-index: 9999;
}

.hfe-nav-menu__layout-horizontal {
    font-size: 0;
}

.hfe-nav-menu__layout-horizontal li.menu-item,
.hfe-nav-menu__layout-horizontal > li.menu-item {
    font-size: medium;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-menu{
    -webkit-box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}

/* Icons CSS */
.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    content: '+'; 
}
.hfe-submenu-icon-none .hfe-nav-menu .parent-has-child .sub-arrow {
    display: none; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before,.hfe-link-redirect-self_link.hfe-submenu-icon-arrow .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}
.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-plus .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: '-'; 
}
.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .sub-menu-active .sub-arrow i:before, .hfe-link-redirect-self_link.hfe-submenu-icon-classic .hfe-nav-menu .parent-has-child .menu-active .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.rtl .hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}

.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before {
    content: ''; 
}
/* Icon CSS ends */

.hfe-nav-menu-icon {
    padding: 0.35em;
    border: 0 solid;
}

.hfe-nav-menu-icon svg {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 25px;
}

.hfe-nav-menu-icon i:focus {
    outline: 0;
}

.hfe-has-submenu-container a.hfe-menu-item:focus,
.hfe-has-submenu-container a.hfe-sub-menu-item:focus {
    outline: 0;
}
/* Submenus */

.hfe-nav-menu .menu-item-has-children:focus,
.hfe-nav-menu .menu-item-has-children .sub-menu:focus,
.hfe-nav-menu .menu-item-has-children-container:focus {
    outline: 0;
}
.hfe-nav-menu .menu-item-has-children-container {
    position: relative;
}

.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-flyout-wrapper .sub-menu {
    position: relative;
    height: 0;
}

.hfe-nav-menu__submenu-arrow .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-plus .hfe-menu-toggle:before,
.hfe-nav-menu__submenu-classic .hfe-menu-toggle:before {
    font-family: 'Font Awesome 5 Free';
    z-index: 1;
    font-size: inherit;
    font-weight: inherit;
    line-height: 0;
}

.hfe-menu-item-center .hfe-nav-menu li a.hfe-menu-item,
.hfe-menu-item-center .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-menu-item,
.hfe-nav-menu__submenu-none .hfe-nav-menu li a.hfe-sub-menu-item {
    margin-right: 0px;
}

.hfe-nav-menu__toggle-icon:before {
    content: '\f0c9';
    font-family: 'fontAwesome';
    z-index: 1;
    font-size: 24px;
    font-weight: inherit;
    font-style: normal;
    line-height: 0;
}

.hfe-active-menu .hfe-nav-menu__toggle-icon:before {
    content: '\f00d';
}

.hfe-nav-menu__layout-expandible {
    -webkit-transition-property: display;
    transition-property: display;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
    transition-timing-function: cubic-bezier( 0, 1, 0.5, 1 );
}

.hfe-nav-menu__layout-expandible {
    visibility: hidden;
    opacity: 0; 
}

.hfe-nav-menu__layout-expandible .sub-menu {
    visibility: hidden;
    opacity: 0; 
}

.hfe-active-menu + .hfe-nav-menu__layout-expandible {
    visibility: visible;
    opacity: 1; 
    height: auto;
}

.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-expandible,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
.hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
    position: absolute;
    top: 100%;
}

.hfe-nav-menu__layout-expandible .menu-item-has-children .menu-item-has-children .sub-menu,
.hfe-nav-menu__layout-vertical .menu-item-has-children .menu-item-has-children .sub-menu {
    top: 0;
    left: 0;
}

.hfe-layout-expandible nav {
    height: 0;
}

.hfe-nav-sub-menu-icon, .hfe-nav-menu__icon {
    display: inline-block;
    line-height: 1;
}

.hfe-nav-menu__toggle {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    cursor: pointer;
    border: 0 solid;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #494c4f;
    position: relative;
    line-height: 1;
}

.hfe-nav-menu__toggle-icon {
    display: inline-block;
    font-size: inherit;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hfe-nav-menu .sub-arrow {
    font-size: 14px;
    line-height: 1;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-top: -10px;
    margin-bottom: -10px;
}

.hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
    margin-left: 10px;
}

.hfe-nav-menu__layout-vertical .hfe-nav-menu .sub-arrow,
.hfe-layout-expandible .sub-arrow,
.hfe-flyout-wrapper .sub-arrow
{
    padding: 10px;
}

.hfe-nav-menu .child-item,
.hfe-nav-menu__layout-vertical .hfe-nav-menu .child-item {
    font-size: 14px;
    line-height: 1;
    padding: 10px 0 10px 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    position: absolute;
    right: 0;
    margin-right: 20px;
}

.hfe-layout-horizontal .hfe-nav-menu__toggle,
.hfe-layout-vertical .hfe-nav-menu__toggle {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.hfe-nav-menu-icon {
    display: inline-block;
    line-height: 1;
    text-align: center;
}

.hfe-nav-menu__layout-expandible .saved-content,
.hfe-nav-menu__layout-expandible .sub-menu,
.hfe-nav-menu__layout-expandible .child,
.hfe-nav-menu__layout-vertical .saved-content,
.hfe-nav-menu__layout-vertical .sub-menu,
.hfe-nav-menu__layout-vertical .child,
.hfe-flyout-container .saved-content,
.hfe-flyout-container .sub-menu,
.hfe-flyout-container .child {
    left: 0 !important;
    width: 100% !important; 
}

.hfe-flyout-container .hfe-nav-menu .sub-menu {
    background: unset;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle:hover,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle:hover,
.hfe-flyout-wrapper .hfe-menu-toggle:hover {
    border:1px dotted;
}

.hfe-nav-menu__layout-vertical .hfe-menu-toggle,
.hfe-nav-menu__layout-expandible .hfe-menu-toggle,
.hfe-flyout-wrapper .hfe-menu-toggle {
    border:1px dotted transparent;
}

/* Common Animation CSS */

.hfe-nav-menu .menu-item a:before,
.hfe-nav-menu .menu-item a:after {
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
          transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1); }

.hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-nav-menu .menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
  opacity: 0; }

.hfe-nav-menu .menu-item a.hfe-menu-item:hover:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:hover:after,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:before,
.hfe-nav-menu .menu-item a.hfe-menu-item:focus:after,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:before,
.hfe-nav-menu .menu-item a.hfe-menu-item.highlighted:after,
.hfe-nav-menu .current-menu-item:before,
.hfe-nav-menu .current-menu-item:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Double Line / Underline / Overline Style */

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:after {
    height: 3px;
    width: 100%;
    left: 0;
    background-color: #55595c;
    z-index: 2;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 0;
    width: 0;
    left: 50%;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: -10px;
}

.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: -10px;
}

.hfe-pointer__double-line.hfe-animation__none, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__underline.hfe-animation__none, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item, .hfe-pointer__overline.hfe-animation__none, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line.hfe-animation__none:before, .hfe-pointer__double-line.hfe-animation__none:after, .hfe-pointer__double-line.hfe-animation__none:hover, .hfe-pointer__double-line.hfe-animation__none:focus, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__double-line.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__underline.hfe-animation__none:before, .hfe-pointer__underline.hfe-animation__none:after, .hfe-pointer__underline.hfe-animation__none:hover, .hfe-pointer__underline.hfe-animation__none:focus, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__underline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__overline.hfe-animation__none:before, .hfe-pointer__overline.hfe-animation__none:after, .hfe-pointer__overline.hfe-animation__none:hover, .hfe-pointer__overline.hfe-animation__none:focus, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__overline.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__overline .menu-item.parent a.hfe-menu-item:before {
    content: '';
    top: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    width: 10px;
    left: -20px;
}

.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__underline .menu-item.parent a.hfe-menu-item:after {
    content: '';
    bottom: 0;
}

.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    width: 10px;
    left: -webkit-calc( 100% + 20px);
    left: calc( 100% + 20px);
}


/* Framed Style */

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after {
    background: transparent;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: 3px solid #55595c;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before {
    content: '';
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:before {
    -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.2s, transform 0.4s;
    transition: opacity 0.2s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:before {
    border-width: 0 0 3px 3px;
    -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
    transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 3px 3px 0 0;
    -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
    transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    width: 100%;
    height: 100%;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:before {
    -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
    transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
}

.hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__draw .current-menu-item:after {
    -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
    transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    width: 3px;
    height: 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:before {
    border-width: 3px 0 0 3px;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:after {
    content: '';
    top: initial;
    bottom: 0;
    left: initial;
    right: 0;
    border-width: 0 3px 3px 0;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__framed.hfe-animation__corners .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:before, .hfe-pointer__framed.hfe-animation__corners .current-menu-item:after {
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.002s, width 0.4s, height 0.4s;
    transition: opacity 0.002s, width 0.4s, height 0.4s;
}

.hfe-pointer__framed.hfe-animation__none, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__framed.hfe-animation__none:before, .hfe-pointer__framed.hfe-animation__none:after, .hfe-pointer__framed.hfe-animation__none:hover, .hfe-pointer__framed.hfe-animation__none:focus, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__framed.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Background Style */

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:after {
    content: '';
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background .menu-item.parent a.hfe-menu-item:focus, .hfe-pointer__background .menu-item.parent a.hfe-menu-item.highlighted, .hfe-pointer__background .current-menu-item {
    color: #fff;
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:before {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__grow .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__grow .current-menu-item:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shrink .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shrink .current-menu-item:before {
    -webkit-transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, -webkit-transform 0.4s;
    transition: opacity 0.15s, transform 0.4s;
    transition: opacity 0.15s, transform 0.4s, -webkit-transform 0.4s;
}

.hfe-pointer__background.hfe-animation__sweep-left .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    left: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-right .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-up .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 100%;
}

.hfe-pointer__background.hfe-animation__sweep-down .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-out-vertical .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    bottom: 50%;
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-out-horizontal .menu-item.parent a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    right: 50%;
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #55595c;
    z-index: -1;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:before {
    top: 0;
    bottom: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:after {
    top: 100%;
    bottom: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:before {
    bottom: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-vertical .current-menu-item:after {
    top: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:before {
    right: 0;
    left: 100%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:after {
    right: 100%;
    left: 0;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:before, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:before {
    left: 50%;
}

.hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:hover:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item:focus:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .menu-item.parent a.hfe-menu-item.highlighted:after, .hfe-pointer__background.hfe-animation__shutter-in-horizontal .current-menu-item:after {
    right: 50%;
}

.hfe-pointer__background.hfe-animation__none, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__background.hfe-animation__none:before, .hfe-pointer__background.hfe-animation__none:after, .hfe-pointer__background.hfe-animation__none:hover, .hfe-pointer__background.hfe-animation__none:focus, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__background.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* Text Style */

.hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__skew .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: skew(-8deg);
    -ms-transform: skew(-8deg);
    transform: skew(-8deg);
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__shrink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__float .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

.hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__sink .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
}

.hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__rotate .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    transform: rotate(6deg);
}

.hfe-pointer__text.hfe-animation__none, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-pointer__text.hfe-animation__none:before, .hfe-pointer__text.hfe-animation__none:after, .hfe-pointer__text.hfe-animation__none:hover, .hfe-pointer__text.hfe-animation__none:focus, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:before, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:after, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text.hfe-animation__none .menu-item.parent a.hfe-menu-item:focus {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

.hfe-flyout-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999998;
    background: rgba(0,0,0,.6);
    cursor: pointer;
    -webkit-backface-visibility: hidden;
}

/* No link hover effect to last menu item */

.hfe-pointer__underline .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__overline .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:after,
.hfe-pointer__double-line .menu-item.parent a.hfe-menu-item.elementor-button:before {
    height: 0px;
}

.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:before,
.hfe-pointer__framed .menu-item.parent a.hfe-menu-item.elementor-button:after{
    border-width: 0px;
}

.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:hover,
.hfe-pointer__text.hfe-animation__grow .menu-item.parent a.hfe-menu-item.elementor-button:focus
{
    -webkit-transform: none;
    transform: none;
}

.hfe-flyout-close,
.hfe-flyout-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 23px;
    display: block;
    cursor: pointer;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%;
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px;
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side {
    display: none;
    position: fixed;
    z-index: 999999;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-show {
    display: block;
}

.hfe-flyout-content.push {
    color: #ffffff;
}

.hfe-flyout-content ul li {
    color: #ffffff;
}

/* ===========================================================
 *  Flyout Location
 * ======================================================== */

.hfe-flyout-wrapper .hfe-side.hfe-flyout-right {
    top: 0;
    bottom: 0;
    left: auto;
    right: -100%; /* default */
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
}

.hfe-flyout-wrapper .hfe-side.hfe-flyout-left {
    top: 0;
    bottom: 0;
    left: -100%; /* default */
    right: auto;
    height: 100%;
    /*height: 100vh;*/
    width: 300px; /* default */
    max-width: 100%;
    max-width: 100vw;
}

.hfe-flyout-wrapper .hfe-side.top {
    top: -100%; /* default */
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

.hfe-flyout-wrapper .hfe-side.bottom {
    top: auto;
    bottom: -100%; /* default */
    left: 0;
    right: 0;
    width: 100%;
    width: 100vw;
    height: 300px; /* default */
    max-height: 100%;
}

/* ===========================================================
 *  Flyout Container
 * ======================================================== */

.hfe-flyout-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.4em;
    color: #fff;
}
/* iOS fix */
@media (max-width:1024px) {
    .hfe-flyout-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.hfe-flyout-content::-webkit-scrollbar {
    display: none;
}

.admin-bar .hfe-side {
    margin-top: 32px;
}

/* Dropdown animation CSS */

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children > ul.sub-menu {  
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover > ul.sub-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:first-child,
.hfe-nav-menu .hfe-has-submenu .sub-menu li.menu-item:last-child {
    overflow: visible !important;
}

.elementor-widget-navigation-menu:not(.hfe-nav-menu__align-justify):not(.hfe-menu-item-space-between) a.hfe-menu-item.elementor-button {
    display: inline-flex;
} 

.hfe-nav-menu li.hfe-button-wrapper {
    align-self: center;
}

/* Tablet */
@media only screen and ( max-width: 1024px ) {

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal li,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu{
        width: 100%;
        margin-right:0px;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-tablet .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-tablet .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle:hover {
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-menu-toggle {
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child {
        left: 0 !important;
        width:auto !important;  
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before,
    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    /* Effect 1: Fade in and scale up */
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    
    /*.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-horizontal .hfe-nav-menu ul.sub-menu ul.sub-menu li a{
        border-left: 16px solid transparent;
    }*/

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
         background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus{
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }

    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item,
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }
}

/* Mobile */
@media only screen and ( max-width: 767px ) {

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-menu-item,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li a.hfe-sub-menu-item 
    .hfe-nav-menu__breakpoint-tablet.hfe-nav-menu__align-justify .hfe-nav-menu__layout-horizontal .hfe-nav-menu li.hfe-button-wrapper { 
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal li.menu-item,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu {
        width: 100%
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle {
        display: inline-block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        position: relative;
        height: 0;
        top: 0;
    }

    .hfe-nav-menu .sub-menu {
        min-width: auto;
        margin: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu,
    .hfe-nav-menu__breakpoint-none .hfe-nav-menu__layout-horizontal .hfe-nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: none;
        transition: none;
    }

    .hfe-nav-menu__breakpoint-tablet .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-layout-vertical .hfe-nav-menu__toggle.hfe-active-menu {
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;  
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-layout-horizontal .hfe-nav-menu__toggle,
    .hfe-nav-menu__breakpoint-mobile .hfe-layout-vertical .hfe-nav-menu__toggle
    {
        visibility: visible;
        opacity: 1;
        display: block;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        float: none;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .sub-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: hidden;
        opacity: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        visibility: visible;
        opacity: 1;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-vertical {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu + .hfe-nav-menu__layout-vertical {
        visibility: visible;
        opacity: 1;
        height: auto;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal .hfe-nav-menu {
        position: relative;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-horizontal,
    .hfe-nav-menu__breakpoint-mobile .hfe-active-menu.hfe-active-menu-full-width + .hfe-nav-menu__layout-vertical {
        position: absolute;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .menu-item-has-children .menu-item-has-children .sub-menu {
        top: 0;
        left: 0;
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children ul a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-mobile.hfe-submenu-icon-plus .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: '-'; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-arrow .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''; 
    }

    .hfe-nav-menu__breakpoint-none.hfe-submenu-icon-classic .hfe-nav-menu__layout-horizontal .menu-item-has-children .sub-menu-active a.hfe-menu-item .sub-arrow i:before{
        content: ''
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle:hover{
        border:1px dotted;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-menu-toggle{
        border:1px dotted transparent;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu .sub-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* Effect 1: Fade in and scale up */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .hfe-nav-menu__layout-horizontal .hfe-nav-menu .sub-arrow {
        padding: 10px;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-1 .hfe-nav-menu {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 2: Slide from the right */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
        transform: translateX(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-2 .hfe-nav-menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    /* Effect 3: Slide from the bottom */
    .hfe-nav-menu__breakpoint-mobile.hfe-nav-toggle-yes .hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        transform: translateY(20%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .hfe-nav-menu__breakpoint-mobile .menu-is-active.hfe-effect-3 .hfe-nav-menu {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    .hfe-nav-menu__breakpoint-mobile .saved-content,
    .hfe-nav-menu__breakpoint-mobile .sub-menu,
    .hfe-nav-menu__breakpoint-mobile .child,
    .hfe-nav-menu__breakpoint-tablet .saved-content,
    .hfe-nav-menu__breakpoint-tablet .sub-menu,
    .hfe-nav-menu__breakpoint-tablet .child{
        left: 0 !important;
        width: auto !important; 
    }

    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_up .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children ul.sub-menu,
    .hfe-submenu-animation-slide_down .hfe-layout-horizontal .menu-item-has-children:hover ul.sub-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }   

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before {
        background-color: unset!important; 
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before{
        border: 0px!important;
    }

    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-tablet .hfe-pointer__text .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:focus,
    .elementor-widget-hfe-nav-menu.hfe-nav-menu__breakpoint-mobile .hfe-pointer__text  .menu-item.parent a.hfe-menu-item:hover, .hfe-pointer__text .menu-item.parent a.hfe-menu-item:focus {
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
    }
}

.hfe-toggle-no .hfe-layout-expandible .hfe-nav-menu__toggle {
    display: none;
}

/* Icon common CSS */

.hfe-icon {
    display: inline-block;
    vertical-align: middle; /* Alignment of icon */
}

/* Icon Svg */
.hfe-icon svg {
    width: 1em;
    height: 1em;
}

/* Menu Cart CSS */

.hfe-cart-menu-wrap-custom {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count, 
.hfe-cart-menu-wrap-custom .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-custom .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 12px 24px;
}

/* Default skin for cart*/
.hfe-cart-menu-wrap-default {
    display: inline-block;
    line-height: 1;
}

.hfe-cart-menu-wrap-default .hfe-cart-count, 
.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    border-color: #75c32c;
    color: #75c32c;
}

.hfe-cart-menu-wrap-default .hfe-cart-count {
    font-weight: bold;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 2.1em;
    min-height: 2.1em;
    font-size: 0.860em;
    line-height: 1.8;
    border-radius: 0em 0em 0.3em 0.3em;
    border-width: 2px;
    border-style: solid;
    padding: 0 .4em;
}

.hfe-cart-menu-wrap-default .hfe-cart-count:after {
    bottom: 100%;
    margin-bottom: 0;
    height: .8em;
    width: .8em;
    left: 50%;
    transform: translateX(-50%);
    top: -.6em;
    content: ' ';
    position: absolute;
    pointer-events: none;
    border-width: 2px;
    border-style: solid;
    border-top-left-radius: 10em;
    border-top-right-radius: 10em;
    border-bottom: 0;
}

.elementor-widget-hfe-cart:not(.hfe-menu-cart--show-subtotal-yes) .hfe-menu-cart__toggle .elementor-button-text {
    display: none; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-light .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e3'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-medium .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e4'; 
}

.elementor-widget-hfe-cart.toggle-icon--bag-solid .hfe-menu-cart__toggle .elementor-button-icon i:before {
    content: '\e8e5'; 
}

.hfe-menu-cart__toggle .elementor-button {
    background: transparent;
    border-radius: 0;
    color: #818a91;
    border: 1px solid;
    border-color: inherit;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
}

.hfe-menu-cart__toggle .elementor-button-text {
    margin-right: 0.3em; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    position: relative;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    transition: color 0.1s; 
}

.hfe-menu-cart--items-indicator-bubble .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: block;
    position: absolute;
    min-width: 1.6em;
    height: 1.6em;
    line-height: 1.5em;
    top: -0.7em;
    right: -0.7em;
    border-radius: 100%;
    color: #fff;
    background-color: #d9534f;
    text-align: center;
    font-size: 10px; 
}

.hfe-menu-cart--items-indicator-plain .hfe-menu-cart__toggle .elementor-button-icon[data-counter]:before {
    content: attr(data-counter);
    display: inline-block;
    font-weight: normal; 
}

.hfe-menu-cart--empty-indicator-hide .hfe-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter="0"]:before {
    content: none;
    display: none; 
}

.hfe-menu-cart__toggle .elementor-button-icon {
    -webkit-box-ordinal-group: 16;
    -webkit-order: 15;
    -ms-flex-order: 15;
    order: 15;
}

.hfe-menu-cart__toggle.hfe-button-wrapper .elementor-button {
    color:#4d4848;
}

/*Search Box CSS*/

.hfe-search-button-wrapper {
    display: block;
    cursor: pointer;
    vertical-align: middle;
    text-align: right;
}

.hfe-search-form__container {
    display: flex;
    overflow: hidden;
}

.hfe-search-form__input {
    flex-basis: 100%;
}

.hfe-search-icon-toggle i.fa-search {
    display: inline-block;
    position: absolute;
    width: 20px;
    box-sizing: content-box;
    padding: 10px;
}

.hfe-search-icon-toggle i:before {
    vertical-align: middle;
}
/*search icon toggle css*/

.hfe-search-button-wrapper input[type=search] {
    border: 0;
    padding: 10px;
    cursor: pointer;
    border-radius: 0;
    transition: all .5s;
    box-sizing: border-box;
    outline: none;
}

.hfe-search-button-wrapper button {
    border: none;
    border-radius: 0;
    padding: 0;
}

.hfe-search-button-wrapper input[type=search]:focus {
    cursor: auto;
    border: none;
    box-shadow: none;
}

.hfe-search-icon-toggle input:-moz-placeholder,
.hfe-search-icon-toggle input::-webkit-input-placeholder {
    color: transparent;
}

.hfe-search-layout-icon .hfe-search-icon-toggle .hfe-search-form__input {
    background-color: unset;
    height: 100%;
}

.hfe-search-button-wrapper.hfe-input-focus {
    display: flex;
}

.hfe-search-form__container .hfe-search-submit {
    min-width: 3%;
    position:relative;
}

.hfe-search-form__container button#clear,
.hfe-search-icon-toggle button#clear {
    visibility: hidden;
    position: absolute;
    right:0; 
    top:0;
    padding: 0 8px;
    font-style: normal;
    user-select: none;
    cursor: pointer;
    bottom:0;
    margin-right:10px;
    background-color: transparent;
}

.hfe-search-button-wrapper input[type="search"]::-webkit-search-decoration,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-cancel-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-button,
.hfe-search-button-wrapper input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.hfe-search-form__container button#clear-with-button{
    visibility: hidden;
    position: absolute;
    top: 0;
    padding: 0 8px;
    font-style: normal;
    font-size: 1.2em;
    user-select: none;
    cursor: pointer;
    bottom:0;
    background-color: transparent;
}

.hfe-search-button-wrapper, 
.hfe-search-form__container,
.hfe-search-icon-toggle,
.hfe-search-button-wrapper .hfe-search-icon-toggle i,
.hfe-search-button-wrapper .hfe-search-icon-toggle i:before {
    position: relative;
}

.hfe-search-button-wrapper .hfe-search-icon-toggle .hfe-search-form__input {
    position: absolute;
    width: 0;
    right: 0;
    background-color: transparent;
}

.hfe-search-icon-toggle {
    width: 100%!important;
}

.hfe-search-button-wrapper.hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{
    position: absolute;
    width: 250px;
    right: 0;
}

.hfe-search-layout-text .hfe-search-form__container,
.hfe-search-layout-icon_text .hfe-search-form__container,
.hfe-search-layout-text .hfe-search-form__container .hfe-search-form__input,
.hfe-search-layout-icon_text .hfe-search-form__container .hfe-search-form__input {
    width: 100%;
}

.hfe-search-icon-toggle {
    line-height: 1.5;
}

/*-------Navigation menu active parent---------*/
.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
 .hfe-pointer__overline.hfe-animation__slide .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before  {
    width: 100%;
    left: 0;
    opacity:1;
}

.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,.hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    bottom: 0px;
    opacity:1;
}
.hfe-pointer__double-line.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-out .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__drop-in .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    top: 0px;
    opacity: 1;
}

.hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__underline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__overline.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    height: 3px;
    width: 100%;
    left: 0;
    opacity: 1;
}

.hfe-pointer__framed.hfe-animation__grow .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__shrink .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hfe-pointer__framed.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:before, .hfe-pointer__underline.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, .hfe-pointer__double-line.hfe-animation__fade .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    opacity:1;
}

.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__corners .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after,
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):before, 
.hfe-pointer__framed.hfe-animation__draw .menu-item.parent.current-menu-item a.hfe-menu-item:not(:hover):not(:focus):not(.current-menu-item):not(.highlighted):after {
    border-width:3px;
    width:100%;
    opacity:1;
    height:100%;
}

/* Scroll to top CSS */
.hfe-scroll-to-top-wrap.hfe-scroll-to-top-hide {
    display: none;
}

.hfe-scroll-to-top-wrap.edit-mode,
.hfe-scroll-to-top-wrap.single-page-off {
    display: none !important;
}

.hfe-scroll-to-top-button {
    position:fixed;
    right:15px;
    bottom:15px;
    z-index:9999;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items:center;
    -ms-flex-align:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50px;
    background-color:#000000;
    color:#fff;
    text-align:center;
    opacity:1;
    cursor:pointer;
    -webkit-transition:all .3s;
    transition:all .3s;
}

.hfe-scroll-to-top-button i {
    color:#fff;
    font-size:16px;
}
/* Breadcrumbs CSS */

ul.hfe-breadcrumbs {
    display:block;
    margin:0;
    padding:0;
    list-style:none
}

ul.hfe-breadcrumbs li {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

ul.hfe-breadcrumbs li:last-child {
    margin:0;
}

ul.hfe-breadcrumbs li a,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-separator-icon,
ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    display:block;
}

ul.hfe-breadcrumbs li span.hfe-breadcrumbs-text{
    -webkit-transition:all .4s;
    transition:all .4s;
}

span.hfe-breadcrumbs-home-icon{
    margin-right:10px;
    align-content: center;
}

.hfe-breadcrumbs-first a {
    align-content: center;
}

.hfe-breadcrumbs-separator-icon i, 
.hfe-breadcrumbs-separator-icon svg,
.hfe-breadcrumbs-home-icon i,
.hfe-breadcrumbs-home-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}

ul.hfe-breadcrumbs-show-home li.hfe-breadcrumbs-first {
    display: inline-flex;
}

/* Post Info CSS */

ul.hfe-post-info-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.hfe-post-info-inline.hfe-post-info-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

li.hfe-post-info-item {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

li.hfe-post-info-item,
li.hfe-post-info-item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
}

.hfe-post-info-inline.hfe-post-info-items .hfe-post-info-item {
    margin-right: 8px;
    margin-left: 8px;
}

.hfe-post-info-inline .hfe-post-info-item:not(:last-child):after {
    position: relative;
    right: -8px;
}

.hfe-post-info-inline.hfe-post-info-items {
    margin-right: -8px;
    margin-left: -8px;
}

.hfe-post-info-icon svg {
    display: block;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child):after {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.hfe-post-info-layout-traditional .hfe-post-info-item:not(:last-child) {
    position: relative;
}


/* Info Card CSS */
.hfe-icon-wrap .hfe-icon svg {
    height: 100%;
    width: 100%;
}
body .elementor .hfe-button-wrapper a {
    text-decoration: none;
}
.hfe-button-wrapper {
    border-radius: 3px;
}


.hfe-reading-progress-bar{
    height: 4px;
}

/* Basic Posts Widget CSS - Only essential structure, no styling */
.hfe-posts-grid {
    display: grid;
}

.hfe-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hfe-post-title a {
    text-decoration: none;
}
.hfe-post-title {
    margin-top: 0px;
}
.hfe-read-more {
    text-decoration: none;
}
.hfe-post-meta {
    font-size: 12px;
    line-height: 1.3em;
}
.hfe-post-title {
    font-size: 20px;
}
/* HFE Woo Products Widget Styles */
.hfe-woo-products-wrapper {
	width: 100%;
}

.hfe-woo-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px 20px;
}

.hfe-product-item {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
}


.hfe-product-image {
	position: relative;
	overflow: hidden;
}

.hfe-product-image img {
	width: 100%;
	height: auto;
	display: block;
}


.hfe-product-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hfe-product-category {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
	opacity: 0.75;
	font-weight: 500;
	color: #666;
}

.hfe-product-title {
	margin: 0 0 12px 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	flex-grow: 1;
}

.hfe-product-title a {
	color: #333;
	text-decoration: none;
}

.hfe-product-title h2 {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

.hfe-product-title .hfe-loop-product__link {
	display: block;
}


.hfe-product-rating {
	margin-bottom: 12px;
}

.hfe-product-rating .review-rating {
	display: flex;
	align-items: center;
	min-height: 16px;
}

.hfe-product-rating .star-rating {
	font-size: 14px;
	color: #ffa500;
	display: inline-block;
}

.hfe-product-price {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 18px;
}

.hfe-product-price .price {
	color: #333;
}

.hfe-product-price .price del {
	opacity: 0.6;
	margin-right: 8px;
	font-weight: 400;
}

.hfe-product-description {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	flex-grow: 1;
}

.hfe-product-add-to-cart {
	margin-top: auto;
}

.hfe-woo-products-wrapper .hfe-product-add-to-cart .button {
	width: auto;
	min-width: 100px;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:hover,
.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:focus,
.hfe-woo-products-wrapper .hfe-product-add-to-cart .button:active,
.hfe-woo-products-wrapper .hfe-product-add-to-cart a.button:link {
	text-decoration: none;
}


.hfe-woo-products-notice,
.hfe-woo-products-empty {
	text-align: center;
	padding: 40px 20px;
	background: #f8f9fa;
	border-radius: 4px;
	color: #666;
}

/* Card Hover Effects */
.hfe-product-item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hfe-product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Content Alignment Classes */
.hfe-content-align-left .hfe-product-item {
	text-align: left;
}

.hfe-content-align-left .hfe-product-item .star-rating {
	margin-left: 0;
	margin-right: auto;
}

.hfe-content-align-center .hfe-product-item {
	text-align: center;
}

.hfe-content-align-center .hfe-product-item .star-rating {
	margin-left: auto;
	margin-right: auto;
}

.hfe-content-align-right .hfe-product-item {
	text-align: right;
}

.hfe-content-align-right .hfe-product-item .star-rating {
	margin-left: auto;
	margin-right: 0;
}

/* Tablet Responsive Alignment */
@media (max-width: 1024px) {
	.hfe-content-tablet-align-left .hfe-product-item {
		text-align: left;
	}

	.hfe-content-tablet-align-left .hfe-product-item .star-rating {
		margin-left: 0;
		margin-right: auto;
	}

	.hfe-content-tablet-align-center .hfe-product-item {
		text-align: center;
	}

	.hfe-content-tablet-align-center .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: auto;
	}

	.hfe-content-tablet-align-right .hfe-product-item {
		text-align: right;
	}

	.hfe-content-tablet-align-right .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: 0;
	}
}

/* Mobile Responsive Alignment */
@media (max-width: 767px) {
	.hfe-content-mobile-align-left .hfe-product-item {
		text-align: left;
	}

	.hfe-content-mobile-align-left .hfe-product-item .star-rating {
		margin-left: 0;
		margin-right: auto;
	}

	.hfe-content-mobile-align-center .hfe-product-item {
		text-align: center;
	}

	.hfe-content-mobile-align-center .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: auto;
	}

	.hfe-content-mobile-align-right .hfe-product-item {
		text-align: right;
	}

	.hfe-content-mobile-align-right .hfe-product-item .star-rating {
		margin-left: auto;
		margin-right: 0;
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hfe-woo-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.hfe-woo-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 15px;
	}
	
	.hfe-product-content {
		padding: 16px;
	}
	
	.hfe-product-title {
		font-size: 15px;
	}
	
	.hfe-product-price {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hfe-woo-products-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.hfe-product-content {
		padding: 18px;
	}
}
/*
This CSS file is used to apply styles to the product display output. 
Used by the [asp_product] shortcode. Also used by the individual custom post type (CPT) page of the product.
CSS class names should use dashes. Example: asp-product-description
*/
.asp_product_item {
    display: block;
    border: 1px solid #E7E9EB;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
}
.asp_product_item_thumbnail img {
    width: 75px;
    height: 75px;
    float: left;
    margin-right: 10px;
    object-fit: cover;
}

.asp_product_name {
    float: left;
    font-size: 24px;
    font-weight: bold;
    line-height: 75px;
}

.asp_product_description {
    margin: 15px 0 15px 0;
    border-bottom: 1px solid #EEEEEE;
}

.asp_price_container {
    font-weight: bold;
    margin: 5px 0px;
}

.asp_price_container .asp_under_price_line {

}

.asp_product_item_amount_input_container, .asp_product_custom_field_input_container, .asp_product_currency_input_container{
    margin: 5px 0 10px 0;
}

.asp_product_item_qty_input_container{
    margin: 10px 0;
}
.asp_product_item_qty_input{
    max-width: 50px;
}

/* Post Item */
.asp_post_item {
    width: 90%;
}
.asp_post_item_top {
    display: block;
}

.asp_post_thumbnail img {
    width: 100%;
    border: 1px solid #e8e4e3;
    padding: 5px;
}

.asp_post_title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Buttons */

.asp_product_buy_button input {
    display: inline-block;
    line-height: 1;
    padding: 8px 10px;
}

.asp_product_buy_button input::placeholder {
    font-style: italic;
    color: #bbb;
}

.asp_product_buy_button {
    display: block;
}

.asp_product_buy_btn{
    text-decoration: none;
    font: bold 13px/13px HelveticaNeue, Arial;
    padding: 8px 15px;
    text-transform: none;
    height: 32px;
    border-radius: 4px;
    vertical-align: middle;
    border: 0;
}
.asp_product_buy_btn:hover{
    transition: none;
    text-transform: none;
}

.asp_product_buy_btn span {
    vertical-align: middle;
}

@media (max-width: 500px) {
    .asp_product_buy_btn {
	min-width: 130px;
    }
    .asp-stripe-form {
	text-align: center;
    }
    .asp_price_container {
	text-align: center;
    }
}

.asp_product_buy_btn.blue {
    background: #92dbf6;
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#abe4f8', endColorstr='#6fcef3'); /*  IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#abe4f8), to(#6fcef3)); /*  WebKit */
    background: -moz-linear-gradient(top,  #abe4f8, #6fcef3);
    border-color: #8dc5da #76b7cf #63abc7;
    color: #1E4657 !important;
    text-shadow: 0 1px 0 #b6e6f9;
    -webkit-box-shadow: 0 1px 1px #d6d6d6, inset 0 1px 0 #c0ebfa;
    -moz-box-shadow: 0 1px 1px #d6d6d6, inset 0 1px 0 #c0ebfa;
    box-shadow: 0 1px 1px #d6d6d6, inset 0 1px 0 #c0ebfa;
}
.asp_product_buy_btn.blue:hover {
    background: #92dbf6;
    border-color: #7caec0 #68a3ba #5a9cb5;
    text-shadow: 0 1px 0 #bee9fa;
    -webkit-box-shadow: 0 1px 1px #d6d6d6, inset 0 1px 0 #ade4f8;
    -moz-box-shadow: 0 1px 1px #d6d6d6, inset 0 1px 0 #ade4f8;
    box-shadow: 0 1px 1px #d6d6d6, inset 0 1px 0 #ade4f8;
}
.asp_product_buy_btn.green {
    background: #b7d770;
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cae285', endColorstr='#9fcb57'); /*  IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#cae285), to(#9fcb57)); /*  WebKit */
    background: -moz-linear-gradient(top,  #cae285, #9fcb57);
    border-color: #adc671 #98b65b #87aa4a;
    color: #2F4014 !important;
    text-shadow: 0 1px 0 #cfe5a4;
    -webkit-box-shadow: 0 1px 1px #d3d3d3, inset 0 1px 0 #d7e9a4;
    -moz-box-shadow: 0 1px 1px #d3d3d3, inset 0 1px 0 #d7e9a4;
    box-shadow: 0 1px 1px #d3d3d3, inset 0 1px 0 #d7e9a4;
}
.asp_product_buy_btn.green:hover {
    background: #b9d972;
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8d872', endColorstr='#b9d972'); /*  IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#b8d872), to(#b9d972)); /*  WebKit */
    background: -moz-linear-gradient(top,  #b8d872, #b9d972);
    border-color: #8bb14d #83a648 #7d9e45;
    text-shadow: 0 1px 0 #d5e8aa;
    -webkit-box-shadow: 0 1px 1px #d5d5d5, inset 0 1px 0 #cae295;
    -moz-box-shadow: 0 1px 1px #d5d5d5, inset 0 1px 0 #cae295;
    box-shadow: 0 1px 1px #d5d5d5, inset 0 1px 0 #cae295;
}
/* -------------------------------------------------------------------------------- /

	Plugin Name: Go Pricing - WordPress Responsive Pricing Tables
	Plugin URI: http://www.go-pricing.com
	Description: The New Generation Pricing Tables. If you like traditional Pricing Tables, but you would like get much more out of it, then this rodded product is a useful tool for you.
	Author: Granth
	Version: 3.4
	Author https://granthweb.com/

	+----------------------------------------------------+
		TABLE OF CONTENTS
	+----------------------------------------------------+

    [1] RESET
    [2] SETUP
    [3] LAYOUT
    [3.1] HEADER
    [3.2] BODY
    [3.3] FOOTER & BUTTONS
    [4] ICONS
    [5] RIBBONS
    [6] COLUMN SHADOWS    		
    [7] CLEAN STYLE
	

/ -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- /
	[1]	RESET
/ -------------------------------------------------------------------------------- */

.go-pricing * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.gw-go * {
    background: none;
    border: none;
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    letter-spacing: normal !important;
    margin: 0;
    outline: none;
    padding: 0;
    text-transform: none;
    text-decoration: none !important;
    -moz-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
    word-break: normal;
    word-break: break-word;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------------------------- /
	[2]	SETUP - general settings, clearfix, common classes
/ -------------------------------------------------------------------------------- */

/* clearfix */
.gw-go-clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.gw-go-clearfix {
    display: inline-block;
} /* Hide from IE Mac \*/
.gw-go-clearfix {
    display: block;
} /* End hide from IE Mac */
.gw-go-clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* clearfix class */
.gw-go-clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    width: 100%;
}

/* text aligns */
.gw-go-tcenter {
    text-align: center;
}
.gw-go-tleft {
    text-align: center;
}
.gw-go-tright {
    text-align: right;
}

/* video iframe */
.gw-go-video-wrapper {
    padding-bottom: 56.25% !important;
    position: relative;
    height: 0;
}
.gw-go-header-bottom .gw-go-video-wrapper {
    margin-bottom: -1px;
}
.gw-go-video-wrapper > div {
    position: static !important;
    padding-top: 100% !important;
}
.gw-go-video-wrapper iframe {
    height: 100%;
    left: 0;
    margin: 0;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    width: 100%;
}

/* image settings */
.gw-go-img-wrapper {
    position: relative;
}
.gw-go img {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: inline-block;
    vertical-align: bottom;
}
img.gw-go-responsive-img {
    border: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
.gw-go audio,
.gw-go video {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
}
/* fix for google map popup & mediaelement js styling bug in some themes */
.gw-go-gmap img {
    max-width: none !important;
}
.gw-go .mejs-container img {
    height: auto !important;
    max-width: none !important;
    width: 100% !important;
}
.gw-go-oldie .me-plugin,
.gw-go-oldie .mejs-mediaelement {
    position: static !important;
}

/* table & input settings for paypal */
.gw-go table {
    border: none;
    margin: 0 auto;
    width: auto;
    text-align: center;
}
.gw-go td {
    border: none;
    margin: 0;
    padding: 0 0 10px 0;
}
div.gw-go input {
    border: none;
    outline: none;
}
.gw-go input[type="text"] {
    background: #fff !important;
    border: solid 1px #b8b8b8 !important;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    outline: none;
    padding: 3px 5px;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
}
.gw-go input[type="text"]:focus {
    border: solid 1px #9d9d9d;
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
}

/* other */
.gw-go i {
    display: inline-block;
    line-height: 1;
    position: relative;
    vertical-align: middle;
    text-align: left;
    top: -1px;
}
.gw-go b,
.gw-go strong {
    font-weight: bold;
}
.gw-go em {
    font-style: italic !important;
}
.gw-go u {
    text-decoration: underline !important;
}
.gw-go del {
    text-decoration: line-through !important;
}

/* -------------------------------------------------------------------------------- /
	[3] LAYOUT
/ -------------------------------------------------------------------------------- */

.gw-go {
    font-size: 0;
    margin: 0 0 -20px 0;
    visibility: hidden;
}
.gw-go[data-scroll-offset] {
    opacity: 0;
}
/* VC frontend editing fix */
.vc_editor .gw-go[data-scroll-offset] {
    opacity: 1;
}

.cs-preview .cs-content .gw-go[data-scroll-offset] {
    opacity: 1;
}

/* RTL trick */
[dir="rtl"] .gw-go {
    direction: ltr;
}
[dir="rtl"] .gw-go-col-wrap {
    direction: rtl;
}

/* default colum widths */
.gw-go-1col .gw-go-col-wrap {
    width: 100%;
}
.gw-go-2cols .gw-go-col-wrap {
    width: 50%;
}
.gw-go-3cols .gw-go-col-wrap {
    width: 33.33%;
}
.gw-go-4cols .gw-go-col-wrap {
    width: 25%;
}
.gw-go-5cols .gw-go-col-wrap {
    width: 20%;
}
.gw-go-6cols .gw-go-col-wrap {
    width: 16.66%;
}
.gw-go-7cols .gw-go-col-wrap {
    width: 14.285%;
}
.gw-go-8cols .gw-go-col-wrap {
    width: 12.5%;
}
.gw-go-9cols .gw-go-col-wrap {
    width: 11.11%;
}
.gw-go-10cols .gw-go-col-wrap {
    width: 10%;
}

.gw-go-col-wrap {
    display: inline-block !important;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    float: none !important;
    font-size: 12px;
    line-height: 16px;
    margin-left: -1px;
    padding: 20px 0;
    position: relative;
    -moz-transition: padding 0.2s linear, margin 0.2s linear !important;
    -o-transition: padding 0.2s linear, margin 0.2s linear !important;
    -webkit-transition: padding 0.2s linear, margin 0.2s linear !important;
    transition: padding 0.2s linear, margin 0.2s linear !important;
    vertical-align: top !important;
}
.gw-go-col-wrap:first-child {
    margin-left: 0;
}

.gw-go-col-wrap.gw-go-hover {
    z-index: 2;
}
.gw-go-col-wrap.gw-go-curr {
    z-index: 3 !important;
}

.gw-go-col {
    border: solid 1px #ebebeb;
    border-bottom: solid 2px #d3d3d3;
    border-top-width: 2px;
    position: relative;
    top: 0;
    -moz-transition: margin-top 0.2s linear, top 0.2s linear, -moz-box-shadow 0.2s linear;
    -o-transition: margin-top 0.2s linear, top 0.2s linear, box-shadow 0.2s linear;
    -webkit-transition: margin-top 0.2s linear, top 0.2s linear, -webkit-box-shadow 0.2s linear;
    transition: margin-top 0.2s linear, top 0.2s linear, box-shadow 0.2s linear;
}
.gw-go-col-inner {
    -moz-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
    float: none !important;
    overflow: hidden;
    padding: 0 !important;
    -moz-transition: -moz-box-shadow 0.2s linear;
    -o-transition: box-shadow 0.2s linear;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    transition: box-shadow 0.2s linear;
}
.gw-go.gw-go-fullh-bg .gw-go-col {
    height: 100%;
}
.gw-go.gw-go-fullh-bg .gw-go-col-inner {
    height: 100%;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-col-inner {
    -moz-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}
.gw-go-col:before {
    content: "";
    height: 20px;
    margin-top: 2px;
    filter: alpha(opacity=40);
    -khtml-opacity: 0.4;
    -moz-opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
}

/* enlarge highlighted column / column on hover option is enabled */
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current {
    padding: 20px 0 40px;
}
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col {
    margin-top: 0;
    top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover {
    padding: 0;
    margin-bottom: 0;
}

.gw-go.gw-go-enlarge-current.gw-go-no-footer.gw-go-hover .gw-go-col-wrap.gw-go-hover {
    margin-bottom: 0;
}

/* disable enlarge */
.gw-go-col-wrap.gw-go-disable-enlarge {
    padding: 20px 0 20px !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-col {
    margin-top: 0 !important;
    top: 0 !important;
}

.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-footer {
    top: 0 !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-footer-spacer {
    height: 0.1px !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-col {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* disable box-shadow */
.gw-go-disable-box-shadow .gw-go-col-inner {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* -------------------------------------------------------------------------------- /
	[3.1] HEADER
/ -------------------------------------------------------------------------------- */

.gw-go-header {
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}
.gw-go-header img {
    border-radius: 0 !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.gw-go-header small {
    font-size: inherit;
    margin-bottom: 4px;
}
/** 1. regular pricing header **/

/* header containers */
.gw-go-header-top {
    height: 95px;
    position: relative;
}
.gw-go-header h2 {
    color: inherit;
    font-size: 26px !important;
    line-height: 32px !important;
    font-weight: normal !important;
    letter-spacing: normal !important;
    margin-bottom: 15px !important;
    padding: 0 !important;
    text-transform: none !important;
    top: 15px;
}
.gw-go-header h2 small {
    font-size: 22px;
}

.gw-go-header h3 {
    border: none !important;
    color: inherit;
    font-size: 18px !important;
    line-height: 16px !important;
    font-weight: normal !important;
    left: 0;
    letter-spacing: normal !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    text-align: center;
    text-transform: none !important;
    top: 19px;
    width: 100%;
}
.gw-go-header h3 small {
    display: block;
    font-size: 12px;
}
.gw-go-header-bottom {
    border-top: solid 1px transparent;
    height: 50px;
}

/* pricing coins */
.gw-go-coin-wrap {
    font-size: 32px;
    height: 80px;
    left: 50%;
    margin: 0 0 0 -40px;
    position: absolute;
    top: 54px;
    width: 80px;
    z-index: 1;
}
.gw-go-coinf,
.gw-go-coinb {
    background: #fff;
    border-width: 1px !important;
    border-radius: 50px;
    display: table;
    height: 78px;
    left: 0;
    position: absolute;
    table-layout: fixed;
    text-align: center;
    width: 78px;
}

.gw-go-coinf div,
.gw-go-coinb div {
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    border-radius: 50px;
    border-width: 1px !important;
    display: table-cell;
    font-size: 32px;
    line-height: 24px;
    vertical-align: middle;
}
.gw-go-coinf div span[data-id="currency"],
.gw-go-coinb div span[data-id="currency"] {
    font-size: 0.5em;
    margin: 0 2px;
    position: relative;
    top: 0;
    vertical-align: top;
}
.gw-go-coinf small,
.gw-go-coinb small {
    display: block;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: -5px;
    margin-top: 3px;
}

.gw-go-coinb,
.gw-go-col-wrap.gw-go-hover .gw-go-coinf,
.gw-go-col-wrap.gw-go-current .gw-go-coinf {
    visibility: hidden;
}

.gw-go-coinf,
.gw-go-col-wrap.gw-go-hover .gw-go-coinb,
.gw-go-col-wrap.gw-go-current .gw-go-coinb {
    visibility: visible;
}

.gw-go-price-wrap > span {
    font-size: 32px;
}
.gw-go-price-wrap > small {
    font-size: 12px;
}

/* -------------------------------------------------------------------------------- /
	[3.2] BODY
/ -------------------------------------------------------------------------------- */

ul.gw-go-body {
    border-bottom: solid 1px transparent;
    float: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    text-align: center;
    width: 100%;
}
.gw-go-no-footer ul.gw-go-body {
    border-bottom: none !important;
    padding-bottom: none !important;
}
ul.gw-go-body > li {
    background: none;
    border-top: solid 1px #fff;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: table !important;
    position: relative;
    min-height: 17px;
    line-height: 16px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 10px 5px !important;
    table-layout: fixed;
    text-align: inherit !important;
    width: 100%;
}
ul.gw-go-body > li .gw-go-body-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    position: relative;
    z-index: 1;
}
ul.gw-go-body > li .gw-go-body-cell-valign-top {
    vertical-align: top;
}
ul.gw-go-body > li .gw-go-body-cell-valign-bottom {
    vertical-align: bottom;
}
.gw-go-ie ul.gw-go-body > li .gw-go-body-cell {
    display: block;
}
ul.gw-go-body > li:before,
ul.gw-go-body > li:after {
    display: none !important;
}

ul.gw-go-body > li .gw-go-body-cell:before,
ul.gw-go-body > li .gw-go-body-cell:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* Tooltip */
.gw-go-tooltip {
    left: 50%;
    margin-top: 15px !important;
    margin-left: -15px;
    opacity: 0;
    position: absolute;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    visibility: hidden;
    z-index: 4;
}
.gw-go-tooltip-visible {
    margin-top: 5px !important;
    opacity: 1;
    visibility: visible;
    -moz-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
    -o-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
    transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
}
.gw-go-tooltip-content:before {
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 6px solid #9d9d9d;
    border-top-color: inherit;
    content: "";
    left: 10px;
    position: absolute;
    top: 100%;
}
.gw-go-tooltip-content {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    background: #9d9d9d;
    border-color: #9d9d9d;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #333333;
    display: none;
    padding: 6px 10px 6px 10px;
    text-decoration: none !important;
    transition: none;
    text-align: left;
    width: 130px;
    max-width: 100%;
}
.gw-go-tooltip .gw-go-tooltip-content {
    display: block;
}

ul.gw-go-body li a,
ul.gw-go-body li a:visited,
ul.gw-go-body li a:active {
    color: inherit;
    text-decoration: none !important;
}
ul.gw-go-body li a:hover {
    text-decoration: underline !important;
}

/* -------------------------------------------------------------------------------- /
	[3.3] FOOTER & BUTTONS
/ -------------------------------------------------------------------------------- */

/* colum footer */
.gw-go-footer-wrap {
    padding: 15px 0;
}

.gw-go-footer {
    display: table;
    width: 100%;
    position: relative;
    table-layout: fixed;
    -moz-transition: padding 0.2s linear;
    -o-transition: padding 0.2s linear;
    -webkit-transition: top 0.2s linear;
    transition: top 0.2s linear;
    text-align: center;
    top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current .gw-go-footer,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover .gw-go-footer {
    top: -20px;
}
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-footer {
    bottom: 20px;
}

.gw-go-footer-spacer {
    height: 0.1px;
    -moz-transition: height 0.2s linear;
    -o-transition: height 0.2s linear;
    -webkit-transition: height 0.2s linear;
    transition: height 0.2s linear;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer-spacer,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-hover .gw-go-footer-spacer {
    height: 40px;
}
.gw-go-footer-inner {
    -moz-transition: top 0.2s linear;
    -o-transition: top 0.2s linear;
    -webkit-transition: top 0.2s linear;
    transition: top 0.2s linear;
    top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer-inner,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current .gw-go-footer-inner,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover .gw-go-footer-innner {
    top: 20px;
}

.gw-go-footer-rows {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.gw-go-footer-row {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    display: table;
    table-layout: fixed;
    width: 100%;
}
div.gw-go-footer-row a,
div.gw-go-footer-row a:visited,
div.gw-go-footer-row a:active {
    color: inherit;
    text-decoration: none !important;
}
.gw-go-footer-row-inner {
    display: table-cell;
    padding: 5px;
    vertical-align: middle;
}
.gw-go-footer-row-inner.gw-go-footer-row-inner-valign-top {
    vertical-align: top;
}
.gw-go-footer-row-inner.gw-go-footer-row-inner-valign-bottom {
    vertical-align: bottom;
}

/* button */
.gw-go-btn,
a.gw-go-btn {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    cursor: pointer;
    display: inline-block;
    font-family: inherit !important;
    margin: 0 5px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

.gw-go-btn,
a.gw-go-btn:hover,
ul.gw-go-body li a.gw-go-btn:hover {
    text-decoration: none !important;
}

.gw-go-btn:active {
    top: 1px;
}
.gw-go-btn form {
    display: none !important;
}

/* button hover & active states */
.gw-go-col-wrap.gw-go-hover .gw-go-btn:active,
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-btn:active {
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}

/* button sizes - small, medium, large */
.gw-go-btn-small {
    padding: 1px 11px 0;
}
.gw-go-btn-medium {
    padding: 5px 13px 4px;
}
.gw-go-btn-large {
    padding: 11px 18px 10px;
}

.gw-go-btn > .gw-go-btn-inner {
    display: table-cell;
    height: 23px;
    vertical-align: middle;
}
.gw-go-btn-fullwidth > .gw-go-btn-inner {
    max-width: 100%;
    width: 1000px;
}

/* -------------------------------------------------------------------------------- /
	[4]	ICONS (CLASSIC IMAGE ICONS)
/ -------------------------------------------------------------------------------- */

.gw-go-icon-left {
    margin-left: 0 !important;
}
.gw-go-icon-right {
    margin-right: 0 !important;
}

/* Body icons */
span[class*="gw-go-icon"] {
    background-position: 50% 50% no-repeat;
    display: inline-block;
    height: 16px;
    margin: 0 3px -4px;
    width: 16px;
}

/* Team icons */
.gw-go-icon-light-skype {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_skype.png) 50% 50% no-repeat;
}
.gw-go-icon-light-facebook {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_facebook.png) 50% 50% no-repeat;
}
.gw-go-icon-light-twitter {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_twitter.png) 50% 50% no-repeat;
}
.gw-go-icon-light-email {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_email.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-skype {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_skype.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-facebook {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_facebook.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-twitter {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_twitter.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-email {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_email.png) 50% 50% no-repeat;
}

/* Light icons */
.gw-go-icon-light-arrow {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-light-arrow2 {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-light-circle {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-light-cross {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-light-dot {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-light-minus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-light-ok {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-light-plus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-light-star {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_star.png) 50% 50% no-repeat;
}

/* Dark icons */
.gw-go-icon-dark-arrow {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-arrow2 {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-circle {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-cross {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-dot {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-minus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-ok {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-plus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-star {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_star.png) 50% 50% no-repeat;
}

/* Red icons */
.gw-go-icon-red-arrow {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-red-arrow2 {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-red-circle {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-red-cross {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-red-dot {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-red-minus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-red-ok {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-red-plus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-red-star {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_star.png) 50% 50% no-repeat;
}

/* Green icons */
.gw-go-icon-green-arrow {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-green-arrow2 {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-green-circle {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-green-cross {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-green-dot {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-green-minus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-green-ok {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-green-plus {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-green-star {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_star.png) 50% 50% no-repeat;
}

/* Button icons */
span[class*="gw-go-btn-icon"] {
    display: inline-block;
    height: 20px;
    margin-bottom: 0;
    margin-top: 0;
    vertical-align: middle;
    width: 20px;
}
span[class*="gw-go-btn-icon"][class*="gw-go-btn-icon-large"] {
    height: 24px;
    width: 24px;
}
.gw-go-btn-icon-medium-white-basket {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_white_basket_medium.png) 50% 50% no-repeat;
}
.gw-go-btn-icon-medium-white-download {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_white_download_medium.png) 50% 50% no-repeat;
}
.gw-go-btn-icon-large-white-basket {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/icons/icon_white_basket_large.png) 50% 50% no-repeat;
}

/* -------------------------------------------------------------------------------- /
	[5]	SIGNS (RIBBON)
/ -------------------------------------------------------------------------------- */

[class*="gw-go-ribbon"] img {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block !important;
    margin: 0 !important;
}
[class*="gw-go-ribbon-right"] img {
    float: right;
}

[class*="gw-go-ribbon-left"],
[class*="gw-go-ribbon-right"] {
    left: 0;
    margin-left: -1px;
    margin-top: -2px;
    position: absolute;
    top: 0;
    z-index: 2;
}
[class*="gw-go-ribbon-right"] {
    left: auto;
    margin-right: -1px;
    right: 0;
}

/* Text ribbons */
.gw-go-ribbon-text {
    height: 110px;
    overflow: hidden;
    width: 110px;
}
.gw-go-ribbon-text span {
    display: inline-block;
    line-height: 26px;
    text-align: center;
    text-shadow: none;
    width: 100%;
}
.gw-go-ribbon-text.gw-go-ribbon-left span {
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transform-origin: 55% 200%;
    -o-transform-origin: 55% 200%;
    -webkit-transform-origin: 55% 200%;
    transform-origin: 55% 200%;
}
.gw-go-ribbon-text.gw-go-ribbon-right span {
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transform-origin: 45% 200%;
    -o-transform-origin: 45% 200%;
    -webkit-transform-origin: 45% 200%;
    transform-origin: 45% 200%;
}
.gw-go-ribbon-text.gw-go-ribbon-shadow span {
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------------------------- /
	[6] COLUMN SHADOWS
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-shadow1:before {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_1.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow2:before {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_2.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow3:before {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_3.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow4:before {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_4.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow5:before {
    background: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_5.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow1:before,
.gw-go-col.gw-go-shadow2:before,
.gw-go-col.gw-go-shadow3:before,
.gw-go-col.gw-go-shadow4:before,
.gw-go-col.gw-go-shadow5:before {
    background-size: 100% 20px;
}

/* -------------------------------------------------------------------------------- /
	[7] CLEAN STYLE
/ -------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- /
	[7.1] GENERAL
/ -------------------------------------------------------------------------------- */

.gw-go-col[class*="gw-go-clean-style"] {
    border: none;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -moz-transition: margin-top 0.2s linear, top 0.2s linear;
    -o-transition: margin-top 0.2s linear, top 0.2s linear;
    -webkit-transition: margin-top 0.2s linear, top 0.2s linear;
    transition: margin-top 0.2s linear, top 0.2s linear;
}
.gw-go-col[class*="gw-go-clean-style"]:before {
    margin-top: 0;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-col-inner {
    border: solid 1px #ebebeb;
    border-bottom: solid 2px #d3d3d3;
    border-top-width: 2px;
    -moz-transition: -moz-box-shadow 0.2s linear;
    -o-transition: box-shadow 0.2s linear;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    transition: box-shadow 0.2s linear;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-top {
    height: 100px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-bottom {
    height: 60px;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-coin-wrap {
    height: 90px;
    margin: 0 0 0 -45px;
    width: 90px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinf,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinb {
    height: 88px;
    width: 88px;
    border-width: 2px !important;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinf div,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinb div {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-top {
    display: table;
    height: 50px;
    table-layout: fixed;
    width: 100%;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-top h3 {
    display: table-cell;
    position: relative;
    top: 0;
    vertical-align: middle;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-bottom {
    display: table;
    table-layout: fixed;
    height: 110px;
    width: 100%;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap span[data-id="currency"],
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap span[data-id="currency"] {
    font-size: 0.5em;
    position: relative;
    top: 2px;
    vertical-align: text-top;
    margin: 0 2px;
    vertical-align: top;
    top: 0;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap small,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap small {
    display: block;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: -5px;
    margin-top: 3px;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-img,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-img h3 {
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-left"],
.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-right"] {
    margin-left: 0;
    margin-top: 0;
}

.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-right"] {
    left: auto;
    margin-right: 0;
}

.gw-go-col[class*="gw-go-clean-style"] .gw-go-btn {
    border: none;
}

/* -------------------------------------------------------------------------------- /
	[7.2] CLEAN STYLE 1
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style1 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-header-top {
    background: none;
}

.gw-go-col.gw-go-clean-style1 .gw-go-header-bottom {
    background: #f5f5f5;
    border-top-color: #f5f5f5;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-top {
    background: none !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-bottom {
    background: none !important;
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-top:before {
    height: 50px !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-header-bottom:before {
    display: none !important;
}

/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-header h3 {
    color: #333;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-header h3,
.gw-go-col.gw-go-clean-style1 .gw-go-header-img h3,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style1 .gw-go-coinf,
.gw-go-col.gw-go-clean-style1 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style1 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style1 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style1 .gw-go-body > li {
    background: #ebebeb;
}
.gw-go-col.gw-go-clean-style1 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
.gw-go-col.gw-go-clean-style1 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-body > li {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-body > li {
    color: #333333;
}

/***** footer *****/
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-small {
    margin-top: 45px;
}
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-medium {
    margin-top: 40px;
}
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-large {
    margin-top: 33px;
}
/* button default state */
.gw-go-col.gw-go-clean-style1 .gw-go-btn {
    background: #9d9d9d;
    color: #ffffff;
}
/* button hover state */
.gw-go-col.gw-go-clean-style1 .gw-go-btn:hover {
    background: #333333;
}

/* column default state */
.gw-go-col.gw-go-clean-style1 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style1 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.3] CLEAN STYLE 2
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style2 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-top,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-bottom {
    background: #333333 !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-top,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom {
    background: none !important;
}

/* column default state */
.gw-go-col.gw-go-clean-style2 .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 100%;
    left: 0;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}

.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-header h3,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-price-wrap small {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style2 .gw-go-header h3 {
    color: #fff;
}
.gw-go-col.gw-go-clean-style2 .gw-go-coinf,
.gw-go-col.gw-go-clean-style2 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style2 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style2 .gw-go-coinb small {
    color: #333;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-coinf div,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-coinb div {
    color: #333 !important;
}

/***** details *****/
.gw-go-col.gw-go-clean-style2 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style2 .gw-go-body > li {
    background: #ebebeb;
    color: #333333;
}
.gw-go-col.gw-go-clean-style2 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style2 .gw-go-btn {
    background: #333;
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style2 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style2 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.4] CLEAN STYLE 3
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style3 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style3 .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col.gw-go-clean-style3 .gw-go-header h3,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-price-wrap {
    color: #fff;
}
.gw-go-col.gw-go-clean-style3 .gw-go-coinf,
.gw-go-col.gw-go-clean-style3 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style3 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style3 .gw-go-coinb small {
    color: #9d9d9d;
}

/***** details *****/
.gw-go-col.gw-go-clean-style3 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style3 .gw-go-body > li {
    background: #ebebeb;
}
.gw-go-col.gw-go-clean-style3 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

/* column default state */
.gw-go-col.gw-go-clean-style3 .gw-go-body > li {
    color: #9d9d9d;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-body > li {
    color: #333333;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style3 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 20px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style3 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style3 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style3 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.5] CLEAN STYLE 4
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style4 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style4 .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style4 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col.gw-go-clean-style4 .gw-go-header h3,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-price-wrap {
    color: #fff;
}
.gw-go-col.gw-go-clean-style4 .gw-go-coinf,
.gw-go-col.gw-go-clean-style4 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}

/***** details *****/
.gw-go-col.gw-go-clean-style4 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style4 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style4 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=7);
    -khtml-opacity: 0.07;
    -moz-opacity: 0.07;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=7)";
    opacity: 0.07;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}
.gw-go-col.gw-go-clean-style4 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=14);
    -khtml-opacity: 0.14;
    -moz-opacity: 0.14;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=14)";
    opacity: 0.14;
}

/* button default state */
.gw-go-col.gw-go-clean-style4 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style4 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style4 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.6] CLEAN STYLE 5
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style5 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column default state */
.gw-go-col.gw-go-clean-style5 .gw-go-header-bottom {
    background: #f5f5f5;
    border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom {
    background: transparent !important;
}

.gw-go-col.gw-go-clean-style5 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header h3,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-price-wrap span,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-price-wrap small,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img span,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img small {
    color: #fff !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-coinf,
.gw-go-col.gw-go-clean-style5 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style5 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style5 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style5 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style5 .gw-go-body > li {
    background: #ebebeb;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
    background: none !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col-wrap .gw-go-col.gw-go-clean-style5 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    position: absolute;
    top: -10px;
    z-index: -1;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even .gw-go-body-cell:before {
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    padding: 10px 5px;
    width: 101%;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
    color: #333;
}

/***** footer *****/
.gw-go-col.gw-go-clean-style5 .gw-go-footer-row {
    color: #9d9d9d;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-footer-row {
    color: #333;
}

/* button default state */
.gw-go-col.gw-go-clean-style5 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style5 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* -------------------------------------------------------------------------------- /
	[7.7] CLEAN STYLE 6
/ -------------------------------------------------------------------------------- */

/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-col-inner,
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style6 .gw-go-col-inner {
    background: #fff;
}

/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-header-bottom {
    border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.2) !important;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-header-bottom {
    border-top: solid 1px rgba(255, 255, 255, 0.35) !important;
}

.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
}

.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-header h3 {
    color: #fff !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-price-wrap,
.gw-go-col.gw-go-clean-style6 .gw-go-header-img h3,
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
    color: #fff !important;
}

/* column default state */
.gw-go-coin-wrap:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 1px;
    top: 1px;
    border-radius: 50px;
}

.gw-go-col.gw-go-clean-style6 .gw-go-coinf div,
.gw-go-col.gw-go-clean-style6 .gw-go-coinb div {
    color: #fff;
}

/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinf,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinf div,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinb div {
    background: #fff !important;
}

/***** details *****/
.gw-go-col.gw-go-clean-style6 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style6 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-body {
    border-bottom-color: #fff !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-body > li {
    background: none;
    border-top-color: #fff;
    color: #fff !important;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* column hover / selected state */
/* button default state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-btn {
    background: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style6 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style6 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style6 .gw-go-footer-row {
    color: #fff;
}

/* -------------------------------------------------------------------------------- /
	[7.8] CLEAN STYLE 7
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style7 .gw-go-col-inner {
    background: #fff;
}

/***** details *****/
.gw-go-col.gw-go-clean-style7 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style7 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style7 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}
.gw-go-col.gw-go-clean-style7 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-body {
    border-bottom-color: #fff !important;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style7 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style7 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style7 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.9] CLEAN STYLE 8
/ -------------------------------------------------------------------------------- */

/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-col-inner {
    background: #fff;
}

/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-header-bottom {
    border-top: solid 1px transparent;
}

/***** details *****/
.gw-go-col.gw-go-clean-style8 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style8 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-body > li {
    background: none;
    border-top-color: #fff;
    color: #fff;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* column hover / selected state */
/* button default state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-btn {
    background: #fff !important;
}

.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
    color: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style8 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style8 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
    color: #fff;
}

/* -------------------------------------------------------------------------------- /
	[7.10] CLEAN STYLE 9
/ -------------------------------------------------------------------------------- */

/***** header *****/
.gw-go-col.gw-go-clean-style9 .gw-go-header-bottom {
    height: auto;
    border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style9 .gw-go-header h3 {
    color: #fff;
}
.gw-go-col.gw-go-clean-style9 .gw-go-coinf,
.gw-go-col.gw-go-clean-style9 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}

.gw-go-col.gw-go-clean-style9 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style9 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style9 .gw-go-body > li {
    background: #fff;
}
.gw-go-col.gw-go-clean-style9 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style9 .gw-go-body > li .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}

.gw-go-col.gw-go-clean-style9 .gw-go-body > li .gw-go-body-cell:before {
    filter: alpha(opacity=15);
    -khtml-opacity: 0.15;
    -moz-opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    opacity: 0.15;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style9 .gw-go-btn {
    background: #fff;
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style9 .gw-go-footer-row {
    color: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style9 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* -------------------------------------------------------------------------------- /
	[7.11] CLEAN STYLE 10
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style10 .gw-go-col-inner {
    background: #fff;
}

.gw-go-col.gw-go-clean-style10 .gw-go-header-bottom {
    height: auto;
    border-top: none;
}
.gw-go-col.gw-go-clean-style10 .gw-go-header h3 {
    color: #fff;
}
.gw-go-col.gw-go-clean-style10 .gw-go-coinf,
.gw-go-col.gw-go-clean-style10 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style10 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style10 .gw-go-coinb small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style10 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style10 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #333;
}
.gw-go-col.gw-go-clean-style10 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style10 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style10 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style10 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.12] CLEAN STYLE 12
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style12 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style12 .gw-go-header-bottom {
    height: auto;
    border-top: none;
}

.gw-go-col.gw-go-clean-style12 .gw-go-header h3 small {
    color: #333;
}

/***** details *****/
.gw-go-col.gw-go-clean-style12 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #f5f5f5;
    color: #333;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li a {
    color: #333;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li:first-child {
    border-top-color: #fff;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
    border-top-color: #ebebeb;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style12 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style12 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

.gw-go-col.gw-go-clean-style12 .gw-go-footer-row {
    color: #333;
}

/* -------------------------------------------------------------------------------- /
	[7.13] CLEAN STYLE 13
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style13 .gw-go-header-bottom {
    height: auto;
    border-top: none;
}
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-header p {
    color: #333;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header h2,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header p {
    color: #fff !important;
}

/***** details *****/
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-body {
    border-bottom-color: #fff;
}
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-body > li {
    background: #ebebeb;
    border-top-color: #fff;
    color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style13 .gw-go-body > li.gw-go-even {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-body > li {
    background: none;
    border-top-color: #fff;
    color: #fff;
}

/***** footer *****/
/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* column hover / selected state */
/* button default state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-btn {
    background: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style13 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* column default state */
.gw-go-col.gw-go-clean-style13 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-footer-row {
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style13 .gw-go-footer-row {
    color: #fff;
}

/* -------------------------------------------------------------------------------- /
	[7.14] CLEAN STYLE 14
/ -------------------------------------------------------------------------------- */

/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-col-inner {
    background: #f5f5f5;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-col-inner {
    background: #fff;
}

/***** header *****/
.gw-go-col.gw-go-clean-style14 .gw-go-header-top {
    background: #fff;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-img .gw-go-header-top {
    background: transparent;
}
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-header h3 {
    color: #333;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-img h3 {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style14 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
    color: #fff !important;
}

.gw-go-col.gw-go-clean-style14 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-top:before {
    background: #fff;
    content: "" !important;
    display: block !important;
    height: 60px;
    left: 0;
    filter: alpha(opacity=30);
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    opacity: 0.3;
    position: absolute;
    width: 100%;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-top:before {
    height: 50px;
}

.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-bottom:before {
    display: none !important;
}

.gw-go-col.gw-go-clean-style14 .gw-go-coinf,
.gw-go-col.gw-go-clean-style14 .gw-go-coinb {
    border: solid 2px #c9c9c9;
}

.gw-go-col.gw-go-clean-style14 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style14 .gw-go-coinb small {
    color: #9d9d9d;
}

/***** details *****/
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-body {
    border-bottom-color: #fff;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-body {
    border-bottom-color: #ebebeb;
}
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-body > li {
    border-top-color: #fff;
    color: #9d9d9d;
}
/* column hover / selected state */
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-body > li {
    border-top-color: #ebebeb;
    color: #333333;
}

/***** footer *****/
.gw-go-col.gw-go-clean-style14 .gw-go-footer-row {
    color: #9d9d9d;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-footer-row {
    color: #333;
}
/* column default state */
.gw-go-col.gw-go-clean-style14 .gw-go-btn {
    background: #9d9d9d;
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}

/* button hover state */
.gw-go-col.gw-go-clean-style14 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}

/* -------------------------------------------------------------------------------- /
	[7.15] CLEAN STYLE 15
/ -------------------------------------------------------------------------------- */

.gw-go-col.gw-go-clean-style15 .gw-go-col-inner {
    background: #fff;
}

/***** details *****/
.gw-go-col.gw-go-clean-style15 .gw-go-body {
    border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li {
    background: #ebebeb;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li.gw-go-even {
    background: none;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li.gw-go-even .gw-go-body-cell:before {
    content: "";
    display: block;
    height: 100%;
    left: -5px;
    margin-left: -1px;
    filter: alpha(opacity=10);
    -khtml-opacity: 0.1;
    -moz-opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    opacity: 0.1;
    padding: 10px 5px;
    position: absolute;
    top: -10px;
    width: 101%;
    z-index: -1;
}

/***** footer *****/
/* button default state */
.gw-go-col.gw-go-clean-style15 .gw-go-btn {
    background-image: url(https://coralgablesclassof82.com/wp-content/plugins/go_pricing/assets/images/hover.png);
    background-position: 200px 0;
    background-repeat: no-repeat;
    color: #fff !important;
}
/* button hover state */
.gw-go-col.gw-go-clean-style15 .gw-go-btn:hover {
    background-position: 0 0;
    background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style15 .gw-go-footer-row {
    color: #333;
}
/* ==========================================================================
   MEP Event Calendar - Main Styles
   ========================================================================== */

/* Wrapper */
.mep-calendar-wrapper {
	position: relative;
	margin: 20px 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mep-calendar-container {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

/* FullCalendar Overrides */
.mep-calendar-container .fc {
	width: 100%;
	max-width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--mep-cal-border, #ddd);
	background: #fff;
}

/* Header / Toolbar */
.mep-calendar-container .fc .fc-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	background: var(--mep-cal-header-bg, #2c3e50);
	padding: 16px 20px;
	margin-bottom: 0;
	border-radius: 12px 12px 0 0;
}

.mep-calendar-container .fc .fc-toolbar-chunk {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.mep-calendar-container .fc .fc-button-group {
	display: flex;
	flex-wrap: wrap;
}

.mep-calendar-container .fc .fc-toolbar-title {
	color: var(--mep-cal-header-text, #ffffff);
	font-size: 1.3em;
	font-weight: 600;
	text-transform: capitalize;
}

.mep-calendar-container .fc .fc-button {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--mep-cal-header-text, #ffffff);
	border-radius: 6px;
	padding: 6px 14px;
	font-size: 0.85em;
	font-weight: 500;
	transition: all 0.2s ease;
	text-transform: capitalize;
	box-shadow: none;
}

.mep-calendar-container .fc .fc-button:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.mep-calendar-container .fc .fc-button-active,
.mep-calendar-container .fc .fc-button:active {
	background: rgba(255, 255, 255, 0.35) !important;
	border-color: rgba(255, 255, 255, 0.6) !important;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.mep-calendar-container .fc .fc-button:focus {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
}

/* Day Headers */
.mep-calendar-container .fc .fc-col-header-cell {
	background: #f8f9fa;
	border-color: var(--mep-cal-border, #ddd);
	padding: 10px 0;
}

.mep-calendar-container .fc .fc-col-header-cell-cushion {
	color: #495057;
	font-weight: 600;
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
}

/* Day Cells */
.mep-calendar-container .fc .fc-daygrid-day {
	border-color: var(--mep-cal-border, #ddd);
	transition: background-color 0.2s ease;
}

.mep-calendar-container .fc .fc-daygrid-day-frame {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 170px;
	max-height: 170px;
	border-radius: 8px;
	overflow: hidden;
}

.mep-calendar-container .fc .fc-daygrid-day-top {
	flex: 0 0 auto;
}

.mep-calendar-container .fc .fc-daygrid-day-events {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 4px;
	margin-bottom: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(44, 62, 80, 0.45) rgba(44, 62, 80, 0.08);
	mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 18px), transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 18px), transparent 100%);
}

.mep-calendar-container .fc .fc-daygrid-day-events::-webkit-scrollbar {
	width: 6px;
}

.mep-calendar-container .fc .fc-daygrid-day-events::-webkit-scrollbar-track {
	background: rgba(44, 62, 80, 0.08);
	border-radius: 999px;
}

.mep-calendar-container .fc .fc-daygrid-day-events::-webkit-scrollbar-thumb {
	background: rgba(44, 62, 80, 0.45);
	border-radius: 999px;
}

.mep-calendar-container .fc .fc-daygrid-day-bottom {
	flex: 0 0 auto;
	margin-top: 4px;
}

.mep-calendar-container .fc .fc-daygrid-day:hover {
	background-color: #f8f9fa;
}

.mep-calendar-container .fc .mep-cal-day-customized {
	position: relative;
}

.mep-calendar-container .fc .mep-cal-day-has-bg-image {
	background-blend-mode: normal;
}

.mep-calendar-container .fc .mep-cal-day-customized .fc-daygrid-day-number,
.mep-calendar-container .fc .mep-cal-day-customized .fc-col-header-cell-cushion {
	position: relative;
	z-index: 1;
}

.mep-calendar-container .fc .fc-daygrid-day-number {
	color: #333;
	font-weight: 500;
	padding: 8px 10px;
	text-decoration: none;
}

/* Today */
.mep-calendar-container .fc .fc-day-today {
	background-color: var(--mep-cal-today, #fcf8e3) !important;
}

/* Fixed by Shahnur — 2026-04-22 11:31 AM (Asia/Dhaka) */
.mep-calendar-container .fc .fc-day-today .fc-daygrid-day-number {
	font-weight: 700;
}

/* Other month days */
.mep-calendar-container .fc .fc-day-other .fc-daygrid-day-number {
	color: #adb5bd;
}

/* Events */
.mep-calendar-container .fc-event {
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 0.82em;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	border: none !important;
	margin: 1px 2px;
}

.mep-calendar-container .fc-event:hover {
	transform: scale(1.02);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

.mep-calendar-container .fc-event .fc-event-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mep-calendar-container .fc-event .fc-event-time {
	font-weight: 400;
	opacity: 0.9;
}

/* Expired events — compact to reduce calendar gaps */
.mep-calendar-container .fc-event.mep-cal-expired-event,
.mep-calendar-container .fc-daygrid-event.mep-cal-expired-event,
.mep-calendar-container .fc-daygrid-block-event.mep-cal-expired-event,
.mep-calendar-container .fc-h-event.mep-cal-expired-event {
	padding: 1px 4px !important;
	font-size: 0.72em !important;
	line-height: 1.2 !important;
	min-height: auto !important;
	height: auto !important;
	background-image: none !important;
	background-repeat: no-repeat !important;
	background-size: auto !important;
}

.mep-calendar-container .fc-daygrid-event-harness:has(> .mep-cal-expired-event) {
	min-height: auto !important;
	height: auto !important;
}

.mep-calendar-container .fc-event.mep-cal-expired-event .fc-event-main,
.mep-calendar-container .fc-event.mep-cal-expired-event .fc-event-main-frame {
	padding: 0 !important;
	min-height: auto !important;
	height: auto !important;
}

.mep-calendar-container .fc-event.mep-cal-expired-event .mep-cal-event-inner {
	gap: 1px !important;
	min-height: auto !important;
}

.mep-calendar-container .fc-event.mep-cal-expired-event .mep-cal-event-time,
.mep-calendar-container .fc-event.mep-cal-expired-event .mep-cal-event-title {
	font-size: 0.85em !important;
	line-height: 1.2 !important;
}

.mep-calendar-container .fc-event.mep-cal-expired-event:hover {
	transform: none !important;
	box-shadow: none !important;
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-h-event,
.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-event,
.mep-calendar-container .fc .fc-timeGridWeek-view .fc-timegrid-event,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-h-event,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-event,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-timegrid-event {
	background: var(--mep-cal-event-soft-bg, rgba(58, 135, 173, 0.16));
	border: 1px solid var(--mep-cal-event-soft-border, rgba(58, 135, 173, 0.52)) !important;
	border-left: 4px solid var(--mep-cal-event-accent, #3a87ad) !important;
	color: var(--mep-cal-event-soft-text, #23435b);
}

/* TimeGrid event cards */
.mep-calendar-container .fc .fc-timegrid-slot,
.mep-calendar-container .fc .fc-timegrid-axis,
.mep-calendar-container .fc .fc-timegrid-col {
	border-color: var(--mep-cal-border, #ddd);
	position: relative;
}

.mep-calendar-container .fc .fc-timegrid-col-frame {
	min-height: 100%;
}

.mep-calendar-container .fc .fc-timegrid-col-events {
	margin: 0 4px 0 2px;
}

.mep-calendar-container .fc .fc-timegrid-event {
	border-width: 1px !important;
	border-style: solid !important;
	border-left-width: 4px !important;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
	margin: 0 4px;
	background: var(--mep-cal-event-soft-bg, rgba(58, 135, 173, 0.16));
	border-color: var(--mep-cal-event-soft-border, rgba(58, 135, 173, 0.52)) !important;
	color: var(--mep-cal-event-soft-text, #23435b);
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-event,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-event {
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-event .fc-event-main {
	padding: 4px 8px;
}

.mep-calendar-container .fc .fc-timegrid-event .fc-event-main {
	color: inherit;
	padding: 8px 10px;
}

.mep-calendar-container .fc .fc-timegrid-event .mep-cal-event-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	line-height: 1.3;
}

.mep-calendar-container .fc .fc-timegrid-event .mep-cal-event-time {
	display: block;
	font-size: 0.76em;
	font-weight: 700;
	letter-spacing: 0.02em;
	opacity: 1;
}

.mep-calendar-container .fc .fc-timegrid-event .mep-cal-event-title {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

/* Week/Day all-day lane */
.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-day-frame,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-day-frame,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-day-frame,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-day-frame {
	display: block;
	min-height: auto;
	max-height: none;
	overflow: hidden;
	border-radius: 0;
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-day-events,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-day-events,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-day-events,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-day-events {
	overflow: hidden;
	padding-right: 0;
	mask-image: none;
	-webkit-mask-image: none;
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-event-harness,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-event-harness,
.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-event,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-event,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-event-harness,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-event-harness,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-event,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-event {
	max-width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-event .mep-cal-event-inner,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-event .mep-cal-event-inner,
.mep-calendar-container .fc .fc-timeGridWeek-view .fc-daygrid-body .fc-daygrid-event .mep-cal-event-title,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-daygrid-body .fc-daygrid-event .mep-cal-event-title,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-event .mep-cal-event-inner,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-event .mep-cal-event-inner,
.mep-calendar-container .fc .fc-timegrid-allday .fc-daygrid-event .mep-cal-event-title,
.mep-calendar-container .fc .fc-timegrid-all-day .fc-daygrid-event .mep-cal-event-title {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-timegrid-more-link,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-timegrid-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 8px);
	margin: 2px 4px 0;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(44, 62, 80, 0.08);
	color: #2c3e50;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	box-sizing: border-box;
}

.mep-calendar-container .fc .fc-timeGridWeek-view .fc-timegrid-more-link:hover,
.mep-calendar-container .fc .fc-timeGridDay-view .fc-timegrid-more-link:hover {
	background: rgba(44, 62, 80, 0.14);
}

.mep-calendar-container .fc .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-h-event .fc-event-main {
	color: inherit;
}

.mep-calendar-container .fc .fc-daygrid-event .mep-cal-event-time,
.mep-calendar-container .fc .fc-daygrid-event .mep-cal-event-title {
	color: inherit;
}

/* Month view cleanup */
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event-harness {
	margin-top: 2px;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 1px 0;
	overflow: hidden;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .fc-event-main {
	display: block;
	min-width: 0;
	overflow: hidden;
	padding: 2px 6px;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .fc-event-main-frame,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .fc-event-title-container {
	display: flex;
	align-items: center;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .mep-cal-event-inner {
	display: flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .mep-cal-event-time {
	flex: 0 0 auto;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .mep-cal-event-title {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .mep-cal-event-badge,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event .mep-cal-stock-dot {
	display: none;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event:hover {
	transform: none;
}

/* Event dot in daygrid */
.mep-calendar-container .fc-daygrid-event-dot {
	border: none;
}

/* List View */
.mep-calendar-container .fc-list {
	border-radius: 0 0 12px 12px;
}

.mep-calendar-container .fc-list-event:hover td {
	background-color: #f0f7ff;
}

.mep-calendar-container .fc .fc-list-day-cushion {
	background: #f8f9fa;
}

/* Fixed by Shahnur -- 2026-04-22 12:17 PM (Asia/Dhaka) */
/* More events link */
.mep-calendar-container .fc .fc-more-link,
.mep-calendar-container .fc .fc-daygrid-more-link {
	color: #ffffff !important;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 5px 10px;
	border: 1px solid rgba(44, 62, 80, 0.22);
	border-radius: 999px;
	background: #34495e;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
	text-decoration: none !important;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mep-calendar-container .fc .fc-more-link:hover,
.mep-calendar-container .fc .fc-daygrid-more-link:hover {
	background: #2c3e50 !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
	transform: translateY(-1px);
}

.mep-calendar-container .fc .fc-more-link:focus,
.mep-calendar-container .fc .fc-daygrid-more-link:focus,
.mep-calendar-container .fc .fc-more-link:focus-visible,
.mep-calendar-container .fc .fc-daygrid-more-link:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(52, 73, 94, 0.18), 0 4px 12px rgba(15, 23, 42, 0.18);
}

.mep-calendar-container .fc .fc-more-link .mep-cal-more-link-text,
.mep-calendar-container .fc .fc-daygrid-more-link .mep-cal-more-link-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.mep-calendar-container .fc .fc-popover {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
	overflow: hidden;
}

.mep-calendar-container .fc .fc-popover-header {
	padding: 10px 14px;
	background: #f8fafc;
}

.mep-calendar-container .fc .fc-popover-body {
	padding: 8px;
}

.mep-calendar-container .mep-cal-day-summary-button {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	z-index: 4;
	border: 1px solid rgba(44, 62, 80, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #55606f;
	font-size: 11px;
	line-height: 1.2;
	padding: 4px 8px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.mep-calendar-container .mep-cal-day-summary-button:hover {
	background: #ffffff;
	color: #243447;
}

.mep-cal-day-events-popover {
	position: fixed;
	z-index: 99998;
	width: 290px;
	max-width: calc(100vw - 24px);
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
	padding: 12px 0 10px;
}

.mep-cal-day-popover-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px 8px;
}

.mep-cal-day-popover-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a8594;
}

.mep-cal-day-popover-close {
	border: none;
	background: transparent;
	color: #97a1ae;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.mep-cal-day-popover-date {
	padding: 0 14px 8px;
	font-size: 13px;
	font-weight: 600;
	color: #243447;
}

.mep-cal-day-popover-list {
	display: flex;
	flex-direction: column;
}

.mep-cal-day-popover-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 14px;
	text-decoration: none;
	color: inherit;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.mep-cal-day-popover-item:hover {
	background: rgba(58, 135, 173, 0.04);
}

.mep-cal-day-popover-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	margin-top: 6px;
	flex: 0 0 8px;
}

.mep-cal-day-popover-content {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.mep-cal-day-popover-item-title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #243447;
}

.mep-cal-day-popover-item-time {
	font-size: 12px;
	color: #7a8594;
}

.mep-cal-error-message {
	padding: 16px 18px;
	border: 1px solid #f5c2c7;
	border-radius: 10px;
	background: #fff5f5;
	color: #842029;
	font-size: 14px;
}

/* ==========================================================================
   Filters Bar
   ========================================================================== */
.mep-calendar-filters {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
	align-items: center;
}

.mep-cal-filter-item {
	position: relative;
}

.mep-cal-search {
	flex: 1;
	min-width: 200px;
	position: relative;
}

.mep-cal-search-input {
	width: 100%;
	padding: 10px 16px 10px 40px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
	box-sizing: border-box;
}

.mep-cal-search-input:focus {
	border-color: var(--mep-cal-header-bg, #2c3e50);
	box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.mep-cal-search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
}

.mep-cal-category-select {
	padding: 10px 36px 10px 14px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	background: #fff;
	min-width: 180px;
	transition: border-color 0.2s ease;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.mep-cal-category-select:focus {
	border-color: var(--mep-cal-header-bg, #2c3e50);
	box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.mep-cal-organizer-select,
.mep-cal-location-input,
.mep-cal-date-start,
.mep-cal-date-end {
	padding: 10px 14px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	min-height: 44px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mep-cal-organizer-select {
	min-width: 180px;
}

.mep-cal-location-input {
	min-width: 220px;
}

.mep-cal-date-filter input {
	min-width: 150px;
}

.mep-cal-organizer-select:focus,
.mep-cal-location-input:focus,
.mep-cal-date-start:focus,
.mep-cal-date-end:focus {
	border-color: var(--mep-cal-header-bg, #2c3e50);
	box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.mep-cal-reset-button {
	padding: 10px 16px;
	border: 1px solid var(--mep-cal-header-bg, #2c3e50);
	border-radius: 8px;
	background: #fff;
	color: var(--mep-cal-header-bg, #2c3e50);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.mep-cal-reset-button:hover {
	background: var(--mep-cal-header-bg, #2c3e50);
	color: #fff;
}

/* ==========================================================================
   Tooltip
   ========================================================================== */
.mep-cal-tooltip {
	position: fixed;
	z-index: 99999;
	min-width: 280px;
	max-width: 360px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
	padding: 0;
	overflow: hidden;
	pointer-events: none;
	animation: mepCalTooltipIn 0.2s ease;
}

@keyframes mepCalTooltipIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mep-cal-tooltip-header {
	padding: 14px 16px;
	background: var(--mep-cal-header-bg, #2c3e50);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mep-cal-tooltip-thumb {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid rgba(255,255,255,0.2);
}

.mep-cal-tooltip-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	flex: 1;
}

.mep-cal-tooltip-badges {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.mep-cal-tooltip-badge {
	display: inline-block;
	padding: 1px 7px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mep-cal-badge-recurring {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.mep-cal-badge-multidate {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.mep-cal-badge-virtual {
	background: rgba(155, 89, 182, 0.3);
	color: #fff;
}

.mep-cal-badge-soldout {
	background: #dc3545;
	color: #fff;
}

.mep-cal-tooltip-body {
	padding: 12px 16px;
}

.mep-cal-tooltip-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 5px 0;
	font-size: 13px;
	color: #495057;
	border-bottom: 1px solid #f0f0f0;
}

.mep-cal-tooltip-row:last-child {
	border-bottom: none;
}

.mep-cal-tooltip-row i {
	color: #868e96;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.mep-cal-tooltip-row strong {
	color: #2c3e50;
}

.mep-cal-tooltip-price-block {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #e9ecef;
}

.mep-cal-tooltip-price-heading {
	font-size: 12px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.mep-cal-tooltip-price-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	font-size: 13px;
	color: #495057;
	border-bottom: 1px solid #f1f3f5;
}

.mep-cal-tooltip-price-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.mep-cal-tooltip-price-row .price-ticket-name {
	font-weight: 500;
}

.mep-cal-tooltip-price-row .price-ticket-value {
	font-weight: 700;
	color: #2c3e50;
	white-space: nowrap;
}

/* Stock details in tooltip */
.mep-cal-tooltip-stock {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #e9ecef;
}

.mep-cal-tooltip-stock-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.mep-cal-tooltip-stock-summary {
	font-size: 12px;
	font-weight: 600;
}

.mep-cal-stock-available {
	color: #28a745;
}

.mep-cal-stock-low {
	color: #ffc107;
}

.mep-cal-stock-soldout {
	color: #dc3545;
}

.mep-cal-tooltip-ticket-types {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mep-cal-ticket-row {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: #6c757d;
	padding: 3px 6px;
	background: #f8f9fa;
	border-radius: 4px;
}

.mep-cal-ticket-row .ticket-name {
	font-weight: 500;
}

.mep-cal-ticket-row .ticket-avail {
	font-weight: 600;
}

/* Stock progress bar */
.mep-cal-stock-bar {
	width: 100%;
	height: 4px;
	background: #e9ecef;
	border-radius: 2px;
	overflow: hidden;
	margin: 4px 0;
}

.mep-cal-stock-bar-fill {
	height: 100%;
	border-radius: 2px;
	transition: width 0.3s ease;
}

/* ==========================================================================
   Lite Calendar Style
   ========================================================================== */
.mep-cal-style-lite .fc .fc-toolbar {
	padding: 12px 16px;
	border-radius: 8px 8px 0 0;
}

.mep-cal-style-lite .fc {
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mep-cal-style-lite .fc-event {
	border-radius: 3px;
	padding: 1px 4px;
	font-size: 0.78em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.mep-calendar-wrapper {
		overflow-x: auto;
	}

	.mep-calendar-container .fc .fc-daygrid-day-frame {
		min-height: 150px;
		max-height: 150px;
	}

	.mep-calendar-container .fc .fc-toolbar {
		padding: 14px 16px;
	}

	.mep-calendar-container .fc .fc-toolbar-title {
		font-size: 1.1em;
	}
}

@media (max-width: 768px) {
	.mep-calendar-container .fc .fc-daygrid-day-frame {
		min-height: 130px;
		max-height: 130px;
	}

	.mep-calendar-container .fc .fc-toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		padding: 12px;
	}

	.mep-calendar-container .fc .fc-toolbar-chunk {
		justify-content: center;
	}

	.mep-calendar-container .fc .fc-toolbar-title {
		width: 100%;
		text-align: center;
		font-size: 1.1em;
	}

	.mep-calendar-container .fc .fc-button {
		padding: 5px 10px;
		font-size: 0.8em;
	}

	.mep-calendar-filters {
		flex-direction: column;
	}

	.mep-cal-search {
		min-width: 100%;
	}

	.mep-cal-category-select {
		width: 100%;
	}

	.mep-cal-organizer-select,
	.mep-cal-location-input,
	.mep-cal-date-start,
	.mep-cal-date-end,
	.mep-cal-reset-button {
		width: 100%;
	}

	.mep-cal-tooltip {
		min-width: 240px;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.mep-calendar-container .fc .fc-toolbar-chunk:last-child {
		display: none;
	}

	.mep-calendar-container .fc-event {
		font-size: 0.72em;
		padding: 1px 3px;
	}
}

/* Final month view guardrails */
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event {
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
	max-width: 100% !important;
	width: 100% !important;
	margin: 1px 0 !important;
	padding: 2px 4px !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event:hover {
	transform: none !important;
	background: rgba(58, 135, 173, 0.06) !important;
}

/* Fixed by Shahnur — 2026-04-22 11:43 AM (Asia/Dhaka) */
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event:hover,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event:hover,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event.mep-cal-event-hovered,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event.mep-cal-event-hovered,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event:focus-visible,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event:focus-visible {
	background: rgba(58, 135, 173, 0.18) !important;
	box-shadow: inset 0 0 0 1px rgba(58, 135, 173, 0.38) !important;
	border-radius: 6px !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event:hover .mep-cal-event-time,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event:hover .mep-cal-event-title,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event:hover .mep-cal-event-time,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event:hover .mep-cal-event-title,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event.mep-cal-event-hovered .mep-cal-event-time,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event.mep-cal-event-hovered .mep-cal-event-title,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event.mep-cal-event-hovered .mep-cal-event-time,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event.mep-cal-event-hovered .mep-cal-event-title {
	color: #b71c1c !important;
	font-weight: 600 !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .mep-cal-event-hovered-inner,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event:hover .mep-cal-event-inner-month,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-event:hover .mep-cal-event-inner-month {
	background: rgba(58, 135, 173, 0.12) !important;
	border-radius: 6px !important;
	box-shadow: inset 0 0 0 1px rgba(58, 135, 173, 0.28) !important;
	padding: 2px 4px !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .mep-cal-event-hovered-wrap {
	z-index: 4 !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .fc-event-main,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .fc-event-title,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .fc-event-time,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .mep-cal-event-inner-month,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .mep-cal-event-title {
	min-width: 0 !important;
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .mep-cal-event-inner-month {
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	width: 100% !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .mep-cal-event-time {
	flex: 0 0 auto !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-dot-event .mep-cal-event-title {
	flex: 1 1 auto !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-h-event {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	overflow: hidden !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event-harness,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event-harness-abs,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event .fc-event-main,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event .fc-event-main-frame,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event .fc-event-title-container,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event .fc-event-title,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .mep-cal-event-inner,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .mep-cal-event-title {
	min-width: 0 !important;
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-day-events {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event-harness,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event-harness-abs {
	position: static !important;
	inset: auto !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	margin: 2px 0 0 !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event .fc-event-title,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .mep-cal-event-title {
	display: block !important;
	width: 100% !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-sticky,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-event-time,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-event-title {
	position: static !important;
	left: auto !important;
	right: auto !important;
}

/* Fixed by Shahnur -- 2026-04-22 12:23 PM (Asia/Dhaka) */
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom {
	padding: 4px 6px 8px !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-daygrid-more-link,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-more-link {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	max-width: 100% !important;
	padding: 5px 10px !important;
	border: 1px solid rgba(44, 62, 80, 0.22) !important;
	border-radius: 999px !important;
	background: #34495e !important;
	color: #ffffff !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12) !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-daygrid-more-link:hover,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-more-link:hover,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-daygrid-more-link:focus-visible,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-more-link:focus-visible {
	background: #2c3e50 !important;
	color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18) !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-daygrid-more-link .fc-sticky,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-more-link .fc-sticky,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-daygrid-more-link .mep-cal-more-link-text,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-day-bottom .fc-more-link .mep-cal-more-link-text {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: inherit !important;
	position: static !important;
	white-space: nowrap !important;
}

/* Fixed by Shahnur — 2026-04-22 11:27 AM (Asia/Dhaka) */
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-dot-event,
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event.fc-daygrid-dot-event {
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 2px 0 0 !important;
	padding: 2px 4px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event-harness:has(> .fc-daygrid-dot-event),
.mep-calendar-container .fc .fc-dayGridMonth-view .fc-daygrid-body .fc-daygrid-event-harness-abs:has(> .fc-daygrid-dot-event) {
	position: static !important;
	inset: auto !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	margin: 2px 0 0 !important;
}

.mep-calendar-container .fc-event.mep-cal-expired-event,
.mep-calendar-container .fc-daygrid-event.mep-cal-expired-event,
.mep-calendar-container .fc-daygrid-block-event.mep-cal-expired-event,
.mep-calendar-container .fc-h-event.mep-cal-expired-event {
	padding: 2px 6px !important;
	font-size: 0.82em !important;
	line-height: 1.25 !important;
}

.mep-calendar-container .fc-event.mep-cal-expired-event .mep-cal-event-time,
.mep-calendar-container .fc-event.mep-cal-expired-event .mep-cal-event-title {
	font-size: inherit !important;
	line-height: inherit !important;
}
/* Default styling for jQuery Datepicker v5.0.1. */
.datepick {
	background-color: #fff;
	color: #000;
	border: 1px solid #444;
    border-radius: 0.25em;
    -moz-border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
	/*font-family: Arial,Helvetica,Sans-serif;*/
	font-size: 90%;
}
.datepick-rtl {
	direction: rtl;
}
.datepick-popup {
	z-index: 1000;
}
.datepick-disable {
	position: absolute;
	z-index: 100;
	background-color: white;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.datepick a {
	color: #fff;
	text-decoration: none;
}
.datepick a.datepick-disabled {
	color: #888;
	cursor: auto;
}
.datepick button {
    margin: 0.25em;
    padding: 0.125em 0em;
    background-color: #fcc;
    border: none;
    border-radius: 0.25em;
    -moz-border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
    font-weight: bold;
}
.datepick-nav, .datepick-ctrl {
	float: left;
	width: 100%;
	background-color: #000;
	color: #fff;
	font-size: 90%;
	font-weight: bold;
}
.datepick-ctrl {
	background-color: #600;
}
.datepick-cmd {
	width: 30%;
}
.datepick-cmd:hover {
	background-color: #777;
}
.datepick-ctrl .datepick-cmd:hover {
	background-color: #f08080;
}
.datepick-cmd-prevJump, .datepick-cmd-nextJump {
	width: 8%;
}
a.datepick-cmd {
	/*height: 1.5em;*/
}
button.datepick-cmd {
	text-align: center;
}
.datepick-cmd-prev, .datepick-cmd-prevJump, .datepick-cmd-clear {
	float: left;
	padding-left: 2%;
}
.datepick-cmd-current, .datepick-cmd-today {
	float: left;
	width: 35%;
	text-align: center;
}
.datepick-cmd-next, .datepick-cmd-nextJump, .datepick-cmd-close {
	float: right;
	padding-right: 2%;
	text-align: right;
}
.datepick-rtl .datepick-cmd-prev, .datepick-rtl .datepick-cmd-prevJump,
.datepick-rtl .datepick-cmd-clear {
	float: right;
	padding-left: 0%;
	padding-right: 2%;
	text-align: right;
}
.datepick-rtl .datepick-cmd-current, .datepick-rtl .datepick-cmd-today {
	float: right;
}
.datepick-rtl .datepick-cmd-next, .datepick-rtl .datepick-cmd-nextJump,
.datepick-rtl .datepick-cmd-close {
	float: left;
	padding-left: 2%;
	padding-right: 0%;
	text-align: left;
}
.datepick-month-nav {
	float: left;
	background-color: #777;
	text-align: center;
}
.datepick-month-nav div {
	float: left;
	width: 12.5%;
	margin: 1%;
	padding: 1%;
}
.datepick-month-nav span {
	color: #888;
}
.datepick-month-row {
	clear: left;
}
.datepick-month {
	float: left;
	width: 15em;
	border: 1px solid #444;
	text-align: center;
}
.datepick-month-header, .datepick-month-header select, .datepick-month-header input {
	/*height: 1.5em;*/
	background-color: #444;
	color: #fff;
	font-weight: bold;
}
.datepick-month-header select, .datepick-month-header input {
	/*height: 1.4em;*/
	margin: 0em;
	padding: 0em;
	border: none;
	font-size: 100%;
}
.datepick-month-header input {
	position: absolute;
	display: none;
}
.datepick-month table {
	width: 100%;
	border-collapse: collapse;
}
.datepick-month thead {
	border-bottom: 1px solid #aaa;
}
.datepick-month th, .datepick-month td {
	margin: 0em;
	padding: 0em;
	font-weight: normal;
	text-align: center;
}
.datepick-month th {
	border: 1px solid #777;
}
.datepick-month th, .datepick-month th a {
	background-color: #777;
	color: #fff;
}
.datepick-month td {
	background-color: #eee;
	border: 1px solid #aaa;
}
.datepick-month td.datepick-week {
	border: 1px solid #777;
}
.datepick-month td.datepick-week * {
	background-color: #777;
	color: #fff;
	border: none;
}
.datepick-month a {
	display: block;
	width: 100%;
	padding: 0.125em 0em;
	background-color: #eee;
	color: #000;
	text-decoration: none;
}
.datepick-month span {
	display: block;
	width: 100%;
	padding: 0.125em 0em;
}
.datepick-month td span {
	color: #888;
}
.datepick-month td .datepick-other-month {
	background-color: #fff;
}
.datepick-month td .datepick-weekend {
	background-color: #ddd;
}
.datepick-month td .datepick-today {
	background-color: #f0c0c0;
}
.datepick-month td .datepick-highlight {
	background-color: #f08080;
}
.datepick-month td .datepick-selected {
	background-color: #777;
	color: #fff;
}
.datepick-month th.datepick-week {
	background-color: #777;
	color: #fff;
}
.datepick-status {
	clear: both;
	background-color: #ddd;
	text-align: center;
}
.datepick-clear-fix {
	clear: both;
}
.mphb-group-availability-calendar{--color-room-type-date-available: #cef093;--color-room-type-date-not-available: #f3a5b0;--color-room-type-date-default: #d3d3d3;position:relative;width:100%}.mphb-group-availability-calendar *{box-sizing:border-box}.mphb-group-availability-calendar .mphb-placeholder{background-color:#ccc;border-radius:3px;margin-bottom:6px;display:block;background:linear-gradient(90deg,#ccc 20%,#ddd 50%,#ccc 75%);background-size:200% 100%;animation:mphb-shimmer 1.5s infinite;height:2.25em}.mphb-group-availability-calendar .mphb-placeholder.is-dates{height:calc(3em + 8px);margin-bottom:15px}@keyframes mphb-shimmer{0%{background-position:200% 0}}.mphb-group-availability-calendar .mphb-toolbar{display:flex;gap:8px;margin-bottom:10px}.mphb-group-availability-calendar .is-dragging{cursor:grabbing;-webkit-user-select:none;user-select:none}.mphb-group-availability-calendar-error{color:red}.mphb-group-availability-calendar-dates{display:flex;gap:4px;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background:#ffffffbf}.mphb-group-availability-calendar-dates__wrapper{overflow-x:auto;overflow-y:hidden;width:100%;position:sticky;top:0;z-index:5;margin-bottom:15px}@media screen and (min-width:783px){body.admin-bar .mphb-group-availability-calendar-dates__wrapper{top:32px}}@media screen and (min-width:600px)and (max-width:782px){body.admin-bar .mphb-group-availability-calendar-dates__wrapper{top:46px}}.mphb-group-availability-calendar-dates__date{width:3em;height:3em;border:1px solid #ddd;border-radius:3px;background:#fff;text-align:center;flex-shrink:0;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:2px;padding:.5em .2em .2em}.mphb-group-availability-calendar-dates__day{line-height:1}.mphb-group-availability-calendar-dates__week-day{font-size:.625em;line-height:1;color:#737373}.mphb-group-availability-calendar-room-types{overflow-x:auto;overflow-y:hidden;position:relative}.mphb-group-availability-calendar-room-type{margin-bottom:.5em;width:max-content}.mphb-group-availability-calendar-room-type:last-child{margin-bottom:0}.mphb-group-availability-calendar-room-type__title{display:inline-block;position:sticky;left:0;z-index:2;padding:0;margin-bottom:2px}.mphb-group-availability-calendar-room-type__dates{display:flex;gap:4px}.mphb-group-availability-calendar-room-type__date{width:3em;height:2.25em;background-color:var(--color-room-type-date-default);border-radius:3px;flex-shrink:0}.mphb-group-availability-calendar-room-type .is-left-available{background-image:linear-gradient(to bottom right,var(--color-room-type-date-available) 50%,transparent 50%),linear-gradient(to top left,var(--color-room-type-date-default) 50%,transparent 50%)}.mphb-group-availability-calendar-room-type .is-left-not-available{background-image:linear-gradient(to bottom right,var(--color-room-type-date-not-available) 50%,transparent 50%),linear-gradient(to top left,var(--color-room-type-date-default) 50%,transparent 50%)}.mphb-group-availability-calendar-room-type .is-right-available{background-image:linear-gradient(to bottom right,var(--color-room-type-date-default) 50%,transparent 50%),linear-gradient(to top left,var(--color-room-type-date-available) 50%,transparent 50%)}.mphb-group-availability-calendar-room-type .is-right-not-available{background-image:linear-gradient(to bottom right,var(--color-room-type-date-default) 50%,transparent 50%),linear-gradient(to top left,var(--color-room-type-date-not-available) 50%,transparent 50%)}.mphb-group-availability-calendar-room-type .is-left-available.is-right-available{background:var(--color-room-type-date-available)}.mphb-group-availability-calendar-room-type .is-left-available.is-right-not-available{background-image:linear-gradient(to bottom right,var(--color-room-type-date-available) 50%,transparent 50%),linear-gradient(to top left,var(--color-room-type-date-not-available) 50%,transparent 50%)}.mphb-group-availability-calendar-room-type .is-left-not-available.is-right-available{background-image:linear-gradient(to bottom right,var(--color-room-type-date-not-available) 50%,transparent 50%),linear-gradient(to top left,var(--color-room-type-date-available) 50%,transparent 50%)}.mphb-group-availability-calendar-room-type .is-left-not-available.is-right-not-available{background:var(--color-room-type-date-not-available)}.mphb-date-navigation{display:flex;flex-wrap:wrap;gap:4px;font-size:1rem}.mphb-date-navigation .mphb-button{position:relative;color:inherit;background:#fff;border:1px solid #ddd;border-radius:3px;font-size:.875em;line-height:1;padding:.679em .85em;cursor:pointer;display:flex;align-items:center;text-transform:capitalize}.mphb-date-navigation .mphb-button:hover{background:#f5f5f9;border:1px solid #ddd}.mphb-date-navigation .mphb-button.is-active:after{content:"";display:block;width:7px;height:7px;position:absolute;right:5px;top:5px;border-radius:50%;background:#3cb692}.mphb-date-navigation .mphb-button .mphb-icon{margin-right:.3em;width:14px;fill:currentColor}.mphb-date-navigation .mphb-button--icon{padding-left:.75em;padding-right:.75em}.mphb-date-navigation .mphb-button--icon .mphb-icon{margin:0}.mphb-date-navigation__datepicker{position:relative;margin-right:auto}.mphb-date-navigation__datepicker .mphb-date-navigation__datepicker-button{display:inline-flex;align-items:center;padding:.679em .5em .679em .85em}@media screen and (min-width:768px){.mphb-date-navigation__datepicker .mphb-date-navigation__datepicker-button,.mphb-date-navigation__datepicker .mphb-date-navigation__datepicker-button:hover{background:none;border:none;box-shadow:none;text-decoration:none}}.mphb-date-navigation__datepicker .mphb-date-navigation__datepicker-button:after,.mphb-date-navigation__datepicker .mphb-date-navigation__datepicker-button:before{display:none}.mphb-date-navigation__datepicker .mphb-date-navigation__datepicker-button .mphb-icon{margin-left:5px}.mphb-date-navigation__datepicker-input{visibility:hidden;position:absolute;bottom:0;left:0;z-index:1}.mphb-loader{display:flex;align-items:center}.mphb-loader .mphb-icon{display:block;animation:spin 1s linear infinite;transform-origin:center}@keyframes spin{to{transform:rotate(360deg)}}
.mphb-hide{display:none!important}.mphb-table-centered{text-align:center}.mphb-table-centered td,.mphb-table-centered th{text-align:center}.mphb-centered{text-align:center}.mphb-right{text-align:right}.mphb-left{text-align:left}.mphb-date-input-width{width:105px}.mphb-subscript{color:#999}.mphb-hide{display:none!important}.mphb-clear{clear:both}.mphb-preloader{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/motopress-hotel-booking-lite/images/loading.gif?ver=6.2.3);width:20px;height:20px;display:inline-block}.mphb-price-period{border-bottom:1px dashed;cursor:help}.mphb-calendar{--mphb-available-date-bg:#cef093;--mphb-available-date-color:#000000;--mphb-not-available-date-bg:#dddddd;--mphb-not-available-date-color:#777777;--mphb-booked-date-bg:#dddddd;--mphb-booked-date-color:#777777;--mphb-out-of-season-date-bg:#dddddd;--mphb-out-of-season-date-color:#777777;--mphb-selected-date-bg:#404040;--mphb-selected-date-color:#ffffff;--mphb-unselectable-date-color:#777777}.mphb-calendar.mphb-loading .datepick{position:relative}.mphb-calendar.mphb-loading .datepick:before{content:'';left:0;right:0;top:0;bottom:0;position:absolute;background-color:rgba(255,255,255,.5);background-image:url(https://coralgablesclassof82.com/wp-content/plugins/motopress-hotel-booking-lite/images/loading.gif?ver=6.2.3);background-size:20px;background-position:center center;background-repeat:no-repeat;z-index:1}.mphb-calendar .datepick-month-header select{display:inline-block!important;width:auto!important}.mphb-calendar .datepick-month table{border-collapse:collapse;height:100%;margin-bottom:0}.mphb-calendar .datepick-month td{padding:0}.mphb-calendar .datepick-month td>span{height:100%}.mphb-calendar .datepick-month td a .mphb-date-cell__price,.mphb-calendar .datepick-month td span .mphb-date-cell__price{white-space:nowrap;overflow:hidden;word-break:keep-all;font-size:10px;padding:0;margin:0 .125em;width:auto;color:inherit;line-height:1.5}.mphb-calendar .datepick-month td a .mphb-date-cell__price span,.mphb-calendar .datepick-month td span .mphb-date-cell__price span{padding:0;display:inline;color:inherit}.mphb-calendar td .mphb-date-cell{color:var(--mphb-available-date-color,#000)}.mphb-calendar td .mphb-available-date{background-color:var(--mphb-available-date-bg,#cef093)}.mphb-calendar td .mphb-past-date{opacity:.15;background-color:#eee;color:#888}.mphb-calendar td .mphb-out-of-season-date--check-in{background:linear-gradient(to bottom right,var(--mphb-available-date-bg,#cef093) 0,var(--mphb-available-date-bg,#cef093) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-out-of-season-date--check-out{background:linear-gradient(to top left,var(--mphb-available-date-bg,#cef093) 0,var(--mphb-available-date-bg,#cef093) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-out-of-season-date--check-in.mphb-mark-as-unavailable--check-out{background:linear-gradient(to bottom right,var(--mphb-not-available-date-bg,#ddd) 0,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-out-of-season-date--check-out.mphb-mark-as-unavailable,.mphb-calendar td .mphb-out-of-season-date--check-out.mphb-mark-as-unavailable--check-in{background:linear-gradient(to top left,var(--mphb-not-available-date-bg,#ddd) 0,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-out-of-season-date,.mphb-calendar td .mphb-out-of-season-date--check-in.mphb-out-of-season-date--check-out{background:var(--mphb-out-of-season-date-bg,#ddd);color:var(--mphb-out-of-season-date-color,#777)}.mphb-calendar td .mphb-mark-as-unavailable--check-in{background:linear-gradient(to bottom right,var(--mphb-available-date-bg,#cef093) 0,var(--mphb-available-date-bg,#cef093) 50%,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-not-available-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-mark-as-unavailable--check-in.mphb-out-of-season-date,.mphb-calendar td .mphb-mark-as-unavailable--check-in.mphb-out-of-season-date--check-in.mphb-out-of-season-date--check-out{background:linear-gradient(to bottom right,var(--mphb-not-available-date-bg,#ddd) 0,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-mark-as-unavailable--check-out{background:linear-gradient(to top left,var(--mphb-available-date-bg,#cef093) 0,var(--mphb-available-date-bg,#cef093) 50%,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-not-available-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-mark-as-unavailable--check-out.mphb-out-of-season-date,.mphb-calendar td .mphb-mark-as-unavailable--check-out.mphb-out-of-season-date--check-in.mphb-out-of-season-date--check-out{background:linear-gradient(to bottom right,var(--mphb-not-available-date-bg,#ddd) 0,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-mark-as-unavailable,.mphb-calendar td .mphb-mark-as-unavailable--check-in.mphb-mark-as-unavailable--check-out{background:var(--mphb-not-available-date-bg,#ddd);color:var(--mphb-not-available-date-color,#777)}.mphb-calendar td .mphb-booked-date{background:var(--mphb-booked-date-bg,#ddd);color:var(--mphb-booked-date-color,#777)}.mphb-calendar td .mphb-date-check-in{color:var(--mphb-available-date-color,#000);background:linear-gradient(to bottom right,var(--mphb-available-date-bg,#cef093) 0,var(--mphb-available-date-bg,#cef093) 50%,var(--mphb-booked-date-bg,#ddd) 50%,var(--mphb-booked-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-date-check-in.mphb-mark-as-unavailable,.mphb-calendar td .mphb-date-check-in.mphb-mark-as-unavailable--check-out{color:var(--mphb-not-available-date-color,#777);background:linear-gradient(to bottom right,var(--mphb-not-available-date-bg,#ddd) 0,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-booked-date-bg,#ddd) 50%,var(--mphb-booked-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-date-check-in.mphb-out-of-season-date--check-out{color:var(--mphb-out-of-season-date-color,#777);background:linear-gradient(to top left,var(--mphb-booked-date-bg,#ddd) 0,var(--mphb-booked-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-date-check-in.mphb-unselectable-date--check-in,.mphb-calendar td .mphb-date-check-in.mphb-unselectable-date--check-out{color:var(--mphb-unselectable-date-color,#777)}.mphb-calendar td .mphb-date-check-out{background:linear-gradient(to top left,var(--mphb-available-date-bg,#cef093) 0,var(--mphb-available-date-bg,#cef093) 50%,var(--mphb-booked-date-bg,#ddd) 50%,var(--mphb-booked-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-date-check-out.mphb-mark-as-unavailable,.mphb-calendar td .mphb-date-check-out.mphb-mark-as-unavailable--check-in{color:var(--mphb-not-available-date-color,#777);background:linear-gradient(to bottom right,var(--mphb-booked-date-bg,#ddd) 0,var(--mphb-booked-date-bg,#ddd) 50%,var(--mphb-not-available-date-bg,#ddd) 50%,var(--mphb-not-available-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-date-check-out.mphb-out-of-season-date--check-in{color:var(--mphb-out-of-season-date-color,#777);background:linear-gradient(to bottom right,var(--mphb-booked-date-bg,#ddd) 0,var(--mphb-booked-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 50%,var(--mphb-out-of-season-date-bg,#ddd) 100%)}.mphb-calendar td .mphb-date-check-out.mphb-unselectable-date--check-in,.mphb-calendar td .mphb-date-check-out.mphb-unselectable-date--check-out{color:var(--mphb-unselectable-date-color,#777)}.mphb-calendar td .mphb-unselectable-date--check-in,.mphb-calendar td .mphb-unselectable-date--check-out{color:var(--mphb-unselectable-date-color,#777)}.mphb-calendar td .mphb-selectable-date--check-in:hover,.mphb-calendar td .mphb-selectable-date--check-out:hover,.mphb-calendar td .mphb-selected-date,.mphb-calendar td .mphb-selected-date--check-in,.mphb-calendar td .mphb-selected-date--check-in.mphb-date-check-out,.mphb-calendar td .mphb-selected-date--check-out,.mphb-calendar td .mphb-selected-date--check-out.mphb-date-check-in{background:var(--mphb-selected-date-bg,#89b63c);color:var(--mphb-selected-date-color,#777)}.mphb-calendar .datepick-ctrl{display:flex;background-color:#eee;color:#222;border-radius:.25em;font-weight:400}.mphb-calendar .datepick-ctrl a,.mphb-calendar .datepick-ctrl a:hover{color:inherit;background-color:transparent}.mphb-calendar .datepick-ctrl .mphb-calendar__selected-dates{width:100%;padding:0 .25em}.mphb-calendar .datepick-ctrl .datepick-cmd-clear{width:auto;padding:0 .25em;line-height:inherit}.mphb-booking-form.mphb-loading{position:relative}.mphb-booking-form.mphb-loading:before{content:'';left:0;right:0;top:0;bottom:0;position:absolute;background-color:rgba(255,255,255,.5);background-image:url(https://coralgablesclassof82.com/wp-content/plugins/motopress-hotel-booking-lite/images/loading.gif?ver=6.2.3);background-size:20px;background-position:center center;background-repeat:no-repeat;z-index:1}.datepick-popup.mphb-loading{position:relative;pointer-events:none}.datepick-popup.mphb-loading:before{content:'';left:0;right:0;top:0;bottom:0;position:absolute;background-color:rgba(255,255,255,.5);background-image:url(https://coralgablesclassof82.com/wp-content/plugins/motopress-hotel-booking-lite/images/loading.gif?ver=6.2.3);background-size:20px;background-position:center center;background-repeat:no-repeat;z-index:1}.mphb-datepick-popup .datepick-month-header select{display:inline-block!important;width:auto!important}.mphb-datepick-popup .datepick-month td .mphb-booked-date:not(.mphb-selectable-date){opacity:.5;background-color:#eee;color:#888}.mphb-datepick-popup .datepick-month td .mphb-past-date{opacity:.15;background-color:#eee;color:#888}.mphb-datepick-popup .datepick-month td .mphb-earlier-min-date,.mphb-datepick-popup .datepick-month td .mphb-later-max-date{opacity:.5;background-color:#eee;color:#888}.mphb-datepick-popup .datepick-month td .mphb-earlier-check-in-date{opacity:.15;background-color:#eee;color:#888}.mphb-datepick-popup .datepick-month td .mphb-check-in-date{background-color:#cef093}.mphb-datepick-popup .datepick-month td a.datepick-today{background-color:#fffaf0}.mphb-datepick-popup .datepick-month td a.datepick-highlight,.mphb-datepick-popup .datepick-month td a.datepick-selected{background-color:#404040;color:#fff}.mphb-datepick-popup .datepick-month td span.mphb-check-in-date{background-color:#606060;color:#fff}.mphb-datepick-popup .mphb-selectable-date{cursor:pointer}@media screen and (min-width:769px){.mphb_sc_availability_calendar-wrapper .mphb-calendar[data-monthstoshow$="1"] .datepick-month{width:100%}.mphb_sc_availability_calendar-wrapper .mphb-calendar[data-monthstoshow$="2"] .datepick-month{width:50%}.mphb_sc_availability_calendar-wrapper .mphb-calendar[data-monthstoshow$="3"] .datepick-month{width:33.33%}.mphb_sc_availability_calendar-wrapper .mphb-calendar[data-monthstoshow$="4"] .datepick-month{width:25%}.mphb_sc_availability_calendar-wrapper .mphb-calendar[data-monthstoshow$="5"] .datepick-month{width:20%}}.mphb_widget_rooms-wrapper .mphb-widget-room-type-book-button,.mphb_widget_rooms-wrapper .mphb-widget-room-type-price,.mphb_widget_rooms-wrapper .mphb-widget-room-type-title{margin:1em 0}.mphb_widget_rooms-wrapper .mphb-widget-room-type-attributes,.mphb_widget_rooms-wrapper .mphb-widget-room-type-description,.mphb_widget_rooms-wrapper .mphb-widget-room-type-featured-image{margin:1em 0}.mphb_widget_rooms-wrapper .mphb-widget-room-type-price .mphb-price,.mphb_widget_rooms-wrapper .mphb-widget-room-type-title>a{font-weight:700}.mphb_widget_rooms-wrapper .mphb-room-type:not(:first-of-type){margin-top:2em}.mphb_sc_rooms-wrapper .mphb-room-type:not(:first-of-type),.mphb_sc_search_results-wrapper .mphb-room-type:not(:first-of-type),.mphb_sc_services-wrapper .mphb-service:not(:first-of-type){margin-top:4em}.mphb_cb_checkout_form>.mphb-checkout-section:not(:first-of-type),.mphb_sc_checkout-form>.mphb-checkout-section:not(:first-of-type){margin-top:4em}.mphb_cb_checkout_form .mphb_checkout-service-quantity,.mphb_sc_checkout-form .mphb_checkout-service-quantity{width:100px;display:inline-block}.mphb_cb_checkout_form .mphb-price-breakdown .mphb-price-breakdown-expand>.mphb-inner-icon,.mphb_sc_checkout-form .mphb-price-breakdown .mphb-price-breakdown-expand>.mphb-inner-icon{font-family:sans-serif;font-size:1em;margin-right:.75em;border:1px solid currentColor;width:1em;height:1em;line-height:1em;display:inline-block;text-align:center;box-sizing:content-box;pointer-events:none}.mphb_cb_checkout_form .mphb-price-breakdown .mphb-table-price-column,.mphb_sc_checkout-form .mphb-price-breakdown .mphb-table-price-column{width:33%}.mphb_cb_checkout_form .mphb-gateways-list,.mphb_sc_checkout-form .mphb-gateways-list{list-style:none}.mphb_cb_checkout_form .mphb-gateways-list>li,.mphb_sc_checkout-form .mphb-gateways-list>li{margin-top:1em}.mphb_cb_checkout_form .mphb-billing-fields,.mphb_sc_checkout-form .mphb-billing-fields{margin-bottom:1em;border:none}.mphb_cb_checkout_form .mphb-billing-fields-hidden,.mphb_sc_checkout-form .mphb-billing-fields-hidden{display:none}.mphb_cb_checkout_form .mphb-billing-fields input[data-beanstream-id],.mphb_sc_checkout-form .mphb-billing-fields input[data-beanstream-id]{background-position:right center;background-repeat:no-repeat}.mphb_cb_checkout_form .mphb-billing-fields fieldset,.mphb_sc_checkout-form .mphb-billing-fields fieldset{border:none;padding:0}.mphb_cb_checkout_form .mphb-terms-and-conditions,.mphb_sc_checkout-form .mphb-terms-and-conditions{margin-bottom:0;padding-left:2em;padding-right:2em;max-height:0;overflow:hidden;transition:margin-bottom .2s linear,padding .2s linear,max-height .4s linear;background:rgba(0,0,0,.05)}.mphb_cb_checkout_form .mphb-terms-and-conditions.mphb-active,.mphb_sc_checkout-form .mphb-terms-and-conditions.mphb-active{margin-bottom:1em;padding-top:2em;padding-bottom:2em;max-height:200px;overflow:auto}.mphb_sc_checkout-wrapper .mphb-login-form-wrap{margin-bottom:4em}.mphb_cb_checkout_form>.mphb-checkout-section:not(:first-of-type){margin-top:0}.mphb_checkout-services-list,.mphb_sc_checkout-services-list{list-style:none}.mphb_sc_search_results-wrapper .mphb-reservation-cart{margin-bottom:4em}.mphb_sc_search_results-wrapper .mphb-reservation-cart .mphb-reservation-details{float:left}.mphb_sc_search_results-wrapper .mphb-reservation-cart .mphb-cart-message{margin-bottom:0}.mphb_sc_search_results-wrapper .mphb-reservation-cart .mphb-confirm-reservation{float:right}.mphb_sc_search_results-wrapper .mphb-reservation-cart.mphb-empty-cart .mphb-cart-message,.mphb_sc_search_results-wrapper .mphb-reservation-cart.mphb-empty-cart .mphb-cart-total-price,.mphb_sc_search_results-wrapper .mphb-reservation-cart.mphb-empty-cart .mphb-confirm-reservation{display:none!important}.mphb_sc_search_results-wrapper .mphb-reservation-cart:not(.mphb-empty-cart) .mphb-empty-cart-message{display:none!important}.mphb_sc_search_results-wrapper .mphb-reserve-room-section:not(.mphb-rooms-added) .mphb-confirm-reservation,.mphb_sc_search_results-wrapper .mphb-reserve-room-section:not(.mphb-rooms-added) .mphb-rooms-reservation-message-wrapper{display:none!important}.mphb_sc_search_results-wrapper .mphb-reserve-room-section .mphb-rooms-reservation-message-wrapper .mphb-remove-from-reservation{float:right}.mphb_sc_search_results-wrapper .mphb-recommendation-details-list:after{content:'';display:table;clear:both}.mphb_sc_search_results-wrapper .mphb-recommendation .mphb-recommendation-item-guests{display:block}.mphb_sc_search_results-wrapper .mphb-recommendation .mphb-recommedation-item-subtotal{float:right;margin-left:1em}.mphb_sc_search_results-wrapper .mphb-recommendation .mphb-recommendation-total{float:right}.mphb_sc_search_results-wrapper .mphb-recommendation .mphb-recommendation-reserve-button{float:right;clear:right}.mphb_sc_booking_confirmation .mphb-booking-details-section+.mphb-booking-details-section{margin-top:2em}.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap}.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li{flex:1 0 100%;padding-left:0;margin:0 0 .5em 0}@media screen and (min-width:768px){.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li{flex:1 0 auto;margin:0 1.5em 1.5em 0;padding-right:1.5em;border-right:1px dashed #d3ced2}}.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li:last-of-type{border:none;margin-right:0;padding-right:0}@media screen and (min-width:768px){.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li span.label{display:block;font-size:.85em}}.mphb_sc_booking_confirmation .mphb-booking-details-section .mphb-booking-details>li span.value{font-weight:700}.mphb_sc_account:after{content:'';display:table;clear:both}@media screen and (min-width:768px){.mphb_sc_account .mphb-account-menu{float:left;width:25%}}@media screen and (min-width:768px){.mphb_sc_account .mphb-account-content{float:right;width:73%}}.mphb_sc_account .mphb-account-bookings{table-layout:auto;font-size:.85em}@media screen and (max-width:767px){.mphb_sc_account .mphb-account-bookings thead{display:none}.mphb_sc_account .mphb-account-bookings tr{display:block;margin-bottom:1em}.mphb_sc_account .mphb-account-bookings tr:last-child{margin-bottom:0}.mphb_sc_account .mphb-account-bookings td{display:block;text-align:right}.mphb_sc_account .mphb-account-bookings td:before{content:attr(data-title) ": ";float:left;font-weight:700}}#mphb-stripe-payment-methods>ul{cursor:pointer;margin:0 0 .5em 0;padding:0;list-style:none}#mphb-stripe-payment-methods .mphb-stripe-payment-method{display:inline-block;margin:0 1.5em 0 0;padding-top:.5em;padding-bottom:.5em}#mphb-stripe-payment-methods .mphb-stripe-payment-method:last-of-type{margin-right:0}#mphb-stripe-payment-methods .mphb-stripe-payment-method.active label{box-shadow:0 2px currentColor}#mphb-stripe-payment-methods .mphb-stripe-payment-method label{cursor:pointer}#mphb-stripe-payment-methods .mphb-stripe-payment-method input[type=radio]{display:none}.mphb-stripe-payment-container{margin-bottom:1em}.mphb-stripe-payment-container .StripeElement{box-sizing:border-box;padding:15px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 6px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-top:.5em;margin-bottom:.5em}.mphb-stripe-payment-container .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mphb-stripe-payment-container .StripeElement--invalid{border-color:#fa755a}.mphb-stripe-payment-container .StripeElement--webkit-autofill{background-color:#fefde5!important}#mphb-stripe-errors{color:#e25950}
/*!
              - C S S -
        VERSION 1.0.0 - DATE: 2023-01-06
	@author: Krisztian Horvath ThemePunch OHG.
        - Slider Revolution 7.0 -

        GET LICENSE AT:
https://www.themepunch.com/links/slider_revolution_wordpress_regular_license

LICENSE:
Copyright (c) 2023, ThemePunch. All rights reserved.
This work is subject to the terms at https://www.themepunch.com/links/slider_revolution_wordpress_regular_license (Regular / Extended)
*/.rs-p-wp-fix{display:none!important;margin:0!important;height:0!important}body{--sr-7-css-loaded:1}.wp-block-themepunch-revslider{position:relative}.wp-block-themepunch-revslider.revslider{margin:0}canvas.sr7-pbar{z-index:500;position:absolute;pointer-events:none}sr7-module{display:block;position:relative;overflow-x:visible;-webkit-tap-highlight-color:transparent}sr7-adjuster{position:relative;display:block;width:100%}sr7-content{position:absolute;top:0;height:100%;contain:size layout style;z-index:1;overflow-x:visible}sr7-carousel{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:1}sr7-slide{position:absolute;width:100%;height:100%;contain:strict;top:0;left:0;z-index:1;visibility:hidden;pointer-events:none}.sr7-overflow-force sr7-slide,sr7-carousel sr7-slide{contain:layout style}sr7-module-bg{top:0;z-index:0;position:absolute}sr7-3dwrap{pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}sr7-overlay{display:block;width:100%;height:100%;top:0;left:0;position:absolute;z-index:3;background-repeat:repeat}sr7-btn,sr7-col,sr7-content .sr7-layer,sr7-grp,sr7-img,sr7-layer,sr7-linebrk,sr7-row,sr7-shp,sr7-svg,sr7-txt,sr7-zone{user-select:none;visibility:hidden;display:none;box-sizing:border-box;backface-visibility:hidden}sr7-col-bg.sr7-img-col-bg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;pointer-events:none}.sr7-layer[data-subtype=slidebg],sr7bg{pointer-events:none}sr7-content .sr7-layer.sr7-withclip,sr7-content .sr7-layer.sr7-withclip .sr7-layer{backface-visibility:visible}sr7-grp.sr7-clear:after{content:"";clear:both;display:block;height:0}sr7-zone{pointer-events:none}sr7-row.sr7-layer.sr7-galign{box-sizing:border-box}.sr7-layer[data-type=svg]>svg,sr7-layer[data-type=svg]>svg{width:100%;height:100%}sr7-row-con{table-layout:fixed;font-size:0;display:block}sr7-module .sr7-layer,sr7-module sr7-layer{-webkit-font-smoothing:antialiased!important;-webkit-tap-highlight-color:transparent;-moz-osx-font-smoothing:grayscale;font-display:swap}sr7-slide.sr7-staticslide-low{z-index:0!important}sr7-slide.sr7-staticslide-high{z-index:105!important}@-moz-document url-prefix(){sr7-slide.sr7-staticslide{transform:scale(1)}}sr7-slide a{transition:none}sr7-module.sr7-top-fixed{width:100%;height:auto!important;backface-visibility:hidden}sr7-module.sr7-top-fixed sr7-adjuster{height:auto!important}sr7-module.sr7-top-fixed sr7-content,sr7-module.sr7-top-fixed sr7-content .sr7-layer:not(.sr7-ignore-pe) *{pointer-events:none}sr7-prl{top:50%;left:50%;z-index:10000;position:absolute}sr7-prl.off{display:none!important}sr7-prl.sr7-fade-in{animation:tp-fade-in 1s linear}.sr-force-hidden{display:none!important}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes tp-fade-in{0%{opacity:0}20%{opacity:0}100%{opacity:100}}@keyframes tp-rotate{100%{transform:rotate(360deg)}}sr7-fonttest{width:auto;display:inline-block;white-space:nowrap;font-size:12px;color:#000}sr7-fonttest-wrap{position:absolute;contain:strict;top:-1500px;left:-1500px;width:1500px;height:1000px;pointer-events:none;opacity:0}.fn-wrap{display:flex;position:fixed;width:100px;height:50px;z-index:100;background-color:rgba(66,66,66,.2);justify-content:space-around;align-items:center;bottom:0;left:50%;transform:translateX(-50%)}.fn-left,.fn-right{display:flex;width:40px;height:40px;justify-content:center;align-items:center;background-color:gray;color:#fff;font-weight:700;font-size:20px;cursor:pointer}.sr7-layer .materical-icons,sr7-module .material-icons,sr7-txt .material-icons{font-size:inherit;vertical-align:top;line-height:inherit}#sr-announcer{position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
/* 
This CSS file is used to apply front-end styles for the Stripe Payments plugin.

This CSS file is enqueued from the front-end using the 'stripe-handler-ng-style' handler. So it will be available on every page of the front end.

Used in the [asp_product] shortcode also.
CSS class names should use dashes. Example: asp-product-description
*/

/* Small Spinner */
.asp-spinner {
    text-indent: -9999px;
    vertical-align: middle;
    margin-left: 5px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    animation: asp-spinner .6s linear infinite;
}

@keyframes asp-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Button Spinner */
.asp-btn-spinner-container {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.asp-btn-spinner {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.asp-btn-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #6fcef3;
    border-radius: 50%;
    animation: asp-btn-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #6fcef3 transparent transparent transparent;
}

.asp-btn-spinner div:nth-child(1) {
    animation-delay: -0.45s;
}

.asp-btn-spinner div:nth-child(2) {
    animation-delay: -0.3s;
}

.asp-btn-spinner div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes asp-btn-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.asp_line_through {
    text-decoration: line-through;
}

.asp_product_coupon_input_container {
    margin: 5px 0 10px 0;
}

.asp_btn_normalize {
    text-transform: none;
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
}

&::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.asp_product_custom_field_error {
    display: none;
    color: red;
}

.asp_out_of_stock {
    font-weight: bold;
}

.asp_product_buy_button input, .asp_product_buy_button select {
    display: inline-block;
    line-height: 1;
    padding: 8px 10px;
    height: auto;
}

.asp_product_custom_field_label {
    margin-right: 10px;
}

.asp-product-variations-label {
    margin-right: 10px;
}

.asp_product_coupon_field_label {
    margin-right: 10px;
}

.asp_product_coupon_input_container input.asp_product_coupon_field_input {
    width: auto;
    max-width: 200px;
    margin-right: 10px;
}

.asp_product_buy_btn_container {
    display: inline-block;
}

.asp_product_buy_button input::placeholder {
    font-style: italic;
    color: #bbb;
}

@keyframes blink {
    0% {
        opacity: .2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.asp-processing-cont {
    display: none !important;
}

.asp-processing i {
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.asp-processing i:nth-child(2) {
    animation-delay: .1s;
}

.asp-processing i:nth-child(3) {
    animation-delay: .2s;
}

.asp-popup-iframe {
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.004);
    border: 0px none transparent;
    overflow: auto;
    -webkit-overflow-scrolling: touch !important;
    visibility: visible;
    margin: 0px;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.asp-popup-iframe-cont {
    align-items: center;
    justify-content: center;
    z-index: 2147483647;
    background: rgba(0, 0, 0, .3);
    border: 0px none transparent;
    overflow: auto;
    -webkit-overflow-scrolling: touch !important;
    visibility: visible;
    margin: 0px;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.asp-popup-spinner-cont {
    text-align: center;
    height: 85px;
    padding-top: 10px;
}

@media (max-width: 500px) {
    .asp_product_buy_btn_container {
        display: block;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }
}

/* Start of 'Thank You' page shortcode related CSS */
.asp-order-data-box {
    display: flex;
    border-style: solid;
    border-color: lightgrey;
    border-width: 1px 0 0 1px;
    width: 100%;
 }

.asp-order-data-box-col{
    border-style: solid;
    border-color: lightgrey;
    border-width: 0 1px 1px 0;
    word-break: break-all;
    flex-grow: 1;
    padding: 15px;
}

.asp-order-data-box-col :first-child {
    font-weight: bold;
    margin-bottom: 10px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .asp-order-data-box {
        flex-direction: column;
    }
}

.asp-order-details-table,
.asp-order-downloads-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid lightgray;
}

.asp-order-details-table td,
.asp-order-details-table th,
.asp-order-downloads-table td,
.asp-order-downloads-table th {
    padding: 15px;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}

.asp-order-shipping-address,
.asp-order-billing-address {
    padding: 15px;
    border: 1px solid lightgray;
    white-space: pre-line;
}
/* End of 'Thank You' page shortcode related CSS */
.woocommerce img.pswp__img,.woocommerce-page img.pswp__img{max-width:none}button.pswp__button{box-shadow:none!important;background-image:url('https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png')!important}button.pswp__button,button.pswp__button--arrow--left::before,button.pswp__button--arrow--right::before,button.pswp__button:hover{background-color:transparent!important}button.pswp__button--arrow--left,button.pswp__button--arrow--left:hover,button.pswp__button--arrow--right,button.pswp__button--arrow--right:hover{background-image:none!important}button.pswp__button--close:hover{background-position:0 -44px}button.pswp__button--zoom:hover{background-position:-88px 0}/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */.pswp{display:none;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;-ms-touch-action:none;touch-action:none;z-index:1500;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp img{max-width:none}.admin-bar .pswp{height:calc(100% - var(--wp-admin--admin-bar--height,0px));top:var(--wp-admin--admin-bar--height,0)}.pswp--animate_opacity{opacity:.001;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4, 0, .22, 1);transition:opacity 333ms cubic-bezier(.4, 0, .22, 1)}.pswp--open{display:block}.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--dragging .pswp__img{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp__bg{position:absolute;left:0;top:0;width:100%;height:100%;background:#000;opacity:0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;will-change:opacity}.pswp__scroll-wrap{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden}.pswp__container,.pswp__zoom-wrap{-ms-touch-action:none;touch-action:none;position:absolute;left:0;right:0;top:0;bottom:0}.pswp__container,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.pswp__zoom-wrap{position:absolute;width:100%;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;-webkit-transition:-webkit-transform 333ms cubic-bezier(.4, 0, .22, 1);transition:transform 333ms cubic-bezier(.4, 0, .22, 1)}.pswp__bg{will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4, 0, .22, 1);transition:opacity 333ms cubic-bezier(.4, 0, .22, 1)}.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap{-webkit-transition:none;transition:none}.pswp__container,.pswp__zoom-wrap{-webkit-backface-visibility:hidden}.pswp__item{position:absolute;left:0;right:0;top:0;bottom:0;overflow:hidden}.pswp__img{position:absolute;width:auto;height:auto;top:0;left:0}.pswp__img--placeholder{-webkit-backface-visibility:hidden}.pswp__img--placeholder--blank{background:#222}.pswp--ie .pswp__img{width:100%!important;height:auto!important;left:0;top:0}.pswp__error-msg{position:absolute;left:0;top:50%;width:100%;text-align:center;font-size:14px;line-height:16px;margin-top:-8px;color:#ccc}.pswp__error-msg a{color:#ccc;text-decoration:underline}
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */.pswp__button{width:44px;height:44px;position:relative;background:0 0;cursor:pointer;overflow:visible;-webkit-appearance:none;display:block;border:0;padding:0;margin:0;float:left;opacity:.75;-webkit-transition:opacity .2s;transition:opacity .2s;-webkit-box-shadow:none;box-shadow:none}.pswp__button:focus,.pswp__button:hover{opacity:1}.pswp__button:active{outline:0;opacity:.9}.pswp__button::-moz-focus-inner{padding:0;border:0}.pswp__ui--over-close .pswp__button--close{opacity:1}.pswp__button,.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{background:url(https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.png) 0 0 no-repeat;background-size:264px 88px;width:44px;height:44px}@media (-webkit-min-device-pixel-ratio:1.1),(-webkit-min-device-pixel-ratio:1.09375),(min-resolution:105dpi),(min-resolution:1.1dppx){.pswp--svg .pswp__button,.pswp--svg .pswp__button--arrow--left:before,.pswp--svg .pswp__button--arrow--right:before{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg)}.pswp--svg .pswp__button--arrow--left,.pswp--svg .pswp__button--arrow--right{background:0 0}}.pswp__button--close{background-position:0 -44px}.pswp__button--share{background-position:-44px -44px}.pswp__button--fs{display:none}.pswp--supports-fs .pswp__button--fs{display:block}.pswp--fs .pswp__button--fs{background-position:-44px 0}.pswp__button--zoom{display:none;background-position:-88px 0}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__button--zoom{background-position:-132px 0}.pswp--touch .pswp__button--arrow--left,.pswp--touch .pswp__button--arrow--right{visibility:hidden}.pswp__button--arrow--left,.pswp__button--arrow--right{background:0 0;top:50%;margin-top:-50px;width:70px;height:100px;position:absolute}.pswp__button--arrow--left{left:0}.pswp__button--arrow--right{right:0}.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{content:'';top:35px;background-color:rgba(0,0,0,.3);height:30px;width:32px;position:absolute}.pswp__button--arrow--left:before{left:6px;background-position:-138px -44px}.pswp__button--arrow--right:before{right:6px;background-position:-94px -44px}.pswp__counter,.pswp__share-modal{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pswp__share-modal{display:block;background:rgba(0,0,0,.5);width:100%;height:100%;top:0;left:0;padding:10px;position:absolute;z-index:1600;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;-webkit-backface-visibility:hidden;will-change:opacity}.pswp__share-modal--hidden{display:none}.pswp__share-tooltip{z-index:1620;position:absolute;background:#fff;top:56px;border-radius:2px;display:block;width:auto;right:44px;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.25);box-shadow:0 2px 5px rgba(0,0,0,.25);-webkit-transform:translateY(6px);-ms-transform:translateY(6px);transform:translateY(6px);-webkit-transition:-webkit-transform .25s;transition:transform .25s;-webkit-backface-visibility:hidden;will-change:transform}.pswp__share-tooltip a{display:block;padding:8px 12px;color:#000;text-decoration:none;font-size:14px;line-height:18px}.pswp__share-tooltip a:hover{text-decoration:none;color:#000}.pswp__share-tooltip a:first-child{border-radius:2px 2px 0 0}.pswp__share-tooltip a:last-child{border-radius:0 0 2px 2px}.pswp__share-modal--fade-in{opacity:1}.pswp__share-modal--fade-in .pswp__share-tooltip{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.pswp--touch .pswp__share-tooltip a{padding:16px 12px}a.pswp__share--facebook:before{content:'';display:block;width:0;height:0;position:absolute;top:-12px;right:15px;border:6px solid transparent;border-bottom-color:#fff;-webkit-pointer-events:none;-moz-pointer-events:none;pointer-events:none}a.pswp__share--facebook:hover{background:#3e5c9a;color:#fff}a.pswp__share--facebook:hover:before{border-bottom-color:#3e5c9a}a.pswp__share--twitter:hover{background:#55acee;color:#fff}a.pswp__share--pinterest:hover{background:#ccc;color:#ce272d}a.pswp__share--download:hover{background:#ddd}.pswp__counter{position:relative;left:0;top:0;height:44px;font-size:13px;line-height:44px;color:#fff;opacity:.75;padding:0 10px;margin-inline-end:auto}.pswp__caption{position:absolute;left:0;bottom:0;width:100%;min-height:44px}.pswp__caption small{font-size:11px;color:#bbb}.pswp__caption__center{text-align:left;max-width:420px;margin:0 auto;font-size:13px;padding:10px;line-height:20px;color:#ccc}.pswp__caption--empty{display:none}.pswp__caption--fake{visibility:hidden}.pswp__preloader{width:44px;height:44px;position:absolute;top:0;left:50%;margin-left:-22px;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;will-change:opacity;direction:ltr}.pswp__preloader__icn{width:20px;height:20px;margin:12px}.pswp__preloader--active{opacity:1}.pswp__preloader--active .pswp__preloader__icn{background:url(https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/preloader.gif) 0 0 no-repeat}.pswp--css_animation .pswp__preloader--active{opacity:1}.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn{-webkit-animation:clockwise .5s linear infinite;animation:clockwise .5s linear infinite}.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut{-webkit-animation:donut-rotate 1s cubic-bezier(.4,0,.22,1) infinite;animation:donut-rotate 1s cubic-bezier(.4,0,.22,1) infinite}.pswp--css_animation .pswp__preloader__icn{background:0 0;opacity:.75;width:14px;height:14px;position:absolute;left:15px;top:15px;margin:0}.pswp--css_animation .pswp__preloader__cut{position:relative;width:7px;height:14px;overflow:hidden}.pswp--css_animation .pswp__preloader__donut{-webkit-box-sizing:border-box;box-sizing:border-box;width:14px;height:14px;border:2px solid #fff;border-radius:50%;border-left-color:transparent;border-bottom-color:transparent;position:absolute;top:0;left:0;background:0 0;margin:0}@media screen and (max-width:1024px){.pswp__preloader{position:relative;left:auto;top:auto;margin:0;float:right}}@-webkit-keyframes clockwise{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes clockwise{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes donut-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes donut-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}50%{-webkit-transform:rotate(-140deg);transform:rotate(-140deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}.pswp__ui{-webkit-font-smoothing:auto;visibility:visible;opacity:1;z-index:1550}.pswp__top-bar{position:absolute;left:0;top:0;height:44px;width:100%;display:flex;justify-content:flex-end}.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right,.pswp__caption,.pswp__top-bar{-webkit-backface-visibility:hidden;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4, 0, .22, 1);transition:opacity 333ms cubic-bezier(.4, 0, .22, 1)}.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right{visibility:visible}.pswp__caption,.pswp__top-bar{background-color:rgba(0,0,0,.5)}.pswp__ui--fit .pswp__caption,.pswp__ui--fit .pswp__top-bar{background-color:rgba(0,0,0,.3)}.pswp__ui--idle .pswp__top-bar{opacity:0}.pswp__ui--idle .pswp__button--arrow--left,.pswp__ui--idle .pswp__button--arrow--right{opacity:0}.pswp__ui--hidden .pswp__button--arrow--left,.pswp__ui--hidden .pswp__button--arrow--right,.pswp__ui--hidden .pswp__caption,.pswp__ui--hidden .pswp__top-bar{opacity:.001}.pswp__ui--one-slide .pswp__button--arrow--left,.pswp__ui--one-slide .pswp__button--arrow--right,.pswp__ui--one-slide .pswp__counter{display:none}.pswp__element--disabled{display:none!important}.pswp--minimal--dark .pswp__top-bar{background:0 0}
:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}.woocommerce .woocommerce-error .button,.woocommerce .woocommerce-info .button,.woocommerce .woocommerce-message .button,.woocommerce-page .woocommerce-error .button,.woocommerce-page .woocommerce-info .button,.woocommerce-page .woocommerce-message .button{float:right}.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%}.woocommerce .col2-set::after,.woocommerce .col2-set::before,.woocommerce-page .col2-set::after,.woocommerce-page .col2-set::before{content:" ";display:table}.woocommerce .col2-set::after,.woocommerce-page .col2-set::after{clear:both}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1{float:left;width:48%}.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:right;width:48%}.woocommerce img,.woocommerce-page img{height:auto;max-width:100%}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{float:left;width:48%}.woocommerce #content div.product div.thumbnails::after,.woocommerce #content div.product div.thumbnails::before,.woocommerce div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::before,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::before,.woocommerce-page div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::before{content:" ";display:table}.woocommerce #content div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::after{clear:both}.woocommerce #content div.product div.thumbnails a,.woocommerce div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a{float:left;width:30.75%;margin-right:3.8%;margin-bottom:1em}.woocommerce #content div.product div.thumbnails a.last,.woocommerce div.product div.thumbnails a.last,.woocommerce-page #content div.product div.thumbnails a.last,.woocommerce-page div.product div.thumbnails a.last{margin-right:0}.woocommerce #content div.product div.thumbnails a.first,.woocommerce div.product div.thumbnails a.first,.woocommerce-page #content div.product div.thumbnails a.first,.woocommerce-page div.product div.thumbnails a.first{clear:both}.woocommerce #content div.product div.thumbnails.columns-1 a,.woocommerce div.product div.thumbnails.columns-1 a,.woocommerce-page #content div.product div.thumbnails.columns-1 a,.woocommerce-page div.product div.thumbnails.columns-1 a{width:100%;margin-right:0;float:none}.woocommerce #content div.product div.thumbnails.columns-2 a,.woocommerce div.product div.thumbnails.columns-2 a,.woocommerce-page #content div.product div.thumbnails.columns-2 a,.woocommerce-page div.product div.thumbnails.columns-2 a{width:48%}.woocommerce #content div.product div.thumbnails.columns-4 a,.woocommerce div.product div.thumbnails.columns-4 a,.woocommerce-page #content div.product div.thumbnails.columns-4 a,.woocommerce-page div.product div.thumbnails.columns-4 a{width:22.05%}.woocommerce #content div.product div.thumbnails.columns-5 a,.woocommerce div.product div.thumbnails.columns-5 a,.woocommerce-page #content div.product div.thumbnails.columns-5 a,.woocommerce-page div.product div.thumbnails.columns-5 a{width:16.9%}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{float:right;width:48%;clear:none}.woocommerce #content div.product .woocommerce-tabs,.woocommerce div.product .woocommerce-tabs,.woocommerce-page #content div.product .woocommerce-tabs,.woocommerce-page div.product .woocommerce-tabs{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::before{content:" ";display:table}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li{display:inline-block}.woocommerce #content div.product #reviews .comment::after,.woocommerce #content div.product #reviews .comment::before,.woocommerce div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::before,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::before,.woocommerce-page div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::before{content:" ";display:table}.woocommerce #content div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::after{clear:both}.woocommerce #content div.product #reviews .comment img,.woocommerce div.product #reviews .comment img,.woocommerce-page #content div.product #reviews .comment img,.woocommerce-page div.product #reviews .comment img{float:right;height:auto}.woocommerce ul.products,.woocommerce-page ul.products{clear:both}.woocommerce ul.products::after,.woocommerce ul.products::before,.woocommerce-page ul.products::after,.woocommerce-page ul.products::before{content:" ";display:table}.woocommerce ul.products::after,.woocommerce-page ul.products::after{clear:both}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{float:left;margin:0 3.8% 2.992em 0;padding:0;position:relative;width:22.05%;margin-left:0}.woocommerce ul.products li.first,.woocommerce-page ul.products li.first{clear:both}.woocommerce ul.products li.last,.woocommerce-page ul.products li.last{margin-right:0}.woocommerce ul.products.columns-1 li.product,.woocommerce-page ul.products.columns-1 li.product{width:100%;margin-right:0}.woocommerce ul.products.columns-2 li.product,.woocommerce-page ul.products.columns-2 li.product{width:48%}.woocommerce ul.products.columns-3 li.product,.woocommerce-page ul.products.columns-3 li.product{width:30.75%}.woocommerce ul.products.columns-5 li.product,.woocommerce-page ul.products.columns-5 li.product{width:16.95%}.woocommerce ul.products.columns-6 li.product,.woocommerce-page ul.products.columns-6 li.product{width:13.5%}.woocommerce-page.columns-1 ul.products li.product,.woocommerce.columns-1 ul.products li.product{width:100%;margin-right:0}.woocommerce-page.columns-2 ul.products li.product,.woocommerce.columns-2 ul.products li.product{width:48%}.woocommerce-page.columns-3 ul.products li.product,.woocommerce.columns-3 ul.products li.product{width:30.75%}.woocommerce-page.columns-5 ul.products li.product,.woocommerce.columns-5 ul.products li.product{width:16.95%}.woocommerce-page.columns-6 ul.products li.product,.woocommerce.columns-6 ul.products li.product{width:13.5%}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{float:left}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:right}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce .woocommerce-pagination ul.page-numbers::before,.woocommerce-page .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::before{content:" ";display:table}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::after{clear:both}.woocommerce .woocommerce-pagination ul.page-numbers li,.woocommerce-page .woocommerce-pagination ul.page-numbers li{display:inline-block}.woocommerce #content table.cart img,.woocommerce table.cart img,.woocommerce-page #content table.cart img,.woocommerce-page table.cart img{height:auto}.woocommerce #content table.cart td.actions,.woocommerce table.cart td.actions,.woocommerce-page #content table.cart td.actions,.woocommerce-page table.cart td.actions{text-align:right}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:80px}.woocommerce #content table.cart td.actions .coupon,.woocommerce table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon{float:left}.woocommerce .cart-collaterals,.woocommerce-page .cart-collaterals{width:100%}.woocommerce .cart-collaterals::after,.woocommerce .cart-collaterals::before,.woocommerce-page .cart-collaterals::after,.woocommerce-page .cart-collaterals::before{content:" ";display:table}.woocommerce .cart-collaterals::after,.woocommerce-page .cart-collaterals::after{clear:both}.woocommerce .cart-collaterals .related,.woocommerce-page .cart-collaterals .related{width:30.75%;float:left}.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:48%;float:left}.woocommerce .cart-collaterals .cross-sells ul.products,.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none}.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:48%}.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator{width:48%;clear:right;float:right}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce .cart-collaterals .shipping_calculator::before,.woocommerce-page .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::before{content:" ";display:table}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals{float:right;width:48%}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.cart_list li::before,.woocommerce-page ul.product_list_widget li::after,.woocommerce-page ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.cart_list li img,.woocommerce-page ul.product_list_widget li img{float:right;height:auto}.woocommerce form .form-row::after,.woocommerce form .form-row::before,.woocommerce-page form .form-row::after,.woocommerce-page form .form-row::before{content:" ";display:table}.woocommerce form .form-row::after,.woocommerce-page form .form-row::after{clear:both}.woocommerce form .form-row label,.woocommerce-page form .form-row label{display:block}.woocommerce form .form-row label.checkbox,.woocommerce-page form .form-row label.checkbox{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{width:100%}.woocommerce form .form-row .input-text,.woocommerce-page form .form-row .input-text{box-sizing:border-box;width:100%}.woocommerce form .form-row-first,.woocommerce form .form-row-last,.woocommerce-page form .form-row-first,.woocommerce-page form .form-row-last{width:47%;overflow:visible}.woocommerce form .form-row-first,.woocommerce-page form .form-row-first{float:left}.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:right}.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide{clear:both}.woocommerce form .password-input,.woocommerce-page form .password-input{display:flex;flex-direction:column;justify-content:center;position:relative}.woocommerce form .password-input input[type=password],.woocommerce-page form .password-input input[type=password]{padding-right:2.5rem}.woocommerce form .password-input input::-ms-reveal,.woocommerce-page form .password-input input::-ms-reveal{display:none}.woocommerce form .show-password-input,.woocommerce-page form .show-password-input{background-color:transparent;border-radius:0;border:0;color:var(--wc-form-color-text,#000);cursor:pointer;font-size:inherit;line-height:inherit;margin:0;padding:0;position:absolute;right:.7em;text-decoration:none;top:50%;transform:translateY(-50%);-moz-osx-font-smoothing:inherit;-webkit-appearance:none;-webkit-font-smoothing:inherit}.woocommerce form .show-password-input::before,.woocommerce-page form .show-password-input::before{background-repeat:no-repeat;background-size:cover;background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>');content:"";display:block;height:22px;width:22px}.woocommerce form .show-password-input.display-password::before,.woocommerce-page form .show-password-input.display-password::before{background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>')}.woocommerce #payment .form-row select,.woocommerce-page #payment .form-row select{width:auto}.woocommerce #payment .terms,.woocommerce #payment .wc-terms-and-conditions,.woocommerce-page #payment .terms,.woocommerce-page #payment .wc-terms-and-conditions{text-align:left;padding:0 1em 0 0;float:left}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:right}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-billing-fields::before,.woocommerce .woocommerce-shipping-fields::after,.woocommerce .woocommerce-shipping-fields::before,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-billing-fields::before,.woocommerce-page .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-shipping-fields::before{content:" ";display:table}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-shipping-fields::after{clear:both}.woocommerce .woocommerce-terms-and-conditions,.woocommerce-page .woocommerce-terms-and-conditions{margin-bottom:1.618em;padding:1.618em}.woocommerce .woocommerce-oembed,.woocommerce-page .woocommerce-oembed{position:relative}.woocommerce-account .woocommerce-MyAccount-navigation{float:left;width:30%}.woocommerce-account .woocommerce-MyAccount-content{float:right;width:68%}.woocommerce-account .woocommerce-MyAccount-content mark{background-color:transparent;color:inherit;font-weight:700}.woocommerce-page.left-sidebar #content.twentyeleven{width:58.4%;margin:0 7.6%;float:right}.woocommerce-page.right-sidebar #content.twentyeleven{margin:0 7.6%;width:58.4%;float:left}.twentyfourteen .tfwc{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfwc .product .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfwc div.product.hentry.has-post-thumbnail{margin-top:0}@media screen and (min-width:673px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfwc{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfwc{margin-right:54px}.full-width .twentyfourteen .tfwc{margin-right:auto}}.twentyfifteen .t15wc{padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15wc .page-title{margin-left:0}@media screen and (min-width:38.75em){.twentyfifteen .t15wc{margin-right:7.6923%;margin-left:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15wc{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.twentysixteen .site-main{margin-right:7.6923%;margin-left:7.6923%}.twentysixteen .entry-summary{margin-right:0;margin-left:0}#content .twentysixteen div.product div.images,#content .twentysixteen div.product div.summary{width:46.42857%}@media screen and (min-width:44.375em){.twentysixteen .site-main{margin-right:23.0769%}}@media screen and (min-width:56.875em){.twentysixteen .site-main{margin-right:0;margin-left:0}.no-sidebar .twentysixteen .site-main{margin-right:15%;margin-left:15%}.no-sidebar .twentysixteen .entry-summary{margin-right:0;margin-left:0}}.rtl .woocommerce .col2-set .col-1,.rtl .woocommerce-page .col2-set .col-1{float:right}.rtl .woocommerce .col2-set .col-2,.rtl .woocommerce-page .col2-set .col-2{float:left}
:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}@keyframes spin{100%{transform:rotate(360deg)}}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row .woocommerce-input-wrapper .description{background:#1e85be;color:#fff;border-radius:3px;padding:1em;margin:.5em 0 0;clear:both;display:none;position:relative}.woocommerce form .form-row .woocommerce-input-wrapper .description a{color:#fff;text-decoration:underline;border:0;box-shadow:none}.woocommerce form .form-row .woocommerce-input-wrapper .description::before{left:50%;top:0;margin-top:-4px;transform:translateX(-50%) rotate(180deg);content:"";position:absolute;border-width:4px 6px 0 6px;border-style:solid;border-color:#1e85be transparent transparent transparent;z-index:100;display:block}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row .input-text,.woocommerce form .form-row select{font-family:inherit;font-weight:400;letter-spacing:normal;padding:.5em;display:block;background-color:var(--wc-form-color-background,#fff);border:var(--wc-form-border-width) solid var(--wc-form-border-color);border-radius:var(--wc-form-border-radius);color:var(--wc-form-color-text,#000);box-sizing:border-box;width:100%;margin:0;line-height:normal;height:auto}.woocommerce form .form-row .input-text:focus,.woocommerce form .form-row select:focus{border-color:currentColor}.woocommerce form .form-row select{cursor:pointer;appearance:none;padding-right:3em;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=);background-repeat:no-repeat;background-size:16px;background-position:calc(100% - .5em) 50%}.woocommerce form .form-row textarea{height:4em;line-height:1.5;box-shadow:none}.woocommerce form .form-row .country_to_state--single{background:0 0;border:0;padding:0;appearance:none;background-image:none;font:inherit;font-weight:700;color:inherit;width:auto;pointer-events:none}.woocommerce form .form-row .required{color:var(--wc-red);font-weight:700;border:0!important;text-decoration:none;visibility:hidden}.woocommerce form .form-row .optional{visibility:visible}.woocommerce form .form-row.woocommerce-invalid label{color:var(--wc-red)}.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:var(--wc-red)}.woocommerce form .form-row.woocommerce-invalid .select2-container:not(.select2-container--open) .select2-selection{border-color:var(--wc-red)}.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:var(--wc-green)}.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection{border-color:var(--wc-green)}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}:where(.woocommerce) .select2-container{width:100%}:where(.woocommerce) .select2-container .select2-selection--single{height:auto}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered{padding:.5em;line-height:normal;box-sizing:border-box;color:var(--wc-form-color-text,#444);font-weight:400}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__placeholder{color:var(--wc-form-color-text,#444)}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow{position:absolute;top:2px;right:.5em;height:100%;width:16px}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow b{border:none;display:block;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;background-size:16px;width:16px;height:16px;position:absolute;top:50%;left:0;margin:-8px 0 0}:where(.woocommerce) .select2-container .select2-dropdown,:where(.woocommerce) .select2-container .select2-selection{background-color:var(--wc-form-color-background,#fff);border:var(--wc-form-border-width,1px) solid var(--wc-form-border-color,#aaa);border-radius:var(--wc-form-border-radius,4px)}:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}:where(.woocommerce) .select2-results__options{list-style:none;margin:0;padding:0}:where(.woocommerce) .select2-results__option{margin:0}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#720eec;color:#fcfbfe;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fcfbfe;text-decoration:underline}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.clear{clear:both}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:"";animation:spin 1s ease-in-out infinite;background:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/loader.svg") center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:"";animation:spin 1s ease-in-out infinite;background:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/loader.svg") center center;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce a.remove{display:block;font-size:1.5em;height:1em;width:1em;text-align:center;line-height:1;border-radius:100%;color:var(--wc-red)!important;text-decoration:none;font-weight:700;border:0}.woocommerce a.remove:hover{color:#fff!important;background:var(--wc-red)}.woocommerce small.note{display:block;color:#767676;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:" ";display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .quantity .qty{width:3.631em;text-align:center}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.7;display:inline-block}.woocommerce div.product p.stock{font-size:.92em}.woocommerce div.product .woocommerce-product-rating{margin-bottom:1.618em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795, -.035, 0, 1) .5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff;opacity:0}.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder{border:1px solid #f2f2f2}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__image a{display:block;outline-offset:-2px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{background:#fff;border:none;box-sizing:content-box;border-radius:100%;cursor:pointer;font-size:2em;height:36px;padding:0;position:absolute;right:.5em;text-indent:-9999px;top:.5em;width:36px;z-index:99}.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before{border:2px solid #000;border-radius:100%;box-sizing:content-box;content:"";display:block;height:10px;left:9px;top:9px;position:absolute;width:10px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{background:#000;border-radius:6px;box-sizing:content-box;content:"";display:block;height:8px;left:22px;position:absolute;top:19px;transform:rotate(-45deg);width:2px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger span[aria-hidden=true]{border:0;clip-path:inset(50%);height:1px;left:50%;margin:-1px;overflow:hidden;position:absolute;top:50%;width:1px}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:left;margin:0;list-style:none}.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:left}.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:left}.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:left}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:right;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 0 0 2px}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce div.product div.social iframe{float:left;margin-top:3px}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0 0 0 1em;margin:0 0 1.618em;overflow:hidden;position:relative}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:1px solid #cfc8d8;background-color:#e9e6ed;color:#515151;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 -5px;padding:0 1em}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6b6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{background:#fff;color:#515151;z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{box-shadow:2px 2px 0 #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{box-shadow:-2px 2px 0 #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{border:1px solid #cfc8d8;position:absolute;bottom:-1px;width:5px;height:5px;content:" ";box-sizing:border-box}.woocommerce div.product .woocommerce-tabs ul.tabs li::before{left:-5px;border-bottom-right-radius:4px;border-width:0 1px 1px 0;box-shadow:2px 2px 0 #e9e6ed}.woocommerce div.product .woocommerce-tabs ul.tabs li::after{right:-5px;border-bottom-left-radius:4px;border-width:0 0 1px 1px;box-shadow:-2px 2px 0 #e9e6ed}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:" ";width:100%;bottom:0;left:0;border-bottom:1px solid #cfc8d8;z-index:1}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 2em;padding:0}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:" ";display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin-bottom:2em}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:" ";display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce div.product form.cart table{border-width:0 0 1px}.woocommerce div.product form.cart table td{padding-left:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{margin-bottom:1em;border:0;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;line-height:2em;vertical-align:top}.woocommerce div.product form.cart .variations label{font-weight:700;text-align:left}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;margin-right:1em;appearance:none;-webkit-appearance:none;-moz-appearance:none;padding-right:3em;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;background-size:16px;-webkit-background-size:16px;background-position:calc(100% - 12px) 50%;-webkit-background-position:calc(100% - 12px) 50%}.woocommerce div.product form.cart .variations td.label{padding-right:1em}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:left}.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label{padding-right:1em;padding-left:1em}.woocommerce div.product form.cart .group_table td{vertical-align:top;padding-bottom:.5em;border:0}.woocommerce div.product form.cart .group_table td:first-child{width:4em;text-align:center}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce span.onsale{min-height:3.236em;min-width:3.236em;padding:.202em;font-size:1em;font-weight:700;position:absolute;text-align:center;line-height:3.236;top:-.5em;left:-.5em;margin:0;border-radius:100%;background-color:#958e09;color:#fff;font-size:.857em;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:" ";display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;right:0;left:auto;margin:-.5em -.5em 0 0}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a.woocommerce-loop-product__link{display:block}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .woocommerce-placeholder{border:1px solid #f2f2f2}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{display:inline-block;margin-top:1em}.woocommerce ul.products li.product .price{display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.7;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0 0;text-transform:uppercase;color:rgba(90,89,68,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 1em}.woocommerce .woocommerce-ordering>label{margin-right:.25rem}.woocommerce .woocommerce-ordering select{vertical-align:top}.woocommerce nav.woocommerce-pagination{text-align:center}.woocommerce nav.woocommerce-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #cfc8d8;border-right:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{border-right:1px solid #cfc8d8;padding:0;margin:0;float:left;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current{background:#e9e6ed;color:#816f98}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding-top:.5em;display:inline-block}.woocommerce #reviews h2 small{float:right;color:#767676;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#767676}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:" ";display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 20px;border:0;position:relative;background:0;border:0}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;width:32px;height:auto;background:#e9e6ed;border:1px solid #e1dde7;margin:0;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:1px solid #e1dde7;border-radius:4px;padding:1em 1em 0}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1em}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{font-size:.83em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e1dde7;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li::before{content:""}.woocommerce .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:WooCommerce}.woocommerce .star-rating::before{content:"sssss";color:#cfc8d8;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:"SSSSS";top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:" ";display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating{display:block;margin:0 0 .5em;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;padding:0;background:transparent none;border:0}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:" ";display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond p{margin:0 0 10px}.woocommerce #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none;font-size:24px}.woocommerce p.stars a::before{display:block;position:absolute;top:0;left:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:"\e021";text-indent:0}.woocommerce p.stars a:hover~a::before{content:"\e021"}.woocommerce p.stars:hover a::before{content:"\e020"}.woocommerce p.stars.selected a.active::before{content:"\e020"}.woocommerce p.stars.selected a.active~a::before{content:"\e021"}.woocommerce p.stars.selected a:not(.active)::before{content:"\e020"}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(2n) td,.woocommerce table.shop_attributes tr:nth-child(2n) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid color-mix(in srgb,currentColor 20%,transparent);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;border-spacing:0;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px;line-height:1.5em}.woocommerce table.shop_table td{border-top:1px solid color-mix(in srgb,currentColor 20%,transparent);padding:9px 12px;vertical-align:middle;line-height:1.5em}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table td del{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid color-mix(in srgb,currentColor 20%,transparent)}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:"↓";display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:left;clear:both;margin-right:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:" ";display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{border-top:3px double #e9e6ed;padding:4px 0 0}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding-left:2em;position:relative;padding-top:0}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;top:0;left:0}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:" ";display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-right:5px;margin-bottom:5px}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid #cfc8d8;padding:20px;margin:2em 0;text-align:left;border-radius:5px}.woocommerce form.checkout_coupon .coupon-error-notice{color:var(--wc-red);display:block;font-size:.75em;margin-top:8px}.woocommerce form.checkout_coupon .input-text.has-error:focus{border-color:var(--wc-red)}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0 0 .5em;line-height:1.5em;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .4375em 0 0;vertical-align:top}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce .wc_bis_form{margin:2em 0;padding:0}.woocommerce .wc_bis_form.hidden{display:none}.woocommerce .wc_bis_form__form-row{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;justify-content:flex-start;gap:.7em;margin:.7em 0}.woocommerce .wc_bis_form__input{box-sizing:border-box;width:auto;white-space:nowrap}.woocommerce .wc_bis_form__button{box-sizing:border-box;white-space:nowrap}.woocommerce .wc_bis_form__checkbox{font-size:var(--wp--preset--font-size--small, .7em);display:block}.woocommerce :where(.wc_bis_form__input,.wc_bis_form__button){padding:.9rem 1.1rem;line-height:1}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:" ";display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-right:1px dashed #cfc8d8;padding-right:2em;margin-left:0;padding-left:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details .order-actions--heading,.woocommerce .woocommerce-order-details .order-actions--heading,.woocommerce .woocommerce-order-downloads .order-actions--heading{vertical-align:middle}.woocommerce .woocommerce-customer-details .order-actions-button,.woocommerce .woocommerce-order-details .order-actions-button,.woocommerce .woocommerce-order-downloads .order-actions-button{margin-right:10px}.woocommerce .woocommerce-customer-details .order-actions-button:last-child,.woocommerce .woocommerce-order-details .order-actions-button:last-child,.woocommerce .woocommerce-order-downloads .order-actions-button:last-child{margin-right:0}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details .additional-fields,.woocommerce .woocommerce-customer-details .addresses{margin-bottom:2em}.woocommerce .woocommerce-customer-details .additional-fields:last-child,.woocommerce .woocommerce-customer-details .addresses:last-child{margin-bottom:0}.woocommerce .addresses .wc-block-components-additional-fields-list{margin:0;padding:0}.woocommerce .addresses .wc-block-components-additional-fields-list dt{margin:0;padding:0;font-style:normal;font-weight:700;display:inline}.woocommerce .addresses .wc-block-components-additional-fields-list dt::after{content:": "}.woocommerce .addresses .wc-block-components-additional-fields-list dt::before{content:"";display:block}.woocommerce .addresses .wc-block-components-additional-fields-list dd{margin:0;padding:0;font-style:normal;display:inline}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list{border:1px solid rgba(0,0,0,.1);padding:0;display:grid;grid-template-columns:1fr max-content}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt{border-bottom:1px solid rgba(0,0,0,.1);font-style:normal;font-weight:700;padding:1rem;box-sizing:border-box;margin:0!important}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt::after{display:none}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt:last-of-type{border-bottom:0}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd{border-bottom:1px solid rgba(0,0,0,.1);padding:1rem;box-sizing:border-box;text-align:right;margin:0!important}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd:last-of-type{border-bottom:0}.woocommerce .woocommerce-customer-details .woocommerce-column__title{margin-top:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-right-width:2px;text-align:left;width:100%;border-radius:5px;padding:6px 12px;box-sizing:border-box}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{padding-left:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:last-child,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone:last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e037";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e02d";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:" ";display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red)}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:left;padding:0 1em 1px 1px;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red);vertical-align:inherit;margin-right:.5em}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:left}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:left;margin-left:.5em;margin-right:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#7f54b3;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#7f54b3}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#35224c;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:" ";display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red)}.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{float:left;margin-right:1em}.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{display:inline-block}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.618em 1em;font-weight:700;border-radius:3px;left:auto;color:#515151;background-color:#e9e6ed;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading{opacity:.25;padding-right:2.618em}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading::after{font-family:WooCommerce;content:"\e01c";vertical-align:top;font-weight:400;position:absolute;top:.618em;right:1em;animation:spin 2s linear infinite}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.added::after{font-family:WooCommerce;content:"\e017";margin-left:.53em;vertical-align:bottom}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover{background-color:#dcd7e2;text-decoration:none;background-image:none;color:#515151}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{background-color:#7f54b3;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover{background-color:#7249a4;color:#fff}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover{background-color:#7f54b3;color:#fff}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#e9e6ed}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb{font-size:.92em;color:#767676}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a{color:#767676}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{color:#958e09;font-size:1.25em}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock{color:#958e09}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .out-of-stock{color:var(--wc-red)}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{color:#958e09}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) #reviews #comments ol.commentlist li .meta{color:#767676;font-size:.75em}.woocommerce-no-js form.woocommerce-form-coupon,.woocommerce-no-js form.woocommerce-form-login{display:block!important}.woocommerce-no-js .showcoupon,.woocommerce-no-js .woocommerce-form-coupon-toggle,.woocommerce-no-js .woocommerce-form-login-toggle{display:none!important}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 2em 1em 3.5em;margin:0 0 2em;position:relative;background-color:#f6f5f8;color:#515151;border-top:3px solid #720eec;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:" ";display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:"\e028";content:"\e028"/"";display:inline-block;position:absolute;top:1em;left:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:right}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.rtl.woocommerce .price_label,.rtl.woocommerce .price_label span{direction:ltr;unicode-bidi:embed}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:"\e015";color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:"\e016";color:#b81c23}.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:" ";display:table}.woocommerce-account .woocommerce::after{clear:both}.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:" ";display:table}.woocommerce-account .addresses .title::after{clear:both}.woocommerce-account .addresses .title h3{float:left}.woocommerce-account .addresses .title .edit{float:right}.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce-account ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce-account ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e00a";text-decoration:none}.woocommerce-account ul.digital-downloads li .count{float:right}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#add_payment_method table.cart td,#add_payment_method table.cart th,.woocommerce-cart table.cart td,.woocommerce-cart table.cart th,.woocommerce-checkout table.cart td,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:left;box-sizing:border-box;border:1px solid #cfc8d8;padding:6px 6px 5px;margin:0 4px 0 0;outline:0}#add_payment_method table.cart td.actions .coupon .input-text.has-error:focus,.woocommerce-cart table.cart td.actions .coupon .input-text.has-error:focus,.woocommerce-checkout table.cart td.actions .coupon .input-text.has-error:focus{border-color:var(--wc-red)}#add_payment_method table.cart td.actions .coupon .coupon-error-notice,.woocommerce-cart table.cart td.actions .coupon .coupon-error-notice,.woocommerce-checkout table.cart td.actions .coupon .coupon-error-notice{clear:left;color:var(--wc-red);flex-basis:100%;float:none;font-size:.75em;margin-bottom:0;margin-top:8px;text-align:left;width:auto}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:" ";display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping-calculator-button,.woocommerce-cart .cart-collaterals .shipping-calculator-button,.woocommerce-checkout .cart-collaterals .shipping-calculator-button{float:none;margin-top:.5em;display:inline-block}#add_payment_method .cart-collaterals .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"\e019";text-decoration:none}#add_payment_method .cart-collaterals .shipping-calculator-form,.woocommerce-cart .cart-collaterals .shipping-calculator-form,.woocommerce-checkout .cart-collaterals .shipping-calculator-form{margin:1em 0 0 0}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#767676;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:35%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-left:0;border-right:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#767676}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#958e09}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #e9e6ed}#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination,.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination{margin-bottom:0}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:left;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:left}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:left}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#767676;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:left;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method .checkout .checkout-inline-error-message,.woocommerce-cart .checkout .checkout-inline-error-message,.woocommerce-checkout .checkout .checkout-inline-error-message{color:var(--wc-red);font-size:.75em;margin-bottom:0}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{background:rgba(129,110,153,.14);border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:left;padding:1em;border-bottom:1px solid rgba(104,87,125,.14);margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:" ";display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:left;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 1em 0 0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-left:2px}#add_payment_method #payment ul.payment_methods li.payment_method_paypal img,.woocommerce-cart #payment ul.payment_methods li.payment_method_paypal img,.woocommerce-checkout #payment ul.payment_methods li.payment_method_paypal img{max-height:24px;vertical-align:middle;float:right;margin:0}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:" ";display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dcd7e2;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c2bacd;border-top-color:#b5abc2}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 1em 0 0;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg")}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg")}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#767676;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:"";display:block;border:1em solid #dcd7e2;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;left:0;margin:-1em 0 0 2em}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:right;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:24px;vertical-align:middle;float:right}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,.05)}.woocommerce-invalid #terms{outline:2px solid var(--wc-red);outline-offset:2px}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}#content.twentyeleven .woocommerce-pagination a{font-size:1em;line-height:1}.single-product .twentythirteen #reply-title,.single-product .twentythirteen #respond #commentform,.single-product .twentythirteen .entry-summary{padding:0}.single-product .twentythirteen p.stars{clear:both}.twentythirteen .woocommerce-breadcrumb{padding-top:40px}.twentyfourteen ul.products li.product{margin-top:0!important}body:not(.search-results) .twentysixteen .entry-summary{color:inherit;font-size:inherit;line-height:inherit}.twentysixteen .price ins{background:inherit;color:inherit}form.has-custom-place-order-button #place_order{display:none!important}
.give-item-label-gray{background-color:#929292}.give-item-label-orange{background-color:#ffba00}.give-item-label{border-radius:.25em;color:#fff;font-size:11px;line-height:1;padding:.2em .4em .3em;text-align:center;vertical-align:baseline;white-space:nowrap}.give-item-label:hover{color:#fff;text-decoration:none}[class*=hint--]{display:inline-block;position:relative}[class*=hint--]:after,[class*=hint--]:before{opacity:0;pointer-events:none;position:absolute;transform:translateZ(0);transition:.3s ease;transition-delay:0s;visibility:hidden;z-index:1000000}[class*=hint--]:hover:after,[class*=hint--]:hover:before{opacity:1;transition-delay:.1s;visibility:visible}[class*=hint--]:before{background:0 0;border:6px solid transparent;content:"";position:absolute;z-index:1000001}[class*=hint--]:after{background:#383838;box-shadow:4px 4px 8px rgba(0,0,0,.3);color:#fff;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:12px;line-height:12px;padding:8px 10px;text-shadow:0 -1px 0 #000;white-space:nowrap}[class*=hint--][aria-label]:after{content:attr(aria-label)}[class*=hint--][data-hint]:after{content:attr(data-hint)}[aria-label=""]:after,[aria-label=""]:before,[data-hint=""]:after,[data-hint=""]:before{display:none!important}.hint--top-left:before,.hint--top-right:before,.hint--top:before{border-top-color:#383838}.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before{border-bottom-color:#383838}.hint--top:after,.hint--top:before{bottom:100%;left:50%}.hint--top:before{left:calc(50% - 6px);margin-bottom:-11px}.hint--top:after{transform:translateX(-50%)}.hint--top:hover:before{transform:translateY(-8px)}.hint--top:hover:after{transform:translateX(-50%) translateY(-8px)}.hint--bottom:after,.hint--bottom:before{left:50%;top:100%}.hint--bottom:before{left:calc(50% - 6px);margin-top:-11px}.hint--bottom:after{transform:translateX(-50%)}.hint--bottom:hover:before{transform:translateY(8px)}.hint--bottom:hover:after{transform:translateX(-50%) translateY(8px)}.hint--right:before{border-right-color:#383838;margin-bottom:-6px;margin-left:-11px}.hint--right:after{margin-bottom:-14px}.hint--right:after,.hint--right:before{bottom:50%;left:100%}.hint--right:hover:after,.hint--right:hover:before{transform:translateX(8px)}.hint--left:before{border-left-color:#383838;margin-bottom:-6px;margin-right:-11px}.hint--left:after{margin-bottom:-14px}.hint--left:after,.hint--left:before{bottom:50%;right:100%}.hint--left:hover:after,.hint--left:hover:before{transform:translateX(-8px)}.hint--top-left:after,.hint--top-left:before{bottom:100%;left:50%}.hint--top-left:before{left:calc(50% - 6px);margin-bottom:-11px}.hint--top-left:after{margin-left:12px;transform:translateX(-100%)}.hint--top-left:hover:before{transform:translateY(-8px)}.hint--top-left:hover:after{transform:translateX(-100%) translateY(-8px)}.hint--top-right:after,.hint--top-right:before{bottom:100%;left:50%}.hint--top-right:before{left:calc(50% - 6px);margin-bottom:-11px}.hint--top-right:after{margin-left:-12px;transform:translateX(0)}.hint--top-right:hover:after,.hint--top-right:hover:before{transform:translateY(-8px)}.hint--bottom-left:after,.hint--bottom-left:before{left:50%;top:100%}.hint--bottom-left:before{left:calc(50% - 6px);margin-top:-11px}.hint--bottom-left:after{margin-left:12px;transform:translateX(-100%)}.hint--bottom-left:hover:before{transform:translateY(8px)}.hint--bottom-left:hover:after{transform:translateX(-100%) translateY(8px)}.hint--bottom-right:after,.hint--bottom-right:before{left:50%;top:100%}.hint--bottom-right:before{left:calc(50% - 6px);margin-top:-11px}.hint--bottom-right:after{margin-left:-12px;transform:translateX(0)}.hint--bottom-right:hover:after,.hint--bottom-right:hover:before{transform:translateY(8px)}.hint--large:after,.hint--medium:after,.hint--small:after{line-height:1.4em;white-space:normal;word-wrap:break-word}.hint--small:after{width:80px}.hint--medium:after{width:150px}.hint--large:after{width:300px}.hint--error:after{background-color:#b34e4d;text-shadow:0 -1px 0 #592726}.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before{border-top-color:#b34e4d}.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before{border-bottom-color:#b34e4d}.hint--error.hint--left:before{border-left-color:#b34e4d}.hint--error.hint--right:before{border-right-color:#b34e4d}.hint--warning:after{background-color:#c09854;text-shadow:0 -1px 0 #6c5328}.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before{border-top-color:#c09854}.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before{border-bottom-color:#c09854}.hint--warning.hint--left:before{border-left-color:#c09854}.hint--warning.hint--right:before{border-right-color:#c09854}.hint--info:after{background-color:#3986ac;text-shadow:0 -1px 0 #1a3c4d}.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before{border-top-color:#3986ac}.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before{border-bottom-color:#3986ac}.hint--info.hint--left:before{border-left-color:#3986ac}.hint--info.hint--right:before{border-right-color:#3986ac}.hint--success:after{background-color:#458746;text-shadow:0 -1px 0 #1a321a}.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before{border-top-color:#458746}.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before{border-bottom-color:#458746}.hint--success.hint--left:before{border-left-color:#458746}.hint--success.hint--right:before{border-right-color:#458746}.hint--always:after,.hint--always:before{opacity:1;visibility:visible}.hint--always.hint--top:before{transform:translateY(-8px)}.hint--always.hint--top:after{transform:translateX(-50%) translateY(-8px)}.hint--always.hint--top-left:before{transform:translateY(-8px)}.hint--always.hint--top-left:after{transform:translateX(-100%) translateY(-8px)}.hint--always.hint--top-right:after,.hint--always.hint--top-right:before{transform:translateY(-8px)}.hint--always.hint--bottom:before{transform:translateY(8px)}.hint--always.hint--bottom:after{transform:translateX(-50%) translateY(8px)}.hint--always.hint--bottom-left:before{transform:translateY(8px)}.hint--always.hint--bottom-left:after{transform:translateX(-100%) translateY(8px)}.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before{transform:translateY(8px)}.hint--always.hint--left:after,.hint--always.hint--left:before{transform:translateX(-8px)}.hint--always.hint--right:after,.hint--always.hint--right:before{transform:translateX(8px)}.hint--rounded:after{border-radius:4px}.hint--no-animate:after,.hint--no-animate:before{transition-duration:0s}.hint--bounce:after,.hint--bounce:before{transition:opacity .3s ease,visibility .3s ease,transform .3s cubic-bezier(.71,1.7,.77,1.24)}[id*=give-form].give-fl-form .give-fl-wrap{position:relative;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[id*=give-form].give-fl-form input.give-fl-input,[id*=give-form].give-fl-form select.give-fl-select,[id*=give-form].give-fl-form textarea.give-fl-textarea{background-color:inherit;border:1px solid #ccc;border-radius:0;box-sizing:border-box;font-size:16px;line-height:normal;margin-bottom:0;outline:0;transition:all .2s ease-in-out;width:100%}[id*=give-form].give-fl-form input.give-fl-input:-moz-placeholder,[id*=give-form].give-fl-form input.give-fl-input::-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-moz-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-moz-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-moz-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input:-ms-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select:-ms-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea:-ms-input-placeholder{color:#757575}[id*=give-form].give-fl-form input.give-fl-input::-webkit-input-placeholder,[id*=give-form].give-fl-form select.give-fl-select::-webkit-input-placeholder,[id*=give-form].give-fl-form textarea.give-fl-textarea::-webkit-input-placeholder{color:#757575}[id*=give-form].give-fl-form select.give-fl-select{-webkit-appearance:none;-moz-appearance:none;color:#757575;cursor:pointer;position:relative}[id*=give-form].give-fl-form .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form .give-fl-is-active textarea.give-fl-textarea{background-color:inherit;border-color:#ccc;color:#333}[id*=give-form].give-fl-form .give-fl-has-focus input.give-fl-input,[id*=give-form].give-fl-form .give-fl-has-focus select.give-fl-select,[id*=give-form].give-fl-form .give-fl-has-focus textarea.give-fl-textarea{background-color:inherit;border-color:#ccc}[id*=give-form].give-fl-form label.give-fl-label{color:#757575;display:block;font-size:12px;font-weight:700;left:0;line-height:1;opacity:0;position:absolute;top:-12px;visibility:hidden;border-radius-top-left:0;transition:all .2s ease-in-out;z-index:1}[id*=give-form].give-fl-form .give-fl-is-active label.give-fl-label{opacity:1;visibility:visible}[id*=give-form].give-fl-form .give-fl-has-focus label.give-fl-label{color:#1976d2}[id*=give-form].give-fl-form .give-fl-is-required:before{color:#d32f2f;content:"*";display:block;font-size:16px;line-height:1.75;opacity:1;padding:6px 0 0;position:absolute;right:18px;top:1px;transition:all .2s ease-in-out;z-index:1}[id*=give-form].give-fl-form .give-fl-is-required.give-fl-is-active:before{opacity:0}[id*=give-form].give-fl-form.give-fl-style-1 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 select.give-fl-select{height:44px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active textarea.give-fl-textarea{padding:6px 12px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label{background-color:transparent;left:10px;padding:12px 3px;top:1px}[id*=give-form].give-fl-form.give-fl-style-1 label.give-fl-label:before{background-color:inherit;content:"";display:block;height:1px;left:0;position:absolute;right:0;top:19px;z-index:-1}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label{padding:3px;top:-9px}[id*=give-form].give-fl-form.give-fl-style-1 .give-fl-is-active label.give-fl-label:before{top:9px}[id*=give-form].give-fl-form.give-fl-style-2 input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 textarea.give-fl-textarea{padding:12px}[id*=give-form].give-fl-form.give-fl-style-2 select.give-fl-select{height:56px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-active textarea.give-fl-textarea{padding:18px 12px 6px}[id*=give-form].give-fl-form.give-fl-style-2 label.give-fl-label{left:10px;padding:6px 3px 3px;top:1px}[id*=give-form].give-fl-form.give-fl-style-2 .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form .give-fl-wrap-select:after{background:url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 16%27><path fill=%27#757575%27%20d=%27M%204%200%20L%200%206.5%20L%208%206.5%20L%204%200%20z%20M%200%209.5%20L%204%2016%20L%204%2016%20L%208%209.5%20z%27/%3E%3C/svg%3E") no-repeat;background-position:100% 50%;background-size:7px 14px;content:"";display:block;height:calc(100% - 2px);position:absolute;right:6px;top:1px;width:15px;z-index:2}.mfp-bg{background:#0b0b0b;opacity:.8;overflow:hidden;z-index:1000001}.mfp-bg,.mfp-wrap{height:100%;left:0;position:fixed;top:0;width:100%}.mfp-wrap{-webkit-backface-visibility:hidden;outline:none!important;z-index:1000002}.mfp-container{box-sizing:border-box;height:100%;left:0;padding:0 8px;position:absolute;text-align:center;top:0;width:100%}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{display:inline-block;margin:0 auto;position:relative;text-align:left;vertical-align:middle;z-index:1000004}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{cursor:auto;width:100%}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;left:8px;margin-top:-.8em;position:absolute;right:8px;text-align:center;top:50%;width:auto;z-index:1000003}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{-webkit-appearance:none;background:transparent;border:0;box-shadow:none;cursor:pointer;display:block;outline:none;overflow:visible;padding:0;touch-action:manipulation;z-index:1000005}button::-moz-focus-inner{border:0;padding:0}.mfp-close{color:#fff;font-family:Arial,Baskerville,monospace;font-size:28px;font-style:normal;height:44px;line-height:44px;opacity:.65;padding:0 0 18px 10px;position:absolute;right:0;text-align:center;text-decoration:none;top:0;width:44px}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;padding-right:6px;right:-6px;text-align:right;width:100%}.mfp-counter{color:#ccc;font-size:12px;line-height:18px;position:absolute;right:0;top:0;white-space:nowrap}.mfp-arrow{height:110px;margin:-55px 0 0;opacity:.65;padding:0;position:absolute;top:50%;width:90px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{border:inset transparent;content:"";display:block;height:0;left:0;margin-left:35px;margin-top:35px;position:absolute;top:0;width:0}.mfp-arrow:after{border-bottom-width:13px;border-top-width:13px;top:8px}.mfp-arrow:before{border-bottom-width:21px;border-top-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{border-right:27px solid #3f3f3f;margin-left:25px}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-bottom:40px;padding-top:40px}.mfp-iframe-holder .mfp-content{line-height:0;max-width:900px;width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{height:0;overflow:hidden;padding-top:56.25%;width:100%}.mfp-iframe-scaler iframe{background:#000;box-shadow:0 0 8px rgba(0,0,0,.6);display:block;height:100%;left:0;position:absolute;top:0;width:100%}img.mfp-img{box-sizing:border-box;display:block;height:auto;margin:0 auto;max-width:100%;padding:40px 0;width:auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{background:#444;bottom:40px;box-shadow:0 0 8px rgba(0,0,0,.6);content:"";display:block;height:auto;left:0;position:absolute;right:0;top:40px;width:auto;z-index:-1}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{cursor:auto;left:0;margin-top:-36px;position:absolute;top:100%;width:100%}.mfp-title{color:#f3f3f3;line-height:18px;text-align:left;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px)and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{bottom:0;top:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;box-sizing:border-box;margin:0;padding:3px 5px;position:fixed;top:auto}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{background:rgba(0,0,0,.6);height:35px;line-height:35px;padding:0;position:fixed;right:0;text-align:center;top:0;width:35px}}@media (max-width:900px){.mfp-arrow{transform:scale(.75)}.mfp-arrow-left{transform-origin:0}.mfp-arrow-right{transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.give-icon:before{font-style:normal}[class*=" give-icon-"],[class^=give-icon-]{font-family:give-icomoon;speak:none;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.give-icon-lamp:before{content:""}.give-icon-heart:before{content:""}.give-icon-question:before{content:""}.give-icon-info:before{content:""}.give-icon-new-tab:before{content:""}.give-icon-alert:before{content:""}.give-icon-help:before{content:""}.give-icon-spinner:before{content:""}.give-button-with-loader span.give-loading-animation:before,.give-icon-spinner2:before,form[id*=give-form] .give-loading-animation:before{content:""}.give-icon-plus:before{content:""}.give-icon-minus:before{content:""}.give-icon-locked:before,[id*=give_secure_site_wrapper] span.padlock:before{content:""}.dashicons-give:before{font-family:give-icomoon;speak:none;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:""}.fa-spin,.give-button-with-loader span.give-loading-animation,form[id*=give-form] .give-loading-animation{animation:spin 1s linear infinite}body.give_receipt_page{background-color:#fff;color:#141412;font-family:Helvetica,sans-serif;font-size:12px;margin:0}body.give_receipt_page #give_receipt_wrapper{margin:0 auto;padding:50px 0;width:660px}body.give_receipt_page table{border-bottom:1px solid #ededed;border-collapse:collapse;border-spacing:0;display:table;font-size:14px;line-height:2;margin:0 0 20px;width:100%}body.give_receipt_page td,body.give_receipt_page th{border-top:1px solid #ededed;display:table-cell;font-weight:400;padding:6px 10px 6px 0;text-align:left}body.give_receipt_page th{font-weight:700;text-transform:uppercase}body.give_receipt_page h3{clear:both;display:block;font-size:22px;font-weight:700;margin:40px 0 5px}table#give_donation_receipt,table#give_donation_receipt_products{width:100%}table#give_donation_receipt td,table#give_donation_receipt th{text-align:left}table#give_donation_receipt .give-receipt-thead-text{display:block;font-size:18px;text-align:center}table#give_donation_receipt .give-receipt-thead-text>span{font-size:16px}table#give_donation_receipt li{margin:0 0 8px 10px}table#give_donation_receipt ul{list-style:none;margin:0;padding:0}table#give_donation_receipt .give_receipt_payment_status.failed,table#give_donation_receipt .give_receipt_payment_status.pending,table#give_donation_receipt .give_receipt_payment_status.revoked{color:#f73f2e}table#give_donation_receipt span.donation-level-text-wrap{display:block;font-style:italic}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give textarea.give-fl-textarea{background-color:#fff;line-height:inherit;padding:12px}[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=email],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=number],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=password],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=search],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=tel],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=text],[id*=give-form].give-fl-form.give-fl-style-give input.give-fl-input[type=url]{height:auto;min-height:50px}[id*=give-form].give-fl-form.give-fl-style-give select.give-fl-select{line-height:inherit}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active input.give-fl-input,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active select.give-fl-select,[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-active textarea.give-fl-textarea{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{left:13px;padding:6px 0 0;right:0;top:1px}[id*=give-form].give-fl-form.give-fl-style-give .give-fl-is-required:before{padding-top:12px}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-required-indicator{display:none}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip{height:100%;margin:0;position:absolute;top:0;width:100%;z-index:1}[id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label .give-tooltip:before{content:unset}.give-clearfix{*zoom:1}.give-clearfix:after,.give-clearfix:before{content:" ";display:table}.give-clearfix:after{clear:both}[id*=give-form] .give-hidden{display:none}[id*=give-form] fieldset{background-color:transparent;border:0;margin:0;padding:0}[id*=give-form] .give-form-title{margin:0 0 15px;padding:0}[id*=give-form] div#give-sidebar-left{float:left;width:38%}[id*=give-form] div.images{margin:0 0 15px}[id*=give-form] div.images img{box-shadow:none;display:block;height:auto;width:100%}[id*=give-form] .give-custom-amount-text{clear:both}[id*=give-form] div.summary{float:right;width:58%}[id*=give-form] div.summary.give-full-width{float:none;width:100%}[id*=give-form] .give_form select.give-select.required{color:#000}[id*=give-form] div.give-form-content-wrap{margin:0 0 20px}[id*=give-form] div.give-form-content-wrap.give_post_form-content{margin:20px 0 0}[id*=give-form].give-display-modal form .give_notices{display:none}[id*=give-form].give-display-modal .give-btn,[id*=give-form].give-display-reveal .give-btn{margin:0 0 15px}[id*=give-form].give-display-modal #give-payment-mode-select,[id*=give-form].give-display-modal #give_purchase_form_wrap,[id*=give-form].give-display-reveal #give-payment-mode-select,[id*=give-form].give-display-reveal #give_purchase_form_wrap{display:none}[id*=give-form] .cc-address{margin-bottom:15px}.single-give_forms.et_right_sidebar #main-content .container:before{display:none}.single-give_forms .give_forms{*zoom:1;margin:50px auto;max-width:1230px}.single-give_forms .give_forms:after,.single-give_forms .give_forms:before{content:" ";display:table}.single-give_forms .give_forms:after{clear:both}#give-purchase-gravatars .give-gravatars-title{margin:0 0 15px}#give-purchase-gravatars .give-purchase-gravatars-list{list-style:none;margin:0;padding:0}#give-purchase-gravatars .give-purchase-gravatars-list li{display:inline-block;list-style-type:none;margin:0 5px 0 0;padding:0}#give-recurring-form,form.give-form,form[id*=give-form]{margin:0 0 25px;padding:0}#give-recurring-form .give-hidden,form.give-form .give-hidden,form[id*=give-form] .give-hidden{display:none}@media(min-width:481px){#give-recurring-form .give-title-prefix-wrap .form-row-first,#give-recurring-form .give-title-prefix-wrap .form-row-last,form.give-form .give-title-prefix-wrap .form-row-first,form.give-form .give-title-prefix-wrap .form-row-last,form[id*=give-form] .give-title-prefix-wrap .form-row-first,form[id*=give-form] .give-title-prefix-wrap .form-row-last{float:left;width:40%}#give-recurring-form .give-title-prefix-wrap .form-row-title,form.give-form .give-title-prefix-wrap .form-row-title,form[id*=give-form] .give-title-prefix-wrap .form-row-title{float:left;width:15%}}#give-recurring-form .give-tooltip,form.give-form .give-tooltip,form[id*=give-form] .give-tooltip{color:rgba(51,51,51,.5);font-size:14px;margin:0 3px;padding:0;transition:all .2s linear}#give-recurring-form .give-tooltip:hover,form.give-form .give-tooltip:hover,form[id*=give-form] .give-tooltip:hover{color:#333}#give-recurring-form .give-section-break,#give-recurring-form h3.give-section-break,#give-recurring-form h4.give-section-break,#give-recurring-form legend,form.give-form .give-section-break,form.give-form h3.give-section-break,form.give-form h4.give-section-break,form.give-form legend,form[id*=give-form] .give-section-break,form[id*=give-form] h3.give-section-break,form[id*=give-form] h4.give-section-break,form[id*=give-form] legend{background-color:transparent;border-bottom:1px solid rgba(0,0,0,.1);font-size:1.15em;font-weight:700;margin:10px 0 15px;padding:0 0 5px;width:100%}#give-recurring-form .give-section-break span.sub-text,#give-recurring-form h3.give-section-break span.sub-text,#give-recurring-form h4.give-section-break span.sub-text,#give-recurring-form legend span.sub-text,form.give-form .give-section-break span.sub-text,form.give-form h3.give-section-break span.sub-text,form.give-form h4.give-section-break span.sub-text,form.give-form legend span.sub-text,form[id*=give-form] .give-section-break span.sub-text,form[id*=give-form] h3.give-section-break span.sub-text,form[id*=give-form] h4.give-section-break span.sub-text,form[id*=give-form] legend span.sub-text{font-style:italic;font-weight:400}#give-recurring-form .form-row,form.give-form .form-row,form[id*=give-form] .form-row{*zoom:1;box-sizing:border-box;margin:0 0 15px;overflow:visible;padding:0}#give-recurring-form .form-row:after,#give-recurring-form .form-row:before,form.give-form .form-row:after,form.give-form .form-row:before,form[id*=give-form] .form-row:after,form[id*=give-form] .form-row:before{content:" ";display:table}#give-recurring-form .form-row:after,form.give-form .form-row:after,form[id*=give-form] .form-row:after{clear:both}#give-recurring-form .form-row:last-child,form.give-form .form-row:last-child,form[id*=give-form] .form-row:last-child{margin-bottom:15px}#give-recurring-form .form-row label,form.give-form .form-row label,form[id*=give-form] .form-row label{display:block;line-height:1.7;margin:0 0 5px;position:relative}#give-recurring-form .form-row label.checkbox,form.give-form .form-row label.checkbox,form[id*=give-form] .form-row label.checkbox{display:inline}#give-recurring-form .form-row .give-input-field-wrapper,#give-recurring-form .form-row input[type=email],#give-recurring-form .form-row input[type=password],#give-recurring-form .form-row input[type=tel],#give-recurring-form .form-row input[type=text],#give-recurring-form .form-row input[type=url],#give-recurring-form .form-row select,#give-recurring-form .form-row textarea,form.give-form .form-row .give-input-field-wrapper,form.give-form .form-row input[type=email],form.give-form .form-row input[type=password],form.give-form .form-row input[type=tel],form.give-form .form-row input[type=text],form.give-form .form-row input[type=url],form.give-form .form-row select,form.give-form .form-row textarea,form[id*=give-form] .form-row .give-input-field-wrapper,form[id*=give-form] .form-row input[type=email],form[id*=give-form] .form-row input[type=password],form[id*=give-form] .form-row input[type=tel],form[id*=give-form] .form-row input[type=text],form[id*=give-form] .form-row input[type=url],form[id*=give-form] .form-row select,form[id*=give-form] .form-row textarea{background-color:#fdfdfd;border:1px solid #ccc;border-radius:0;box-sizing:border-box;color:#333;margin:0;outline:none;padding:.5em;width:100%}#give-recurring-form .form-row .give-input-field-wrapper:focus,#give-recurring-form .form-row input[type=email]:focus,#give-recurring-form .form-row input[type=password]:focus,#give-recurring-form .form-row input[type=tel]:focus,#give-recurring-form .form-row input[type=text]:focus,#give-recurring-form .form-row input[type=url]:focus,#give-recurring-form .form-row select:focus,#give-recurring-form .form-row textarea:focus,form.give-form .form-row .give-input-field-wrapper:focus,form.give-form .form-row input[type=email]:focus,form.give-form .form-row input[type=password]:focus,form.give-form .form-row input[type=tel]:focus,form.give-form .form-row input[type=text]:focus,form.give-form .form-row input[type=url]:focus,form.give-form .form-row select:focus,form.give-form .form-row textarea:focus,form[id*=give-form] .form-row .give-input-field-wrapper:focus,form[id*=give-form] .form-row input[type=email]:focus,form[id*=give-form] .form-row input[type=password]:focus,form[id*=give-form] .form-row input[type=tel]:focus,form[id*=give-form] .form-row input[type=text]:focus,form[id*=give-form] .form-row input[type=url]:focus,form[id*=give-form] .form-row select:focus,form[id*=give-form] .form-row textarea:focus{background-color:#fff}#give-recurring-form .form-row .give-input-field-wrapper.required,#give-recurring-form .form-row input[type=email].required,#give-recurring-form .form-row input[type=password].required,#give-recurring-form .form-row input[type=tel].required,#give-recurring-form .form-row input[type=text].required,#give-recurring-form .form-row input[type=url].required,#give-recurring-form .form-row select.required,#give-recurring-form .form-row textarea.required,form.give-form .form-row .give-input-field-wrapper.required,form.give-form .form-row input[type=email].required,form.give-form .form-row input[type=password].required,form.give-form .form-row input[type=tel].required,form.give-form .form-row input[type=text].required,form.give-form .form-row input[type=url].required,form.give-form .form-row select.required,form.give-form .form-row textarea.required,form[id*=give-form] .form-row .give-input-field-wrapper.required,form[id*=give-form] .form-row input[type=email].required,form[id*=give-form] .form-row input[type=password].required,form[id*=give-form] .form-row input[type=tel].required,form[id*=give-form] .form-row input[type=text].required,form[id*=give-form] .form-row input[type=url].required,form[id*=give-form] .form-row select.required,form[id*=give-form] .form-row textarea.required{color:#333}#give-recurring-form .form-row .give-input-field-wrapper iframe,form.give-form .form-row .give-input-field-wrapper iframe,form[id*=give-form] .form-row .give-input-field-wrapper iframe{margin-bottom:0}#give-recurring-form .form-row-first,#give-recurring-form .form-row-title,form.give-form .form-row-first,form.give-form .form-row-title,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-title{margin-right:2.5%}#give-recurring-form .form-row-first,#give-recurring-form .form-row-last,form.give-form .form-row-first,form.give-form .form-row-last,form[id*=give-form] .form-row-first,form[id*=give-form] .form-row-last{float:left;width:48.5%}#give-recurring-form .form-row-last,form.give-form .form-row-last,form[id*=give-form] .form-row-last{float:right}#give-recurring-form .form-row-wide,form.give-form .form-row-wide,form[id*=give-form] .form-row-wide{*zoom:1;clear:both}#give-recurring-form .form-row-wide:after,#give-recurring-form .form-row-wide:before,form.give-form .form-row-wide:after,form.give-form .form-row-wide:before,form[id*=give-form] .form-row-wide:after,form[id*=give-form] .form-row-wide:before{content:" ";display:table}#give-recurring-form .form-row-wide:after,form.give-form .form-row-wide:after,form[id*=give-form] .form-row-wide:after{clear:both}#give-recurring-form .form-row-two-thirds,form.give-form .form-row-two-thirds,form[id*=give-form] .form-row-two-thirds{float:left;width:65.75%}#give-recurring-form .form-row-two-thirds.form-row-first,form.give-form .form-row-two-thirds.form-row-first,form[id*=give-form] .form-row-two-thirds.form-row-first{margin-left:0}#give-recurring-form .form-row-one-third,form.give-form .form-row-one-third,form[id*=give-form] .form-row-one-third{float:left;margin-left:3%;width:31.25%}#give-recurring-form .form-row-one-third.form-row-first,form.give-form .form-row-one-third.form-row-first,form[id*=give-form] .form-row-one-third.form-row-first{margin-left:0}@media(max-width:480px){#give-recurring-form .form-row-responsive,form.give-form .form-row-responsive,form[id*=give-form] .form-row-responsive{margin-left:0;margin-right:0;width:100%}}#give-recurring-form .give-error,#give-recurring-form .give-required-indicator,form.give-form .give-error,form.give-form .give-required-indicator,form[id*=give-form] .give-error,form[id*=give-form] .give-required-indicator{color:#a00}#give-recurring-form .card-expiration>select,form.give-form .card-expiration>select,form[id*=give-form] .card-expiration>select{margin:0;width:44%}#give-recurring-form .card-expiration>span.exp-divider,form.give-form .card-expiration>span.exp-divider,form[id*=give-form] .card-expiration>span.exp-divider{display:inline;text-align:center}#give-recurring-form .card-expiration select.card-expiry-year,form.give-form .card-expiration select.card-expiry-year,form[id*=give-form] .card-expiration select.card-expiry-year{float:right}#give-recurring-form .give-disabled,#give-recurring-form [disabled],form.give-form .give-disabled,form.give-form [disabled],form[id*=give-form] .give-disabled,form[id*=give-form] [disabled]{cursor:not-allowed}form[id*=give-form] #give-company-radio-list-wrap ul.give-company-radio-list{list-style:none;margin:0;padding:0}form[id*=give-form] #give-company-radio-list-wrap ul.give-company-radio-list li{display:inline-block;margin-left:0;margin-right:15px}form[id*=give-form] #give-company-radio-list-wrap ul.give-company-radio-list li label{cursor:pointer;display:inline;margin:0}form[id*=give-form] .give-donation-amount{margin:0 0 15px}form[id*=give-form] .give-donation-amount .give-currency-symbol{background-color:#f2f2f2;border-bottom:1px solid #ccc;border-top:1px solid #ccc;box-sizing:border-box;color:#333;float:left;font-size:18px;height:35px;line-height:35px;margin:0;padding:0 12px}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-before{border-left:1px solid #ccc;border-right:none}form[id*=give-form] .give-donation-amount .give-currency-symbol.give-currency-position-after{border-left:none;border-right:1px solid #ccc}form[id*=give-form] .give-donation-amount #give-amount,form[id*=give-form] .give-donation-amount #give-amount-text{background:#fff;border:1px solid #ccc;border-radius:0;box-sizing:border-box;float:left;font-size:18px;height:35px;line-height:35px;margin:0;min-width:125px;padding:0 12px}form[id*=give-form] .give-donation-amount #give-amount-text.invalid-amount,form[id*=give-form] .give-donation-amount #give-amount.invalid-amount{border:1px solid red}form[id*=give-form] .give-donation-amount input.give-amount-top{width:125px}form[id*=give-form] .give-donation-amount span.give-final-total-amount{background:#fff;border:1px solid #ccc;border-radius:0;box-sizing:border-box;cursor:not-allowed;float:left;font-size:18px;height:35px;line-height:35px;margin:0;padding:0 12px}form[id*=give-form] #give_terms_agreement legend{display:none}form[id*=give-form] #give_terms_agreement label{display:inline-block}form[id*=give-form] #give-final-total-wrap{margin:10px 0 25px;padding:0;*zoom:1}form[id*=give-form] #give-final-total-wrap:after,form[id*=give-form] #give-final-total-wrap:before{content:" ";display:table}form[id*=give-form] #give-final-total-wrap:after{clear:both}form[id*=give-form] #give-final-total-wrap .give-donation-total-label{background-color:#f2f2f2;border:1px solid #ccc;box-sizing:border-box;color:#333;float:left;font-size:18px;height:35px;line-height:35px;margin:0;padding:0 12px}@media(max-width:480px){form[id*=give-form] #give-final-total-wrap .give-donation-total-label{display:block;float:none}}form[id*=give-form] #give-final-total-wrap .give-final-total-amount{background:#fff;border:1px solid #ccc;border-left:none;border-radius:0;box-sizing:border-box;float:left;font-size:18px;height:35px;line-height:35px;margin:0;padding:0 12px}@media(max-width:480px){form[id*=give-form] #give-final-total-wrap .give-final-total-amount{border:1px solid #ccc;border-top:0;display:block;float:none}}.give-display-button-only>:not(.give-btn-modal){display:none}form[id*=give-form] input[type=radio]{margin:0 .5em 0 0}form[id*=give-form] #give-donation-level-radio-list{clear:both;list-style:none;margin:0 0 15px;padding:0}form[id*=give-form] #give-donation-level-radio-list>li{list-style-image:none;list-style-type:none;margin:0;padding:0}form[id*=give-form] #give-donation-level-radio-list>li label{cursor:pointer;display:inline-block;margin:0}form[id*=give-form] #give-donation-level-radio-list>li input[type=radio]{margin:0 .5em 0 0;outline:none;width:auto}form[id*=give-form] #give-gateway-radio-list{*zoom:1;list-style:none;margin:0 0 15px;padding:0}form[id*=give-form] #give-gateway-radio-list:after,form[id*=give-form] #give-gateway-radio-list:before{content:" ";display:table}form[id*=give-form] #give-gateway-radio-list:after{clear:both}form[id*=give-form] #give-gateway-radio-list>li{list-style-image:none;list-style-type:none;margin:0;padding:0}@media(min-width:480px){form[id*=give-form] #give-gateway-radio-list>li{display:inline-block;margin-left:0;margin-right:15px}}form[id*=give-form] #give-gateway-radio-list>li label.give-gateway-option{cursor:pointer;display:inline;margin:0}form[id*=give-form] #give-gateway-radio-list>li input[type=radio]{display:inline;margin:0 .25em 0 0;outline:none;width:auto}form[id*=give-form] input[type=checkbox]{margin:0 .25em 0 0}div[data-field-type=checkbox]{display:flex}div[data-field-type=checkbox] label{order:2}div[data-field-type=checkbox] input[type=checkbox]{order:1}form[id*=give-form] select.give-select-level{background-color:#fdfdfd;border:1px solid #ccc;border-radius:0;clear:both;color:#333;display:block;margin:0 0 15px;max-width:100%;min-width:155px;outline:none;padding:.5em}#give-donation-level-button-wrap{*zoom:1;clear:both;list-style:none;margin:0 0 15px;padding:0}#give-donation-level-button-wrap:after,#give-donation-level-button-wrap:before{content:" ";display:table}#give-donation-level-button-wrap:after{clear:both}#give-donation-level-button-wrap>li{float:left;list-style-image:none;list-style-type:none;margin:0 5px 5px 0}.give_terms_links{float:right}[id*=give_secure_site_wrapper]{font-size:16px;line-height:20px;padding:4px 4px 15px 0}[id*=give_secure_site_wrapper] span.padlock{font-family:give-icomoon;speak:none;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:20px}[id*=give_secure_site_wrapper] span.padlock :before{display:inline-block}#give_purchase_form_wrap input.give-input.card-cvc.valid,#give_purchase_form_wrap input.give-input.card-expiry.valid,#give_purchase_form_wrap input.give-input.card-number.valid{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/give/build/images/tick.9cdce16f.png);background-position:right 10px top 50%;background-repeat:no-repeat;background-size:16px}#give_purchase_form_wrap input.give-input.card-cvc.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-expiry.valid.fl-input:not(.card-cvc):not(.card-expiry),#give_purchase_form_wrap input.give-input.card-number.valid.fl-input:not(.card-cvc):not(.card-expiry){background-position:right 55px top 50%}#give_purchase_form_wrap span.card-type{background-size:37px 26px!important;height:26px;position:absolute;right:0;top:-2px;width:37px}#give_purchase_form_wrap .fl-wrap span.card-type{right:11px;top:calc(.5em + 6px)}#give_purchase_form_wrap span.card-type.off{display:none}#give_purchase_form_wrap span.card-type.visa{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIj48cmVjdCBmaWxsPSIjMEU0NTk1IiB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgcng9IjQwIi8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTI3OC4xOTcgMzM0LjIyOGwzMy4zNjEtMTk1Ljc2M2g1My4zNmwtMzMuMzg1IDE5NS43NjN6bTI0Ni4xMTEtMTkxLjU0Yy0xMC41NzItMy45NjYtMjcuMTM3LTguMjIyLTQ3LjgyMy04LjIyMi01Mi43MjUgMC04OS44NjUgMjYuNTUtOTAuMTggNjQuNjAzLS4yOTggMjguMTMgMjYuNTEzIDQzLjgyMiA0Ni43NTMgNTMuMTg2IDIwLjc3IDkuNTk0IDI3Ljc1MiAxNS43MTQgMjcuNjU0IDI0LjI4My0uMTMyIDEzLjEyMS0xNi41ODcgMTkuMTE2LTMxLjkyMyAxOS4xMTYtMjEuMzU3IDAtMzIuNzAzLTIuOTY2LTUwLjIyNi0xMC4yNzZsLTYuODc2LTMuMTExLTcuNDkgNDMuODI0YzEyLjQ2NCA1LjQ2NCAzNS41MSAxMC4xOTggNTkuNDM4IDEwLjQ0MyA1Ni4wOSAwIDkyLjUwMS0yNi4yNDYgOTIuOTE2LTY2Ljg4Mi4yLTIyLjI2OC0xNC4wMTYtMzkuMjE2LTQ0LjgtNTMuMTg4LTE4LjY1LTkuMDU1LTMwLjA3Mi0xNS4wOTktMjkuOTUxLTI0LjI2OCAwLTguMTM3IDkuNjY3LTE2LjgzOSAzMC41NTYtMTYuODM5IDE3LjQ1LS4yNyAzMC4wODkgMy41MzUgMzkuOTM3IDcuNWw0Ljc4MSAyLjI2IDcuMjM0LTQyLjQzbTEzNy4zMDctNC4yMjJoLTQxLjIzMWMtMTIuNzc0IDAtMjIuMzMyIDMuNDg3LTI3Ljk0MiAxNi4yMzRsLTc5LjI0NSAxNzkuNDA0aDU2LjAzMnM5LjE2MS0yNC4xMjMgMTEuMjMzLTI5LjQxOGM2LjEyNCAwIDYwLjU1NC4wODQgNjguMzM3LjA4NCAxLjU5NiA2Ljg1MyA2LjQ5MSAyOS4zMzQgNi40OTEgMjkuMzM0aDQ5LjUxM2wtNDMuMTg4LTE5NS42Mzh6bS02NS40MTggMTI2LjQwN2M0LjQxMy0xMS4yNzkgMjEuMjYtNTQuNzIzIDIxLjI2LTU0LjcyMy0uMzE2LjUyMiA0LjM4LTExLjMzNCA3LjA3NS0xOC42ODRsMy42MDYgMTYuODc5czEwLjIxNyA0Ni43MjggMTIuMzUyIDU2LjUyOGgtNDQuMjkzek0yMzIuOTAzIDEzOC40NjVsLTUyLjI0IDEzMy40OTYtNS41NjctMjcuMTNjLTkuNzI1LTMxLjI3My00MC4wMjUtNjUuMTU1LTczLjg5OC04Mi4xMThsNDcuNzY2IDE3MS4yMDMgNTYuNDU2LS4wNjUgODQuMDA0LTE5NS4zODZoLTU2LjUyMSIvPjxwYXRoIGQ9Ik0xMzEuOTIgMTM4LjQ2NUg0NS44NzlsLS42ODEgNC4wNzNjNjYuOTM4IDE2LjIwNCAxMTEuMjMxIDU1LjM2MyAxMjkuNjE4IDEwMi40MTRsLTE4LjcxLTg5Ljk2Yy0zLjIzLTEyLjM5NS0xMi41OTctMTYuMDk0LTI0LjE4Ni0xNi41MjYiIGZpbGw9IiNGMkFFMTQiLz48L2c+PC9zdmc+) no-repeat}#give_purchase_form_wrap span.card-type.mastercard{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIj48cmVjdCBmaWxsPSIjMDAwIiB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgcng9IjQwIi8+PHBhdGggZD0iTTQzNC4wMDggMjM1LjVjMCA5OS4xNDItODAuMzcgMTc5LjUwNC0xNzkuNTA4IDE3OS41MDRTNzUgMzM0LjY0MiA3NSAyMzUuNWMwLTk5LjEzMyA4MC4zNjItMTc5LjUwNCAxNzkuNS0xNzkuNTA0IDk5LjEzNyAwIDE3OS41MDggODAuMzcgMTc5LjUwOCAxNzkuNTA0IiBmaWxsPSIjRDkyMjJBIi8+PHBhdGggZD0iTTQ5NS40OTIgNTUuOTk2Yy00Ni4zOCAwLTg4LjY0MiAxNy41OTYtMTIwLjUgNDYuNDY2YTE4Mi40MyAxODIuNDMgMCAwIDAtMTguMTI1IDE4Ljk5NmgzNi4yNjZhMTgxLjggMTgxLjggMCAwIDEgMTMuNjg0IDE5LjAxM2gtNjMuNjM0YTE3OC43MTYgMTc4LjcxNiAwIDAgMC0xMC4zNDEgMTkuMDA4aDg0LjMxMmExNzkuMTkgMTc5LjE5IDAgMCAxIDcuNiAxOS4wMDRoLTk5LjUxMmExNzcuMjk0IDE3Ny4yOTQgMCAwIDAtNS4yMTcgMTkuMDA5aDEwOS45NDJhMTgwLjQyOCAxODAuNDI4IDAgMCAxIDQuMDQxIDM4LjAwOGMwIDE5LjkzMy0zLjI1NCAzOS4xMTMtOS4yNTQgNTcuMDJoLTk5LjUxMmExNzcuNjUxIDE3Ny42NTEgMCAwIDAgNy41OTUgMTkuMDFoODQuMzE3YTE3OS45NyAxNzkuOTcgMCAwIDEtMTAuMzQ2IDE5LjAxMmgtNjMuNjI1YTE4MS42NSAxODEuNjUgMCAwIDAgMTMuNjg0IDE4Ljk5NmgzNi4yNThhMTc5LjI5NyAxNzkuMjk3IDAgMCAxLTE4LjEzIDE5LjAxMmMzMS44NiAyOC44NjcgNzQuMTE4IDQ2LjQ1NCAxMjAuNDk3IDQ2LjQ1NEM1OTQuNjI5IDQxNS4wMDQgNjc1IDMzNC42NDIgNjc1IDIzNS41YzAtOTkuMTMtODAuMzctMTc5LjUwNC0xNzkuNTA4LTE3OS41MDQiIGZpbGw9IiNFRTlGMkQiLz48cGF0aCBkPSJNNjUxLjA3NSAzMzUuNTU4YzAtMy4yIDIuNTkyLTUuOCA1Ljc5Ni01LjhzNS43OTYgMi42IDUuNzk2IDUuOGMwIDMuMi0yLjU5MiA1LjgtNS43OTYgNS44YTUuNzk4IDUuNzk4IDAgMCAxLTUuNzk2LTUuOHptNS43OTYgNC40MDlhNC40MSA0LjQxIDAgMCAwIDQuNDA4LTQuNDA5IDQuNDA0IDQuNDA0IDAgMCAwLTQuNDA4LTQuNDA0IDQuMzk4IDQuMzk4IDAgMCAwLTQuNDA0IDQuNDA0IDQuNDA0IDQuNDA0IDAgMCAwIDQuNDA0IDQuNDA5em0tLjc4My0xLjg1OUg2NTQuOXYtNS4wOTVoMi4xNWMuNDUgMCAuOTA4IDAgMS4zMDQuMjU0LjQxMy4yNzkuNjQ2Ljc3LjY0NiAxLjI3OSAwIC41Ny0uMzM3IDEuMTA0LS44ODMgMS4zMTJsLjkzNyAyLjI1aC0xLjMxNmwtLjc4LTIuMDE2aC0uODd2Mi4wMTZ6bTAtMi44OTFoLjY1OGMuMjQ2IDAgLjUwNC4wMi43MjUtLjEuMTk2LS4xMjUuMjk2LS4zNTkuMjk2LS41ODRhLjYzNi42MzYgMCAwIDAtLjI4OC0uNTE2Yy0uMjA4LS4xMy0uNTM3LS4xLS43NTgtLjFoLS42MzN2MS4zem0tNDQzLjUwMS04MC4wNjNjLTIuMDQ1LS4yMzctMi45NDUtLjMtNC4zNS0uMy0xMS4wNDUgMC0xNi42MzcgMy43ODgtMTYuNjM3IDExLjI2NyAwIDQuNjEyIDIuNzMgNy41NDYgNi45ODcgNy41NDYgNy45MzggMCAxMy42NTktNy41NTkgMTQtMTguNTEzem0xNC4xNzEgMzIuOTk2aC0xNi4xNDZsLjM3MS03LjY3NWMtNC45MjUgNi4wNjctMTEuNDk2IDguOTUtMjAuNDI1IDguOTUtMTAuNTYyIDAtMTcuODA0LTguMjUtMTcuODA0LTIwLjIzIDAtMTguMDI0IDEyLjU5Ni0yOC41NCAzNC4yMTctMjguNTQgMi4yMDggMCA1LjA0MS4yIDcuOTQxLjU3LjYwNS0yLjQ0Mi43NjMtMy40ODcuNzYzLTQuOCAwLTQuOTA4LTMuMzk2LTYuNzM4LTEyLjUtNi43MzgtOS41MzMtLjEwOC0xNy4zOTYgMi4yNzEtMjAuNjI1IDMuMzM0LjIwNC0xLjIzIDIuNy0xNi42NTggMi43LTE2LjY1OCA5LjcxMi0yLjg0NiAxNi4xMTctMy45MTcgMjMuMzI1LTMuOTE3IDE2LjczMyAwIDI1LjU5NiA3LjUxMiAyNS41OCAyMS43MTIuMDMyIDMuODA1LS41OTcgOC41LTEuNTggMTQuNjcxLTEuNjkyIDEwLjczLTUuMzIgMzMuNzE3LTUuODE3IDM5LjMyMXptLTYyLjE1OCAwaC0xOS40ODhsMTEuMTYzLTY5Ljk5Ni0yNC45MjUgNjkuOTk2aC0xMy4yOGwtMS42NC02OS41OTYtMTEuNzM0IDY5LjU5Nkg4Ni40NTRsMTUuMjM4LTkxLjA1NGgyOC4wMmwxLjcgNTAuOTY3IDE3LjA5Mi01MC45NjdoMzEuMTY3TDE2NC42IDI4OC4xNW0zNTQuOTc1LTMyLjk5NmMtMi4wMzctLjIzNy0yLjk0Mi0uMy00LjM0Mi0uMy0xMS4wNDEgMC0xNi42MzMgMy43ODgtMTYuNjMzIDExLjI2NyAwIDQuNjEyIDIuNzI1IDcuNTQ2IDYuOTgzIDcuNTQ2IDcuOTM4IDAgMTMuNjYzLTcuNTU5IDEzLjk5Mi0xOC41MTN6bTE0LjE4MyAzMi45OTZoLTE2LjE0NWwuMzY2LTcuNjc1Yy00LjkyNSA2LjA2Ny0xMS41IDguOTUtMjAuNDIgOC45NS0xMC41NjcgMC0xNy44LTguMjUtMTcuOC0yMC4yMyAwLTE4LjAyNCAxMi41ODctMjguNTQgMzQuMjEyLTI4LjU0IDIuMjA4IDAgNS4wMzcuMiA3LjkzMy41Ny42MDQtMi40NDIuNzYzLTMuNDg3Ljc2My00LjggMC00LjkwOC0zLjM5Mi02LjczOC0xMi40OTYtNi43MzgtOS41MzMtLjEwOC0xNy4zODggMi4yNzEtMjAuNjMgMy4zMzQuMjA1LTEuMjMgMi43MDktMTYuNjU4IDIuNzA5LTE2LjY1OCA5LjcxMy0yLjg0NiAxNi4xMTMtMy45MTcgMjMuMzEzLTMuOTE3IDE2Ljc0MSAwIDI1LjYwNCA3LjUxMiAyNS41ODcgMjEuNzEyLjAzMyAzLjgwNS0uNTk2IDguNS0xLjU4IDE0LjY3MS0xLjY4MiAxMC43My01LjMyIDMzLjcxNy01LjgxMiAzOS4zMjF6bS0yMjAuMzkxLTEuMTI1Yy01LjMzNCAxLjY4LTkuNDkyIDIuNC0xNCAyLjQtOS45NjMgMC0xNS40LTUuNzI1LTE1LjQtMTYuMjY3LS4xNDItMy4yNyAxLjQzMy0xMS44NzkgMi42Ny0xOS43MzcgMS4xMjUtNi45MTcgOC40NS01MC41MyA4LjQ1LTUwLjUzaDE5LjM3MWwtMi4yNjIgMTEuMjA5aDExLjdsLTIuNjQyIDE3Ljc5NmgtMTEuNzQyYy0yLjI1IDE0LjA4My01LjQ1NCAzMS42MjUtNS40OTEgMzMuOTUgMCAzLjgxNyAyLjAzNyA1LjQ4MyA2LjY3IDUuNDgzIDIuMjIxIDAgMy45NDItLjIyNSA1LjI1NS0uN2wtMi41OCAxNi4zOTZtNTkuMzkyLS42Yy02LjY1NCAyLjAzMy0xMy4wNzUgMy4wMTctMTkuODc5IDMtMjEuNjgzLS4wMi0zMi45ODctMTEuMzQ2LTMyLjk4Ny0zMy4wMzMgMC0yNS4zMTMgMTQuMzc5LTQzLjk0NiAzMy45LTQzLjk0NiAxNS45NyAwIDI2LjE3IDEwLjQzMyAyNi4xNyAyNi43OTYgMCA1LjQyOS0uNyAxMC43MjktMi4zODcgMTguMjEySDMzOWMtMS4zMDQgMTAuNzQyIDUuNTcgMTUuMjE3IDE2LjgzNyAxNS4yMTcgNi45MzQgMCAxMy4xODgtMS40MyAyMC4xNDItNC42NjNsLTMuMjIgMTguNDE3em0tMTAuODg3LTQzLjljLjEwOC0xLjU0MiAyLjA1NC0xMy4yMTctOS4wMTMtMTMuMjE3LTYuMTcgMC0xMC41ODMgNC43MDQtMTIuMzc5IDEzLjIxN2gyMS4zOTJ6bS0xMjMuNDI1LTUuMDE3YzAgOS4zNjcgNC41NDEgMTUuODI1IDE0Ljg0MSAyMC42NzUgNy44OTIgMy43MDkgOS4xMTMgNC44MDkgOS4xMTMgOC4xNzEgMCA0LjYxNy0zLjQ4IDYuNy0xMS4xOTIgNi43LTUuODEyIDAtMTEuMjItLjkwOC0xNy40NTgtMi45MiAwIDAtMi41NjMgMTYuMzItMi42OCAxNy4xIDQuNDMuOTY2IDguMzggMS44NjIgMjAuMjggMi4xOTEgMjAuNTYyIDAgMzAuMDU4LTcuODMgMzAuMDU4LTI0Ljc1IDAtMTAuMTc1LTMuOTc1LTE2LjE0Ni0xMy43MzctMjAuNjMzLTguMTcxLTMuNzUtOS4xMDktNC41ODgtOS4xMDktOC4wNDYgMC00LjAwNCAzLjIzOC02LjA0NiA5LjUzOC02LjA0NiAzLjgyNSAwIDkuMDUuNDA4IDE0IDEuMTEzbDIuNzc1LTE3LjE3NWMtNS4wNDYtLjgtMTIuNjk2LTEuNDQyLTE3LjE1LTEuNDQyLTIxLjggMC0yOS4zNDYgMTEuMzg3LTI5LjI4IDI1LjA2Mm0yMjkuMDg4LTIzLjExNmM1LjQxMyAwIDEwLjQ1OSAxLjQyIDE3LjQxMyA0LjkybDMuMTg3LTE5Ljc2MmMtMi44NTQtMS4xMi0xMi45MDQtNy43LTIxLjQxNi03LjctMTMuMDQyIDAtMjQuMDY3IDYuNDctMzEuODIxIDE3LjE1LTExLjMwOS0zLjc0Ni0xNS45NTkgMy44MjUtMjEuNjU5IDExLjM2N2wtNS4wNjIgMS4xNzljLjM4My0yLjQ4My43My00Ljk1LjYxMy03LjQ0NmgtMTcuODk2Yy0yLjQ0NiAyMi45MTctNi43OCA0Ni4xMy0xMC4xNzEgNjkuMDc1bC0uODg0IDQuOTc1aDE5LjQ5NmMzLjI1NC0yMS4xNDIgNS4wMzgtMzQuNjggNi4xMjEtNDMuODQybDcuMzQyLTQuMDgzYzEuMDk2LTQuMDggNC41MjktNS40NTggMTEuNDE2LTUuMjkyYTgyLjk2NiA4Mi45NjYgMCAwIDAtMS4zODMgMTUuMTg0YzAgMjQuMjI1IDEzLjA3MSAzOS4zMDggMzQuMDUgMzkuMzA4IDUuNDA0IDAgMTAuMDQyLS43MTIgMTcuMjIxLTIuNjU4bDMuNDMtMjAuNzU5Yy02LjQ2IDMuMTgtMTEuNzYgNC42NzUtMTYuNTYgNC42NzUtMTEuMzI4IDAtMTguMTgzLTguMzYyLTE4LjE4My0yMi4xODMgMC0yMC4wNSAxMC4xOTYtMzQuMTA4IDI0Ljc0Ni0zNC4xMDgiIGZpbGw9IiMwMDAiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTcwLjIwOCAyODIuNzQyaC0xOS40OTFsMTEuMTctNjkuOTg4LTI0LjkyNSA2OS45ODhIMTIzLjY4bC0xLjY0Mi02OS41ODgtMTEuNzMzIDY5LjU4OEg5Mi4wNjJMMTA3LjMgMTkxLjdoMjguMDJsLjc4OCA1Ni4zNjMgMTguOTA0LTU2LjM2M2gzMC4yNjdsLTE1LjA3IDkxLjA0MiIvPjxwYXRoIGQ9Ik02MzIuNTIgMTk3LjA5NmwtNC4zMiAyNi4zMDhjLTUuMzMtNy4wMTItMTEuMDU0LTEyLjA4Ny0xOC42MTItMTIuMDg3LTkuODM0IDAtMTguNzg0IDcuNDU0LTI0LjY0MiAxOC40MjUtOC4xNTgtMS42OTItMTYuNTk2LTQuNTYzLTE2LjU5Ni00LjU2M2wtLjAwNC4wNjdjLjY1OC02LjEzMy45Mi05Ljg3NS44NjItMTEuMTQ2aC0xNy45Yy0yLjQzNyAyMi45MTctNi43NyA0Ni4xMy0xMC4xNTggNjkuMDc1bC0uODkyIDQuOTc1aDE5LjQ5MmMyLjYzMy0xNy4wOTYgNC42NS0zMS4yOTIgNi4xMzMtNDIuNTUgNi42NTktNi4wMTcgOS45OTItMTEuMjY3IDE2LjcyMS0xMC45MTctMi45NzkgNy4yMDUtNC43MjUgMTUuNTA1LTQuNzI1IDI0LjAxNyAwIDE4LjUxMyA5LjM2NyAzMC43MjUgMjMuNTM0IDMwLjcyNSA3LjE0MSAwIDEyLjYyLTIuNDYyIDE3Ljk2Ni04LjE3bC0uOTEyIDYuODgzSDYzNi45bDE0Ljg0Mi05MS4wNDJINjMyLjUyem0tMjQuMzcgNzMuOTQyYy02LjYzMyAwLTkuOTgzLTQuOTA5LTkuOTgzLTE0LjU5NiAwLTE0LjU1NCA2LjI3LTI0Ljg3NSAxNS4xMTItMjQuODc1IDYuNjk2IDAgMTAuMzIxIDUuMTA0IDEwLjMyMSAxNC41MDggMCAxNC42OC02LjM3IDI0Ljk2My0xNS40NSAyNC45NjN6IiBmaWxsPSIjMDAwIi8+PHBhdGggZD0iTTIxOC4xOTIgMjQ5Ljc1OGMtMi4wNDItLjIzNy0yLjk0Ni0uMy00LjM0Ni0uMy0xMS4wNDYgMC0xNi42MzQgMy43ODgtMTYuNjM0IDExLjI2NyAwIDQuNjA0IDIuNzMgNy41NDYgNi45OCA3LjU0NiA3Ljk0NSAwIDEzLjY2Ni03LjU1OCAxNC0xOC41MTN6bTE0LjE3OSAzMi45ODRoLTE2LjE0NmwuMzY3LTcuNjYzYy00LjkyMSA2LjA1NC0xMS41IDguOTUtMjAuNDIxIDguOTUtMTAuNTY3IDAtMTcuODA0LTguMjUtMTcuODA0LTIwLjIyOSAwLTE4LjAzMyAxMi41OTEtMjguNTQyIDM0LjIxNi0yOC41NDIgMi4yMDkgMCA1LjA0Mi4yIDcuOTM4LjU3MS42MDQtMi40NDIuNzYyLTMuNDg3Ljc2Mi00LjgwOCAwLTQuOTA4LTMuMzkxLTYuNzMtMTIuNDk2LTYuNzMtOS41MzctLjEwOC0xNy4zOTUgMi4yNzItMjAuNjI5IDMuMzIyLjIwNC0xLjIyNiAyLjctMTYuNjM4IDIuNy0xNi42MzggOS43MDktMi44NTggMTYuMTIxLTMuOTMgMjMuMzIxLTMuOTMgMTYuNzM4IDAgMjUuNjA0IDcuNTE4IDI1LjU4OCAyMS43MDUuMDI5IDMuODItLjYwNSA4LjUxMi0xLjU4NCAxNC42NzUtMS42ODcgMTAuNzI1LTUuMzIgMzMuNzI1LTUuODEyIDM5LjMxN3ptMjYxLjM3NS04OC41OTJsLTMuMTkyIDE5Ljc2N2MtNi45NS0zLjQ5Ni0xMi00LjkyMS0xNy40MDgtNC45MjEtMTQuNTUgMC0yNC43NSAxNC4wNTgtMjQuNzUgMzQuMTA4IDAgMTMuODIxIDYuODU4IDIyLjE4IDE4LjE4MyAyMi4xOCA0LjggMCAxMC4wOTYtMS40OTIgMTYuNTU0LTQuNjc2bC0zLjQyIDIwLjc1Yy03LjE4NCAxLjk1OS0xMS44MTcgMi42NzEtMTcuMjI2IDIuNjcxLTIwLjk3NSAwLTM0LjA1LTE1LjA4My0zNC4wNS0zOS4zMDggMC0zMi41NSAxOC4wNTktNTUuMyA0My44ODgtNTUuMyA4LjUwOCAwIDE4LjU2MyAzLjYwOCAyMS40MiA0LjcyOW0zMS40NDMgNTUuNjA4Yy0yLjA0Mi0uMjM3LTIuOTQyLS4zLTQuMzQ2LS4zLTExLjA0MiAwLTE2LjYzNCAzLjc4OC0xNi42MzQgMTEuMjY3IDAgNC42MDQgMi43MyA3LjU0NiA2Ljk4NCA3LjU0NiA3LjkzNyAwIDEzLjY2Mi03LjU1OCAxMy45OTYtMTguNTEzem0xNC4xNzkgMzIuOTg0aC0xNi4xNWwuMzctNy42NjNjLTQuOTI0IDYuMDU0LTExLjUgOC45NS0yMC40MiA4Ljk1LTEwLjU2MyAwLTE3LjgwNC04LjI1LTE3LjgwNC0yMC4yMjkgMC0xOC4wMzMgMTIuNTk1LTI4LjU0MiAzNC4yMTItMjguNTQyIDIuMjEzIDAgNS4wNDIuMiA3Ljk0Mi41NzEuNi0yLjQ0Mi43NjItMy40ODcuNzYyLTQuODA4IDAtNC45MDgtMy4zOTEtNi43My0xMi40OTYtNi43My05LjUzMy0uMTA4LTE3LjM5NSAyLjI3Mi0yMC42MjkgMy4zMjIuMjA0LTEuMjI2IDIuNzA0LTE2LjYzOCAyLjcwNC0xNi42MzggOS43MDktMi44NTggMTYuMTE3LTMuOTMgMjMuMzE3LTMuOTMgMTYuNzQyIDAgMjUuNjA0IDcuNTE4IDI1LjU4MyAyMS43MDUuMDM0IDMuODItLjU5NSA4LjUxMi0xLjU3OSAxNC42NzUtMS42ODMgMTAuNzI1LTUuMzI1IDMzLjcyNS01LjgxMiAzOS4zMTd6bS0yMjAuMzkyLTEuMTIyYy01LjMzOCAxLjY4LTkuNDk2IDIuNDEtMTQgMi40MS05Ljk2MyAwLTE1LjQtNS43MjYtMTUuNC0xNi4yNjctLjEzOC0zLjI4IDEuNDM3LTExLjg4IDIuNjc1LTE5LjczOCAxLjEyLTYuOTI1IDguNDQ2LTUwLjUzMyA4LjQ0Ni01MC41MzNoMTkuMzY2bC0yLjI1OCAxMS4yMTJoOS45NDJsLTIuNjQ2IDE3Ljc4OGgtOS45NzVjLTIuMjUgMTQuMDkxLTUuNDYzIDMxLjYyLTUuNDk2IDMzLjk1IDAgMy44MjkgMi4wNDIgNS40ODMgNi42NzEgNS40ODMgMi4yMiAwIDMuOTM3LS4yMTcgNS4yNTQtLjY5MmwtMi41NzkgMTYuMzg4bTU5LjM5Mi0uNTkxYy02LjY1IDIuMDMzLTEzLjA4IDMuMDEyLTE5Ljg4IDMtMjEuNjgzLS4wMjItMzIuOTg3LTExLjM0Ny0zMi45ODctMzMuMDM0IDAtMjUuMzIxIDE0LjM4LTQzLjk1IDMzLjktNDMuOTUgMTUuOTcgMCAyNi4xNyAxMC40MjkgMjYuMTcgMjYuOCAwIDUuNDMzLS43IDEwLjczMy0yLjM4MiAxOC4yMTJoLTM4LjU3NWMtMS4zMDUgMTAuNzQyIDUuNTcgMTUuMjIxIDE2LjgzNyAxNS4yMjEgNi45MyAwIDEzLjE4OC0xLjQzMyAyMC4xMzctNC42NzVsLTMuMjIgMTguNDI1em0tMTAuODkyLTQzLjkxM2MuMTE3LTEuNTM4IDIuMDU4LTEzLjIxNy05LjAxMy0xMy4yMTctNi4xNjYgMC0xMC41NzkgNC43MTctMTIuMzc1IDEzLjIxN2gyMS4zODh6bS0xMjMuNDIxLTUuMDA0YzAgOS4zNjYgNC41NDIgMTUuODE2IDE0Ljg0MiAyMC42NzUgNy44OTEgMy43MDggOS4xMTIgNC44MTIgOS4xMTIgOC4xNyAwIDQuNjE3LTMuNDgzIDYuNy0xMS4xODcgNi43LTUuODE3IDAtMTEuMjI1LS45MDgtMTcuNDY3LTIuOTIgMCAwLTIuNTU0IDE2LjMyLTIuNjcgMTcuMSA0LjQyLjk2NiA4LjM3NCAxLjg1IDIwLjI3NCAyLjE5MSAyMC41NjcgMCAzMC4wNTktNy44MjkgMzAuMDU5LTI0Ljc0NiAwLTEwLjE3OS0zLjk3MS0xNi4xNS0xMy43MzgtMjAuNjM3LTguMTY3LTMuNzU4LTkuMTEyLTQuNTgzLTkuMTEyLTguMDQ2IDAtNCAzLjI0NS02LjA1OCA5LjU0MS02LjA1OCAzLjgyMSAwIDkuMDQ2LjQyIDE0LjAwNCAxLjEyNWwyLjc3MS0xNy4xOGMtNS4wNDEtLjgtMTIuNjkxLTEuNDQxLTE3LjE0Ni0xLjQ0MS0yMS44MDQgMC0yOS4zNDUgMTEuMzc5LTI5LjI4MyAyNS4wNjdtMzk4LjQ1NCA1MC42MjloLTE4LjQzN2wuOTE3LTYuODkyYy01LjM0NiA1LjcxNy0xMC44MjUgOC4xOC0xNy45NjcgOC4xOC0xNC4xNjcgMC0yMy41My0xMi4yMTMtMjMuNTMtMzAuNzI2IDAtMjQuNjI5IDE0LjUyMi00NS4zOTIgMzEuNzA5LTQ1LjM5MiA3LjU1OCAwIDEzLjI4IDMuMDg4IDE4LjYwNCAxMC4wOTZsNC4zMjUtMjYuMzA4aDE5LjIyMWwtMTQuODQyIDkxLjA0MnptLTI4Ljc0NS0xNy4xMDljOS4wNzUgMCAxNS40NS0xMC4yODMgMTUuNDUtMjQuOTU0IDAtOS40MDQtMy42My0xNC41MDgtMTAuMzI1LTE0LjUwOC04LjgzOCAwLTE1LjExNyAxMC4zMTctMTUuMTE3IDI0Ljg3NSAwIDkuNjg3IDMuMzU4IDE0LjU4NyA5Ljk5MiAxNC41ODd6bS01Ni44NDMtNTYuOTI5Yy0yLjQ0IDIyLjkxNy02Ljc3NCA0Ni4xMy0xMC4xNjIgNjkuMDYzbC0uODkxIDQuOTc1aDE5LjQ5MWM2Ljk3MS00NS4yNzUgOC42NTktNTQuMTE3IDE5LjU4OC01My4wMDkgMS43NDItOS4yNjYgNC45ODMtMTcuMzgzIDcuNC0yMS40NzktOC4xNjMtMS43LTEyLjcyMSAyLjkxMy0xOC42ODggMTEuNjc1LjQ3MS0zLjc4NyAxLjMzNC03LjQ2NiAxLjE2My0xMS4yMjVoLTE3LjltLTE2MC40MjEgMGMtMi40NDYgMjIuOTE3LTYuNzggNDYuMTMtMTAuMTY3IDY5LjA2M2wtLjg4NyA0Ljk3NWgxOS41YzYuOTYyLTQ1LjI3NSA4LjY0Ni01NC4xMTcgMTkuNTctNTMuMDA5IDEuNzUtOS4yNjYgNC45OTItMTcuMzgzIDcuNC0yMS40NzktOC4xNTQtMS43LTEyLjcxNiAyLjkxMy0xOC42NzggMTEuNjc1LjQ3LTMuNzg3IDEuMzI1LTcuNDY2IDEuMTYyLTExLjIyNWgtMTcuOW0yNTQuNTY3IDY4LjI0MmMwLTMuMjEzIDIuNTk2LTUuOCA1Ljc5Ni01LjhhNS43OSA1Ljc5IDAgMCAxIDUuNzk1IDUuOCA1Ljc5NyA1Ljc5NyAwIDAgMS01Ljc5NSA1Ljc5NiA1LjggNS44IDAgMCAxLTUuNzk2LTUuNzk2em01Ljc5NiA0LjQwNGE0LjQwMyA0LjQwMyAwIDAgMCA0LjQwNC00LjQwNCA0LjQwNCA0LjQwNCAwIDAgMC00LjQwNC00LjQwOCA0LjQxIDQuNDEgMCAwIDAtNC40MDkgNC40MDggNC40MSA0LjQxIDAgMCAwIDQuNDA5IDQuNDA0em0tLjc4NC0xLjg3aC0xLjE4N3YtNS4wODRoMi4xNTRjLjQ0NiAwIC45MDguMDA4IDEuMjk2LjI1NC40MTYuMjgzLjY1NC43NjcuNjU0IDEuMjc1IDAgLjU3NS0uMzM4IDEuMTEzLS44ODggMS4zMTdsLjk0MiAyLjIzN2gtMS4zMmwtLjc4LTIuMDA4aC0uODd2Mi4wMDh6bTAtMi44OGguNjU0Yy4yNDYgMCAuNTEzLjAxNy43My0uMS4xOTUtLjEyNS4yOTUtLjM2Mi4yOTUtLjU4N2EuNjc3LjY3NyAwIDAgMC0uMjg3LS41MjVjLS4yMDQtLjExNy0uNTQyLS4wODQtLjc2My0uMDg0aC0uNjI5djEuMjk2eiIgZmlsbD0iI0ZGRiIvPjwvZz48L3N2Zz4=) no-repeat}#give_purchase_form_wrap span.card-type.discover{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTAiIGhlaWdodD0iNDcxIj48ZyBmaWxsPSJub25lIj48cGF0aCBkPSJNNTIuOSAwQzIzLjcgMCAwIDIzLjIgMCA1MS43djM2Ny42QzAgNDQ3LjkgMjMuNyA0NzEgNTIuOSA0NzFoNjQ0LjJjMjkuMiAwIDUyLjktMjMuMiA1Mi45LTUxLjdWNTEuN0M3NTAgMjMuMSA3MjYuMyAwIDY5Ny4xIDBINTIuOXoiIGZpbGw9IiM0RDRENEQiLz48cGF0aCBkPSJNMzE0LjYgMTUyLjJjOC41IDAgMTUuNiAxLjcgMjQuMyA1Ljl2MjIuMWMtOC4yLTcuNi0xNS40LTEwLjgtMjQuOC0xMC44LTE4LjUgMC0zMy4xIDE0LjUtMzMuMSAzMyAwIDE5LjUgMTQuMSAzMy4yIDM0IDMzLjIgOSAwIDE2LTMgMjMuOS0xMC41djIyLjFjLTkgNC0xNi4zIDUuNi0yNC44IDUuNi0zMC4xIDAtNTMuNC0yMi01My40LTUwLjIgMC0yOCAyMy45LTUwLjQgNTMuOS01MC40em0tOTMuNC42YzExLjEgMCAyMS4zIDMuNiAyOS43IDEwLjdsLTEwLjMgMTIuOGMtNS4xLTUuNC0xMC03LjgtMTUuOS03LjgtOC41IDAtMTQuNyA0LjctMTQuNyAxMC43IDAgNS4yIDMuNSA4IDE1LjMgMTIuMSAyMi41IDcuOCAyOS4xIDE0LjggMjkuMSAzMC4xIDAgMTguNi0xNC40IDMxLjYtMzQuOSAzMS42LTE1IDAtMjYtNS43LTM1LjEtMTguNGwxMi44LTExLjZjNC42IDguMyAxMi4xIDEyLjggMjEuNiAxMi44IDguOCAwIDE1LjMtNS44IDE1LjMtMTMuNiAwLTQtMi03LjUtNS45LTkuOS0yLTEuMi01LjktMi45LTEzLjctNS41LTE4LjUtNi40LTI0LjktMTMuMi0yNC45LTI2LjQgMC0xNS44IDEzLjctMjcuNiAzMS42LTI3LjZ6bTIyNS43IDEuN2gyMS42bDI3IDY0LjYgMjcuMy02NC42aDIxLjRsLTQzLjcgOTguN2gtMTAuNmwtNDMtOTguN3ptLTM4Mi4xLjFoMjljMzIgMCA1NC40IDE5LjggNTQuNCA0OC4yIDAgMTQuMi02LjkgMjcuOS0xOC40IDM3LTkuNyA3LjYtMjAuOCAxMS4xLTM2LjEgMTEuMUg2NC44di05Ni4zem05Mi41IDBIMTc3djk2LjNoLTE5Ljd2LTk2LjN6bTM5NS45IDBoNTZ2MTYuM2gtMzYuM3YyMS40aDM0Ljl2MTYuM2gtMzQuOXYyNmgzNi4zdjE2LjNoLTU2di05Ni4zem02OS4xIDBoMjkuMmMyMi44IDAgMzUuOSAxMC40IDM1LjkgMjguNCAwIDE0LjgtOC4yIDI0LjUtMjMuMSAyNy4zbDMxLjkgNDAuNmgtMjQuM2wtMjcuMy0zOC43SDY0MnYzOC43aC0xOS43di05Ni4zem0xOS43IDE1LjJ2MjkuMWg1LjdjMTIuNyAwIDE5LjMtNS4yIDE5LjMtMTQuOCAwLTkuNC02LjYtMTQuMy0xOC45LTE0LjNINjQyem0tNTU3LjQgMS4xdjYzLjdoNS4zYzEyLjcgMCAyMC44LTIuMyAyNy03LjcgNi44LTUuNyAxMC45LTE1IDEwLjktMjQuMnMtNC4xLTE4LjItMTAuOS0yNGMtNi41LTUuNi0xNC4zLTcuOC0yNy03LjhoLTUuM3oiIGZpbGw9IiNGRkYiLz48cGF0aCBkPSJNMzk5LjIgMTUxLjZjMjkuNyAwIDUzLjggMjIuMSA1My44IDQ5LjVzLTI0LjEgNDkuNi01My44IDQ5LjZjLTI5LjggMC01My45LTIyLjItNTMuOS00OS42IDAtMjcuNCAyNC4xLTQ5LjUgNTMuOS00OS41ek03NTAgMjcxLjFDNzI0LjkgMjg4LjMgNTM3LjQgNDExLjUgMjEyLjcgNDcxaDQ4NC40YzI5LjIgMCA1Mi45LTIzLjIgNTIuOS01MS43VjI3MS4xeiIgZmlsbD0iI0Y0NzIxNiIvPjwvZz48L3N2Zz4=) no-repeat}#give_purchase_form_wrap span.card-type.amex{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTAiIGhlaWdodD0iNDcxIj48c3R5bGU+LmF7ZmlsbDojZmZmfTwvc3R5bGU+PGcgZmlsbD0ibm9uZSI+PHJlY3Qgd2lkdGg9Ijc1MCIgaGVpZ2h0PSI0NzEiIHJ4PSI0MCIgZmlsbD0iIzI1NTdENiIvPjxwYXRoIGQ9Ik0wIDIyMS4yaDM2bDguMS0xOS41aDE4LjJsOC4xIDE5LjVoNzAuOXYtMTQuOWw2LjMgMTQuOWgzNi44bDYuNC0xNS4ydjE1LjJoMTc2LjFsLS4xLTMyaDMuNGMyLjQgMCAzLjEuMyAzLjEgNC4ydjI3LjhoOTEuMXYtNy41YzcuNCA0IDE4LjggNy41IDMzLjkgNy41aDM4LjNsOC4yLTE5LjVINTYzbDggMTkuNWg3My44di0xOC41bDExLjIgMTguNWg1OS4yVjk4LjdoLTU4LjZ2MTQuNGwtOC4yLTE0LjRoLTYwLjF2MTQuNGwtNy41LTE0LjRoLTgxLjJjLTEzLjYgMC0yNS41IDEuOS0zNS4yIDcuMXYtNy4xaC01NnY3LjFjLTYuMS01LjQtMTQuNS03LjEtMjMuOC03LjFIMTc5LjlsLTEzLjcgMzEuNi0xNC4xLTMxLjZIODcuNnYxNC40bC03LjEtMTQuNGgtNTVMMCAxNTYuOXY2NC4zem0yMjcuNC0xNy43aC0yMS42bC0uMS02OC44LTMwLjYgNjguOGgtMTguNUwxMjYgMTM0Ljd2NjguOEg4My4xTDc1IDE4My45SDMxLjFsLTguMiAxOS42SDBsMzcuOC04Ny44aDMxLjNsMzUuOCA4My4xdi04My4xaDM0LjVsMjcuNSA1OS42IDI1LjQtNTkuNmgzNS4xdjg3Ljh6TTY3LjggMTY1LjdsLTE0LjUtMzUtMTQuMyAzNWgyOC44em0yNDUuNiAzNy44SDI0M3YtODcuOGg3MC40VjEzNGgtNDkuM3YxNS44aDQ4LjF2MThoLTQ4LjF2MTcuNWg0OS4zdjE4LjJ6bTk5LjMtNjQuMmMwIDE0LTkuNCAyMS4zLTE0LjkgMjMuNCA0LjYgMS44IDguNiA0LjkgMTAuNCA3LjQgMyA0LjQgMy41IDguMyAzLjUgMTYuMnYxNy4yaC0yMS4ybC0uMS0xMS4xYzAtNS4yLjUtMTIuOC0zLjMtMTcuMS0zLjEtMy4xLTcuOC0zLjctMTUuNC0zLjdoLTIyLjZ2MzEuOUgzMjh2LTg3LjhoNDguNWMxMC44IDAgMTguNy4zIDI1LjUgNC4yIDYuNyAzLjkgMTAuNyA5LjYgMTAuNyAxOS40ek0zODYgMTUyLjRjLTIuOSAxLjctNi4zIDEuOC0xMC40IDEuOEgzNTB2LTE5LjVoMjUuOWMzLjcgMCA3LjUuMSAxMCAxLjYgMi44IDEuMiA0LjUgNCA0LjUgNy43IDAgMy45LTEuNiA3LTQuNCA4LjR6bTYwLjUgNTEuMUg0MjV2LTg3LjhoMjEuNXY4Ny44em0yNDkuNyAwaC0yOS44bC00MC02NS45djY1LjloLTQzbC04LjItMTkuNmgtNDMuOGwtNy45IDE5LjZoLTI0LjdjLTEwLjIgMC0yMy4yLTIuMi0zMC42LTkuNy03LjQtNy41LTExLjItMTcuNi0xMS4yLTMzLjUgMC0xMy4xIDIuMy0yNSAxMS4zLTM0LjQgNi45LTcgMTcuNS0xMC4yIDMyLjEtMTAuMmgyMC40djE4LjhoLTIwYy03LjcgMC0xMi4xIDEuMS0xNi4yIDUuMi0zLjYgMy43LTYuMSAxMC43LTYuMSAxOS45IDAgOS40IDEuOSAxNi4yIDUuOCAyMC42IDMuMiAzLjUgOS4xIDQuNiAxNC43IDQuNmg5LjVsMjkuNy02OS4xaDMxLjZsMzUuNyA4My4xdi04My4xaDMyLjFsMzcgNjEuMnYtNjEuMmgyMS42djg3Ljh6bS0xMjguMS0zNy44bC0xNC42LTM1LTE0LjUgMzVoMjkuMXpNNzUwIDM0My44Yy01LjIgNy40LTE1LjEgMTEuMi0yOC43IDExLjJoLTQwLjd2LTE4LjhoNDAuNmM0IDAgNi44LS42IDguNS0yLjIgMS41LTEuNCAyLjUtMy4zIDIuNS01LjcgMC0yLjYtMS00LjYtMi42LTUuOC0xLjUtMS40LTMuNy0yLTcuNC0yLTE5LjgtLjctNDQuNS42LTQ0LjUtMjcuMiAwLTEyLjcgOC4xLTI2LjIgMzAuMy0yNi4yaDQydi0xNy40aC0zOS4xYy0xMS43IDAtMjAuMyAyLjgtMjYuNCA3LjF2LTcuMWgtNTcuN2MtOS4yIDAtMjAgMi4yLTI1LjIgNy4xdi03LjFoLTEwM3Y3LjFjLTguMi01LjgtMjIuMS03LjEtMjguNS03LjFoLTY3Ljl2Ny4xYy02LjUtNi4yLTIxLTcuMS0yOS44LTcuMWgtNzZMMjc5IDI2OC40bC0xNi40LTE4LjdIMTQ5djEyMi42aDExMS41bDE3LjktMTkuMSAxNi45IDE5LjFoNjguOHYtMjguOGg2LjdjOS4yLjEgMTkuOS0uMiAyOS40LTQuM3YzMy4xaDU2Ljd2LTMyaDIuN2MzLjUgMCAzLjkuMiAzLjkgMy42djI4LjRoMTcyLjJjMTAuOSAwIDIyLjQtMi44IDI4LjctNy45djcuOUg3MTljMTEuNCAwIDIyLjUtMS42IDMxLTUuN3YtMjIuOHptLTM0MS41LTQ3LjJjMCAyNC40LTE4LjMgMjkuNS0zNi44IDI5LjVoLTI2LjN2MjkuNGgtNDFsLTI1LjktMjkuMS0yNyAyOS4xSDE2OHYtODcuOGg4NC44bDI1LjkgMjguOCAyNi45LTI4LjhoNjcuM2MxNi44IDAgMzUuNiA0LjYgMzUuNiAyOC45ek0yNDAuOCAzMzdIMTg5di0xNy40aDQ2LjN2LTE4SDE4OXYtMTUuOWg1Mi44bDIzLjEgMjUuNi0yNC4xIDI1Ljd6bTgzLjYgMTAuMUwyOTIgMzExLjNsMzIuNC0zNC42djcwLjR6bTQ3LjgtMzkuMUgzNDV2LTIyLjNoMjcuNWM3LjYgMCAxMi45IDMuMSAxMi45IDEwLjdzLTUuMSAxMS42LTEzLjIgMTEuNnpNNTE1IDI2Ny43aDcwLjN2MTguMUg1MzZ2MTZoNDguMXYxNy45SDUzNnYxNy41bDQ5LjMuMXYxOC4ySDUxNXYtODcuOHptLTI3LjEgNDdjNC43IDEuNyA4LjUgNC44IDEwLjMgNy40IDMgNC4zIDMuNSA4LjMgMy41IDE2djE3LjRoLTIxLjF2LTExYzAtNS4zLjUtMTMuMS0zLjQtMTcuMi0zLjEtMy4xLTcuOC0zLjktMTUuNS0zLjloLTIyLjV2MzIuMUg0MTh2LTg3LjhoNDguN2MxMC42IDAgMTguNC40IDI1LjMgNC4xIDYuNyA0IDEwLjkgOS41IDEwLjkgMTkuNSAwIDE0LTkuNCAyMS4yLTE1IDIzLjR6TTQ3NiAzMDMuNmMtMi44IDEuNy02LjMgMS44LTEwLjQgMS44SDQ0MHYtMTkuN2gyNS45YzMuOCAwIDcuNSAwIDEwLjEgMS42IDIuNyAxLjQgNC40IDQuMSA0LjQgNy45IDAgMy43LTEuNyA2LjctNC40IDguNHptMTkwLjMgNS42YzQuMSA0LjIgNi4zIDkuNiA2LjMgMTguNiAwIDE4LjktMTEuOCAyNy43LTMzLjEgMjcuN2gtNDF2LTE4LjhoNDAuOWM0IDAgNi44LS41IDguNi0yLjIgMS40LTEuMyAyLjUtMy4zIDIuNS01LjcgMC0yLjYtMS4yLTQuNi0yLjYtNS44LTEuNi0xLjQtMy45LTItNy41LTItMTkuNy0uNy00NC40LjYtNDQuNC0yNy4yIDAtMTIuNyA4LTI2LjEgMzAuMS0yNi4xaDQyLjN2MTguN2gtMzguN2MtMy44IDAtNi4zLjEtOC40IDEuNi0yLjQgMS40LTMuMiAzLjUtMy4yIDYuMyAwIDMuMyAxLjkgNS41IDQuNiA2LjUgMi4yLjggNC42IDEgOC4yIDFsMTEuNC4zYzExLjQuMyAxOS4zIDIuMyAyNCA3LjF6bTgzLjctMjMuNWgtMzguNGMtMy45IDAtNi40LjEtOC42IDEuNi0yLjIgMS40LTMgMy41LTMgNi4zIDAgMy4zIDEuOCA1LjUgNC42IDYuNSAyLjIuOCA0LjYgMSA4LjEgMWwxMS40LjNjMTEuNi4zIDE5LjMgMi4zIDIzLjkgNy4xLjkuNyAxLjQgMS40IDIgMi4ydi0yNXoiIGNsYXNzPSJhIi8+PC9nPjwvc3ZnPg==) no-repeat}#give_purchase_form_wrap span.card-type.maestro{background:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNzUwIDQ3MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIj48cmVjdCB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgcng9IjQwIiBmaWxsPSIjMDAwIi8+PHBhdGggZD0iTTY3NSAyMzUuNTFjMCA5OS4xMzMtODAuMzUgMTc5LjUtMTc5LjQ4IDE3OS41LTk5LjEyMSAwLTE3OS40OC04MC4zNjMtMTc5LjQ4LTE3OS41QzMxNi4wNCAxMzYuMzY4IDM5Ni4zOTggNTYgNDk1LjUyIDU2IDU5NC42NTMgNTYgNjc1IDEzNi4zNjcgNjc1IDIzNS41MSIgZmlsbD0iI0Q5MjIyQSIvPjxwYXRoIGQ9Ik0zNTYuODcgMzQ5LjQ5YTE3Ny45MDggMTc3LjkwOCAwIDAgMS0xMy42NzUtMTkuMDA4aDYzLjYxMmExNzguNjkgMTc4LjY5IDAgMCAwIDEwLjM0Mi0xOS4wMTNoLTg0LjI5MmExNzguNDE4IDE3OC40MTggMCAwIDEtNy41OTYtMTloOTkuNDc1YzUuOTg4LTE3LjkwNCA5LjIzLTM3LjA1IDkuMjMtNTYuOTYyIDAtMTMuMDQ2LTEuMzkyLTI1Ljc2Mi00LjAzLTM4LjAxM2gtMTA5Ljg2YTE3OC4yMTQgMTc4LjIxNCAwIDAgMSA1LjIwOC0xOS4wMDhoOTkuNDQyYTE4MS40NDIgMTgxLjQ0MiAwIDAgMC03LjU5MS0xOS4wMDRIMzMyLjg4YTE4MC44NSAxODAuODUgMCAwIDEgMTAuMzM4LTE5LjAwOGg2My41N2ExODEuNDMzIDE4MS40MzMgMCAwIDAtMTMuNjctMTguOTkyaC0zNi4yMjVhMTgxLjA4OCAxODEuMDg4IDAgMCAxIDE4LjExMi0xOWMtMzEuODU0LTI4Ljg4My03NC4xMzgtNDYuNDgzLTEyMC41Mi00Ni40ODMtOTkuMTMgMC0xNzkuNDkgODAuMzY3LTE3OS40OSAxNzkuNTEgMCA5OS4xMzMgODAuMzU4IDE3OS41IDE3OS40OSAxNzkuNSA0Ni4zODggMCA4OC42NjctMTcuNTk2IDEyMC41Mi00Ni40NzVhMTgwLjMzNyAxODAuMzM3IDAgMCAwIDE4LjEzMy0xOS4wMzhoLTM2LjI2NyIgZmlsbD0iIzAwOTdEMCIvPjxwYXRoIGQ9Ik02NTEuMDggMzM1LjU0YzAtMy4yIDIuNTk2LTUuNzk2IDUuOC01Ljc5NiAzLjIgMCA1Ljc5MiAyLjU5NiA1Ljc5MiA1Ljc5NiAwIDMuMjA0LTIuNTkyIDUuOC01Ljc5MiA1LjhhNS43OTkgNS43OTkgMCAwIDEtNS44LTUuOHptNS44IDQuNDA4YTQuNDAxIDQuNDAxIDAgMCAwIDQuNDA0LTQuNDA4IDQuMzk2IDQuMzk2IDAgMCAwLTQuNDA0LTQuMzk2IDQuNCA0LjQgMCAwIDAtNC40MDggNC4zOTYgNC40MDUgNC40MDUgMCAwIDAgNC40MDggNC40MDh6bS0uNzg3LTEuODYyaC0xLjE4NHYtNS4wOTJoMi4xNWMuNDQ2IDAgLjkwNC4wMDQgMS4zLjI1OC40MTcuMjg0LjY0Ni43NzUuNjQ2IDEuMjcxIDAgLjU4NC0uMzM3IDEuMTEzLS44OCAxLjMxN2wuOTM0IDIuMjQ2aC0xLjMxN2wtLjc3NS0yLjAwOWgtLjg3NXYyLjAwOXptMC0yLjg4aC42NThjLjI0NiAwIC41MDQuMDE3LjcyNS0uMWEuNzEyLjcxMiAwIDAgMCAuMy0uNTkxLjY1Mi42NTIgMCAwIDAtLjI4OC0uNTEzYy0uMjEyLS4xMjUtLjU0MS0uMS0uNzYyLS4xaC0uNjM0djEuMzA1ek0zNzIuNDUgMjg0LjAxYy03LjY3IDIuMDMzLTE1LjA4OCAzLjAyNS0yMi45MjkgMy4wMDgtMjUuMDE3LS4wMjUtMzguMDQ2LTExLjQxNy0zOC4wNDYtMzMuMiAwLTI1LjQ1OCAxNi41ODgtNDQuMTgzIDM5LjEtNDQuMTgzIDE4LjQxNyAwIDMwLjE3NSAxMC41IDMwLjE3NSAyNi45NDYgMCA1LjQ1OS0uNzk2IDEwLjc3MS0yLjc0NiAxOC4yOTZoLTQ0LjQ4OGMtMS41ODMgMTAuNjMzIDYuMTg4IDE1LjMwNCAxOS40MTIgMTUuMzA0IDcuOTI1IDAgMTUuMDkyLTEuNDI1IDIzLjAyNS00LjYxMmwtMy41MDQgMTguNDQyem0tMTEuOTYyLTQ0LjE1YzAtMS42MDggMi40NzUtMTMuMDMzLTEwLjQtMTMuMjgzLTcuMTA4IDAtMTIuMjA4IDQuNzI1LTE0LjI3MSAxMy4yODNoMjQuNjcxem0yNy4wMzItNWMwIDkuNDA0IDUuMjk2IDE1LjkgMTcuMzI5IDIwLjczOCA5LjIgMy43NyAxMC42NSA0Ljg1OCAxMC42NSA4LjIyIDAgNC42NjMtNC4wNjcgNi44MDUtMTMuMDkyIDYuNzQ3LTYuNzgtLjA1LTEyLjk2Mi0uODcxLTIwLjI2Mi0yLjg5NmwtMy4yMyAxNy4xNTRjNi40ODggMS41MDQgMTUuNTg5IDIgMjMuNjUgMi4xODcgMjQuMDI2IDAgMzUuMTE4LTcuODY2IDM1LjExOC0yNC44NjcgMC0xMC4yMTctNC42MjUtMTYuMjMzLTE2LjAzMy0yMC43MTItOS41MzgtMy44MDgtMTAuNjU4LTQuNjM3LTEwLjY1OC04LjA4MyAwLTQuMDUgMy43NzktNi4xIDExLjE1LTYuMSA0LjQ2MiAwIDEwLjU3OS40MTIgMTYuMzc5IDEuMTA4bDMuMjU4LTE3LjI0MmMtNS45MTItLjgyNS0xNC44ODMtMS40ODMtMjAuMDc1LTEuNDgzLTI1LjQ1IDAtMzQuMjU4IDExLjQ1OC0zNC4xODMgMjUuMjI5bS04OC4yNDEgNTAuOTNoLTE4LjY2MmwuNDQ2LTcuODJjLTUuNjkyIDYuMTctMTMuMjcxIDkuMDQtMjMuNTU4IDkuMDQtMTIuMTc1IDAtMjAuNTE3LTguMzI0LTIwLjUxNy0yMC4yOTUgMC0xOC4xOTYgMTQuNS0yOC42OTIgMzkuNDI5LTI4LjY5MiAyLjU2MiAwIDUuODIuMTkyIDkuMTY3LjU2Mi42OTEtMi40MzMuODc5LTMuNDc5Ljg3OS00LjgwOCAwLTQuOTgtMy45MjEtNi44MTItMTQuNDEyLTYuODEyLTEwLjM0Mi4wNDEtMTcuMzIxIDEuNTctMjMuNzk2IDMuMzEybDMuMTg3LTE2LjdjMTEuMTk2LTIuODQ2IDE4LjUzLTMuOTQyIDI2LjgyNS0zLjk0MiAxOS4zMDQgMCAyOS41IDcuNTY3IDI5LjUgMjEuNzk2LjE2NyAzLjc5Ni0xLjE1OCAxMS40MTItMS44MiAxNC43NDYtLjc1OSA0Ljg1NS02LjEwOSAzMi45NzUtNi42NjcgMzkuNjEyem0tMTYuMzc5LTMzLjE5MmMtMi4zNjctLjI0Mi0zLjM5Ni0uMzEzLTUuMDEzLS4zMTMtMTIuNzI5IDAtMTkuMTgzIDMuNzg4LTE5LjE4MyAxMS4yNjggMCA0LjY5MSAzLjE1IDcuNjMzIDguMDU5IDcuNjMzIDkuMTQ2IDAgMTUuNzUtNy42NSAxNi4xMzgtMTguNTg4ek00NzcgMjg0LjYxYy02LjEyNSAxLjY4LTEwLjg5NiAyLjQwOC0xNi4wNTggMi40MDgtMTEuNDMzIDAtMTcuNjc1LTUuODQxLTE3LjY3NS0xNi4yNS0uMzU4LTIuODU4IDIuNDMzLTE2LjA1OCAzLjA2Ny0xOS43MzguNjMzLTMuNjkxIDEwLjUzOC01Ny40OTIgMTAuNTM4LTU3LjQ5MmgyMi4yMTJsLTMuMzYzIDE3LjhoMTEuMzkybC0zLjA5NiAxOC4xNzFoLTExLjQ0MnMtNi4yNzkgMzEuNTMtNi4yNzkgMzMuOTMzYzAgMy44MjUgMi4zMTcgNS40ODggNy42MzQgNS40ODggMi41NDUgMCA0LjUwOC0uMjM4IDYuMDI5LS42OTJMNDc3IDI4NC42MW05OS4yNS03NC45OGMtMTYuMjc5IDAtMjkgNi43LTM2LjM4OCAxNy44OTJsNi40MTItMTYuNTk2Yy0xMS44MTctNC4zMzgtMTkuNDMzIDEuODUtMjYuMzI1IDEwLjY1IDAgMC0xLjE1NCAxLjQ2Mi0yLjMgMi44di0xMy4wNWgtMjAuODU4Yy0yLjgyNSAyMy4wMjktNy44MiA0Ni4zNzktMTEuNzI5IDY5LjQ0NmwtLjk0MSA1LjAyaDIyLjQzOGMyLjEyNS0xMS43MDcgMy44NzUtMjEuMjExIDUuNjE3LTI4Ljc4NyA0Ljc2Ni0yMC43ODggMTIuNzg4LTI3LjE0MiAyNC44MjktMjQuMzMzLTIuNzggNS45NzktNC4zMDUgMTIuODkyLTQuMzA1IDIwLjU1NCAwIDE4LjU3OSAxMC4wOTIgMzMuNzg4IDM1LjE1IDMzLjc4OCAyNS4yODggMCA0My41OTYtMTMuNTA4IDQzLjU5Ni00NC4zMDggMC0xOC41OC0xMi4yLTMzLjA3NS0zNS4xOTYtMzMuMDc1em0tNi41MyA1OS4zMTdjLTcuOTI0LjEyNS0xMi43MjgtNi41MjUtMTIuNzI4LTE2LjQ3MSAwLTExLjc5MiA3LjAxMi0yNS4xMTIgMTguMjc1LTI1LjExMiA5LjA4NyAwIDEyLjIgNy4yMDQgMTIuMiAxNC44NzkgMCAxNi43NzktNi44NzUgMjYuNzA0LTE3Ljc0NiAyNi43MDR6TTIyNi41MyAyODUuNzloLTIyLjM0bDEzLjI4LTY5Ljk1LTMwLjU3IDY5Ljk1aC0yMC4zN2wtMy43My02OS41NS0xMy4zMiA2OS41NWgtMjAuMjdsMTcuMjctOTAuOTloMzQuOTFsMi45MSA1MC43MiAyMi4xMi01MC43MmgzNy43MmwtMTcuNjEgOTAuOTkiIGZpbGw9IiMwMDAiLz48cGF0aCBkPSJNNjEzLjE1IDI3NC4zOWE1LjggNS44IDAgMCAxIDUuNzk2LTUuNzk2YzMuMjA0IDAgNS43OTYgMi42IDUuNzk2IDUuNzk2YTUuNzk2IDUuNzk2IDAgMSAxLTExLjU5MiAwem01Ljc5NiA0LjQxMmE0LjQxNCA0LjQxNCAwIDAgMCA0LjQwOC00LjQxMiA0LjQwNyA0LjQwNyAwIDAgMC00LjQwOC00LjQwNCA0LjQwNiA0LjQwNiAwIDAgMC00LjQwOSA0LjQwNCA0LjQxNCA0LjQxNCAwIDAgMCA0LjQwOSA0LjQxMnptLS43ODQtMS44NjZoLTEuMTg3di01LjA4M2gyLjE1Yy40NSAwIC45MDggMCAxLjMwNC4yNS40MDkuMjc5LjY0Ni43NjYuNjQ2IDEuMjcgMCAuNTgtLjMzOCAxLjExNy0uODgzIDEuMzE3bC45MzMgMi4yNDZoLTEuMzE3bC0uNzctMi4wMDhoLS44NzZ2Mi4wMDh6bTAtMi44ODhoLjY1OWMuMjQxIDAgLjUwNC4wMTcuNzI1LS4wOTZhLjcwMi43MDIgMCAwIDAgLjI5Ni0uNTg3LjYzNS42MzUgMCAwIDAtLjI4NC0uNTEzYy0uMjEyLS4xMjktLjU0MS0uMDk1LS43NjItLjA5NWgtLjYzNHYxLjI5MXpNMzc4LjA1IDI3OC40Yy03LjY2NyAyLjAzMy0xNS4wODggMy4wMy0yMi45MjUgMy4wMTMtMjUuMDE3LS4wMjYtMzguMDQ2LTExLjQyMi0zOC4wNDYtMzMuMjA5IDAtMjUuNDUgMTYuNTc5LTQ0LjE3OSAzOS4wOTYtNDQuMTc5IDE4LjQyMSAwIDMwLjE3NSAxMC40OTYgMzAuMTc1IDI2Ljk0MiAwIDUuNDY3LS44IDEwLjc3MS0yLjc0MiAxOC4zSDMzOS4xMmMtMS41ODMgMTAuNjMgNi4xOCAxNS4zMDggMTkuNDA4IDE1LjMwOCA3LjkyNSAwIDE1LjA4OC0xLjQyNSAyMy4wMy00LjYxNmwtMy41MDkgMTguNDQyem0tMTEuOTYyLTQ0LjE1YzAtMS42MDQgMi40Ny0xMy4wMzMtMTAuNC0xMy4yNzktNy4xMDggMC0xMi4yMDQgNC43My0xNC4yNzEgMTMuMjc5aDI0LjY3MXptMjcuMDQyLTVjMCA5LjQwOCA1LjI4NyAxNS45IDE3LjMyNSAyMC43NDYgOS4yMDQgMy43NjcgMTAuNjUgNC44NTggMTAuNjUgOC4yMTMgMCA0LjY2Ni00LjA2NyA2LjgwOC0xMy4wODggNi43NS02Ljc4My0uMDQ2LTEyLjk2Ny0uODcxLTIwLjI2Mi0yLjg5NmwtMy4yMzggMTcuMTQ2YzYuNDkyIDEuNTE2IDE1LjU5NiAyLjAxMiAyMy42NTQgMi4yIDI0LjAyNSAwIDM1LjEyMS03Ljg3MSAzNS4xMjEtMjQuODcxIDAtMTAuMjE3LTQuNjI5LTE2LjIzOC0xNi4wNDItMjAuNzEyLTkuNTM3LTMuODA5LTEwLjY1NC00LjYzOC0xMC42NTQtOC4wODQgMC00LjA1IDMuNzg0LTYuMSAxMS4xNDYtNi4xIDQuNDcxIDAgMTAuNTgzLjQxNyAxNi4zODggMS4xMTNsMy4yNS0xNy4yNDZjLTUuOTEyLS44MjUtMTQuODc5LTEuNDgzLTIwLjA2Ny0xLjQ4My0yNS40NTggMC0zNC4yNjIgMTEuNDU0LTM0LjE4MyAyNS4yMjVtLTg4LjI0IDUwLjkyOWgtMTguNjY3bC40NS03LjgyYy01LjY5NiA2LjE1Ny0xMy4yNzUgOS4wMzItMjMuNTU4IDkuMDMyLTEyLjE3NSAwLTIwLjUyMS04LjMyNS0yMC41MjEtMjAuMjg4IDAtMTguMjA0IDE0LjQ5Ni0yOC42OTYgMzkuNDI5LTI4LjY5NiAyLjU2MiAwIDUuODE3LjE5MiA5LjE3LjU2My42OTItMi40MzMuODc2LTMuNDc1Ljg3Ni00LjgwOCAwLTQuOTg0LTMuOTE3LTYuODEzLTE0LjQwOC02LjgxMy0xMC4zNDIuMDQyLTE3LjMyMSAxLjU3NS0yMy43OTYgMy4zMTNsMy4xODMtMTYuNjk2YzExLjItMi44NSAxOC41My0zLjk0NiAyNi44My0zLjk0NiAxOS4zMDMgMCAyOS40OTUgNy41NjcgMjkuNDk1IDIxLjc5Mi4xNjcgMy44LTEuMTU4IDExLjQxMi0xLjgxNyAxNC43NTQtLjc2MiA0Ljg1LTYuMTEyIDMyLjk3LTYuNjY2IDM5LjYxMnptLTE2LjM4OC0zMy4xOTZjLTIuMzU4LS4yNDYtMy4zOTItLjMxMy01LjAxMy0uMzEzLTEyLjcyIDAtMTkuMTc4IDMuNzg4LTE5LjE3OCAxMS4yNjggMCA0LjY5NSAzLjE1NCA3LjYzMyA4LjA1NCA3LjYzMyA5LjE1NCAwIDE1Ljc1OC03LjY1NCAxNi4xMzgtMTguNTg4ek00ODIuNjEgMjc5Yy02LjEyIDEuNjc1LTEwLjg5NiAyLjQwOC0xNi4wNTQgMi40MDgtMTEuNDMzIDAtMTcuNjcxLTUuODQ2LTE3LjY3MS0xNi4yNTQtLjM2Mi0yLjg1NCAyLjQzMy0xNi4wNTggMy4wNjMtMTkuNzM4LjYzMy0zLjY5MSAxMC41MzgtNTcuNDkyIDEwLjUzOC01Ny40OTJoMjIuMjA4bC0zLjM1NSAxNy44aDExLjM5MmwtMy4wOTUgMTguMTcxaC0xMS40NDJzLTYuMjg0IDMxLjUzLTYuMjg0IDMzLjkzM2MwIDMuODI1IDIuMzIxIDUuNDggNy42MzQgNS40OCAyLjU0MSAwIDQuNTA4LS4yMyA2LjAyOS0uNjkybC0yLjk2MyAxNi4zODNtMTEwLjQ3LTQyLjM1OWMwIDE2Ljc3NS02Ljg4IDI2LjcwOC0xNy43NTQgMjYuNzA4LTcuOTIuMTEyLTEyLjcyNS02LjUyNS0xMi43MjUtMTYuNDc1IDAtMTEuNzkyIDcuMDA4LTI1LjExMiAxOC4yNzEtMjUuMTEyIDkuMDkyIDAgMTIuMjA4IDcuMjEyIDEyLjIwOCAxNC44Nzl6bTIzLjk3OS40NjdjMC0xOC41OC0xMi4yMDgtMzMuMDgtMzUuMTk2LTMzLjA4LTI2LjQ1IDAtNDMuNTUgMTcuNjI2LTQzLjU1IDQzLjU5NyAwIDE4LjU3OSAxMC4wODMgMzMuNzkyIDM1LjE1IDMzLjc5MiAyNS4yODggMCA0My41OTYtMTMuNTEyIDQzLjU5Ni00NC4zMDh6TTUwMi40IDIwNS43MmMtMi44MiAyMy4wMjktNy44MTcgNDYuMzc1LTExLjcyMSA2OS40NWwtLjk0NiA1LjAyaDIyLjQzM2M4LjA4OC00NC41NTcgMTAuOC01Ny4yNTMgMjcuNzQyLTUyLjc4Mmw4LjE1LTIxLjA4OGMtMTEuODE3LTQuMzM4LTE5LjQyNSAxLjg1NC0yNi4zMDggMTAuNjU4LjYyMS0zLjk2MyAxLjc5Mi03Ljc4NCAxLjUwOC0xMS4yNThINTAyLjRtLTI3MC4yNiA3NC40N0gyMDkuOGwxMy4yNy02OS45Ni0zMC41NyA2OS45NmgtMjAuMzZsLTMuNzMtNjkuNTUtMTMuMzIgNjkuNTVoLTIwLjI3bDE3LjI2LTkxSDE4N2wxLjg1IDU2LjMzIDI0LjU3LTU2LjMzaDM2LjMzbC0xNy42MSA5MSIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=) no-repeat}#give_purchase_form_wrap span.card-type.dinersclub{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9Im5vbmUiPjxyZWN0IGZpbGw9IiMwMDc5QkUiIHdpZHRoPSI3NTAiIGhlaWdodD0iNDcxIiByeD0iNDAiLz48cGF0aCBkPSJNNTg0LjkzNCAyMzcuOTQ3YzAtOTkuNDE1LTgyLjk4MS0xNjguMTMzLTE3My44OTUtMTY4LjFoLTc4LjI0MmMtOTIuMDAzLS4wMzMtMTY3LjczIDY4LjcwNS0xNjcuNzMgMTY4LjEgMCA5MC45MyA3NS43MjcgMTY1LjY0IDE2Ny43MyAxNjUuMjA0aDc4LjI0MmM5MC45MTQuNDM2IDE3My44OTUtNzQuMjkzIDE3My44OTUtMTY1LjIwNHoiIGZpbGw9IiNGRkYiLz48cGF0aCBkPSJNMzMzLjI4IDgzLjkzYy04NC4wNy4wMjctMTUyLjE5NCA2OC4zMDgtMTUyLjIxNCAxNTIuNTguMDIgODQuMjU4IDY4LjE0NCAxNTIuNTMzIDE1Mi4yMTQgMTUyLjU2IDg0LjA5LS4wMjcgMTUyLjIyOC02OC4zMDIgMTUyLjI0LTE1Mi41Ni0uMDEyLTg0LjI3Mi02OC4xNS0xNTIuNTUzLTE1Mi4yNC0xNTIuNTh6IiBmaWxsPSIjMDA3OUJFIi8+PHBhdGggZD0iTTIzNy4wNjYgMjM2LjA5OGMuMDgtNDEuMTggMjUuNzQ2LTc2LjI5NiA2MS45NC05MC4yNXYxODAuNDhjLTM2LjE5NC0xMy45NDctNjEuODYxLTQ5LjA0NC02MS45NC05MC4yM3ptMTMxIDkwLjI3NVYxNDUuODQ3YzM2LjIwNyAxMy45MiA2MS45MTQgNDkuMDU3IDYxLjk4IDkwLjI1Ny0uMDY2IDQxLjIxMi0yNS43NzMgNzYuMzIyLTYxLjk4IDkwLjI2OXoiIGZpbGw9IiNGRkYiLz48L2c+PC9zdmc+) no-repeat}#give_purchase_form_wrap span.card-type.jcb{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48bGluZWFyR3JhZGllbnQgeDE9Ii4wMzIlIiB5MT0iNTAlIiB4Mj0iOTkuOTc0JSIgeTI9IjUwJSIgaWQ9ImEiPjxzdG9wIHN0b3AtY29sb3I9IiMwMDdCNDAiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjNTVCMzMwIiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCB4MT0iLjQ3MiUiIHkxPSI1MCUiIHgyPSI5OS45ODYlIiB5Mj0iNTAlIiBpZD0iYiI+PHN0b3Agc3RvcC1jb2xvcj0iIzFEMjk3MCIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiMwMDZEQkEiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IHgxPSIuMTE0JSIgeTE9IjUwLjAwMSUiIHgyPSI5OS45ODYlIiB5Mj0iNTAuMDAxJSIgaWQ9ImMiPjxzdG9wIHN0b3AtY29sb3I9IiM2RTJCMkYiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSIjRTMwMTM4IiBvZmZzZXQ9IjEwMCUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9Im5vbmUiPjxyZWN0IGZpbGw9IiMwRTRDOTYiIHdpZHRoPSI3NTAiIGhlaWdodD0iNDcxIiByeD0iNDAiLz48cGF0aCBkPSJNNjE3LjI0MyAzNDYuNzY2YzAgNDEuNjE1LTMzLjcyOCA3NS4zNi03NS4zNiA3NS4zNkgxMzIuNzU3VjEyNC4yNDVjMC00MS42MjYgMzMuNzMzLTc1LjM3IDc1LjM2NS03NS4zN2w0MDkuMTIxLS4wMDF2Mjk3Ljg5MnoiIGZpbGw9IiNGRkYiLz48cGF0aCBkPSJNNDgzLjg1OSAyNDIuMDQ1YzExLjY4NC4yNTMgMjMuNDM3LS41MTYgMzUuMDc3LjQgMTEuNzg3IDIuMiAxNC42MjggMjAuMDQzIDQuMTU2IDI1Ljg4OC03LjE0MSAzLjg1LTE1LjYzMyAxLjQzMi0yMy4zNzkgMi4xMTNINDgzLjg2di0yOC40MDF6bTQxLjgzMy0zMi4xNDVjMi41OTYgOS4xNjUtNi4yMzggMTcuMzkyLTE1LjA2NiAxNi4xM2gtMjYuNzY3Yy4xODUtOC42NDItLjM2OC0xOC4wMjEuMjcyLTI2LjIwOCAxMC43MjQuMzAxIDIxLjU0OS0uNjE2IDMyLjIxLjQ4IDQuNTggMS4xNSA4LjQxMyA0LjkxNiA5LjM1IDkuNTk4ek01OTAuMTIgNzMuOTk3Yy40OTggMTcuNTAxLjA3MSAzNS45MjcuMjE0IDUzLjc4My0uMDM1IDcyLjU5Ni4wNzIgMTQ1LjE5NC0uMDU1IDIxNy43OS0uNDY5IDI3LjIwNy0yNC41ODIgNTAuODQ0LTUxLjYgNTEuMzg3LTI3LjA0Ni4xMTEtNTQuMDk1LjAxNi04MS4xNDIuMDQ3di0xMDkuNzVjMjkuNDctLjE1NCA1OC45NTkuMzA3IDg4LjQxNy0uMjMyIDEzLjY2Ny0uODYgMjguNjMyLTkuODc2IDI5LjI3LTI0LjkxNSAxLjYxLTE1LjEwMi0xMi42MzItMjUuNTUtMjYuMTUzLTI3LjIwMS01LjE5OC0uMTM1LTUuMDQ0LTEuNTE1IDAtMi4xMTcgMTIuODkyLTIuNzg3IDIzLjAyLTE2LjEzMyAxOS4yMjYtMjkuNDk5LTMuMjM2LTE0LjA1OC0xOC43NzMtMTkuNDk5LTMxLjY5Ny0xOS40NzItMjYuMzUxLS4xOC01Mi43MDktLjAyNi03OS4wNjMtLjA3Ny4xNzItMjAuNDg5LS4zNTQtNDEgLjI4Ni02MS40NzQgMi4wODctMjYuNzE2IDI2LjgwNi00OC43NDcgNTMuNDQ3LTQ4LjI3aDc4Ljg1eiIgZmlsbD0idXJsKCNhKSIvPjxwYXRoIGQ9Ik0xNTkuNzQgMTI1LjA0Yy42NzQtMjcuMTYzIDI0Ljg4OS01MC42MTEgNTEuODc1LTUxLjAwNyAyNi45NDQtLjA4MyA1My44OTEtLjAxMiA4MC44MzctLjAzNi0uMDc0IDkwLjg4NS4xNDggMTgxLjc3Ny0uMTEyIDI3Mi42NTgtMS4wMzggMjYuODM0LTI0Ljk5IDQ5LjgzNC01MS42NzkgNTAuMzA3LTI2Ljk5Ni4wOTktNTMuOTk1LjAxNC04MC45OTIuMDQyVjI4My41NTFjMjYuMjIzIDYuMTk0IDUzLjcyMiA4LjgzMiA4MC40NzMgNC43MjEgMTUuOTkzLTIuNTc1IDMzLjQ4OC0xMC40MjQgMzguOTAyLTI3LjAxNCAzLjk4Ni0xNC4xOTIgMS43NDItMjkuMTI2IDIuMzM0LTQzLjY5MnYtMzMuODI0aC00Ni4yOTdjLS4yMDggMjIuMzcuNDI2IDQ0Ljc4LS4zMzUgNjcuMTI1LTEuMjQ4IDEzLjczNC0xNC44NDYgMjIuNDYtMjcuOCAyMS45OTUtMTYuMDY2LjE2OS00Ny44OTgtMTEuNjQtNDcuODk4LTExLjY0LS4wOC00MS45MTcuNDY2LTk0LjQwOC42OTItMTM2LjE4MnoiIGZpbGw9InVybCgjYikiLz48cGF0aCBkPSJNMzA5LjcyIDE5Ny4zOWMtMi40MzQuNTE3LS40OS04LjMtMS4xMTQtMTEuNjQ2LjE2Ni0yMS4xNS0uMzQ2LTQyLjMyMy4yODQtNjMuNDU4IDIuMDgzLTI2LjgyOSAyNi45OTEtNDguOTE2IDUzLjczOS00OC4yODhoNzguNzY2Yy0uMDc0IDkwLjg4NC4xNDcgMTgxLjc3NS0uMTEyIDI3Mi42NTYtMS4wMzkgMjYuODM0LTI0Ljk5MiA0OS44MzMtNTEuNjggNTAuMzA4LTI2Ljk5OC4xLTUzLjk5OC4wMTUtODAuOTk3LjA0M1YyNzIuNzA4YzE4LjQ0IDE1LjEyOCA0My41IDE3LjQ4NCA2Ni40NzIgMTcuNTI1IDE3LjMxNy0uMDA2IDM0LjUzNC0yLjY3NSA1MS4zNS02LjY3VjI2MC43OWMtMTguOTUzIDkuNDQ3LTQxLjIzMyAxNS40NDYtNjIuMjQzIDEwLjAxOC0xNC42NTYtMy42NS0yNS4yOTQtMTcuODExLTI1LjA1Ni0zMi45MzYtMS42OTktMTUuNzI4IDcuNTI0LTMyLjMzNSAyMi45ODEtMzcuMDExIDE5LjE5LTYuMDA4IDQwLjEwOC0xLjQxMyA1OC4wOTYgNi4zOTggMy44NTUgMi4wMTggNy43NjUgNC41MjEgNi4yMjItMS45MjF2LTE3LjljLTMwLjA4NC03LjE1Ny02Mi4xMDEtOS43OTItOTIuMzI5LTIuMDA0LTguNzQ4IDIuNDY4LTE3LjI3IDYuMjEtMjQuMzc5IDExLjk1NnoiIGZpbGw9InVybCgjYykiLz48L2c+PC9zdmc+) no-repeat}#give_purchase_form_wrap span.card-type.dankort{background:url(https://coralgablesclassof82.com/wp-content/plugins/give/build/images/dankort.b2d8eb77.png) no-repeat}#give_purchase_form_wrap span.card-type.unionpay{background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIj48cmVjdCBmaWxsPSIjRkZGIiB3aWR0aD0iNzUwIiBoZWlnaHQ9IjQ3MSIgcng9IjQwIi8+PHBhdGggZD0iTTIwMS44MSA1NWgxNDIuMzkzYzE5Ljg3IDAgMzIuMjg3IDE2LjQwNiAyNy42MyAzNi40N0wzMDUuNSAzNzguOTQ4Yy00LjY1NiAyMC4wNjQtMjQuNjI5IDM2LjQ3LTQ0LjQ5OCAzNi40N0gxMTguNjFjLTE5Ljg3IDAtMzIuMjg3LTE2LjQwNi0yNy42My0zNi40N0wxNTcuMzExIDkxLjQ3QzE2MS45NjggNzEuMzAyIDE4MS44MzcgNTUgMjAxLjcwNiA1NWguMTA0eiIgZmlsbD0iI0QxMDQyOSIvPjxwYXRoIGQ9Ik0zMzEuNzUgNTVoMTYzLjgxNWMxOS44NjkgMCAxMC44NjYgMTYuNDA2IDYuMjA5IDM2LjQ3TDQzNS40NCAzNzguOTQ4Yy00LjY1NyAyMC4wNjQtMy4yMDggMzYuNDctMjMuMDc3IDM2LjQ3SDI0OC41NDljLTE5Ljk3MiAwLTMyLjI4Ny0xNi40MDYtMjcuNTI3LTM2LjQ3TDI4Ny4zNTYgOTEuNDdDMjkyLjAxMiA3MS4zMDIgMzExLjg4IDU1IDMzMS44NTQgNTVoLS4xMDR6IiBmaWxsPSIjMDIyRTY0Ii8+PHBhdGggZD0iTTQ4OS44MTUgNTVoMTQyLjM5NGMxOS44NjkgMCAzMi4yODcgMTYuNDA2IDI3LjYzIDM2LjQ3bC02Ni4zMzMgMjg3LjQ3OGMtNC42NTcgMjAuMDY0LTI0LjYzIDM2LjQ3LTQ0LjQ5OCAzNi40N0g0MDYuNjE0Yy0xOS45NzIgMC0zMi4yODctMTYuNDA2LTI3LjYzLTM2LjQ3TDQ0NS4zMTcgOTEuNDdDNDQ5Ljk3NCA3MS4zMDIgNDY5Ljg0MyA1NSA0ODkuNzExIDU1aC4xMDR6IiBmaWxsPSIjMDc2Rjc0Ii8+PHBhdGggZD0iTTQ2NS45MDUgMzI2LjAxNWgxMy40NTNsMy44MjktMTMuMDYzaC0xMy4zNWwtMy45MzIgMTMuMDYzem0xMC43NjItMzUuOTQ4bC00LjY1NyAxNS40NjZzNS4wNzEtMi42MTMgNy44NjUtMy40NDljMi43OTQtLjYyNyA2LjkzMy0xLjE1IDYuOTMzLTEuMTVsMy4yMDgtMTAuNzYzaC0xMy40NTJsLjEwMy0uMTA0em02LjcyNy0yMi4xNTRsLTQuNDUgMTQuODM5czQuOTY3LTIuMyA3Ljc2MS0zLjAzYzIuNzk0LS43MzIgNi45MzMtLjk0MSA2LjkzMy0uOTQxbDMuMjA4LTEwLjc2NGgtMTMuMzQ5bC0uMTAzLS4xMDR6bTI5LjcgMGwtMTcuMzg2IDU3Ljk5N2g0LjY1N2wtMy42MjIgMTIuMDE3aC00LjY1N2wtMS4xMzggMy42NThINDc0LjM5bDEuMTM5LTMuNjU4SDQ0MmwzLjMxMS0xMS4wNzZoMy40MTVsMTcuNTkzLTU4LjkzOEw0NjkuODM3IDI1NmgxNi44NjhsLTEuNzYgNS45NTZzNC40NS0zLjIzOSA4Ljc5Ny00LjM4OWM0LjI0My0xLjE0OSAyOC42NjUtMS41NjcgMjguNjY1LTEuNTY3bC0zLjYyMiAxMS44MDhoLTUuNzk1bC4xMDMuMTA1eiIgZmlsbD0iI0ZFRkVGRSIvPjxwYXRoIGQ9Ik01MjAgMjU2aDE4LjAwNmwuMjA3IDYuNzkyYy0uMTAzIDEuMTUuODI4IDEuNjcyIDMuMDAxIDEuNjcyaDMuNjIybC0zLjMxMSAxMS4xODJoLTkuNzI4Yy04LjM4Mi42MjctMTEuNTktMy4wMy0xMS4zODMtNy4xMDZsLS4zMS0xMi40MzZMNTIwIDI1NnptMi4yMTYgNTMuMmgtMTcuMTc4bDIuODk3LTkuOTI3aDE5LjY2MmwyLjc5NC05LjA5Mkg1MTEuMDRMNTE0LjM1MSAyNzloNTMuODEybC0zLjMxMSAxMS4xODFoLTE4LjExbC0yLjc5NCA5LjA5MmgxOC4xMWwtMy4wMDIgOS45MjdoLTE5LjU1OGwtMy41MTggNC4xOGg3Ljk2OGwxLjk2NiAxMi41NGMuMjA3IDEuMjU0LjIwNyAyLjA5LjYyIDIuNjEzLjQxNS40MTggMi43OTUuNjI3IDQuMTQuNjI3aDIuMzhsLTMuNzI1IDEyLjIyNmgtNi4xMDZjLS45MyAwLTIuMzgtLjEwNC00LjM0Ni0uMTA0LTEuODYzLS4yMS0zLjEwNC0xLjI1NC00LjM0Ni0xLjg4MS0xLjEzOS0uNTIzLTIuNzk0LTEuODgxLTMuMjA4LTQuMjg1bC0xLjg2My0xMi41NC04LjkgMTIuMzMxYy0yLjc5NCAzLjg2Ny02LjYyMiA2Ljg5Ny0xMy4xNDIgNi44OTdINDk1bDMuMzExLTEwLjg2OGg0Ljc2YzEuMzQ2IDAgMi41ODgtLjUyMiAzLjUyLTEuMDQ1LjkzLS40MTggMS43NTgtLjgzNiAyLjU4Ni0yLjE5NGwxMy4wNC0xOC40OTd6TTMzNC4zMTQgMjgyaDQ1LjQyOWwtMy4zMTIgMTAuOTcyaC0xOC4xMWwtMi43OTMgOS4zaDE4LjYyN2wtMy40MTUgMTEuMjg3aC0xOC41MjRsLTQuNTUzIDE1LjE1MmMtLjUxNyAxLjY3MiA0LjQ1IDEuODgxIDYuMjA5IDEuODgxbDkuMzE0LTEuMjU0LTMuNzI2IDEyLjU0aC0yMC45MDRjLTEuNjU1IDAtMi44OTctLjIwOS00Ljc2LS42MjctMS43Ni0uNDE4LTIuNTg3LTEuMjU0LTMuMzExLTIuNDAzLS43MjUtMS4yNTQtMS45NjctMi4xOTUtMS4xMzktNC45MTJsNi4wMDItMjAuMDY0SDMyNWwzLjQxNS0xMS40OTVoMTAuMzQ4bDIuNzk0LTkuM0gzMzEuMjFsMy4zMTItMTAuOTczLS4yMDctLjEwNHptMzEuMzg3LTE5LjgzNWgxOC42MjdsLTMuNDE1IDExLjM5aC0yNS40NTdsLTIuNzk0IDIuNDA0Yy0xLjI0MiAxLjE1LTEuNTUyLjczMi0zLjEwNSAxLjU2OC0xLjQ0OC43MzEtNC40NSAyLjE5NC04LjM4MiAyLjE5NEgzMzNsMy4zMTEtMTAuOTcyaDIuNDg0YzIuMDcgMCAzLjUxOS0uMjEgNC4yNDMtLjYyNy44MjgtLjUyMyAxLjc2LTEuNjcyIDIuNjktMy41NTNsNC42NTctOC41NjloMTguNTI0bC0zLjIwOCA2LjI3di0uMTA1em0zNS4xMDggMTguODFzNS4wNy00LjcwMiAxMy43NjMtNi4xNjVjMS45NjYtLjQxOCAxNC4zODQtLjIxIDE0LjM4NC0uMjFsMS44NjMtNi4yN2gtMjYuMTgxbC0zLjgzIDEyLjc1di0uMTA1em0yNC42MjkgNC44MDdoLTI1Ljk3NWwtMS41NTIgNS4zM2gyMi41NmMyLjY5LS4zMTQgMy4yMDguMTA0IDMuNDE1LS4xMDVsMS42NTUtNS4yMjVoLS4xMDN6bS0zMy43MzYtMjkuNjc4aDE1LjgzM2wtMi4yNzYgOC4wNDdzNC45NjctNC4wNzYgOC40ODUtNS41MzljMy41MTktMS4yNTQgMTEuMzgzLTIuNTA4IDExLjM4My0yLjUwOGwyNS42NjQtLjEwNC04Ljc5NiAyOS40NjljLTEuNDQ5IDUuMDE2LTMuMjA4IDguMjU1LTQuMjQzIDkuODIzLS45MyAxLjQ2My0yLjA3IDIuODIxLTQuMzQ2IDQuMDc1LTIuMTczIDEuMTUtNC4xNCAxLjg4MS02LjAwMiAxLjk4Ni0xLjY1Ni4xMDQtNC4zNDYuMjA5LTcuODY1LjIwOWgtMjQuNzMybC02LjkzNCAyMy4zMDNjLS42MiAyLjI5OS0uOTMxIDMuNDQ4LS41MTcgNC4wNzUuMzEuNTIzIDEuMjQyIDEuMTUgMi4zOCAxLjE1bDEwLjg2Ni0xLjA0NS0zLjcyNiAxMi43NDloLTEyLjIxYy0zLjkzMyAwLTYuNzI3LS4xMDUtOC42OTMtLjIxLTEuODYzLS4yMDgtMy44MyAwLTUuMTc1LTEuMDQ0LTEuMTM4LTEuMDQ1LTIuODk3LTIuNDA0LTIuNzk0LTMuNzYyLjEwNC0xLjI1NC42MjEtMy4zNDQgMS40NS02LjI3bDIyLjI0OC03NC40MDR6IiBmaWxsPSIjRkVGRUZFIi8+PHBhdGggZD0iTTQzNy44NCAzMDNsLTEuNDQ5IDcuMTA2Yy0uNjIgMi4xOTQtMS4xMzggMy44NjYtMi43OTQgNS4zMy0xLjc1OSAxLjQ2Mi0zLjcyNSAzLjAzLTguNDg1IDMuMDNsLTguNzk2LjQxOC0uMTA0IDcuOTQyYy0uMTAzIDIuMTk0LjUxOCAxLjk4NS44MjggMi40MDMuNDE0LjQxOC43MjQuNTIzIDEuMTM4LjczMmwyLjc5NC0uMjEgOC4zODMtLjQxNy0zLjUxOSAxMS43MDRoLTkuNjI0Yy02LjcyNiAwLTExLjc5Ny0uMjEtMTMuMzUtMS40NjMtMS42NTUtMS4wNDUtMS44NjItMi4zLTEuODYyLTQuNTk4bC42Mi0zMS4xNDFoMTUuNDJsLS4yMDcgNi4zNzRoMy43MjVjMS4yNDIgMCAyLjE3NC0uMTA0IDIuNjkxLS40MTguNTE3LS4zMTMuODI4LS44MzYgMS4wMzUtMS41NjdsMS41NTItNS4wMTZoMTIuMTA4bC0uMTA0LS4yMDl6TTIxOC40NyAxNDdjLS41MTcgMi41MDgtMTAuNDUxIDQ4LjU5Mi0xMC40NTEgNDguNTkyLTIuMTc0IDkuMy0zLjcyNiAxNS45ODktOC45IDIwLjI3My0zLjAwMSAyLjUwOC02LjUyIDMuNjU3LTEwLjU1NSAzLjY1Ny02LjUyIDAtMTAuMjQ1LTMuMjM5LTEwLjg2Ni05LjQwNGwtLjEwNC0yLjA5czEuOTY2LTEyLjQzNiAxLjk2Ni0xMi41NGMwIDAgMTAuMzQ5LTQyLjAwOSAxMi4yMTItNDcuNTQ4LjEwMy0uMzEzLjEwMy0uNTIyLjEwMy0uNjI3LTIwLjE4LjIxLTIzLjgwMSAwLTI0LjAwOC0uMzEzLS4xMDQuNDE4LS42MjEgMy4wMy0uNjIxIDMuMDNsLTEwLjU1NiA0Ny4zNC0uOTMyIDMuOTdMMTU0IDIxNC41MDhjMCAzLjg2Ni43MjQgNy4xMDUgMi4yNzcgOS43MTggNC44NjMgOC41NjkgMTguNjI3IDkuODIzIDI2LjM4OCA5LjgyMyAxMC4wMzggMCAxOS40NTUtMi4xOTUgMjUuNzY3LTYuMDYxIDExLjA3My02LjU4NCAxMy45Ny0xNi45MjkgMTYuNDU0LTI2LjAybDEuMjQyLTQuNzAzczEwLjY1OS00My41NzYgMTIuNTIyLTQ5LjIxOWMuMTAzLS4zMTQuMTAzLS41MjMuMjA3LS42MjctMTQuNjk1LjEwNC0xOC45MzggMC0yMC4zODctLjMxNFYxNDd6bTU5LjAzIDg2LjYyM2MtNy4xNDEtLjEwNS05LjcyOC0uMTA1LTE4LjExLjMxM2wtLjMxMS0uNjI3Yy43MjQtMy4yNCAxLjU1Mi02LjM3NCAyLjE3My05LjYxNGwxLjAzNS00LjM4OWMxLjU1Mi02Ljc5MiAzLjAwMS0xNC44MzkgMy4yMDgtMTcuMjQyLjIwNy0xLjQ2My42Mi01LjEyLTMuNTE5LTUuMTItMS43NTkgMC0zLjUxOC44MzUtNS4zOCAxLjY3MS0xLjAzNiAzLjY1OC0zLjAwMiAxMy44OTktNC4wMzcgMTguNDk3LTIuMDcgOS44MjMtMi4xNzMgMTAuOTcyLTMuMTA0IDE1Ljc4bC0uNjIxLjYyNmMtNy4zNDctLjEwNC05LjkzNC0uMTA0LTE4LjQyLjMxNEwyMzAgMjMzLjFjMS40NDktNS44NTIgMi43OTQtMTEuNzA0IDQuMTQtMTcuNTU2IDMuNTE4LTE1Ljc4IDQuNDUtMjEuODQgNS4zOC0yOS44ODdsLjcyNS0uNDE4YzguMjc5LTEuMTQ5IDEwLjI0NS0xLjQ2MyAxOS4yNDgtMy4yMzlsLjcyNC44MzYtMS4zNDUgNS4wMTZjMS41NTItLjk0IDMuMDAxLTEuODgxIDQuNTUzLTIuNjEzIDQuMjQzLTIuMDkgOC45LTIuNzE3IDExLjQ4Ny0yLjcxNyAzLjkzMiAwIDguMjc5IDEuMTUgMTAuMDM4IDUuNzQ4IDEuNjU2IDQuMDc1LjYyIDkuMDkxLTEuNjU2IDE5LjAxOWwtMS4xMzggNS4wMTZjLTIuMjc3IDExLjA3Ny0yLjY5IDEzLjA2Mi0zLjkzMyAyMC41ODZsLS44MjcuNjI3LjEwMy4xMDV6bTI5LjA1OC4wMjdjLTQuMzQ2IDAtNy4xNC0uMTA0LTkuODMgMC0yLjY5MSAwLTUuMjc4LjIxLTkuMzE0LjMxNGwtLjIwNy0uMzE0LS4yMDctLjQxOGMxLjEzOC00LjE4IDEuNjU2LTUuNjQzIDIuMjc3LTcuMTA2LjUxNy0xLjQ2MyAxLjAzNC0yLjkyNiAyLjA3LTcuMjEgMS4yNDEtNS41MzkgMi4wNjktOS40MDUgMi41ODYtMTIuODU0LjYyMS0zLjI0LjkzMi02LjA2IDEuMzQ2LTkuM2wuMzEtLjIwOS4zMS0uMzE0YzQuMzQ3LS42MjcgNy4wMzgtMS4wNDUgOS44MzItMS40NjMgMi43OTQtLjQxOCA1LjY5MS0uOTQgMTAuMTQxLTEuNzc2bC4yMDcuNDE4LjEwMy40MTgtMi40ODMgMTAuMzQ1Yy0uODI4IDMuNDQ5LTEuNjU2IDYuODk3LTIuMzggMTAuMzQ2LTEuNTUzIDcuMzE1LTIuMjc3IDEwLjAzMi0yLjU4NyAxMi4wMTctLjQxNCAxLjg4MS0uNTE4IDIuODIyLTEuMTM5IDYuNTg0bC0uNDE0LjMxMy0uNDE0LjMxNC0uMjA3LS4xMDV6bTQ1Ljk0MS0yNS42NzVjLS4zMSAxLjg4MS0xLjk2NiA4Ljg4My00LjEzOSAxMS44MDktMS41NTIgMi4xOTQtMy4zMTIgMy41NTMtNS4zODEgMy41NTMtLjYyMSAwLTQuMTQgMC00LjI0My01LjMzIDAtMi42MTIuNTE3LTUuMzMgMS4xMzgtOC4yNTUgMS44NjMtOC40NjUgNC4xNC0xNS40NjYgOS44MzEtMTUuNDY2IDQuNDUgMCA0Ljc2IDUuMjI1IDIuNzk0IDEzLjY5em0xOC43My44MzZjMi40ODQtMTEuMDc3LjUxOC0xNi4zMDItMS44NjItMTkuNDM3LTMuNzI1LTQuODA3LTEwLjM0OC02LjM3NC0xNy4xNzgtNi4zNzQtNC4xNCAwLTEzLjg2Ny40MTgtMjEuNTI1IDcuNTI0LTUuNDg0IDUuMTItOC4wNzEgMTIuMTIyLTkuNTIgMTguODEtMS41NTMgNi43OTItMy4zMTIgMTkuMDE5IDcuODY1IDIzLjYxNyAzLjQxNCAxLjQ2MyA4LjM4MiAxLjg4IDExLjU5IDEuODggOC4xNzUgMCAxNi41NTctMi4yOTggMjIuODctOC45ODYgNC44NjMtNS40MzQgNy4wMzYtMTMuNTg1IDcuODY0LTE3LjAzNGgtLjEwM3ptMTc0LjQzMyAyNi4wOGMtOC42OTMtLjEwNC0xMS4xNzYtLjEwNC0xOS4xNDUuMzE0bC0uNTE3LS42MjdjMi4xNzMtOC4yNTYgNC4zNDYtMTYuNjE2IDYuMzEzLTI0Ljk3NiAyLjQ4My0xMC44NjggMy4xMDQtMTUuNDY2IDMuOTMyLTIxLjg0bC42Mi0uNTIzYzguNTktMS4yNTQgMTAuOTctMS41NjcgMTkuOTczLTMuMjM5bC4yMDcuNzMxYy0xLjY1NiA2Ljg5Ny0zLjIwOCAxMy42OS00Ljg2NCAyMC40ODItMy4zMTEgMTQuMzE3LTQuNDUgMjEuNjMyLTUuNjkxIDI5LjE1NmwtLjgyOC42Mjd2LS4xMDV6IiBmaWxsPSIjRkVGRUZFIi8+PHBhdGggZD0iTTUzMy4xNiAyMDkuMzc0Yy0uNDE0IDEuNzc2LTIuMDcgOC44ODItNC4yNDMgMTEuODA4LTEuNDQ5IDIuMDktNC45NjcgMy40NDktNi45MzMgMy40NDktLjYyMSAwLTQuMDM2IDAtNC4yNDMtNS4yMjUgMC0yLjYxMy41MTctNS4zMyAxLjEzOC04LjI1NiAxLjg2My04LjI1NSA0LjE0LTE1LjI1NyA5LjgzMS0xNS4yNTcgNC40NSAwIDYuNDE2IDUuMTIgNC40NSAxMy41ODV2LS4xMDR6bTE3LjA3NS44MzZjMi40ODMtMTEuMDc3LTcuNjU4LS45NC05LjIxLTQuNTk4LTIuNDg0LTUuNzQ4LS45MzItMTcuMjQzLTEwLjg2Ni0yMS4xMDktMy44MjktMS41NjgtMTIuODMyLjQxOC0yMC40OSA3LjUyNC01LjM4MSA1LjAxNi04LjA3MiAxMi4wMTctOS41MiAxOC43MDUtMS41NTMgNi42ODgtMy4zMTIgMTkuMDIgNy43NiAyMy4zMDQgMy41MiAxLjU2NyA2LjcyNyAxLjk4NSA5LjkzNSAxLjc3NiAxMS4xNzctLjYyNyAxOS42NjItMTcuNjYgMjUuOTc1LTI0LjM0OCA0Ljg2My01LjMzIDUuNjkxIDEuOTg1IDYuNDE2LTEuMjU0em0tMTI5Ljk0MyAyMy40MTNjLTcuMTQtLjEwNS05LjYyNC0uMTA1LTE4LjAwNi4zMTNsLS4zMS0uNjI3Yy43MjQtMy4yNCAxLjU1Mi02LjM3NCAyLjI3Ni05LjYxNGwuOTMxLTQuMzg5YzEuNTUzLTYuNzkyIDMuMTA1LTE0LjgzOSAzLjIwOC0xNy4yNDIuMjA3LTEuNDYzLjYyMS01LjEyLTMuNDE1LTUuMTItMS43NTkgMC0zLjYyMS44MzUtNS4zOCAxLjY3MS0uOTMyIDMuNjU4LTMuMDAyIDEzLjg5OS00LjAzNyAxOC40OTctMS45NjYgOS44MjMtMi4xNzMgMTAuOTcyLTMuMTA0IDE1Ljc4bC0uNjIxLjYyNmMtNy4zNDctLjEwNC05LjkzNC0uMTA0LTE4LjQyLjMxNEwzNzMgMjMzLjFjMS40NDktNS44NTIgMi43OTQtMTEuNzA0IDQuMTQtMTcuNTU2IDMuNTE4LTE1Ljc4IDQuMzQ2LTIxLjg0IDUuMzgtMjkuODg3bC42MjEtLjQxOGM4LjI4LTEuMTQ5IDEwLjM0OS0xLjQ2MyAxOS4yNDgtMy4yMzlsLjcyNS44MzYtMS4yNDIgNS4wMTZjMS40NDktLjk0IDMuMDAxLTEuODgxIDQuNDUtMi42MTMgNC4yNDMtMi4wOSA4LjktMi43MTcgMTEuNDg2LTIuNzE3IDMuOTMzIDAgOC4xNzYgMS4xNSAxMC4wMzggNS43NDggMS42NTYgNC4wNzUuNTE4IDkuMDkxLTEuNzU5IDE5LjAxOWwtMS4xMzggNS4wMTZjLTIuMzggMTEuMDc3LTIuNjkgMTMuMDYyLTMuOTMzIDIwLjU4NmwtLjgyNy42MjcuMTAzLjEwNXptNjIuMDAxLTg2LjUxOWwtNi4wMDIuMTA1Yy0xNS41MjMuMjA5LTIxLjczMi4xMDQtMjQuMjE1LS4yMDktLjIwNyAxLjE1LS42MjEgMy4xMzUtLjYyMSAzLjEzNXMtNS41ODggMjUuOTE2LTUuNTg4IDI2LjAyYzAgMC0xMy4yNDYgNTUuMTc2LTEzLjg2NyA1Ny43ODggMTMuNTU2LS4yMDkgMTkuMDQxLS4yMDkgMjEuNDIxLjEwNS41MTgtMi42MTMgMy42MjItMTcuOTc0IDMuNzI2LTE3Ljk3NCAwIDAgMi42OS0xMS4yODYgMi43OTQtMTEuNzA0IDAgMCAuODI3LTEuMTUgMS42NTUtMS42NzJoMS4yNDJjMTEuNjk0IDAgMjQuODM2IDAgMzUuMTg1LTcuNjI4IDcuMDM3LTUuMjI1IDExLjc5Ny0xMy4wNjMgMTMuOTctMjIuNDY4LjUxNy0yLjI5OS45MzEtNS4wMTYuOTMxLTcuODM3IDAtMy42NTgtLjcyNC03LjIxLTIuNzk0LTEwLjAzMi01LjI3Ny03LjQyLTE1LjczLTcuNTI0LTI3LjgzNy03LjYyOXptNy43NjEgMjcuMDY2Yy0xLjI0MSA1Ljc0Ny00Ljk2NyAxMC42NTktOS43MjcgMTIuOTU4LTMuOTMyIDEuOTg1LTguNjkzIDIuMTk0LTEzLjY2IDIuMTk0aC0zLjIwOGwuMjA3LTEuMjU0czUuODk5LTI1LjkxNiA1Ljg5OS0yNS44MTFsLjIwNy0xLjM1OS4xMDMtMS4wNDUgMi4zOC4yMXMxMi4yMTEgMS4wNDQgMTIuNDE4IDEuMDQ0YzQuNzYgMS44ODEgNi44MyA2LjY4OCA1LjM4MSAxMy4wNjN6bTEyNy4yMDcgOC42NjZsLS43MjQtLjgzNmMtOC43OTYgMS43NzYtMTAuNDUyIDIuMDktMTguNTI0IDMuMjRsLS42Mi42MjZjMCAuMTA1LS4xMDQuMjEtLjEwNC40MTh2LS4xMDRjLTYuMDAyIDE0LjEwNy01Ljg5OSAxMS4wNzctMTAuNzYyIDIyLjE1NCAwLS41MjMgMC0uODM2LS4xMDQtMS4zNTlsLTEuMjQyLTI0LjAzNS0uNzI0LS44MzZjLTkuMzE0IDEuNzc3LTkuNTIgMi4wOS0xOC4wMDYgMy4yNGwtLjYyMS42MjdjLS4xMDQuMzEzLS4xMDQuNjI3LS4xMDQuOTRsLjEwNC4xMDVjMS4wMzUgNS41MzguODI4IDQuMjg0IDEuODYzIDEyLjk1OC41MTcgNC4yODQgMS4xMzggOC41NjkgMS42NTUgMTIuNzQ5LjgyOCA3LjEwNiAxLjM0NiAxMC41NTQgMi4zOCAyMS4zMTgtNS43OTUgOS42MTQtNy4xNCAxMy4yNzEtMTIuNzI4IDIxLjczNWwuMzEuODM2YzguMzgzLS4zMTMgMTAuMjQ1LS4zMTMgMTYuNDU0LS4zMTNsMS4zNDYtMS41NjhjNC42NTYtMTAuMTM2IDQwLjI1NS03MS43OSA0MC4yNTUtNzEuNzlsLS4xMDQtLjEwNXptLTMwMi43MTcgNi45MjJjNC43Ni0zLjM0NCA1LjM4LTcuOTQyIDEuMzQ1LTEwLjM0NS00LjAzNi0yLjQwNC0xMS4xNzYtMS42NzItMTUuOTM3IDEuNjcyLTQuNzYgMy4yNC01LjI3NyA3LjgzNy0xLjI0MSAxMC4zNDUgMy45MzIgMi4zIDExLjA3MiAxLjY3MiAxNS44MzMtMS42NzJ6IiBmaWxsPSIjRkVGRUZFIi8+PHBhdGggZD0iTTU3NS43MzUgMjU2LjEwNGwtNi45MzQgMTIuMDE4Yy0yLjE3MyA0LjA3NS02LjMxMiA3LjIxLTEyLjcyOCA3LjIxTDU0NSAyNzUuMTIzbDMuMjA4LTEwLjg2OGgyLjE3M2MxLjEzOCAwIDEuOTY2LS4xMDQgMi41ODctLjQxOC42MjEtLjIwOS45MzItLjYyNyAxLjQ0OS0xLjI1NGw0LjE0LTYuNTgzaDE3LjI4MWwtLjEwMy4xMDR6IiBmaWxsPSIjRkVGRUZFIi8+PC9nPjwvc3ZnPg==) no-repeat}form[id*=give-form] p.give-loading-text,form[id*=give-form] span.give-loading-text{display:none;float:right;font-size:16px;font-style:italic;font-weight:400;height:16px;line-height:20px;margin:0;padding:0;width:16px}form[id*=give-form] .give-loading-animation{font-family:give-icomoon;speak:none;font-style:normal;font-variant:normal;font-weight:400;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:transparent;background-repeat:no-repeat;background-size:20px 20px;float:left;font-size:16px;height:16px;line-height:1;margin:0 5px 0 0;width:16px}form[id*=give-form] .give-payment-mode-label .give-loading-text{float:right}[id*=give-form] .give-login-account-wrap{margin:0 0 15px;position:relative}[id*=give-form] .give-login-account-wrap .give-login-message{margin:0;padding:0;text-align:right}[id*=give-form] .give-login-account-wrap .give-loading-text{position:absolute;right:0;top:.25em}[id*=give-form] fieldset[id^=give-login-fields]{margin:0 0 15px}[id*=give-form] .give-new-account-link{margin:0 0 15px;padding:0}[id*=give-form] .give_login_forgot_password{float:right}.give-submit-button-wrap input.give-cancel-login,[id^=give-user-login-submit] input.give-cancel-login{margin-left:5px}.give-submit-button-wrap span.give-loading-animation,[id^=give-user-login-submit] span.give-loading-animation{display:none;margin:0 0 0 .5em}.give-submit-button-wrap .give-submit,[id^=give-user-login-submit] .give-submit{float:left}.give-user-login-fields-container:after{clear:both;content:"";display:block}#give-login-form div.give-login,#give-login-form legend,#give-register-form div.give-login,#give-register-form legend{line-height:2;margin-bottom:15px}#give-login-form label,#give-register-form label{display:inline-block;min-width:100px}div.give-form-wrap.mfp-hide{display:block!important}div.mfp-content fieldset ol,div.mfp-content fieldset p,div.mfp-content fieldset ul{line-height:1.4;margin-bottom:1.2em}div.mfp-content form[id*=give-form] .give_notices{display:block!important}.give-btn{background:#ededed;border:1px solid #ccc;color:#333;cursor:pointer;font-size:1em;line-height:1.2em;padding:8px 10px}.give-btn:hover{background:#dbdbdb}#give_profile_editor_form legend{border-bottom:0;padding:0 5px 5px;width:auto}form#give-email-access-form div.g-recaptcha,form#give-email-access-form input#give-email{margin:0 0 15px}form#give-email-access-form input#give-email{width:305px}@media(max-width:768px){[id*=give-form] div#give-sidebar-left,[id*=give-form] div.images,[id*=give-form] div.summary{float:none;width:100%}}.give-form-wrap .give-form h3.give-section-break,.give-form-wrap .give-form h4.give-section-break{margin:10px 0 0}.give-do-validate input.error{border-color:red!important}.give-button-with-loader span.give-loading-animation{display:none;float:right;font-family:give-icomoon;position:relative;top:3px;speak:none;font-style:normal;font-variant:normal;font-weight:400;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:transparent;background-repeat:no-repeat;background-size:20px 20px;font-size:16px;height:16px;line-height:1;margin:0 0 0 5px;width:16px}.give-active span.give-loading-animation{display:inline}@media(min-width:481px){html[dir=rtl] form.give-form .give-title-prefix-wrap .form-row-first,html[dir=rtl] form.give-form .give-title-prefix-wrap .form-row-last,html[dir=rtl] form.give-form .give-title-prefix-wrap .form-row-title{float:right!important}}html[dir=rtl] form.give-form .form-row-first,html[dir=rtl] form.give-form .form-row-title{margin-left:2.5%;margin-right:0!important}html[dir=rtl] form.give-form .form-row-first,html[dir=rtl] form.give-form .form-row-last{float:right!important}html[dir=rtl] form.give-form .form-row-last{float:left!important}html[dir=rtl] form.give-form .form-row-two-thirds{float:right!important}html[dir=rtl] form.give-form .form-row-two-thirds.form-row-first{margin-right:0!important}html[dir=rtl] form.give-form .form-row-one-third{float:right!important;margin-left:0!important;margin-right:3%}html[dir=rtl] form.give-form .form-row-one-third.form-row-first{margin-right:0!important}html[dir=rtl] form.give-form .card-expiration select.card-expiry-year{float:left!important}.give-form-grid{display:flex;height:100%}.give-form-grid-media{border-radius:2px;min-width:40%;position:relative}.give-form-grid-media img{border-radius:2px;min-width:100%;-o-object-fit:cover;object-fit:cover}.give-form-grid-media__tags{align-items:center;border-radius:2px;bottom:0;display:flex;gap:10px;left:0;padding:10px 16px;position:absolute;right:0}.give-form-grid-media__tags>span{border-radius:5px;font-size:max(.975rem,15.6px);font-weight:600;padding:4px 10px}.give-form-grid-container{display:flex;flex-direction:column;flex-grow:1;width:100%}#row-media{max-width:40%;min-width:40%}#row-media img{border-radius:2px;min-height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.give-form-grid-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;justify-content:space-between;padding:18px}.give-form-grid-content .give-form-grid-media__tags_no_image{background:none;border-radius:2px;display:flex;gap:10px;margin-bottom:12px}.give-form-grid-content .give-form-grid-media__tags_no_image>span{border-radius:5px;font-size:max(.975rem,15.6px);font-weight:600;padding:4px 10px}.give-form-grid-content>h3{font-size:max(1.375rem,22px)!important;font-weight:700!important;margin:0!important}.give-form-grid-content>p{font-size:1rem;font-weight:400}.give-form-grid-content>.give-card__button,.give-form-grid-content>button{background-color:transparent!important;border:none;cursor:pointer;font-size:max(1rem,16px);font-weight:400;padding:0!important;text-decoration:underline;text-underline-offset:5px}.give-form-grid-btn{align-items:center;background-color:var(--give-primary-color);border:.125rem solid var(--give-primary-color);border-radius:.4rem;color:#fff;font-family:inherit;font-size:max(1rem,16px);font-weight:600;justify-content:center;line-height:1.2;padding:1rem;text-align:center;transition-duration:.2s;transition-property:background-color,color;transition-timing-function:ease-in}.give-form-grid-progress{background:#f6f6f6;padding:10px 20px}.form-grid-raised{background:#f6f6f6;display:flex;justify-content:space-between}.form-grid-raised__details{display:flex;flex-direction:column;font-size:1rem}.form-grid-raised__details>span:first-child{font-size:1rem;font-weight:700!important}.form-grid-raised__details>span:last-child{font-size:max(.875rem,14px);font-weight:400}.form-grid-raised__details_donations{text-align:right}.give-form-grid-progress-bar{margin:12px 0}.give-form-grid-progress-bar .give-progress-bar{background:#d9dfdb;border-radius:25px;box-shadow:inset 0 2px 2px -1px rgba(0,0,0,.11);height:12px;position:relative}.give-form-grid-progress-bar .give-progress-bar>span{border-radius:20px;display:block;height:100%;overflow:hidden;position:relative}.give-embed-form-wrapper{align-items:center;display:flex;justify-content:center;width:100%!important}.give-embed-form-wrapper .iframe-loader{background:none;height:100%;pointer-events:none;position:absolute;top:0;width:100%}.give-embed-form-wrapper iframe{max-width:min(100%,48.5rem);width:100%!important}.give-embed-form-wrapper.is-hide{left:-9999px;position:fixed}.give-embed-form-wrapper.modal{align-items:center;display:flex;flex-direction:column;height:var(--visual-viewport-height);justify-content:center;left:0;min-height:100vh;min-width:100vw;overflow:scroll;position:fixed;top:0;z-index:100}.give-embed-form-wrapper.modal[data-loading=true]{display:none}.give-embed-form-wrapper.modal[data-entering=true]{animation:modal-fade .3s}.give-embed-form-wrapper.modal[data-exiting=true]{animation:modal-fade .15s ease-in reverse}.give-embed-form-wrapper.modal .modal-content{align-items:center;display:flex;justify-content:center;min-height:100vh;min-width:100vw;position:absolute;top:6%;width:100%;z-index:999}.give-embed-form-wrapper.modal .modal-content iframe{z-index:1}.give-embed-form-wrapper.modal .close-btn{background:#e7e8ed;border:1px solid transparent;border-radius:50%;cursor:pointer;display:flex;padding:.75rem;position:fixed;right:25px;top:57px;transition:.2s;z-index:999}.give-embed-form-wrapper.modal .close-btn svg{height:1rem;width:1rem}.give-embed-form-wrapper.modal .close-btn:active,.give-embed-form-wrapper.modal .close-btn:focus,.give-embed-form-wrapper.modal .close-btn:hover{background-color:#caccd7;border:1px solid #caccd7}.give-embed-form-wrapper.modal:before{background:rgba(0,0,0,.7);bottom:0;content:"";display:block;left:0;position:fixed;right:0;top:0}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.js-give-grid-modal-launcher+div.js-give-embed-form-modal-launcher-wrap{display:none}.admin-bar .give-embed-form-wrapper{background:none;margin-top:-26px}.give_notices{position:relative}.give_notices .notice-dismiss{background:0 0;border:none;color:#72777c;cursor:pointer;margin:0;max-width:28px!important;padding:5px;position:absolute;right:0;top:50%;transform:translateY(-50%)}.give_notices .notice-dismiss:before{background:0 0;color:#72777c;content:"";display:block;font:400 16px/20px dashicons;speak:none;height:20px;text-align:center;width:20px;-webkit-font-smoothing:antialiased}.give_notices .notice-dismiss:hover{background-color:transparent}.give_notices .notice-dismiss:hover:before{color:#dc3232}.give_error,.give_success,.give_warning{background:#f9f9f9;border-left:4px solid;box-shadow:0 1px 1px rgba(0,0,0,.125);clear:both;margin:15px 0;padding:1em 1.5em 1em 2em;position:relative}.give_error>p,.give_success>p,.give_warning>p{color:#333;margin:0!important}.give_error:before,.give_success:before,.give_warning:before{font-family:give-icomoon;speak:none;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;border-radius:100%;color:#fff;font-size:16px;height:30px;left:-17px;line-height:30px;margin-top:-15px;position:absolute;text-align:center;text-shadow:1px 1px rgba(0,0,0,.5);top:50%;width:30px}.give_error{border-color:#a00}.give_error:before{background-color:#a00;content:""}.give_success{border-color:#7ad03a}.give_success:before{background-color:#7ad03a;content:""}.give_warning{border-color:#ffba00}.give_warning:before{background-color:#ffba00;content:""}.twentythirteen .give_forms{padding:40px 0}.twentyfourteen .tfgive{margin:0 auto;max-width:474px;padding:12px 10px 0}.twentyfourteen .tfgive .give_forms .entry-summary{margin:0 0 1.618em!important;padding:0!important}.twentyfourteen .tfgive div.give_forms.hentry.has-post-thumbnail{margin-top:0}.twentyfourteen .tfgive .give_forms .images img{margin-bottom:1em}@media screen and (min-width:673px){.twentyfourteen .tfgive{padding-left:30px;padding-right:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfgive{padding-left:15px;padding-right:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfgive{padding-left:30px;padding-right:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfgive{margin-right:54px}.full-width .twentyfourteen .tfgive{margin-right:auto}}.twentyfifteen .t15give{background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15);margin-bottom:7.6923%;padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%}.twentyfifteen .t15give .page-title{margin-left:0}.twentyfifteen .t15give div.summary{padding:0}@media screen and (min-width:38.75em){.twentyfifteen .t15give{margin-left:7.6923%;margin-right:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15give{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.avada-row>div.give-wrap #content{width:100%}.components-base-control__field input[type=text]:focus{box-shadow:none!important}.give-goal-progress{clear:both;display:flex;flex-direction:column;margin-bottom:20px;width:100%}.give-goal-progress .income{color:#333;font-size:46px;letter-spacing:-1px;line-height:48px}.give-goal-progress .raised{margin-bottom:15px}.give-goal-progress .progress-bar{background:none;padding-bottom:10px;width:100%}.give-goal-progress .give-progress-bar{background:#eee;border-radius:25px;height:20px;overflow:hidden;position:relative;width:100%}.give-goal-progress .give-progress-bar>span{background:none;border-radius:20px;display:block;height:100%;overflow:hidden;position:relative}table.give-table{background:#eaebec;border:1px solid #e0e0e0;border-bottom:none;border-top:none;color:#666;font-size:14px;margin:20px 0;text-shadow:1px 1px 0 #fff;width:100%}table.give-table thead{font-weight:700}table.give-table thead th:first-child{border-left:none;text-align:left}table.give-table th{background:#f6f6f6;border:1px solid #e0e0e0;border-right:none;border-top-color:#e8e8e8;font-weight:700;padding:21px 25px;text-align:center}table.give-table tbody tr{text-align:center}table.give-table tbody tr td{background:#fff;border:1px solid #e0e0e0;border-right:none;border-top-color:#fff;padding:18px;text-align:center}table.give-table tbody tr td:first-child{border-left:0;text-align:left}table.give-table tbody tr:nth-child(2n) td{background:#fcfcfc}body.give-twentysixteen div.entry-summary{margin:0}body.give-twentysixteen button.give-btn{color:#333}body.give-twentysixteen .give-submit{color:#fff}body.give-twentysixteen fieldset#give_terms_agreement{padding-left:0}body.give-twentyseventeen.colors-dark div#give_purchase_form_wrap span.give-final-total-amount,body.give-twentyseventeen.colors-dark div.give-total-wrap input.give-text-input,body.give-twentyseventeen.colors-dark div.give_notices p{color:#000}body.give-twentyseventeen.colors-dark form[id*=give] fieldset{background-color:transparent}body.give-twentynineteen .give-form .give-btn:focus{color:#fff}body.theme-twentytwenty .give-wrap{margin:60px auto;max-width:1200px}html[class*=avia] body#top form[id*=give-form] input.give-amount-top{border:1px solid #ccc;border-left:none;width:unset}html[class*=avia] body#top [id*=give-form].give-fl-form.give-fl-style-give label.give-fl-label{left:7px}html[class*=avia] body#top [id*=give-form].give-fl-form div.give-fl-is-active input{padding:8px 6px 0}.give-donation-history .give-table{table-layout:auto}.give-donation-history .give-table .give-security-column{float:left}.give-donation-history .give-table .give-security-column.give-security-description-wrap{font-size:12px;font-style:italic;padding:16px 13px;width:75%}.give-donation-history .give-table .give-security-column.give-security-button-wrap{padding:25px 5px;width:25%}.give-donation-history .give-table .give-security-column.give-security-button-wrap span{display:none;padding:0 20px}.give_user_history_main .give-mobile-title{display:none}@media screen and (max-width:480px){#give_user_history thead{display:none}#give_user_history tbody{border-top:1px solid #e0e0e0}#give_user_history tr{background:#fff;padding:.5rem 0}#give_user_history tr:nth-child(2n){background-color:#fafafa}#give_user_history td{background-color:transparent;border:none;padding-bottom:0;padding-top:0}#give_user_history td,#give_user_history tr{border-left:none;display:block;text-align:left}#give_user_history .give-mobile-title{display:inline-block;font-weight:700;min-width:6em}}.give-modal{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none!important;overflow:hidden;top:0;width:100%;z-index:2148482499;-webkit-overflow-scrolling:touch;-webkit-transform:translateZ(0)}.give-modal form[id*=give-form],.give-modal form[id*=give-form] .give-submit{margin-bottom:0}.give-modal form[id*=give-form] .give-payment-mode-label{margin-top:0;padding-top:0}@media(max-width:580px){.give-modal form[id*=give-form] .give-input{font-size:16px}}.give-modal .mfp-content{background:#fff;box-sizing:border-box;margin:40px auto;max-width:650px;padding:20px;position:relative;width:auto;z-index:2148482599}.give-modal .mfp-content [id*=give-form] #give-payment-mode-select,.give-modal .mfp-content [id*=give-form] #give_purchase_form_wrap,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-amount,.give-modal .mfp-content [id*=give-form].give-display-button-only .give-donation-levels-wrap{display:block}.give-modal .mfp-content .mfp-close:hover{background-color:transparent}.give-modal form.give-form button.mfp-close{display:block!important;position:absolute}.give-modal .mfp-container:after{display:none}.give-modal .mfp-content{transform:translateY(-100px);vertical-align:middle}.give-modal .mfp-content,.give-modal.mfp-bg{opacity:0;transition:all .2s}.give-modal.mfp-ready .mfp-content{opacity:1;transform:translateY(0)}.give-modal.mfp-ready.mfp-bg{opacity:.8}.give-modal.mfp-removing .mfp-content{opacity:0;transform:translateY(-50px)}.give-modal.mfp-removing.mfp-bg{opacity:0}.give-donation-grid-item-form{background-color:#fff;margin:0 auto;max-height:85vh;max-width:100%;overflow-y:auto;padding:1rem 1.5rem;position:relative;width:720px}.give-donation-grid-item-form #give_purchase_form_wrap{display:block!important}.give-donation-grid-item-form .give-btn-modal,.give-donation-grid-item-form .give-btn-reveal{display:none!important}.modal-fade-slide.give-modal .mfp-content{max-width:100%;padding:0}.modal-fade-slide .give-modal--slide{opacity:0;transform:translateY(-20px) perspective(600px) rotateX(0);transition:all .2s ease-out}.modal-fade-slide.mfp-ready .give-modal--slide{opacity:1;transform:translateY(0) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-removing .give-modal--slide{opacity:0;transform:translateY(-10px) perspective(600px) rotateX(0)}.modal-fade-slide.mfp-bg{opacity:0;transition:opacity .3s ease-out}.modal-fade-slide.mfp-ready.mfp-bg{opacity:.8}.modal-fade-slide.mfp-removing.mfp-bg{opacity:0}.mfp-close:hover{background-color:transparent}.mfp-content .give-display-button-only .give-form-title{display:none}.mfp-content .give-display-button-only form>:not(.give-btn-modal),.mfp-content .give-display-button-only>:not(form){display:block}.give-donor{background:#fff;border:1px solid #e5e5e5;color:#00160a;display:flex;flex-direction:column;justify-content:space-between;margin-bottom:20px;max-height:100%;padding:18px 0;position:relative;transition:all .2s ease-out;width:100%}.give-donor-container{display:flex;flex:1;flex-direction:column;padding:0 5%}.give-donor-container__image{align-items:center;align-self:center;background:#fff;border:1px solid #e5e5e5;border-radius:50%;display:flex;justify-content:center;margin-bottom:12px;overflow:hidden}.give-donor-container__image img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;width:100%}.give-donor-container__image__name_initial{position:absolute}.give-donor-container__image[data-anonymous-donation="0"] img[src*="anonymous-user.svg"],.give-donor-container__image[data-anonymous-donation="1"] .give-donor-header__name_initial{visibility:hidden}.give-donor-container__image[data-anonymous-donation="0"][data-has-valid-gravatar="0"]{border:1px solid #e5e5e5}.give-donor-container-variation{display:flex;justify-content:space-between}.give-donor-container-variation__name{font-size:max(1.5rem,24px);font-weight:600;line-height:20px;margin:0 0 10px!important}.give-donor-container-variation__timestamp{color:#525252;font-size:max(.75rem,12px);margin:0 0 10px!important}.give-donor-wrapper{align-items:center;display:flex;flex:1;justify-content:center;word-break:normal!important}.give-donor-content{border-left:2px solid #219653;flex:1;font-weight:400;letter-spacing:0;line-height:20px;margin:12px 0;padding-left:16px;width:100%}.give-donor-content p{color:#00160a;font-size:max(.875rem,14px);font-style:italic;line-height:20px;margin:0!important;width:100%}.give-donor-content__excerpt .give-donor-content__read-more{cursor:pointer;white-space:nowrap}.give-donor-content__excerpt+.give-donor-content__comment{display:none}.give-donor-details{align-items:center;display:flex;justify-content:space-between}.give-donor-details__wrapper{display:flex;flex-direction:column;width:70%;word-break:normal!important}.give-donor-details__wrapper span:first-child{color:#00160a;font-size:max(1rem,16px)!important;font-weight:500!important;letter-spacing:0}.give-donor-details__wrapper span:last-child{color:#00160a;font-size:max(.8rem,12.8px);font-weight:400;letter-spacing:0;text-align:left}.give-donor-details__total{color:#219653;font-size:max(1.25rem,20px);font-weight:700;letter-spacing:0;line-height:24px;overflow-wrap:normal;text-align:right;word-break:normal!important}.give-donor-tribute{align-items:center;display:flex;margin-top:32px;min-height:32px;width:100%}.give-donor-tribute span svg{display:block;height:22px;margin:0 15px 0 32px;width:22px}.give-donor-tribute__message{color:#00160a;font-size:max(.75rem,12px);text-align:center}.give-donor-tribute__message span:last-child{font-weight:600}.give-donor-wall-modal p:last-child{margin-bottom:0}#give-processing-state-template{background:rgba(0,0,0,.8);bottom:0;display:none;flex-direction:column;height:100%;justify-content:center;left:0;overflow:hidden;position:fixed;right:0;text-align:center;top:0;z-index:9999999}#give-processing-state-template.active{display:flex}#give-processing-state-template div{align-self:center;color:#fff;font-size:26px;margin:0 0 0 10px}#give-processing-state-template h3{color:#fff;font-size:26px;line-height:1.25;margin:0;padding:0 0 5px}#give-processing-state-template p{color:#fff;font-size:16px;line-height:1.5;margin:0;padding:0}#give-processing-state-template .loader{background-image:url("data:image/svg+xml;charset=utf8,%3C?xml%20version=%271.0%27%20encoding=%27utf-8%27?%3E%3C%21--%20Generator:%20Adobe%20Illustrator%2024.1.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200%29%20--%3E%3Csvg%20version=%271.1%27%20id=%27Layer_1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20x=%270px%27%20y=%270px%27%20viewBox=%270%200%20349%20348%27%20style=%27enable-background:new%200%200%20349%20348;%27%20xml:space=%27preserve%27%3E%3Cstyle%20type=%27text/css%27%3E%20.st0{fill:%23FFFFFF;}%20%3C/style%3E%3Cpath%20class=%27st0%27%20d=%27M25.1,204.57c-13.38,0-24.47-10.6-24.97-24.08C0.04,178.09,0,175.97,0,174C0,77.78,78.28-0.5,174.5-0.5%20c13.81,0,25,11.19,25,25s-11.19,25-25,25C105.85,49.5,50,105.35,50,174c0,1.37,0.03,2.85,0.1,4.65c0.51,13.8-10.27,25.39-24.07,25.9%20C25.72,204.56,25.41,204.57,25.1,204.57z%27/%3E%3Cpath%20class=%27st0%27%20d=%27M174.5,348.5c-13.81,0-25-11.19-25-25c0-13.81,11.19-25,25-25c68.65,0,124.5-55.85,124.5-124.5%20c0-1.38-0.03-2.85-0.1-4.65c-0.51-13.8,10.26-25.4,24.06-25.91c13.83-0.53,25.4,10.26,25.91,24.06c0.09,2.39,0.13,4.51,0.13,6.49%20C349,270.22,270.72,348.5,174.5,348.5z%27/%3E%3C/svg%3E");height:60px;margin:0 0 20px;opacity:0;pointer-events:none;width:60px}#give-processing-state-template .loader.spinning{animation:load .6s linear infinite;opacity:1;transition:opacity .2s ease}@keyframes load{0%{transform:rotate(0deg)}to{transform:rotate(180deg)}}.separator-with-text{align-items:center;display:flex;font-size:16px;font-style:italic;justify-content:center;padding:30px 0}.separator-with-text .dashed-line{border:1px solid #d4d4d4;flex-grow:1}.separator-with-text .label{color:#8d8e8e;font-size:14px;padding:0 6px}.give-multi-form-goal-block{background:#fff;border-radius:8px;box-shadow:0 2px 5px rgba(0,0,0,.306);display:flex;flex-direction:column;margin-bottom:20px}.give-multi-form-goal-block .wp-block-media-text{margin:24px!important}.give-multi-form-goal-block .give-multi-form-goal-block__image,.give-multi-form-goal-block .wp-block-media-text__media,.give-multi-form-goal-block .wp-block-media-text__media img{border-radius:6px!important}.give-multi-form-goal-block .wp-block-media-text .wp-block-media-text__content{padding:16px!important}.give-multi-form-goal-block__content{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));grid-gap:16px;margin:24px!important;min-height:250px}.give-multi-form-goal-block__content .give-multi-form-goal-block__text{display:flex;flex-direction:column;justify-content:center}.give-multi-form-goal-block__content .give-multi-form-goal-block__text h2{margin-bottom:var(--global--spacing-vertical)}.give-multi-form-goal-block__content .give-multi-form-goal-block__image img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.give-progress-bar-block__goal{border-top:1px solid #ebebeb;height:auto;padding:20px 16px}.give-progress-bar-block__progress{align-items:center;background:#f1f1f1;border-radius:20px;box-shadow:inset 0 1px 4px rgba(0,0,0,.095);display:flex;height:20px;overflow:hidden;position:relative}.give-progress-bar-block__progress .give-progress-bar-block__progress-bar{background:linear-gradient(180deg,#28c77b,#28c77b),linear-gradient(180deg,#fff,#ccc);background-blend-mode:multiply;border-radius:20px;height:100%;left:0;overflow:hidden;position:absolute;top:0}.give-progress-bar-block__stats{background:#f5f5f5;border-radius:0 0 8px 8px;border-top:1px solid #ebebeb;display:flex;flex-wrap:wrap;height:auto}.give-progress-bar-block__stat{align-items:center;border-right:1px solid #ebebeb;display:flex;flex:1 1 110px;flex-direction:column;font-weight:500;height:96px;justify-content:center}.give-progress-bar-block__stat:last-of-type{border-right:none}.give-progress-bar-block__stat>:first-child{color:#4c4c4c;font-size:24px;line-height:28px}.give-progress-bar-block__stat>:last-child{color:#6f6f6f;font-size:18px;line-height:1}.form-row .give-stripe-cc-field{background-color:#fdfdfd;border:1px solid #ccc;border-radius:0;box-sizing:border-box;color:#333;margin:0;outline:none;padding:.5em;width:100%}.give-stripe-cc-field.give-fl-input{background-color:#fff;height:auto;line-height:inherit;min-height:50px;padding:14px 10px}.give-stripe-cc-field-wrap .give-fl-is-active .give-fl-input{padding:20px 12px 4px;transition:padding .2s ease-in-out,border .2s ease-in-out}.give-stripe-cc-field-wrap .give-fl-label span{display:none}.give-stripe-single-cc-field-wrap{background-color:#fdfdfd;border:1px solid #ccc;height:40px;margin:0 0 15px;padding:10px}.give-form .give-stripe-cc-field.focus,.give-form .give-stripe-cc-field:focus{background-color:#fff}.give-stripe-checkout-modal{all:initial;align-items:center;background-color:rgba(0,0,0,.5);box-sizing:border-box;display:flex;font-family:-apple-system,BlinkMacSystemFont,sans-serif;height:100%;justify-content:center;left:0;opacity:0;overflow:scroll;position:fixed;top:0;transform:scale(1.1);transition:visibility 0s linear .25s,opacity .25s 0s,transform .25s;visibility:hidden;width:100%;z-index:100001!important}.give-stripe-checkout-modal.give-stripe-checkout-show-modal{opacity:1;transform:scale(1);transition:visibility 0s linear 0s,opacity .25s 0s,transform .25s;visibility:visible}.give-stripe-checkout-modal .give-stripe-checkout-modal-content{background:#fff;border-radius:.5rem;margin:auto;max-width:500px;overflow:hidden;position:relative;width:96%}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-header{background-color:#000;color:#fff;padding:20px;text-align:center}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-header .give-stripe-checkout-modal-close{background:none;border:none;color:#fff;cursor:pointer;font:inherit;margin:15px;outline:inherit;padding:0;position:absolute;right:0;top:0}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-header h3{color:#fff;font-size:18px;font-weight:600;margin:0 0 10px;text-transform:uppercase}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-header .give-stripe-checkout-form-title{color:#f5f5f5;font-size:18px;font-weight:600;margin:10px 0 0}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-header .give-stripe-checkout-donor-email{color:#e5e5e5;font-size:14px;font-weight:400;margin:5px 0}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-header .give-stripe-checkout-donation-amount{font-size:36px;font-weight:600}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-body{display:block;overflow:hidden;padding:20px}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-body hr{border:1px solid #e5e5e5;margin:20px 0}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-body .give-stripe-checkout-modal-else-part{font-size:14px;margin:-5px 0 20px;text-align:center}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-body .give-stripe-single-cc-field-wrap{margin:0}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-footer{background-color:#f5f5f5;padding:20px;text-align:center}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-footer .give-stripe-checkout-modal-btn-wrap{align-items:center;display:flex;justify-content:center}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-footer .give-stripe-checkout-modal-btn-wrap .sequoia-loader{bottom:20px}.give-stripe-checkout-modal .give-stripe-checkout-modal-content .give-stripe-checkout-modal-container .give-stripe-checkout-modal-footer .give-stripe-checkout-modal-sequoia-donate-button{align-items:center;border:none;border-radius:4px;display:flex;filter:brightness(1);font-size:22px;justify-content:center;line-height:20px;min-width:236px;order:99!important;padding:20px 28px!important;transition:filter .2s ease}.give-wrap .give-grid{max-width:30rem}.give-wrap .give-grid__item{margin-bottom:1.5rem;width:100%}.give-wrap .give-grid__item>:last-child{margin-bottom:0}.give-wrap .give-wrap:before{clear:both;content:"";display:block}@media(min-width:30rem){.give-wrap .give-grid{display:flex;flex-flow:row wrap;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{display:flex;padding:0 .75rem}}@media(min-width:30rem)and (min-width:40rem){.give-wrap .give-grid--2 .give-grid__item,.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:50%}}@media(min-width:30rem)and (min-width:72rem){.give-wrap .give-grid--3 .give-grid__item,.give-wrap .give-grid--4 .give-grid__item{width:33.3333333333%}}@media(min-width:30rem)and (min-width:90rem){.give-wrap .give-grid--4 .give-grid__item{width:25%}}@supports(display:grid){.give-wrap .give-grid{display:grid;grid-template-columns:1fr;grid-gap:1.5rem;margin-bottom:1.5rem;max-width:100%}.give-wrap .give-grid__item{display:flex;margin-bottom:0;padding:0;width:auto!important}@media(min-width:40rem){.give-wrap .give-grid--best-fit{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}.give-wrap .give-grid--2,.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(2,1fr)}}@media(min-width:72rem){.give-wrap .give-grid--3,.give-wrap .give-grid--4{grid-template-columns:repeat(3,1fr)}}@media(min-width:90rem){.give-wrap .give-grid--4{grid-template-columns:repeat(4,1fr)}}}.give-wrap .give-card{background-color:#fff;border-radius:8px;box-shadow:0 0 8px hsla(0,0%,44%,.25);color:inherit;display:flex;flex-direction:column;text-decoration:none;transition:all .1s ease-out;width:100%}.give-wrap .give-card:active,.give-wrap .give-card:focus,.give-wrap .give-card:hover,.give-wrap .give-card:visited{border-color:#ccc;box-shadow:0 4px 12px rgba(0,0,0,.16)}.give-wrap .give-card__media img{border-radius:0;box-shadow:none;display:block;height:auto;margin:0;-o-object-fit:cover;object-fit:cover;order:1;width:100%}.give-wrap .give-card__body{display:flex;flex-direction:column;flex-grow:1;order:2;padding:1.5rem}.give-wrap .give-card__body>:last-child{margin-bottom:0}.give-wrap .give-card__title{line-height:1.3;margin:0 0 .75rem;padding:0}.give-wrap .give-card__text{margin:0 0 1.5rem;padding:0}.give-wrap .give-card__progress{margin-top:auto;width:100%}.give-wrap .give-card__progress .raised,.give-wrap .give-card__progress>:last-child{margin-bottom:0}.give-wrap .give-card__progress .income{font-size:2em}.give-wrap .give-page-numbers{font-size:1.25em}#give-receipt .timeline-item{background:#fff}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:520px 0}}#give-receipt .placeholder-animation{margin:0 auto;max-width:650px}#give-receipt .animated-background{animation-duration:.85s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(90deg,#eee 8%,#ddd 18%,#eee 33%);background-size:520px 100%;position:relative}#give-receipt .container{background-color:#eee;border:1px solid #eee;margin:0 auto;width:650px}#give-receipt .layer{display:flex}#give-receipt .layer.h1{height:28px}#give-receipt .layer.h2{height:22px}#give-receipt .layer.inline-radios{height:12px}#give-receipt .layer.label{height:8px}#give-receipt .layer-item.opaque{background:#fff}#give-receipt .layer-gap{background-color:#fff}#give-receipt .layer-gap.large{height:40px}#give-receipt .layer-gap.medium{height:20px}#give-receipt .layer-gap.small{height:10px}#give-receipt .layer-1 .layer-item:nth-child(odd){width:45%}#give-receipt .layer-1 .layer-item:nth-child(2n){width:55%}#give-receipt .layer-4 .layer-item:first-child{width:30%}#give-receipt .layer-4 .layer-item:nth-child(2){width:10%}#give-receipt .layer-4 .layer-item:nth-child(3){width:20%}#give-receipt .layer-4 .layer-item:nth-child(4){width:30%}#give-receipt .layer-4 .layer-item:nth-child(5){width:10%}#give-receipt .layer-5 .layer-item:first-child{width:40%}#give-receipt .layer-5 .layer-item:nth-child(2){width:5%}#give-receipt .layer-5 .layer-item:nth-child(3){width:15%}#give-receipt .layer-5 .layer-item:nth-child(4){width:40%}#give-receipt .layer-6 .layer-item:nth-child(odd){width:30%}#give-receipt .layer-6 .layer-item:nth-child(2n){width:70%}#give-receipt .layer-8 .layer-item:first-child{width:40%}#give-receipt .layer-8 .layer-item:nth-child(2){width:20%}#give-receipt .layer-8 .layer-item:nth-child(3){width:40%}.give-grid-ie-utility{margin:0 -12px}@supports(display:grid){.give-grid-ie-utility{margin:0}}
:root{--givewp-red-25:#fff4f2;--givewp-red-50:#ffdfd9;--givewp-red-100:#ffb5a6;--givewp-red-200:#ff8a73;--givewp-red-300:#ff6040;--givewp-red-400:#f2320c;--givewp-red-500:#d92d0b;--givewp-red-600:#a62308;--givewp-red-700:#8c1700;--givewp-red-800:#590f00;--givewp-red-900:#260600;--givewp-orange-50:#ffefd9;--givewp-orange-100:#ffdaa6;--givewp-orange-200:#ffc473;--givewp-orange-300:#f2a63d;--givewp-orange-400:#f29718;--givewp-orange-500:#d98715;--givewp-orange-600:#a66710;--givewp-orange-700:#73480b;--givewp-orange-800:#402806;--givewp-orange-900:#1a0f00;--givewp-yellow-25:#fffdf2;--givewp-yellow-50:#fff9d9;--givewp-yellow-100:#fff0a6;--givewp-yellow-200:#ffe873;--givewp-yellow-300:#ffdf40;--givewp-yellow-400:#f2cc0c;--givewp-yellow-500:#d9b60b;--givewp-yellow-600:#a68c08;--givewp-yellow-700:#8c7607;--givewp-yellow-800:#594b05;--givewp-yellow-900:#262000;--givewp-green-25:#f2fff3;--givewp-green-50:#e5ffe6;--givewp-green-100:#cef2cf;--givewp-green-200:#a3d9a4;--givewp-green-300:#7cbf7e;--givewp-green-400:#62b265;--givewp-green-500:#459948;--givewp-green-600:#2d802f;--givewp-green-700:#19661c;--givewp-green-800:#0a400b;--givewp-green-900:#022603;--givewp-emerald-25:#f2fff9;--givewp-emerald-50:#d9ffec;--givewp-emerald-100:#9df2c8;--givewp-emerald-200:#6df2b0;--givewp-emerald-300:#3df297;--givewp-emerald-400:#0cf27f;--givewp-emerald-500:#0bd972;--givewp-emerald-600:#08a657;--givewp-emerald-700:#078c4a;--givewp-emerald-800:#05592f;--givewp-emerald-900:#002613;--givewp-blue-25:#f2f9ff;--givewp-blue-50:#d9ecff;--givewp-blue-100:#a6d2ff;--givewp-blue-200:#73b9ff;--givewp-blue-300:#3d97f2;--givewp-blue-400:#0c7ff2;--givewp-blue-500:#0b72d9;--givewp-blue-600:#0857a6;--givewp-blue-700:#074a8c;--givewp-blue-800:#052f59;--givewp-blue-900:#001326;--givewp-purple-25:#f4f2ff;--givewp-purple-50:#beb6f2;--givewp-purple-100:#8c7ee5;--givewp-purple-200:#5f4cd9;--givewp-purple-300:#3a21d9;--givewp-purple-400:#2b13bf;--givewp-purple-500:#2511a6;--givewp-purple-600:#19078c;--givewp-purple-700:#120566;--givewp-purple-800:#090040;--givewp-purple-900:#03001a;--givewp-neutral-25:#f9fafb;--givewp-neutral-50:#f3f4f6;--givewp-neutral-100:#e5e7eb;--givewp-neutral-200:#d1d5db;--givewp-neutral-300:#9ca0af;--givewp-neutral-400:#6b7280;--givewp-neutral-500:#4b5563;--givewp-neutral-600:#374151;--givewp-neutral-700:#1f2937;--givewp-neutral-800:#111827;--givewp-neutral-900:#060c1a;--givewp-grey-5:#fafafa;--givewp-grey-25:#f2f2f2;--givewp-grey-50:#e6e6e6;--givewp-grey-100:#dadada;--givewp-grey-200:#bfbfbf;--givewp-grey-300:#a6a6a6;--givewp-grey-400:#8c8c8c;--givewp-grey-500:#737373;--givewp-grey-600:#595959;--givewp-grey-700:#404040;--givewp-grey-800:#262626;--givewp-grey-900:#0e0e0e;--givewp-shades-white:#fff;--givewp-shades-black:#000}
:root{--givewp-rounded-2:0.125rem;--givewp-rounded-4:0.25rem;--givewp-rounded-6:0.375rem;--givewp-rounded-8:0.5rem;--givewp-rounded-12:0.75rem;--givewp-rounded-16:1rem;--givewp-rounded-24:1.5rem;--givewp-rounded-full:999px;--givewp-rounded-none:0rem}
:root{--givewp-spacing-1:0.25rem;--givewp-spacing-2:0.5rem;--givewp-spacing-3:0.75rem;--givewp-spacing-4:1rem;--givewp-spacing-5:1.25rem;--givewp-spacing-6:1.5rem;--givewp-spacing-7:1.75rem;--givewp-spacing-8:2rem;--givewp-spacing-9:2.25rem;--givewp-spacing-10:2.5rem;--givewp-spacing-11:2.75rem;--givewp-spacing-12:3rem;--givewp-spacing-13:3.25rem;--givewp-spacing-14:3.5rem;--givewp-spacing-15:3.75rem;--givewp-spacing-16:4rem;--givewp-spacing-17:4.25rem;--givewp-spacing-18:4.5rem;--givewp-spacing-19:4.75rem;--givewp-spacing-20:5rem;--givewp-spacing-32:8rem;--givewp-spacing-40:10rem;--givewp-spacing-56:14rem;--givewp-spacing-80:20rem;--givewp-spacing-96:24rem}
:root{--givewp-font-size-display-xl:6rem;--givewp-font-weight-display-xl:semi-bold;--givewp-font-size-display-lg:4.5rem;--givewp-font-weight-display-lg:semi-bold;--givewp-font-size-heading-xl:4rem;--givewp-font-weight-heading-xl:bold;--givewp-font-size-heading-lg:2.5rem;--givewp-font-weight-heading-lg:semi-bold;--givewp-font-size-heading-md:2.25rem;--givewp-font-weight-heading-md:semi-bold;--givewp-font-size-heading-sm:1.5rem;--givewp-font-weight-heading-sm:semi-bold;--givewp-font-size-headline-lg:1.25rem;--givewp-font-weight-headline-lg:extra-bold;--givewp-font-size-headline-md:1rem;--givewp-font-weight-headline-md:extra-bold;--givewp-font-size-headline-sm:0.75rem;--givewp-font-weight-headline-sm:extra-bold;--givewp-font-size-paragraph-lg:1rem;--givewp-font-weight-paragraph-lg:medium;--givewp-font-size-paragraph-md:0.75rem;--givewp-font-weight-paragraph-md:medium;--givewp-font-size-paragraph-sm:0.5rem;--givewp-font-weight-paragraph-sm:medium}
:root{--givewp-shadow-xs:0 1px 2px var(--givewp-grey-50);--givewp-shadow-sm:0 2px 4px var(--givewp-grey-50);--givewp-shadow-md:0 4px 8px var(--givewp-grey-50);--givewp-shadow-lg:0 12px 24px var(--givewp-grey-50);--givewp-shadow-xl:0 16px 32px var(--givewp-grey-50);--givewp-shadow-inner:inset 0 2px 4px var(--givewp-grey-50);--givewp-shadow-xs-green:0 1px 2px var(--givewp-green-50);--givewp-shadow-sm-green:0 2px 4px var(--givewp-green-50);--givewp-shadow-md-green:0 4px 8px var(--givewp-green-50);--givewp-shadow-lg-green:0 12px 24px var(--givewp-green-50);--givewp-shadow-xl-green:0 16px 32px var(--givewp-green-50);--givewp-shadow-inner-green:inset 0 2px 4px var(--givewp-green-50);--givewp-shadow-xs-blue:0 1px 2px var(--givewp-blue-50);--givewp-shadow-sm-blue:0 2px 4px var(--givewp-blue-50);--givewp-shadow-md-blue:0 4px 8px var(--givewp-blue-50);--givewp-shadow-lg-blue:0 12px 24px var(--givewp-blue-50);--givewp-shadow-xl-blue:0 16px 32px var(--givewp-blue-50);--givewp-shadow-inner-blue:inset 0 2px 4px var(--givewp-blue-50);--givewp-shadow-xs-orange:0 1px 2px var(--givewp-orange-50);--givewp-shadow-sm-orange:0 2px 4px var(--givewp-orange-50);--givewp-shadow-md-orange:0 4px 8px var(--givewp-orange-50);--givewp-shadow-lg-orange:0 12px 24px var(--givewp-orange-50);--givewp-shadow-xl-orange:0 16px 32px var(--givewp-orange-50);--givewp-shadow-inner-orange:inset 0 2px 4px var(--givewp-orange-50)}
.footer-width-fixer {
    width: 100%;
}

/* Container fix for genesis themes */

.ehf-template-genesis.ehf-header .site-header .wrap,
.ehf-template-genesis.ehf-footer .site-footer .wrap,
.ehf-template-generatepress.ehf-header .site-header .inside-header {
    width: 100%;
    padding: 0;
    max-width: 100%;
}

/* Container fix for generatepress theme */

.ehf-template-generatepress.ehf-header .site-header,
.ehf-template-generatepress.ehf-footer .site-footer {
    width: 100%;
    padding: 0;
    max-width: 100%;
    background-color: transparent !important; /* override generatepress default white color for header */
}

.bhf-hidden {
    display: none
}

/* Fix: Header hidden below the page content */
.ehf-header #masthead {
	z-index: 99;
    position: relative;
}
:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{display:inline-block;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-circle-logo);font-size:2.5em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3));height:100px;width:100px}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-button-align-start .e-form__buttons,[dir=rtl] .elementor-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-button-align-end .e-form__buttons,[dir=rtl] .elementor-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-tablet-button-align-start .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-tablet-button-align-end .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-mobile-button-align-start .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-mobile-button-align-end .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;fill:#fff;font-size:15px;line-height:1;padding:12px 24px;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;fill:#fff;padding:.5em}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}
.elementor-kit-1452{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
.elementor .e-div-block-base{min-width:30px;padding:10px;display:block;}.elementor .e-flexbox-base{padding:10px;display:flex;flex-direction:row;}.elementor .e-grid-base{column-gap:20px;padding:10px;display:grid;row-gap:20px;grid-template-columns:repeat(3, 1fr);grid-template-rows:repeat(2, 1fr);}.elementor .e-tabs-base{padding-block-start:0px;display:flex;flex-direction:column;gap:30px;}.elementor .e-tabs-menu-base{display:flex;justify-content:center;}.elementor .e-tab-base{width:160px;color:#0C0D0E;cursor:pointer;padding:8px;border-width:2px;border-color:#E0E0E0;border-style:solid;background-color:#FFFFFF;display:block;}.elementor .e-tab-base.e--selected{border-color:#0C0D0E;outline-width:0px;}.elementor .e-tab-base:focus{border-color:#0C0D0E;outline-width:0px;}.elementor .e-tab-base:hover,.elementor .e-tab-base:focus-visible{background-color:#E0E0E0;}.elementor .e-tabs-content-area-base{display:block;}.elementor .e-tab-content-base{min-width:30px;padding:10px;display:block;}.elementor .e-form-base{display:block;}.elementor .e-collection-loop-base{display:block;}.elementor .e-heading-base{margin:0px;}.elementor .e-heading-link-base{all:unset;cursor:pointer;}.elementor .e-image-link-base{width:fit-content;all:unset;cursor:pointer;display:inherit;}.elementor .e-image-base{display:block;}.elementor .e-paragraph-base{margin:0px;}.elementor .e-paragraph-link-base{all:unset;cursor:pointer;}.elementor .e-svg-base{width:65px;height:65px;display:inline-block;}.elementor .e-button-base{text-align:center;padding-block-start:12px;padding-block-end:12px;padding-inline-start:24px;padding-inline-end:24px;border-radius:2px;border-width:0px;background-color:#375EFB;display:inline-block;}.elementor .e-youtube-base{overflow:hidden;aspect-ratio:16/9;}.elementor .e-divider-base{height:1px;border-width:0px;border-color:transparent;border-style:none;background-color:#000;}.elementor .e-self-hosted-video-base{max-width:100vw;aspect-ratio:16/9;display:inline-block;}
/**
 * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist.  Add Wishlist functionality to your store for free.
 * @version 2.12.0
 * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
 */

.ftinvwl{font-family:"tinvwl-webfont" !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.ftinvwl-twitter:before{content:"\f099"}
.ftinvwl-facebook:before{content:"\f09a" !important}
.ftinvwl-facebook-f:before{content:"\f09a" !important}
.ftinvwl-google:before{content:"\f0d5" !important}
.ftinvwl-email:before{content:"\f0e0" !important}
.ftinvwl-pinterest:before{content:"\f231" !important}
.ftinvwl-whatsapp:before{content:"\f232" !important}
.ftinvwl-clipboard:before{content:"\e911" !important}
.ftinvwl-star:before{content:"\e912" !important}
.ftinvwl-shopping-cart:before{content:"\e913" !important}
.ftinvwl-magic:before{content:"\e914" !important}
.ftinvwl-info:before{content:"\e915" !important}
.ftinvwl-graduation-cap:before{content:"\e918" !important}
.ftinvwl-floppy-o:before{content:"\e919" !important}
.ftinvwl-eyedropper:before{content:"\e91a" !important}
.ftinvwl-exclamation-triangle:before{content:"\e91b" !important}
.ftinvwl-check:before{content:"\e91e" !important}
.ftinvwl-arrow-left:before{content:"\e91f" !important}
.ftinvwl-wrench:before{content:"\e920" !important}
.ftinvwl-chevron-down:before{content:"\e900" !important}
.ftinvwl-chevron-right:before{content:"\e901" !important}
.ftinvwl-chevron-left:before{content:"\e902" !important}
.ftinvwl-chevron-up:before{content:"\e903" !important}
.ftinvwl-cancel:before{content:"\e904" !important}
.ftinvwl-times:before{content:"\e905" !important}
.ftinvwl-heart-plus:before{content:"\e906" !important}
.ftinvwl-heart-mark-right:before{content:"\e907" !important}
.ftinvwl-heart2:before{content:"\e908" !important}
.ftinvwl-heart-o:before{content:"\e909" !important}
.ftinvwl-heart-mark-left:before{content:"\e90a" !important}
.ftinvwl-heart-mail:before{content:"\e90b" !important}
.ftinvwl-heart-tinv:before{content:"\e90c" !important}
.ftinvwl-key:before{content:"\e90d" !important}
.ftinvwl-lock:before{content:"\e90e" !important}
.ftinvwl-hearts:before{content:"\e90f" !important}
.ftinvwl-user:before{content:"\e910" !important}
.ftinvwl-pulse.ftinvwl-animated::before{-webkit-animation:ftinvwl-pulse 2s linear infinite;animation:ftinvwl-pulse 2s linear infinite}
@-webkit-keyframes ftinvwl-pulse{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}
50%{-webkit-transform:scale(0.8);transform:scale(0.8)}
100%{-webkit-transform:scale(1.1);transform:scale(1.1)}
}@keyframes ftinvwl-pulse{0%{-webkit-transform:scale(1.1);transform:scale(1.1)}
50%{-webkit-transform:scale(0.8);transform:scale(0.8)}
100%{-webkit-transform:scale(1.1);transform:scale(1.1)}
}
/**
 * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist.  Add Wishlist functionality to your store for free.
 * @version 2.12.0
 * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
 */
.tinv-wishlist form,.tinv-wishlist p:last-child,.tinv-wishlist table{margin-bottom:0}
.tinv-wishlist *{-webkit-box-sizing:border-box;box-sizing:border-box}
.tinvwl-wishlist :after,.tinvwl-wishlist :before{-webkit-box-sizing:border-box;box-sizing:border-box}
.tinv-wishlist select{width:140px}
.tinv-wishlist ul:not(.woocommerce-error){list-style:none;margin:0;padding:0}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before{margin-top:-10px;margin-left:-10px}
.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt{text-align:center}
.tinv-wishlist .button i,.tinv-wishlist .navigation-button a i{margin-right:6px}
.tinv-wishlist input[type=button] i,.tinv-wishlist input[type=reset] i,.tinv-wishlist input[type=submit] i{margin-right:6px}
.tinv-wishlist a.tinv-close-modal i{margin-right:0}
a.wishlist_products_counter{text-decoration:none}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,a.wishlist_products_counter.top_wishlist-heart:before,span.wishlist_products_counter.top_wishlist-heart:before,a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart:before{content:"\e909";display:inline-block;font-family:tinvwl-webfont !important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px;vertical-align:sub;margin-right:5px}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,a.wishlist_products_counter.top_wishlist-heart-plus:before,span.wishlist_products_counter.top_wishlist-heart-plus:before,a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart-plus:before{content:"\e906";display:inline-block;font-family:tinvwl-webfont !important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px;vertical-align:sub;margin-right:5px}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt{position:relative;width:18px;height:18px;vertical-align:sub}
a.wishlist_products_counter.top_wishlist-heart-plus.no-txt,span.wishlist_products_counter.top_wishlist-heart-plus.no-txt{position:relative;width:18px;height:18px;vertical-align:sub}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before{position:absolute;top:50%;left:50%;margin-right:0}
.tinv-wishlist .tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,.tinv-wishlist .tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt{padding-left:1em;vertical-align:bottom}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list:before{content:"\e908"}
.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list:before,.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button.tinvwl-product-in-list:before,a.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products:before,span.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products:before{content:"\e908"}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list:before,.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list:before,.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button.tinvwl-product-in-list:before,a.wishlist_products_counter.top_wishlist-heart-plus.wishlist-counter-with-products:before,span.wishlist_products_counter.top_wishlist-heart-plus.wishlist-counter-with-products:before{content:"\e907"}
.tinv-wishlist .tinvwl_add_to_wishlist_button.icon-white:before,a.wishlist_products_counter.top_wishlist-white:before,span.wishlist_products_counter.top_wishlist-white:before{color:#FFF}
.tinv-wishlist .tinvwl_add_to_wishlist_button.icon-black:before,a.wishlist_products_counter.top_wishlist-black:before,span.wishlist_products_counter.top_wishlist-black:before{color:#000}
.tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button{margin-bottom:15px}
.tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button{margin-top:15px}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt{width:18px;height:18px;line-height:1}
.wishlist-popup .tinv-wishlist .tinvwl_add_to_wishlist_button{margin:0}
.wishlist-popup .tinv-wishlist .tinvwl_add_to_wishlist_button::before{display:none}
a.wishlist_products_counter.top_wishlist-custom.no-txt,span.wishlist_products_counter.top_wishlist-custom.no-txt{width:18px;height:18px;line-height:1}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom img,a.wishlist_products_counter.top_wishlist-custom img,span.wishlist_products_counter.top_wishlist-custom img{display:inline-block !important;vertical-align:baseline;width:auto !important;max-width:16px;max-height:16px;margin:0 6px 0 0 !important}
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img,a.wishlist_products_counter.top_wishlist-custom.no-txt img,span.wishlist_products_counter.top_wishlist-custom.no-txt img{margin-right:0 !important}
.single-product div.product form.cart .tinvwl-button.tinvwl_add_to_wishlist_button,div.product form.cart .tinvwl_add_to_wishlist_button{float:none}
ul.products li.product .tinvwl_add_to_wishlist_button{margin-top:1em}
.tinvwl_add_to_wishlist_button{display:inline-block;cursor:pointer;-webkit-transition:opacity 1s;transition:opacity 1s;opacity:1;visibility:visible;position:relative}
.tinv-wishlist.woocommerce .stock.in-stock:before{content:none}
.tinv-wraper.tinv-wishlist{font-size:100%}
.tinv-wraper.tinv-wishlist.tinvwl-above_thumb-add-to-cart{position:absolute;z-index:10;margin:0;top:10px;left:10px}
.tinv-wraper.tinv-wishlist.tinvwl-above_thumb-add-to-cart a.tinvwl_add_to_wishlist_button{margin-top:0}
.tinv-create-list li input[type=radio]{margin-right:10px}
.tinv-create-list li+li{margin-top:15px}
.tinv-create-list .tinvwl-input-group+ul{margin-top:25px}
.tinv-search-list{margin-bottom:36px}
.tinv-wishlist .tinv-header{margin-bottom:30px}
.tinv-wishlist table{position:relative;table-layout:auto;margin-bottom:30px}
.tinv-overlay{top:0;left:0;position:fixed;-webkit-transition:opacity .3s ease,visibility .3s ease;transition:opacity .3s ease,visibility .3s ease}
.tinv-wishlist .tinv-modal{top:0;left:0;position:fixed;-webkit-transition:opacity .3s ease,visibility .3s ease;transition:opacity .3s ease,visibility .3s ease}
.tinv-wishlist table.tinvwl-table-manage-list{margin-bottom:27px;width:100%}
.tinv-wishlist table input[type=checkbox]{margin-right:0}
.tinv-wishlist table td,.tinv-wishlist table th{padding:1em;vertical-align:middle}
.tinv-wishlist .tinvwl-table-manage-list .product-cb{width:35px;text-align:center}
.tinv-wishlist .tinvwl-table-manage-list .product-remove{width:35px;text-align:center;padding:1em .5em}
.tinv-wishlist .product-remove button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;margin:0 auto;width:27px;height:27px;border-radius:50%;padding:0;-webkit-box-shadow:none;box-shadow:none;border:0;background-color:#f7f7f7;color:#000;font-size:20px;padding-left:1px;padding-top:3px;min-height:0}
.tinv-wishlist .product-thumbnail{min-width:100px;max-width:100%;width:100px}
.tinv-wishlist .product-thumbnail .wp-post-image{margin-bottom:0}
.tinv-wishlist td.product-name a+.variation{margin-top:2px}
.tinv-wishlist .product-stock i{margin-right:15px}
.tinv-wishlist .product-stock p{display:table}
.tinv-wishlist .product-stock p.stock::before{display:none}
.tinv-wishlist .product-stock span{display:table-cell;vertical-align:middle}
.tinv-wishlist .product-action>.button>i,.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove],.tinv-wishlist table thead th .tinvwl-mobile{display:none}
.tinv-wishlist.woocommerce .product-quantity{width:80px;text-align:center}
.tinv-wishlist.woocommerce table .quantity .qty{max-width:100%;width:62px;text-align:left}
.tinv-wishlist .product-action{width:135px;text-align:center}
.tinv-wishlist .product-action .button{width:100%}
.tinv-wishlist .product-action .tinvwl_move_product_button{margin-top:5px}
.tinv-wishlist .tinvwl-table-manage-list .product-action>button[name=tinvwl-remove]>i{margin-right:0}
.tinv-wishlist .wishlist-cb{width:33px;text-align:center}
.tinv-wishlist .wishlist-name .tinvwl-rename-input input{width:100%}
.tinv-wishlist .wishlist-name .tinvwl-rename-button{float:right}
.tinv-wishlist .wishlist-name .tinvwl-rename-button>i{margin-right:10px}
.tinv-wishlist .wishlist-privacy,.tinv-wishlist table:not(.tinvwl-public) .wishlist-date{width:18%}
.tinv-wishlist .wishlist-privacy select{width:100%}
.tinv-wishlist .wishlist-name{width:45%}
.tinv-wishlist .wishlist-action{width:120px;text-align:center}
.tinv-wishlist .wishlist-action button[value=manage_remove]>i{display:none;margin-right:0}
.tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list{display:inline-block;vertical-align:middle}
.tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list>a.button{margin-right:0}
.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{margin-top:-10px}
.tinv-wishlist tfoot .tinvwl-to-left:not(:empty){float:left;width:35%;margin-right:2%}
.tinv-wishlist tfoot .tinvwl-to-right{float:left;width:63%;text-align:right}
.tinv-wishlist tfoot .tinvwl-to-right>*{margin:10px 0 0;vertical-align:middle}
.tinv-wishlist tfoot .tinvwl-to-right>*+*{margin-left:10px}
.tinv-wishlist tfoot .tinvwl-to-left:empty+.tinvwl-to-right{width:100%}
.tinv-wishlist .social-buttons+.tinv-wishlist-clear+.navigation-button{margin-top:16px}
.tinv-wishlist .navigation-button{margin-top:-10px}
.tinv-wishlist .navigation-button>li{float:left}
.tinv-wishlist .navigation-button>li>.tinv-create-list>a,.tinv-wishlist .navigation-button>li>a{margin-right:30px;margin-top:10px;display:inline-block}
.tinv-wishlist .navigation-button>li>.tinv-create-list>a.button,.tinv-wishlist .navigation-button>li>a.button{margin-right:10px}
.tinv-wishlist .navigation-button>li:last-child>.tinv-create-list>a,.tinv-wishlist .navigation-button>li:last-child>a{margin-right:0}
.tinv-wishlist .social-buttons{text-align:right}
.tinv-wishlist .social-buttons>span,.tinv-wishlist .social-buttons>ul{display:inline-block;vertical-align:middle}
.tinv-wishlist .social-buttons>span{margin-right:27px}
.tinv-wishlist .social-buttons li{float:left;margin:0 5px 0 0;list-style:none}
.tinv-wishlist .social-buttons li:last-child{margin-right:0}
.tinv-wishlist .social-buttons li a.social{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:2em;height:2em;border-radius:50%;text-align:center;-webkit-box-shadow:none;box-shadow:none;border:0;font-size:20px;text-decoration:none;text-transform:none !important}
.tinv-wishlist .social-buttons li a.social.white{color:#fff}
.tinv-wishlist .social-buttons li a.social.dark{color:#000}
.tinv-wishlist .social-buttons li a.social i{line-height:2em}
.tinv-wishlist .navigation-button .tinv-create-list>a.tinvwl-no-icon>i,.tinv-wishlist .navigation-button li>a.tinvwl-no-icon>i{display:none}
.tinv-wishlist .tinv-lists-nav{margin-top:35px;margin-bottom:35px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}
.tinv-wishlist .tinv-lists-nav>*{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.tinv-wishlist .tinv-lists-nav>span{font-weight:700}
.tinv-wishlist .tinv-next{display:inline-block;float:left}
.tinv-wishlist .tinv-prev{display:inline-block;float:left;margin-right:35px !important}
.tinv-wishlist .tinv-prev i{margin-left:0;margin-right:18px}
.tinv-wishlist .tinv-next i{margin-left:18px;margin-right:0}
.tinv-overlay{width:100%;height:100%;visibility:hidden;opacity:0;background:#191919}
.tinv-modal.tinv-modal-open .tinv-overlay{visibility:visible;opacity:.5}
.admin-bar .tinv-wishlist .tinv-modal{padding-top:32px !important}
.tinv-wishlist .tinv-modal{overflow-y:auto;overflow-x:hidden;width:0;height:0;z-index:9999;outline:0 !important;-webkit-backface-visibility:hidden;visibility:hidden;opacity:0;text-align:left}
.tinv-wishlist .tinv-modal .tinv-modal-inner{position:relative;margin:0 auto;background-color:#fff;max-width:360px;padding:40px}
.tinv-wishlist .tinv-modal.tinv-modal-open{visibility:visible;opacity:1;width:100%;height:100%}
.tinv-wishlist .tinv-modal .tinv-close-modal{display:inline-block;position:absolute;top:17px;right:14px;width:26px;height:26px;line-height:26px;font-size:12px;text-align:center;border-radius:50%;border-bottom:0;-webkit-box-shadow:none !important;box-shadow:none !important;background-color:#ebe9eb}
.tinv-wishlist .tinv-modal .icon_big_heart_check,.tinv-wishlist .tinv-modal .icon_big_times,.tinv-wishlist .tinv-modal img{display:block;margin:0 auto;margin-bottom:25px;opacity:1 !important}
.tinv-wishlist .tinv-modal ul{overflow:visible;list-style:disc;margin:10px 0 0 20px}
.tinv-wishlist .tinv-modal li{list-style:disc !important}
.tinv-wishlist .tinv-create-list .tinv-modal ul,.tinv-wishlist.tinv-create-list form ul{list-style:none !important;margin:25px 0 0}
.tinv-wishlist .tinv-create-list .tinv-modal li,.tinv-wishlist.tinv-create-list form li{list-style:none !important}
.tinv-wishlist .tinv-modal .already-in{margin-bottom:35px}
.tinv-wishlist .tinv-modal .delete-notification{margin-bottom:25px}
.tinv-wishlist .tinv-modal .already-in ul{overflow:visible;margin:12px 0 27px 17px}
.tinv-wishlist .tinv-modal select{width:100%}
.tinv-wishlist .tinv-modal button+.button,.tinv-wishlist .tinv-modal button+button{margin-top:12px;width:100%}
.tinv-wishlist .tinv-modal input+button{margin-top:12px;width:100%}
.tinv-wishlist .tinv-modal label+button,.tinv-wishlist .tinv-modal label+input{margin-top:12px;width:100%}
.tinv-wishlist .tinv-modal select+button,.tinv-wishlist .tinv-modal select+input{margin-top:12px;width:100%}
.tinv-wishlist .tinv-modal .already-in+label{display:block;margin-top:6px}
.tinv-wishlist .tinv-modal label select{margin-top:8px}
.tinv-wishlist .tinv-modal .delete-notification+button{width:100%}
.tinv-wishlist .tinvwl_added_to_wishlist,.tinv-wishlist .tinvwl_created_wishlist{text-align:center}
.tinv-wishlist .tinvwl_added_to_wishlist .tinv-txt{margin-bottom:25px}
.tinv-wishlist .tinvwl_created_wishlist .tinv-txt{margin-bottom:25px}
.tinv-wishlist .tinvwl_created_wishlist button{margin-top:0;margin-bottom:10px}
.woocommerce .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button{margin-top:0;margin-bottom:10px}
.tinv-wishlist .tinv-modal .tinvwl-buttons-group{margin-top:20px}
.tinv-wishlist .tinvwl-buttons-group button{width:100%}
.tinv-wishlist .tinvwl-buttons-group button+button{margin-top:7px}
.tinv-wishlist .tinvwl-buttons-group button i{position:relative}
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-heart-o,.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-key,.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-times{font-size:20px;top:0;vertical-align:initial}
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-heart-o::before,.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-key::before,.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-times::before{position:relative;top:3px}
.tinv-wishlist .tinvwl-buttons-group+button{width:100%;margin-top:7px}
.tinv-wishlist .tinv-modal h2{text-align:center;margin:0 0 35px}
.tinv-wishlist .tinv-create-list .tinv-modal-inner{max-width:778px;padding:30px}
.tinv-wishlist .tinvwl-has-error:not(.tinvwl-input-group),.tinv-wishlist .tinvwl-input-group.tinvwl-has-error .form-control{border:2px solid red}
.tinv-wishlist .tinvwl-has-error:not(.tinvwl-input-group){border:2px solid red}
.tinv-wishlist .tinvwl-has-error+.tinvwl-error{padding:5px 0 0 5px;color:red}
.tinvwl-tooltip{display:none}
.tinvwl-input-group{position:relative;display:table;border-collapse:separate}
.tinvwl-input-group .form-control{position:relative;z-index:1;float:left;height:38px;width:100%;margin:0}
.tinvwl-input-group .form-control+.tinvwl-input-group-btn{padding-left:15px}
.tinv-wishlist .tinvwl-to-left .tinvwl-input-group .form-control+.tinvwl-input-group-btn{padding-left:10px}
.tinv-wishlist .tinv-search-form .tinvwl-input-group .form-control+.tinvwl-input-group-btn{padding-left:9px}
.tinvwl-input-group .form-control,.tinvwl-input-group-addon,.tinvwl-input-group-btn{display:table-cell}
.tinvwl-input-group-addon,.tinvwl-input-group-btn{width:1%;white-space:nowrap;vertical-align:top}
.tinv-table{display:table;width:100%;height:100%}
.tinv-cell{display:table-cell;vertical-align:middle}
.tinv-wishlist .tinv-wishlist-clear{visibility:visible;width:auto;height:auto}
.tinv-wishlist-clear:before{content:"";display:table}
.tinv-wishlist-clear:after{content:"";display:table;clear:both}
.icon_big_heart_check{display:inline-block;width:46px;height:46px;font-family:tinvwl-webfont !important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:60px}
.icon_big_times{display:inline-block;width:46px;height:46px;font-family:tinvwl-webfont !important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:60px}
.icon_big_times::before{content:"\e904";top:-7px;left:-7px;position:relative}
.icon_big_heart_check::before{content:"\e90a";top:-7px;left:-7px;position:relative}
.tinvwl_add_to_wishlist_button.tinvwl-button.disabled-add-wishlist,.tinvwl_add_to_wishlist_button.disabled-add-wishlist{opacity:.5 !important;cursor:not-allowed}
.empty-name-wishlist{border-color:#f00 !important}
.tinvwl_remove_from_wishlist-text,.tinvwl_already_on_wishlist-text,.tinvwl_add_to_wishlist_button.tinvwl-icon-custom img.icon-already-on-wishlist{display:none !important}
.tinvwl-product-in-list.tinvwl-product-make-remove .tinvwl_remove_from_wishlist-text,.tinvwl-product-in-list.tinvwl-product-make-remove .tinvwl_already_on_wishlist-text,.tinvwl-product-in-list.tinvwl-product-make-remove img.icon-already-on-wishlist,.tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_remove_from_wishlist-text,.tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_already_on_wishlist-text,.tinvwl_add_to_wishlist_button.tinvwl-product-in-list img.icon-already-on-wishlist{display:inline !important}
.tinvwl-product-in-list.tinvwl-product-make-remove .tinvwl_add_to_wishlist-text,.tinvwl-product-in-list.tinvwl-product-make-remove img.icon-add-on-wishlist,.tinvwl_add_to_wishlist_button.tinvwl-product-in-list .tinvwl_add_to_wishlist-text,.tinvwl_add_to_wishlist_button.tinvwl-product-in-list img.icon-add-on-wishlist{display:none !important}
.tooltipped{position:relative}
.tooltipped::after{position:absolute;z-index:1000000;display:none;padding:.5em .75em;font:normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";-webkit-font-smoothing:subpixel-antialiased;color:#fff;text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;pointer-events:none;content:attr(aria-label);background:#1b1f23;border-radius:3px;opacity:0}
.tooltipped::before{position:absolute;z-index:1000001;display:none;width:0;height:0;color:#1b1f23;pointer-events:none;content:"";border:6px solid transparent;opacity:0}
.tooltipped:hover::before,.tooltipped:hover::after,.tooltipped:active::before,.tooltipped:active::after,.tooltipped:focus::before,.tooltipped:focus::after{display:inline-block;text-decoration:none;-webkit-animation-name:tooltip-appear;animation-name:tooltip-appear;-webkit-animation-duration:.1s;animation-duration:.1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-animation-delay:.4s;animation-delay:.4s}
.tooltipped-no-delay:hover::before,.tooltipped-no-delay:hover::after,.tooltipped-no-delay:active::before,.tooltipped-no-delay:active::after,.tooltipped-no-delay:focus::before,.tooltipped-no-delay:focus::after{-webkit-animation-delay:0s;animation-delay:0s}
.tooltipped-multiline:hover::after,.tooltipped-multiline:active::after,.tooltipped-multiline:focus::after{display:table-cell}
.tooltipped-s::after,.tooltipped-se::after,.tooltipped-sw::after{top:100%;right:50%;margin-top:6px}
.tooltipped-s::before,.tooltipped-se::before,.tooltipped-sw::before{top:auto;right:50%;bottom:-7px;margin-right:-6px;border-bottom-color:#1b1f23}
.tooltipped-se::after{right:auto;left:50%;margin-left:-16px}
.tooltipped-sw::after{margin-right:-16px}
.tooltipped-n::after,.tooltipped-ne::after,.tooltipped-nw::after{right:50%;bottom:100%;margin-bottom:6px}
.tooltipped-n::before,.tooltipped-ne::before,.tooltipped-nw::before{top:-7px;right:50%;bottom:auto;margin-right:-6px;border-top-color:#1b1f23}
.tooltipped-ne::after{right:auto;left:50%;margin-left:-16px}
.tooltipped-nw::after{margin-right:-16px}
.tooltipped-s::after,.tooltipped-n::after{-webkit-transform:translateX(50%);transform:translateX(50%)}
.tooltipped-w::after{right:100%;bottom:50%;margin-right:6px;-webkit-transform:translateY(50%);transform:translateY(50%)}
.tooltipped-w::before{top:50%;bottom:50%;left:-7px;margin-top:-6px;border-left-color:#1b1f23}
.tooltipped-e::after{bottom:50%;left:100%;margin-left:6px;-webkit-transform:translateY(50%);transform:translateY(50%)}
.tooltipped-e::before{top:50%;right:-7px;bottom:50%;margin-top:-6px;border-right-color:#1b1f23}
.tooltipped-align-right-1::after,.tooltipped-align-right-2::after{right:0;margin-right:0}
.tooltipped-align-right-1::before{right:10px}
.tooltipped-align-right-2::before{right:15px}
.tooltipped-align-left-1::after,.tooltipped-align-left-2::after{left:0;margin-left:0}
.tooltipped-align-left-1::before{left:5px}
.tooltipped-align-left-2::before{left:10px}
.tooltipped-multiline::after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-wrap:break-word;white-space:pre-line;border-collapse:separate}
.tooltipped-multiline.tooltipped-s::after,.tooltipped-multiline.tooltipped-n::after{right:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}
.tooltipped-multiline.tooltipped-w::after,.tooltipped-multiline.tooltipped-e::after{right:100%}
.tooltipped-sticky::before,.tooltipped-sticky::after{display:inline-block}
.tooltipped-sticky.tooltipped-multiline::after{display:table-cell}
.tinvwl-table-manage-list .component_table_item_price:before{font-family:FontAwesomeCP;font-size:1rem;display:inline-block;-webkit-transform:rotate(90deg);transform:rotate(90deg);content:"\e811";opacity:.25;margin:0 12px 0 2px}
.wishlist-icon{position:relative}
.wishlist-popup{opacity:0;max-height:0;position:absolute;overflow:hidden;padding:5px;margin-top:-10px;border-radius:5px;line-height:1.3;text-align:center;font-size:.9em;top:100%;background-color:rgba(0,0,0,0.8);right:0;color:#FFF;-webkit-transition:opacity .3s,max-height .3s;transition:opacity .3s,max-height .3s;-webkit-transition-delay:.3s;transition-delay:.3s}
.wishlist-popup:after{bottom:100%;right:10px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(136,183,213,0);border-bottom-color:rgba(0,0,0,0.8);border-width:10px;margin-left:-10px}
.wishlist-icon:hover .wishlist-popup{opacity:1;max-height:200px;overflow-y:auto}
.wishlist-popup a{color:#ccc;display:block}
.wishlist-popup a:hover{color:#FFF}
.wishlist-icon.added:after{background-color:red;-webkit-transform:translateY(-3px);transform:translateY(-3px)}
.wishlist-popup .ajax-loading,.wishlist-popup .feedback{display:none !important}
.wishlist-title{margin-bottom:20px}
span.tinvwl-product-stats{background-color:#ebe9eb;border-radius:50%;padding:.2em;line-height:1;font-size:.7em;min-width:1.5em;display:inline-block;position:absolute;top:-0.7em;right:-1.5em;text-align:center}
@media screen and (min-width:0 \0){.tooltipped-multiline::after{width:250px}
}@media only screen and (max-width:1024px) and (min-width:769px){.tinv-wishlist .tinvwl-table-manage-list td.product-stock p{display:block;text-align:center}
.tinv-wishlist .product-stock span{display:block}
.tinv-wishlist .tinvwl-table-manage-list td.product-stock i{margin-right:0}
.tinv-wishlist .tinvwl-table-manage-list td.product-stock .tinvwl-txt{display:none}
.tinv-wishlist .product-thumbnail{max-width:76px;width:76px}
.tinv-wishlist .product-action .button>i{display:inline-block;margin-right:0}
.tinv-wishlist .product-action .button .tinvwl-txt{display:none}
}@media only screen and (max-width:1024px) and (min-width:768px){.tinv-wishlist .wishlist-action button[value=manage_remove] span{display:none}
.tinv-wishlist .wishlist-action button[value=manage_remove]>i{display:inline-block}
.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{margin-top:0}
}@media only screen and (max-width:1024px){.tinv-wishlist .tinvwl-table-manage-lists:not(.tinvwl-public){margin-top:0}
.tinv-wishlist .tinvwl-table-manage-list .product-remove{display:none}
.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove]{display:inline-block;margin-top:5px}
.tinv-wishlist .product-action{width:60px}
.tinv-wishlist .wishlist-name .tinvwl-rename-button>i,.tinv-wishlist tfoot .tinvwl-to-left:not(:empty){margin-right:0}
.tinv-wishlist .wishlist-name .tinvwl-rename-button span{display:none}
.tinv-wishlist .wishlist-action{width:60px}
.tinv-wishlist tfoot .tinvwl-to-left:not(:empty){float:none;width:auto}
.tinv-wishlist tfoot .tinvwl-to-right{float:none;width:auto;text-align:left}
.tinv-wishlist .social-buttons+.tinv-wishlist-clear+.navigation-button{margin-top:30px}
.tinv-wishlist .social-buttons{float:none;width:auto;text-align:left;margin-top:20px}
.tinv-wishlist .tinv-login form input[name=login]{min-width:auto}
.tinv-wishlist .tinvwl-table-manage-list .product-remove{display:table-cell}
}@media only screen and (max-width:1023px){.tinv-wishlist .tinv-lists-nav a.tinv-prev>i,.tinv-wishlist .tinv-lists-nav a.tinv-next>i{margin:0}
.tinv-wishlist .tinv-lists-nav a.tinv-prev>span,.tinv-wishlist .tinv-lists-nav a.tinv-next>span{display:none}
}@media only screen and (max-width:768px){.tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,.tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name){display:none}
.tinv-wishlist table.tinvwl-table-manage-lists thead th:not(.wishlist-name){display:none}
.tinv-wishlist thead th .tinvwl-full{display:none}
.tinv-wishlist table.tinvwl-table-manage-list thead th.product-name,.tinv-wishlist table.tinvwl-table-manage-lists thead th.wishlist-name{display:block;width:100%;text-align:center}
.tinv-wishlist table thead th .tinvwl-mobile{display:block}
.tinv-wishlist table.tinvwl-table-manage-list tbody td{display:block;width:100% !important;text-align:center}
.tinv-wishlist table.tinvwl-table-manage-lists tbody td,.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td{display:block;width:100% !important;text-align:center}
.tinv-wishlist table.tinvwl-table-manage-list tbody td:not(:last-child){border-bottom:0}
.tinv-wishlist table.tinvwl-table-manage-lists tbody td:not(:last-child),.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td:not(:last-child){border-bottom:0}
.tinv-wishlist .product-stock p{margin:0 auto}
.tinv-wishlist .product-thumbnail img{margin:0 auto;max-width:80px}
.tinv-wishlist.woocommerce table .quantity .qty{text-align:center;width:100%}
.tinv-wishlist .product-action .tinvwl_move_product_button{margin-top:10px}
.tinv-wishlist table.tinvwl-table-manage-list tfoot td{display:block;width:100%}
.tinv-wishlist table.tinvwl-table-manage-lists .wishlist-action button[value=manage_remove]{width:100%}
.tinv-wishlist table.tinvwl-table-manage-lists .wishlist-name .tinvwl-rename-button{float:none}
.tinv-wishlist button[value=manage_apply] .tinvwl-mobile,.tinv-wishlist button[value=product_apply] .tinvwl-mobile{display:none}
.tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list{display:block}
.tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right .button,.tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right button{width:100%;margin:10px 0 0}
.tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right .button,.tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right button{width:100%;margin:10px 0 0}
.tinv-wishlist tfoot .tinvwl-to-right>*{margin:10px 0 0}
.tinv-wishlist tfoot .tinvwl-to-right .button:first-child,.tinv-wishlist tfoot .tinvwl-to-right button:first-child{margin-top:0 !important}
.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{margin-top:20px}
.tinv-wishlist .social-buttons{text-align:center}
.tinv-wishlist .social-buttons>span{display:block;margin-top:0;margin-right:0;margin-bottom:5px}
.tinv-wishlist.woocommerce .tinv-login form .form-row-first,.tinv-wishlist.woocommerce .tinv-login form .form-row-last{float:none;width:100%}
.tinv-wishlist.woocommerce .tinv-login form .form-row-first{padding:0}
.tinv-wishlist.woocommerce .tinv-login form .form-row-last{padding:0;margin-top:10px}
.tinv-wishlist.woocommerce .tinv-login form .tinvwl-input-group-btn{display:block;padding:0;width:auto;margin-top:10px}
.navigation-button,.social-buttons,.tinv-lists-nav{margin-left:12px;margin-right:12px}
.tinvwl-input-group{width:100%}
.tinvwl-input-group:not(.tinvwl-no-full){display:block}
.tinvwl-input-group:not(.tinvwl-no-full) .form-control,.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-addon,.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-btn{display:block}
.tinvwl-input-group:not(.tinvwl-no-full) .form-control{float:none}
.tinv-wishlist .tinv-search-form .tinvwl-input-group:not(.tinvwl-no-full) .form-control+.tinvwl-input-group-btn{padding-top:10px;padding-left:0}
.tinvwl-input-group:not(.tinvwl-no-full) .form-control+.tinvwl-input-group-btn{padding-top:10px;padding-left:0}
.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-addon{width:100%}
.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-addon>button,.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-addon>input{width:100%}
.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-btn{width:100%}
.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-btn>button,.tinvwl-input-group:not(.tinvwl-no-full) .tinvwl-input-group-btn>input{width:100%}
.tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove{display:block}
}@media screen and (max-width:768px){.admin-bar .tinv-wishlist .tinv-modal{padding-top:46px !important}
}@media screen and (max-width:600px){.admin-bar .tinv-wishlist .tinv-modal{padding-top:0 !important}
.tinv-wishlist .tinv-modal .tinv-close-modal{position:static;display:block;margin:0 auto 20px}
}@-webkit-keyframes tooltip-appear{from{opacity:0}
to{opacity:1}
}@keyframes tooltip-appear{from{opacity:0}
to{opacity:1}
}
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*,:after,:before{background:transparent!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.glyphicon{display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;position:relative;top:1px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-eur:before,.glyphicon-euro:before{content:"€"}.glyphicon-minus:before{content:"−"}.glyphicon-cloud:before{content:"☁"}.glyphicon-envelope:before{content:"✉"}.glyphicon-pencil:before{content:"✏"}.glyphicon-glass:before{content:""}.glyphicon-music:before{content:""}.glyphicon-search:before{content:""}.glyphicon-heart:before{content:""}.glyphicon-star:before{content:""}.glyphicon-star-empty:before{content:""}.glyphicon-user:before{content:""}.glyphicon-film:before{content:""}.glyphicon-th-large:before{content:""}.glyphicon-th:before{content:""}.glyphicon-th-list:before{content:""}.glyphicon-ok:before{content:""}.glyphicon-remove:before{content:""}.glyphicon-zoom-in:before{content:""}.glyphicon-zoom-out:before{content:""}.glyphicon-off:before{content:""}.glyphicon-signal:before{content:""}.glyphicon-cog:before{content:""}.glyphicon-trash:before{content:""}.glyphicon-home:before{content:""}.glyphicon-file:before{content:""}.glyphicon-time:before{content:""}.glyphicon-road:before{content:""}.glyphicon-download-alt:before{content:""}.glyphicon-download:before{content:""}.glyphicon-upload:before{content:""}.glyphicon-inbox:before{content:""}.glyphicon-play-circle:before{content:""}.glyphicon-repeat:before{content:""}.glyphicon-refresh:before{content:""}.glyphicon-list-alt:before{content:""}.glyphicon-lock:before{content:""}.glyphicon-flag:before{content:""}.glyphicon-headphones:before{content:""}.glyphicon-volume-off:before{content:""}.glyphicon-volume-down:before{content:""}.glyphicon-volume-up:before{content:""}.glyphicon-qrcode:before{content:""}.glyphicon-barcode:before{content:""}.glyphicon-tag:before{content:""}.glyphicon-tags:before{content:""}.glyphicon-book:before{content:""}.glyphicon-bookmark:before{content:""}.glyphicon-print:before{content:""}.glyphicon-camera:before{content:""}.glyphicon-font:before{content:""}.glyphicon-bold:before{content:""}.glyphicon-italic:before{content:""}.glyphicon-text-height:before{content:""}.glyphicon-text-width:before{content:""}.glyphicon-align-left:before{content:""}.glyphicon-align-center:before{content:""}.glyphicon-align-right:before{content:""}.glyphicon-align-justify:before{content:""}.glyphicon-list:before{content:""}.glyphicon-indent-left:before{content:""}.glyphicon-indent-right:before{content:""}.glyphicon-facetime-video:before{content:""}.glyphicon-picture:before{content:""}.glyphicon-map-marker:before{content:""}.glyphicon-adjust:before{content:""}.glyphicon-tint:before{content:""}.glyphicon-edit:before{content:""}.glyphicon-share:before{content:""}.glyphicon-check:before{content:""}.glyphicon-move:before{content:""}.glyphicon-step-backward:before{content:""}.glyphicon-fast-backward:before{content:""}.glyphicon-backward:before{content:""}.glyphicon-play:before{content:""}.glyphicon-pause:before{content:""}.glyphicon-stop:before{content:""}.glyphicon-forward:before{content:""}.glyphicon-fast-forward:before{content:""}.glyphicon-step-forward:before{content:""}.glyphicon-eject:before{content:""}.glyphicon-chevron-left:before{content:""}.glyphicon-chevron-right:before{content:""}.glyphicon-plus-sign:before{content:""}.glyphicon-minus-sign:before{content:""}.glyphicon-remove-sign:before{content:""}.glyphicon-ok-sign:before{content:""}.glyphicon-question-sign:before{content:""}.glyphicon-info-sign:before{content:""}.glyphicon-screenshot:before{content:""}.glyphicon-remove-circle:before{content:""}.glyphicon-ok-circle:before{content:""}.glyphicon-ban-circle:before{content:""}.glyphicon-arrow-left:before{content:""}.glyphicon-arrow-right:before{content:""}.glyphicon-arrow-up:before{content:""}.glyphicon-arrow-down:before{content:""}.glyphicon-share-alt:before{content:""}.glyphicon-resize-full:before{content:""}.glyphicon-resize-small:before{content:""}.glyphicon-exclamation-sign:before{content:""}.glyphicon-gift:before{content:""}.glyphicon-leaf:before{content:""}.glyphicon-fire:before{content:""}.glyphicon-eye-open:before{content:""}.glyphicon-eye-close:before{content:""}.glyphicon-warning-sign:before{content:""}.glyphicon-plane:before{content:""}.glyphicon-calendar:before{content:""}.glyphicon-random:before{content:""}.glyphicon-comment:before{content:""}.glyphicon-magnet:before{content:""}.glyphicon-chevron-up:before{content:""}.glyphicon-chevron-down:before{content:""}.glyphicon-retweet:before{content:""}.glyphicon-shopping-cart:before{content:""}.glyphicon-folder-close:before{content:""}.glyphicon-folder-open:before{content:""}.glyphicon-resize-vertical:before{content:""}.glyphicon-resize-horizontal:before{content:""}.glyphicon-hdd:before{content:""}.glyphicon-bullhorn:before{content:""}.glyphicon-bell:before{content:""}.glyphicon-certificate:before{content:""}.glyphicon-thumbs-up:before{content:""}.glyphicon-thumbs-down:before{content:""}.glyphicon-hand-right:before{content:""}.glyphicon-hand-left:before{content:""}.glyphicon-hand-up:before{content:""}.glyphicon-hand-down:before{content:""}.glyphicon-circle-arrow-right:before{content:""}.glyphicon-circle-arrow-left:before{content:""}.glyphicon-circle-arrow-up:before{content:""}.glyphicon-circle-arrow-down:before{content:""}.glyphicon-globe:before{content:""}.glyphicon-wrench:before{content:""}.glyphicon-tasks:before{content:""}.glyphicon-filter:before{content:""}.glyphicon-briefcase:before{content:""}.glyphicon-fullscreen:before{content:""}.glyphicon-dashboard:before{content:""}.glyphicon-paperclip:before{content:""}.glyphicon-heart-empty:before{content:""}.glyphicon-link:before{content:""}.glyphicon-phone:before{content:""}.glyphicon-pushpin:before{content:""}.glyphicon-usd:before{content:""}.glyphicon-gbp:before{content:""}.glyphicon-sort:before{content:""}.glyphicon-sort-by-alphabet:before{content:""}.glyphicon-sort-by-alphabet-alt:before{content:""}.glyphicon-sort-by-order:before{content:""}.glyphicon-sort-by-order-alt:before{content:""}.glyphicon-sort-by-attributes:before{content:""}.glyphicon-sort-by-attributes-alt:before{content:""}.glyphicon-unchecked:before{content:""}.glyphicon-expand:before{content:""}.glyphicon-collapse-down:before{content:""}.glyphicon-collapse-up:before{content:""}.glyphicon-log-in:before{content:""}.glyphicon-flash:before{content:""}.glyphicon-log-out:before{content:""}.glyphicon-new-window:before{content:""}.glyphicon-record:before{content:""}.glyphicon-save:before{content:""}.glyphicon-open:before{content:""}.glyphicon-saved:before{content:""}.glyphicon-import:before{content:""}.glyphicon-export:before{content:""}.glyphicon-send:before{content:""}.glyphicon-floppy-disk:before{content:""}.glyphicon-floppy-saved:before{content:""}.glyphicon-floppy-remove:before{content:""}.glyphicon-floppy-save:before{content:""}.glyphicon-floppy-open:before{content:""}.glyphicon-credit-card:before{content:""}.glyphicon-transfer:before{content:""}.glyphicon-cutlery:before{content:""}.glyphicon-header:before{content:""}.glyphicon-compressed:before{content:""}.glyphicon-earphone:before{content:""}.glyphicon-phone-alt:before{content:""}.glyphicon-tower:before{content:""}.glyphicon-stats:before{content:""}.glyphicon-sd-video:before{content:""}.glyphicon-hd-video:before{content:""}.glyphicon-subtitles:before{content:""}.glyphicon-sound-stereo:before{content:""}.glyphicon-sound-dolby:before{content:""}.glyphicon-sound-5-1:before{content:""}.glyphicon-sound-6-1:before{content:""}.glyphicon-sound-7-1:before{content:""}.glyphicon-copyright-mark:before{content:""}.glyphicon-registration-mark:before{content:""}.glyphicon-cloud-download:before{content:""}.glyphicon-cloud-upload:before{content:""}.glyphicon-tree-conifer:before{content:""}.glyphicon-tree-deciduous:before{content:""}.glyphicon-cd:before{content:""}.glyphicon-save-file:before{content:""}.glyphicon-open-file:before{content:""}.glyphicon-level-up:before{content:""}.glyphicon-copy:before{content:""}.glyphicon-paste:before{content:""}.glyphicon-alert:before{content:""}.glyphicon-equalizer:before{content:""}.glyphicon-king:before{content:""}.glyphicon-queen:before{content:""}.glyphicon-pawn:before{content:""}.glyphicon-bishop:before{content:""}.glyphicon-knight:before{content:""}.glyphicon-baby-formula:before{content:""}.glyphicon-tent:before{content:"⛺"}.glyphicon-blackboard:before{content:""}.glyphicon-bed:before{content:""}.glyphicon-apple:before{content:""}.glyphicon-erase:before{content:""}.glyphicon-hourglass:before{content:"⌛"}.glyphicon-lamp:before{content:""}.glyphicon-duplicate:before{content:""}.glyphicon-piggy-bank:before{content:""}.glyphicon-scissors:before{content:""}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:""}.glyphicon-jpy:before,.glyphicon-yen:before{content:"¥"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"₽"}.glyphicon-scale:before{content:""}.glyphicon-ice-lolly:before{content:""}.glyphicon-ice-lolly-tasted:before{content:""}.glyphicon-education:before{content:""}.glyphicon-option-horizontal:before{content:""}.glyphicon-option-vertical:before{content:""}.glyphicon-menu-hamburger:before{content:""}.glyphicon-modal-window:before{content:""}.glyphicon-oil:before{content:""}.glyphicon-grain:before{content:""}.glyphicon-sunglasses:before{content:""}.glyphicon-text-size:before{content:""}.glyphicon-text-color:before{content:""}.glyphicon-text-background:before{content:""}.glyphicon-object-align-top:before{content:""}.glyphicon-object-align-bottom:before{content:""}.glyphicon-object-align-horizontal:before{content:""}.glyphicon-object-align-left:before{content:""}.glyphicon-object-align-vertical:before{content:""}.glyphicon-object-align-right:before{content:""}.glyphicon-triangle-right:before{content:""}.glyphicon-triangle-left:before{content:""}.glyphicon-triangle-bottom:before{content:""}.glyphicon-triangle-top:before{content:""}.glyphicon-console:before{content:""}.glyphicon-superscript:before{content:""}.glyphicon-subscript:before{content:""}.glyphicon-menu-left:before{content:""}.glyphicon-menu-right:before{content:""}.glyphicon-menu-down:before{content:""}.glyphicon-menu-up:before{content:""}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{background-color:#fff;color:#999;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{background-color:#fff;border:1px solid #ddd;border-radius:4px;display:inline-block;height:auto;line-height:1.5;max-width:100%;padding:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{border:0;border-top:1px solid #eee;margin-bottom:21px;margin-top:21px}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:inherit;font-family:inherit;font-weight:500;line-height:1.1}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{color:#777;font-weight:400;line-height:1}.h1,.h2,.h3,h1,h2,h3{margin-bottom:10.5px;margin-top:21px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-bottom:10.5px;margin-top:10.5px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10.5px}.lead{font-size:16px;font-weight:300;line-height:1.4;margin-bottom:21px}@media(min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{background-color:#337ab7;color:#fff}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{border-bottom:1px solid #eee;margin:42px 0 21px;padding-bottom:9.5px}ol,ul{margin-bottom:10.5px;margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{list-style:none;padding-left:0}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-bottom:21px;margin-top:0}dd,dt{line-height:1.5}dt{font-weight:700}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media(min-width:992px){.dl-horizontal dt{clear:left;float:left;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:160px}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help}.initialism{font-size:90%}blockquote{border-left:5px solid #eee;font-size:17.5px;margin:0 0 21px;padding:10.5px 21px}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{color:#777;display:block;font-size:80%;line-height:1.5}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"— "}.blockquote-reverse,blockquote.pull-right{border-left:0;border-right:5px solid #eee;padding-left:0;padding-right:15px;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:" —"}address{font-style:normal;line-height:1.5;margin-bottom:21px}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{background-color:#f9f2f4;border-radius:4px;color:#c7254e}code,kbd{font-size:90%;padding:2px 4px}kbd{background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);color:#fff}kbd kbd{box-shadow:none;font-size:100%;font-weight:700;padding:0}pre{color:#333;display:block;font-size:13px;line-height:1.5;margin:0 0 10.5px;padding:10px;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container:after,.container:before{content:" ";display:table}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.container-fluid:after,.container-fluid:before{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:after,.row:before{content:" ";display:table}.row:after{clear:both}.row-no-gutters{margin-left:0;margin-right:0}.row-no-gutters [class*=col-]{padding-left:0;padding-right:0}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-1{width:8.3333333333%}.col-xs-2{width:16.6666666667%}.col-xs-3{width:25%}.col-xs-4{width:33.3333333333%}.col-xs-5{width:41.6666666667%}.col-xs-6{width:50%}.col-xs-7{width:58.3333333333%}.col-xs-8{width:66.6666666667%}.col-xs-9{width:75%}.col-xs-10{width:83.3333333333%}.col-xs-11{width:91.6666666667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.3333333333%}.col-xs-pull-2{right:16.6666666667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.3333333333%}.col-xs-pull-5{right:41.6666666667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.3333333333%}.col-xs-pull-8{right:66.6666666667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.3333333333%}.col-xs-pull-11{right:91.6666666667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.3333333333%}.col-xs-push-2{left:16.6666666667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.3333333333%}.col-xs-push-5{left:41.6666666667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.3333333333%}.col-xs-push-8{left:66.6666666667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.3333333333%}.col-xs-push-11{left:91.6666666667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.3333333333%}.col-xs-offset-2{margin-left:16.6666666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.3333333333%}.col-xs-offset-5{margin-left:41.6666666667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.3333333333%}.col-xs-offset-8{margin-left:66.6666666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.3333333333%}.col-xs-offset-11{margin-left:91.6666666667%}.col-xs-offset-12{margin-left:100%}@media(min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-1{width:8.3333333333%}.col-sm-2{width:16.6666666667%}.col-sm-3{width:25%}.col-sm-4{width:33.3333333333%}.col-sm-5{width:41.6666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.3333333333%}.col-sm-8{width:66.6666666667%}.col-sm-9{width:75%}.col-sm-10{width:83.3333333333%}.col-sm-11{width:91.6666666667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.3333333333%}.col-sm-pull-2{right:16.6666666667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.3333333333%}.col-sm-pull-5{right:41.6666666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.3333333333%}.col-sm-pull-8{right:66.6666666667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.3333333333%}.col-sm-pull-11{right:91.6666666667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.3333333333%}.col-sm-push-2{left:16.6666666667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.3333333333%}.col-sm-push-5{left:41.6666666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.3333333333%}.col-sm-push-8{left:66.6666666667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.3333333333%}.col-sm-push-11{left:91.6666666667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.3333333333%}.col-sm-offset-2{margin-left:16.6666666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.3333333333%}.col-sm-offset-5{margin-left:41.6666666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.3333333333%}.col-sm-offset-8{margin-left:66.6666666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.3333333333%}.col-sm-offset-11{margin-left:91.6666666667%}.col-sm-offset-12{margin-left:100%}}@media(min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.3333333333%}.col-md-2{width:16.6666666667%}.col-md-3{width:25%}.col-md-4{width:33.3333333333%}.col-md-5{width:41.6666666667%}.col-md-6{width:50%}.col-md-7{width:58.3333333333%}.col-md-8{width:66.6666666667%}.col-md-9{width:75%}.col-md-10{width:83.3333333333%}.col-md-11{width:91.6666666667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.3333333333%}.col-md-pull-2{right:16.6666666667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.3333333333%}.col-md-pull-5{right:41.6666666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.3333333333%}.col-md-pull-8{right:66.6666666667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.3333333333%}.col-md-pull-11{right:91.6666666667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.3333333333%}.col-md-push-2{left:16.6666666667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.3333333333%}.col-md-push-5{left:41.6666666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.3333333333%}.col-md-push-8{left:66.6666666667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.3333333333%}.col-md-push-11{left:91.6666666667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.3333333333%}.col-md-offset-2{margin-left:16.6666666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.3333333333%}.col-md-offset-5{margin-left:41.6666666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.3333333333%}.col-md-offset-8{margin-left:66.6666666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.3333333333%}.col-md-offset-11{margin-left:91.6666666667%}.col-md-offset-12{margin-left:100%}}@media(min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-1{width:8.3333333333%}.col-lg-2{width:16.6666666667%}.col-lg-3{width:25%}.col-lg-4{width:33.3333333333%}.col-lg-5{width:41.6666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.3333333333%}.col-lg-8{width:66.6666666667%}.col-lg-9{width:75%}.col-lg-10{width:83.3333333333%}.col-lg-11{width:91.6666666667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.3333333333%}.col-lg-pull-2{right:16.6666666667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.3333333333%}.col-lg-pull-5{right:41.6666666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.3333333333%}.col-lg-pull-8{right:66.6666666667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.3333333333%}.col-lg-pull-11{right:91.6666666667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.3333333333%}.col-lg-push-2{left:16.6666666667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.3333333333%}.col-lg-push-5{left:41.6666666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.3333333333%}.col-lg-push-8{left:66.6666666667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.3333333333%}.col-lg-push-11{left:91.6666666667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.3333333333%}.col-lg-offset-2{margin-left:16.6666666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.3333333333%}.col-lg-offset-5{margin-left:41.6666666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.3333333333%}.col-lg-offset-8{margin-left:66.6666666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.3333333333%}.col-lg-offset-11{margin-left:91.6666666667%}.col-lg-offset-12{margin-left:100%}}table{background-color:transparent}table col[class*=col-]{display:table-column;float:none;position:static}table td[class*=col-],table th[class*=col-]{display:table-cell;float:none;position:static}caption{color:#777;padding-bottom:8px;padding-top:8px}caption,th{text-align:left}.table{margin-bottom:21px;max-width:100%;width:100%}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{border-top:1px solid #ddd;line-height:1.5;padding:8px;vertical-align:top}.table>thead>tr>th{border-bottom:2px solid #ddd;vertical-align:bottom}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{margin-bottom:15.75px;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}fieldset,legend{border:0;padding:0}legend{border-bottom:1px solid #e5e5e5;color:#333;display:block;font-size:21px;line-height:inherit;margin-bottom:21px;width:100%}label{display:inline-block;font-weight:700;margin-bottom:5px;max-width:100%}input[type=search]{-webkit-appearance:none;appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{line-height:normal;margin:4px 0 0;margin-top:1px\9}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{color:#555;display:block;font-size:14px;line-height:1.5}.form-control{background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);height:35px;padding:6px 12px;-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}.form-control:focus{border-color:#66afe9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);outline:0}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:35px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm>.input-group-btn>input[type=time].btn,input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg>.input-group-btn>input[type=time].btn,input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{display:block;margin-bottom:10px;margin-top:10px;position:relative}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.checkbox label,.radio label{cursor:pointer;font-weight:400;margin-bottom:0;min-height:21px;padding-left:20px}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{margin-left:-20px;margin-top:4px\9;position:absolute}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{cursor:pointer;display:inline-block;font-weight:400;margin-bottom:0;padding-left:20px;position:relative;vertical-align:middle}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-left:10px;margin-top:0}.form-control-static{margin-bottom:0;min-height:35px;padding-bottom:7px;padding-top:7px}.form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 10px}.input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm{height:30px;line-height:30px}.input-group-sm>.input-group-btn>select[multiple].btn,.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{border-radius:3px;font-size:12px;height:30px;line-height:1.5;padding:5px 10px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{font-size:12px;height:30px;line-height:1.5;min-height:33px;padding:6px 10px}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 16px}.input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg{height:46px;line-height:46px}.input-group-lg>.input-group-btn>select[multiple].btn,.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{border-radius:6px;font-size:18px;height:46px;line-height:1.3333333;padding:10px 16px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{font-size:18px;height:46px;line-height:1.3333333;min-height:39px;padding:11px 16px}.has-feedback{position:relative}.has-feedback .form-control{padding-right:43.75px}.form-control-feedback{display:block;height:35px;line-height:35px;pointer-events:none;position:absolute;right:0;text-align:center;top:0;width:35px;z-index:2}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback{height:46px;line-height:46px;width:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback{height:30px;line-height:30px;width:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{background-color:#dff0d8;border-color:#3c763d;color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{background-color:#fcf8e3;border-color:#8a6d3b;color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{background-color:#f2dede;border-color:#a94442;color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:26px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{color:#d9d9d9;display:block;margin-bottom:10px;margin-top:5px}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;vertical-align:middle;width:auto}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-bottom:0;margin-top:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{margin-left:0;position:relative}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-bottom:0;margin-top:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:28px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:" ";display:table}.form-horizontal .form-group:after{clear:both}@media(min-width:768px){.form-horizontal .control-label{margin-bottom:0;padding-top:7px;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width:768px){.form-horizontal .form-group-lg .control-label{font-size:18px;padding-top:11px}.form-horizontal .form-group-sm .control-label{font-size:12px;padding-top:6px}}.btn{background-image:none;border:1px solid transparent;border-radius:4px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;line-height:1.5;margin-bottom:0;padding:6px 12px;text-align:center;touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125);outline:0}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{-webkit-box-shadow:none;box-shadow:none;cursor:not-allowed;filter:alpha(opacity=65);opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{background-color:#fff;border-color:#ccc;color:#333}.btn-default.focus,.btn-default:focus{background-color:#e6e6e6;border-color:#8c8c8c;color:#333}.btn-default:hover{background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.btn-default.dropdown-toggle{background-color:#e6e6e6;background-image:none;border-color:#adadad;color:#333}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{background-color:#d4d4d4;border-color:#8c8c8c;color:#333}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{background-color:#333;color:#fff}.btn-primary{background-color:#337ab7;border-color:#2e6da4;color:#fff}.btn-primary.focus,.btn-primary:focus{background-color:#286090;border-color:#122b40;color:#fff}.btn-primary:hover{background-color:#286090;border-color:#204d74;color:#fff}.btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle{background-color:#286090;background-image:none;border-color:#204d74;color:#fff}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{background-color:#204d74;border-color:#122b40;color:#fff}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{background-color:#fff;color:#337ab7}.btn-success{background-color:#5cb85c;border-color:#4cae4c;color:#fff}.btn-success.focus,.btn-success:focus{background-color:#449d44;border-color:#255625;color:#fff}.btn-success:hover{background-color:#449d44;border-color:#398439;color:#fff}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{background-color:#449d44;background-image:none;border-color:#398439;color:#fff}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{background-color:#398439;border-color:#255625;color:#fff}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{background-color:#fff;color:#5cb85c}.btn-info{background-color:#5bc0de;border-color:#46b8da;color:#fff}.btn-info.focus,.btn-info:focus{background-color:#31b0d5;border-color:#1b6d85;color:#fff}.btn-info:hover{background-color:#31b0d5;border-color:#269abc;color:#fff}.btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle{background-color:#31b0d5;background-image:none;border-color:#269abc;color:#fff}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{background-color:#269abc;border-color:#1b6d85;color:#fff}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{background-color:#fff;color:#5bc0de}.btn-warning{background-color:#f0ad4e;border-color:#eea236;color:#fff}.btn-warning.focus,.btn-warning:focus{background-color:#ec971f;border-color:#985f0d;color:#fff}.btn-warning:hover{background-color:#ec971f;border-color:#d58512;color:#fff}.btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle{background-color:#ec971f;background-image:none;border-color:#d58512;color:#fff}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{background-color:#d58512;border-color:#985f0d;color:#fff}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{background-color:#fff;color:#f0ad4e}.btn-danger{background-color:#d9534f;border-color:#d43f3a;color:#fff}.btn-danger.focus,.btn-danger:focus{background-color:#c9302c;border-color:#761c19;color:#fff}.btn-danger:hover{background-color:#c9302c;border-color:#ac2925;color:#fff}.btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle{background-color:#c9302c;background-image:none;border-color:#ac2925;color:#fff}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{background-color:#ac2925;border-color:#761c19;color:#fff}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{background-color:#fff;color:#d9534f}.btn-link{border-radius:0;color:#337ab7;font-weight:400}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{background-color:transparent;color:#23527c;text-decoration:underline}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{border-radius:6px;font-size:18px;line-height:1.3333333;padding:10px 16px}.btn-group-sm>.btn,.btn-sm{border-radius:3px;font-size:12px;line-height:1.5;padding:5px 10px}.btn-group-xs>.btn,.btn-xs{border-radius:3px;font-size:12px;line-height:1.5;padding:1px 5px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;position:relative;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px dashed;border-top:4px solid\9;display:inline-block;height:0;margin-left:2px;vertical-align:middle;width:0}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{background-clip:padding-box;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);display:none;float:left;font-size:14px;left:0;list-style:none;margin:2px 0 0;min-width:160px;padding:5px 0;position:absolute;text-align:left;top:100%;z-index:1000}.dropdown-menu.pull-right{left:auto;right:0}.dropdown-menu .divider{background-color:#e5e5e5;height:1px;margin:9.5px 0;overflow:hidden}.dropdown-menu>li>a{clear:both;color:#333;display:block;font-weight:400;line-height:1.5;padding:3px 20px;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#f5f5f5;color:#262626;text-decoration:none}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#337ab7;color:#fff;outline:0;text-decoration:none}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{background-color:transparent;background-image:none;cursor:not-allowed;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);text-decoration:none}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{color:#777;display:block;font-size:12px;line-height:1.5;padding:3px 20px;white-space:nowrap}.dropdown-backdrop{bottom:0;left:0;position:fixed;right:0;top:0;z-index:990}.pull-right>.dropdown-menu{left:auto;right:0}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-bottom:4px dashed;border-bottom:4px solid\9;border-top:0;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{bottom:100%;margin-bottom:2px;top:auto}@media(min-width:992px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{display:inline-block;position:relative;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{float:left;position:relative}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:after,.btn-toolbar:before{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group.btn-group-lg>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;max-width:100%;width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-left:0;margin-top:-1px}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-top-left-radius:0;border-top-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{border-collapse:separate;display:table;table-layout:fixed;width:100%}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{border-collapse:separate;display:table;position:relative}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{float:left;margin-bottom:0;position:relative;width:100%;z-index:2}.input-group .form-control:focus{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{vertical-align:middle;white-space:nowrap;width:1%}.input-group-addon{background-color:#eee;border:1px solid #ccc;border-radius:4px;color:#555;font-size:14px;font-weight:400;line-height:1;padding:6px 12px;text-align:center}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{border-radius:3px;font-size:12px;padding:5px 10px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{border-radius:6px;font-size:18px;padding:10px 16px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px;z-index:2}.nav{list-style:none;margin-bottom:0;padding-left:0}.nav:after,.nav:before{content:" ";display:table}.nav:after{clear:both}.nav>li,.nav>li>a{display:block;position:relative}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{background-color:#eee;text-decoration:none}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{background-color:transparent;color:#777;cursor:not-allowed;text-decoration:none}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{background-color:#e5e5e5;height:1px;margin:9.5px 0;overflow:hidden}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{border:1px solid transparent;border-radius:4px 4px 0 0;line-height:1.5;margin-right:2px}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{background-color:#fff;border:1px solid;border-color:#ddd #ddd transparent;color:#555;cursor:default}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{background-color:#337ab7;color:#fff}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-left:0;margin-top:2px}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{left:auto;top:auto}@media(min-width:768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-radius:4px;margin-right:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:-1px}.navbar{border:1px solid transparent;margin-bottom:21px;min-height:50px;position:relative}.navbar:after,.navbar:before{content:" ";display:table}.navbar:after{clear:both}@media(min-width:992px){.navbar{border-radius:4px}}.navbar-header:after,.navbar-header:before{content:" ";display:table}.navbar-header:after{clear:both}@media(min-width:992px){.navbar-header{float:left}}.navbar-collapse{border-top:1px solid transparent;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);overflow-x:visible;padding-left:15px;padding-right:15px}.navbar-collapse:after,.navbar-collapse:before{content:" ";display:table}.navbar-collapse:after{clear:both}.navbar-collapse{-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media(min-width:992px){.navbar-collapse{border-top:0;box-shadow:none;width:auto}.navbar-collapse.collapse{display:block!important;height:auto!important;overflow:visible!important;padding-bottom:0}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media(max-device-width:480px)and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.navbar-fixed-bottom,.navbar-fixed-top{left:0;position:fixed;right:0;z-index:1030}@media(min-width:992px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{border-width:0 0 1px;top:0}.navbar-fixed-bottom{border-width:1px 0 0;bottom:0;margin-bottom:0}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-left:-15px;margin-right:-15px}@media(min-width:992px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-left:0;margin-right:0}}.navbar-static-top{border-width:0 0 1px;z-index:1000}@media(min-width:992px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;font-size:18px;height:50px;line-height:21px;padding:14.5px 15px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media(min-width:992px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px;float:right;margin-bottom:8px;margin-right:15px;margin-top:8px;padding:9px 10px;position:relative}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{border-radius:1px;display:block;height:2px;width:22px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:992px){.navbar-toggle{display:none}}.navbar-nav{margin:7.25px -15px}.navbar-nav>li>a{line-height:21px;padding-bottom:10px;padding-top:10px}@media(max-width:991px){.navbar-nav .open .dropdown-menu{background-color:transparent;border:0;box-shadow:none;float:none;margin-top:0;position:static;width:auto}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:21px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media(min-width:992px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-bottom:14.5px;padding-top:14.5px}}.navbar-form{border-bottom:1px solid transparent;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);margin-left:-15px;margin-right:-15px;padding:10px 15px}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;vertical-align:middle;width:auto}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-bottom:0;margin-top:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{margin-left:0;position:relative}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width:991px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-form{margin-bottom:7.5px;margin-top:7.5px}@media(min-width:992px){.navbar-form{border:0;-webkit-box-shadow:none;box-shadow:none;margin-left:0;margin-right:0;padding-bottom:0;padding-top:0;width:auto}}.navbar-nav>li>.dropdown-menu{border-top-left-radius:0;border-top-right-radius:0;margin-top:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:4px;border-top-right-radius:4px;margin-bottom:0}.navbar-btn{margin-bottom:7.5px;margin-top:7.5px}.btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm{margin-bottom:10px;margin-top:10px}.btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs{margin-bottom:14px;margin-top:14px}.navbar-text{margin-bottom:14.5px;margin-top:14.5px}@media(min-width:992px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{background-color:transparent;color:#5e5e5e}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{background-color:transparent;color:#333}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{background-color:#e7e7e7;color:#555}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{background-color:transparent;color:#ccc}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media(max-width:991px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{background-color:transparent;color:#333}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#e7e7e7;color:#555}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{background-color:transparent;color:#ccc}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{background-color:transparent;color:#fff}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{background-color:transparent;color:#fff}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{background-color:#090909;color:#fff}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{background-color:transparent;color:#444}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#090909;color:#fff}@media(max-width:991px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{background-color:transparent;color:#fff}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#090909;color:#fff}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{background-color:transparent;color:#444}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{background-color:#f5f5f5;border-radius:4px;list-style:none;margin-bottom:21px;padding:8px 15px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{color:#ccc;content:"/ ";padding:0 5px}.breadcrumb>.active{color:#777}.pagination{border-radius:4px;display:inline-block;margin:21px 0;padding-left:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{background-color:#fff;border:1px solid #ddd;color:#337ab7;float:left;line-height:1.5;margin-left:-1px;padding:6px 12px;position:relative;text-decoration:none}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#eee;border-color:#ddd;color:#23527c;z-index:2}.pagination>li:first-child>a,.pagination>li:first-child>span{border-bottom-left-radius:4px;border-top-left-radius:4px;margin-left:0}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#337ab7;border-color:#337ab7;color:#fff;cursor:default;z-index:3}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#777;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{font-size:18px;line-height:1.3333333;padding:10px 16px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{font-size:12px;line-height:1.5;padding:5px 10px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{list-style:none;margin:21px 0;padding-left:0;text-align:center}.pager:after,.pager:before{content:" ";display:table}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{background-color:#fff;border:1px solid #ddd;border-radius:15px;display:inline-block;padding:5px 14px}.pager li>a:focus,.pager li>a:hover{background-color:#eee;text-decoration:none}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background-color:#fff;color:#777;cursor:not-allowed}.label{border-radius:.25em;color:#fff;display:inline;font-size:75%;font-weight:700;line-height:1;padding:.2em .6em .3em;text-align:center;vertical-align:baseline;white-space:nowrap}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:focus,a.label:hover{color:#fff;cursor:pointer;text-decoration:none}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{background-color:#777;border-radius:10px;color:#fff;display:inline-block;font-size:12px;font-weight:700;line-height:1;min-width:10px;padding:3px 7px;text-align:center;vertical-align:middle;white-space:nowrap}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{padding:1px 5px;top:0}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{background-color:#fff;color:#337ab7}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;cursor:pointer;text-decoration:none}.jumbotron{background-color:#eee;margin-bottom:30px;padding-bottom:30px;padding-top:30px}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{font-size:21px;font-weight:200;margin-bottom:15px}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-bottom:48px;padding-top:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{background-color:#fff;border:1px solid #ddd;border-radius:4px;display:block;line-height:1.5;margin-bottom:21px;padding:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{display:block;height:auto;margin-left:auto;margin-right:auto;max-width:100%}.thumbnail .caption{color:#999;padding:9px}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.alert{border:1px solid transparent;border-radius:4px;margin-bottom:21px;padding:15px}.alert h4{color:inherit;margin-top:0}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{color:inherit;position:relative;right:-21px;top:-2px}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);height:21px;margin-bottom:21px;overflow:hidden}.progress-bar{background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);color:#fff;float:left;font-size:12px;height:100%;line-height:21px;text-align:center;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;width:0}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-image:-o-linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 25%,transparent 50%,hsla(0,0%,100%,.15) 50%,hsla(0,0%,100%,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-bottom:5px;margin-top:0}.media-list{list-style:none;padding-left:0}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{background-color:#fff;border:1px solid #ddd;display:block;margin-bottom:-1px;padding:10px 15px;position:relative}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;margin-bottom:0}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{background-color:#337ab7;border-color:#337ab7;color:#fff;z-index:2}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{background-color:#f5f5f5;color:#555;text-decoration:none}button.list-group-item{text-align:left;width:100%}.list-group-item-success{background-color:#dff0d8;color:#3c763d}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{background-color:#d0e9c6;color:#3c763d}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{background-color:#3c763d;border-color:#3c763d;color:#fff}.list-group-item-info{background-color:#d9edf7;color:#31708f}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{background-color:#c4e3f3;color:#31708f}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{background-color:#31708f;border-color:#31708f;color:#fff}.list-group-item-warning{background-color:#fcf8e3;color:#8a6d3b}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{background-color:#faf2cc;color:#8a6d3b}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{background-color:#8a6d3b;border-color:#8a6d3b;color:#fff}.list-group-item-danger{background-color:#f2dede;color:#a94442}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{background-color:#ebcccc;color:#a94442}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{background-color:#a94442;border-color:#a94442;color:#fff}.list-group-item-heading{margin-bottom:5px;margin-top:0}.list-group-item-text{line-height:1.3;margin-bottom:0}.panel{background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05);margin-bottom:21px}.panel-body{padding:15px}.panel-body:after,.panel-body:before{content:" ";display:table}.panel-body:after{clear:both}.panel-heading{border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px;padding:10px 15px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{font-size:16px;margin-bottom:0;margin-top:0}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{background-color:#f5f5f5;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-top:1px solid #ddd;padding:10px 15px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-radius:0;border-width:1px 0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:21px}.panel-group .panel{border-radius:4px;margin-bottom:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{background-color:#f5f5f5;border-color:#ddd;color:#333}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{background-color:#333;color:#f5f5f5}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{background-color:#337ab7;border-color:#337ab7;color:#fff}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{background-color:#fff;color:#337ab7}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{background-color:#3c763d;color:#dff0d8}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{background-color:#31708f;color:#d9edf7}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{background-color:#8a6d3b;color:#fcf8e3}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{background-color:#a94442;color:#f2dede}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{display:block;height:0;overflow:hidden;padding:0;position:relative}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{border:0;bottom:0;height:100%;left:0;position:absolute;top:0;width:100%}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);margin-bottom:20px;min-height:20px;padding:19px}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{border-radius:6px;padding:24px}.well-sm{border-radius:3px;padding:9px}.close{color:#000;filter:alpha(opacity=20);float:right;font-size:21px;font-weight:700;line-height:1;opacity:.2;text-shadow:0 1px 0 #fff}.close:focus,.close:hover{color:#000;cursor:pointer;filter:alpha(opacity=50);opacity:.5;text-decoration:none}button.close{-webkit-appearance:none;appearance:none;background:transparent;border:0;cursor:pointer;padding:0}.modal,.modal-open{overflow:hidden}.modal{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);-ms-transform:translateY(-25%);-o-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{margin:10px;position:relative;width:auto}.modal-content{background-clip:padding-box;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0;position:relative}.modal-backdrop{background-color:#000;bottom:0;left:0;position:fixed;right:0;top:0;z-index:1040}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{border-bottom:1px solid #e5e5e5;padding:15px}.modal-header:after,.modal-header:before{content:" ";display:table}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{line-height:1.5;margin:0}.modal-body{padding:15px;position:relative}.modal-footer{border-top:1px solid #e5e5e5;padding:15px;text-align:right}.modal-footer:after,.modal-footer:before{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{height:50px;overflow:scroll;position:absolute;top:-9999px;width:50px}@media(min-width:768px){.modal-dialog{margin:30px auto;width:600px}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width:992px){.modal-lg{width:900px}}.tooltip{display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.5;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;word-break:normal;word-spacing:normal;z-index:1070;word-wrap:normal;filter:alpha(opacity=0);font-size:12px;opacity:0;white-space:normal}.tooltip.in{filter:alpha(opacity=100);opacity:1}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip.top .tooltip-arrow{border-top-color:#ddd;border-width:5px 5px 0;bottom:0;left:50%;margin-left:-5px}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{border-top-color:#ddd;border-width:5px 5px 0;bottom:0;margin-bottom:-5px}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{border-right-color:#ddd;border-width:5px 5px 5px 0;left:0;margin-top:-5px;top:50%}.tooltip.left .tooltip-arrow{border-left-color:#ddd;border-width:5px 0 5px 5px;margin-top:-5px;right:0;top:50%}.tooltip.bottom .tooltip-arrow{border-bottom-color:#ddd;border-width:0 5px 5px;left:50%;margin-left:-5px;top:0}.tooltip.bottom-left .tooltip-arrow{border-bottom-color:#ddd;border-width:0 5px 5px;margin-top:-5px;right:5px;top:0}.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#ddd;border-width:0 5px 5px;left:5px;margin-top:-5px;top:0}.tooltip-inner{background-color:#ddd;border-radius:4px;color:#454545;max-width:400px;padding:3px 8px;text-align:center}.tooltip-arrow{border-color:transparent;border-style:solid;height:0;position:absolute;width:0}.popover{display:none;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;left:0;letter-spacing:normal;line-break:auto;line-height:1.5;max-width:276px;padding:1px;position:absolute;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;top:0;word-break:normal;word-spacing:normal;z-index:1060;word-wrap:normal;background-clip:padding-box;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);font-size:14px;white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px;left:50%;margin-left:-11px}.popover.top>.arrow:after{border-bottom-width:0;border-top-color:#fff;bottom:1px;content:" ";margin-left:-10px}.popover.right>.arrow{border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25);left:-11px;margin-top:-11px;top:50%}.popover.right>.arrow:after{border-left-width:0;border-right-color:#fff;bottom:-10px;content:" ";left:1px}.popover.bottom>.arrow{border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);border-top-width:0;left:50%;margin-left:-11px;top:-11px}.popover.bottom>.arrow:after{border-bottom-color:#fff;border-top-width:0;content:" ";margin-left:-10px;top:1px}.popover.left>.arrow{border-left-color:#999;border-left-color:rgba(0,0,0,.25);border-right-width:0;margin-top:-11px;right:-11px;top:50%}.popover.left>.arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.popover-title{background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;font-size:14px;margin:0;padding:8px 14px}.popover-content{padding:9px 14px}.carousel,.carousel-inner{position:relative}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:left .6s ease-in-out;-o-transition:left .6s ease-in-out;transition:left .6s ease-in-out}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;height:auto;line-height:1;max-width:100%}@media (-webkit-transform-3d),(transform-3d){.carousel-inner>.item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px;-webkit-transition:-webkit-transform .6s ease-in-out;-moz-transition:-moz-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translateZ(0);transform:translateZ(0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{background-color:transparent;bottom:0;color:#fff;filter:alpha(opacity=50);font-size:20px;left:0;opacity:.5;position:absolute;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);top:0;width:15%}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),transparent);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,transparent 100%);background-image:linear-gradient(90deg,rgba(0,0,0,.5) 0,transparent);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1)}.carousel-control.right{background-image:-webkit-linear-gradient(left,transparent,rgba(0,0,0,.5));background-image:-o-linear-gradient(left,transparent 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(90deg,transparent 0,rgba(0,0,0,.5));background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1);left:auto;right:0}.carousel-control:focus,.carousel-control:hover{color:#fff;filter:alpha(opacity=90);opacity:.9;outline:0;text-decoration:none}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{display:inline-block;margin-top:-10px;position:absolute;top:50%;z-index:5}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px;right:50%}.carousel-control .icon-next,.carousel-control .icon-prev{font-family:serif;height:20px;line-height:1;width:20px}.carousel-control .icon-prev:before{content:"‹"}.carousel-control .icon-next:before{content:"›"}.carousel-indicators{bottom:10px;left:50%;list-style:none;margin-left:-30%;padding-left:0;position:absolute;text-align:center;width:60%;z-index:15}.carousel-indicators li{background-color:#000\9;background-color:transparent;border:1px solid #fff;border-radius:10px;cursor:pointer;display:inline-block;height:10px;margin:1px;text-indent:-999px;width:10px}.carousel-indicators .active{background-color:#fff;height:12px;margin:0;width:12px}.carousel-caption{bottom:20px;color:#fff;left:15%;padding-bottom:20px;padding-top:20px;position:absolute;right:15%;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);z-index:10}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{font-size:30px;height:30px;margin-top:-10px;width:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;padding-bottom:30px;right:20%}.carousel-indicators{bottom:20px}}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{background-color:transparent;border:0;color:transparent;font:0/0 a;text-shadow:none}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media(min-width:768px)and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media(min-width:992px)and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}}@media(max-width:767px){.hidden-xs{display:none!important}}@media(min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media(min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}.alternative-heading,.alternative-heading--404,.footer .footer__headings,.hentry__title,.jumbotron__category,.panel-grid .widget-title,.sidebar__headings,body.woocommerce-page .cart-collaterals .cart_totals h2,body.woocommerce-page .cart-collaterals .shipping_calculator h2,body.woocommerce-page .short-description,body.woocommerce-page .woocommerce-product-details__short-description,body.woocommerce-page [itemprop=description],body.woocommerce-page div.product .woocommerce-tabs h2{border-bottom:1px solid rgba(0,0,0,.08);margin-bottom:15px;margin-top:30px;padding-bottom:15px;position:relative}.alternative-heading--404:after,.alternative-heading:after,.footer .footer__headings:after,.hentry__title:after,.jumbotron__category:after,.panel-grid .widget-title:after,.sidebar__headings:after,body.woocommerce-page .cart-collaterals .cart_totals h2:after,body.woocommerce-page .cart-collaterals .shipping_calculator h2:after,body.woocommerce-page .short-description:after,body.woocommerce-page .woocommerce-product-details__short-description:after,body.woocommerce-page [itemprop=description]:after,body.woocommerce-page div.product .woocommerce-tabs h2:after{background-color:#f7c51e;bottom:-1px;content:"";height:3px;left:0;position:absolute;width:30px}body{font-family:Source Sans Pro,Helvetica,Arial,sans-serif}body.boxed>.boxed-container{box-shadow:0 0 20px rgba(0,0,0,.33);margin:0 auto;max-width:100%}@media(min-width:768px){body.boxed>.boxed-container{width:810px}}@media(min-width:992px){body.boxed>.boxed-container{width:1030px}}@media(min-width:1200px){body.boxed>.boxed-container{width:1230px}}body.header-transparent .boxed-container{position:relative}body.page-template-template-empty{min-height:100vh}body.page-template-template-empty .boxed-container{background-color:transparent;padding:1px}p{font-feature-settings:"kern";font-kerning:normal;text-rendering:optimizeLegibility}a{color:#1fa7da}a:hover{color:#1b92bf}img{border-radius:2px}h1,h2,h3,h4,h5,h6{color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:700;letter-spacing:-.5px}.alternative-heading--404{margin-bottom:30px;padding-bottom:30px}.alternative-heading--404:after{left:calc(50% - 15px)}blockquote{border-color:#f7c51e}.buildpress-table{font-family:Montserrat,Helvetica,Arial,sans-serif;max-width:100%;width:100%}.buildpress-table thead th{background-clip:padding-box;background-color:#f7c51e;border-bottom:1px solid transparent;border-radius:2px;border-right:2px solid transparent;border-top:1px solid transparent;color:#333;padding:15px 20px}.buildpress-table thead th:first-of-type{background-color:transparent}.buildpress-table thead th:last-of-type{border-right:none}.buildpress-table tbody td{background-clip:padding-box;background-color:#fff;border-bottom:1px solid transparent;border-radius:2px;border-right:2px solid transparent;border-top:1px solid transparent;box-shadow:inset 0 0 0 1px #eee;padding:15px 20px}.buildpress-table tbody td:first-of-type{background-color:#eee;box-shadow:none}.buildpress-table tbody td:last-of-type{border-right:none}.push-down-0{margin-bottom:0}.push-down-5{margin-bottom:5px}.push-down-10{margin-bottom:10px}.push-down-15{margin-bottom:15px}.push-down-20{margin-bottom:20px}.push-down-25{margin-bottom:25px}.push-down-30{margin-bottom:30px}.push-down-35{margin-bottom:35px}.push-down-40{margin-bottom:40px}.push-down-45{margin-bottom:45px}.push-down-50{margin-bottom:50px}.push-down-55{margin-bottom:55px}.push-down-60{margin-bottom:60px}.master-container{margin-bottom:30px;overflow:hidden}@media(min-width:992px){.master-container{margin-bottom:60px}}.align-right{text-align:right}.align-center{text-align:center}.primary-font{font-family:Source Sans Pro,Helvetica,Arial,sans-serif}.mainul>li .esg-cc .eg-buildpress-item-skin-element-1{color:#454545}.top{background:#333 linear-gradient(180deg,#333 0,#2b2b2b);border-bottom:1px solid #4e4e4e}.top__left{padding:7px 0 3px;text-align:center}@media(min-width:992px){.top__left{padding:7px 0;text-align:left}.top__right{float:right}.top__right .widget{margin-left:10px}.top__right .widget:last-of-type{margin-right:0}}.top__right .widget_text{vertical-align:top}.header{background-color:#454545;background-position:50%;margin-bottom:30px}@media(min-width:992px){.header{margin-bottom:60px}}.header+.main-title{margin-top:-30px}@media(min-width:992px){.header+.main-title{margin-top:-60px}}.page-template-template-front-page-slider .header,.page-template-template-front-page-slider-alt .header{margin-bottom:0}@media(min-width:992px){.page-template-template-front-page-slider .header,.page-template-template-front-page-slider-alt .header{margin-bottom:0}}.logo{float:left;max-width:50%}@media(min-width:480px){.logo{max-width:100%}}@media(min-width:992px){.logo{float:none;text-align:center}}@media(min-width:1200px){.logo{float:left}}.logo h1{color:#f2f2f2;font-size:22px;margin:20px 0}@media(min-width:480px){.logo h1{font-size:36px;margin:36px 0}}.logo a:hover{text-decoration:none}@media(min-width:992px){.logo .img-responsive{margin:0 auto}}.header-widgets{padding:10px 0;text-align:center}@media(min-width:992px){.header-widgets{float:left;padding:14px 0 28px;text-align:left}}@media(min-width:1200px){.header-widgets{float:right;padding:28px 0}}.header-widgets-desktop{display:none}@media(min-width:992px){.header-widgets-desktop{display:block}}.header-light .top__left{padding:10px 0}@media(min-width:992px){.header-light .navigation--top>li>a{padding:10px 0 10px 15px}}.header-light .navigation--top .menu-item-has-children>a{padding-right:12px}.header-light .widget-icon-box{border-bottom:1px solid rgba(0,0,0,.08)}@media(min-width:992px){.header-light .widget-icon-box{border-bottom:0}}.header-light .widget-icon-box:first-of-type{border-top:1px solid rgba(0,0,0,.08)}@media(min-width:992px){.header-light .widget-icon-box:first-of-type{border-top:0}.header-light .icon-box{border-right:1px solid rgba(0,0,0,.08);margin-left:20px;padding-right:20px}}.header-light .icon-box .fa{color:#ddd}.header-light .icon-box__subtitle{color:#999}.header-light .navbar-collapse{box-shadow:inset 0 1px 0 rgba(0,0,0,.08)}@media(min-width:992px){.header-light .navbar-collapse{box-shadow:none}.header-light .navigation{box-shadow:none;margin-bottom:-45px}.header-light .navigation--main{display:flex}.header-light .navigation--main>li{flex:1 1 auto}.header-light .navigation--main>li.is-hover>a,.header-light .navigation--main>li:hover>a{border-bottom:5px solid #f7c51e;border-top:0;padding-bottom:29.5px;padding-top:34.5px}.header-light .navigation--main>li>a{margin-right:0;padding:34.5px 22px}.header-light .navigation--main>li>a:before{background:hsla(0,0%,100%,.12)}.header-light .navigation--main>.menu-item-has-children>a:after{bottom:12px}.header-light .navigation--main>.menu-item-has-children:hover>a{border-bottom:0;padding-bottom:34.5px}.header-light .navigation--main>.menu-item-has-children.current-menu-ancestor:hover>a:after,.header-light .navigation--main>.menu-item-has-children.current-menu-item:hover>a:after{color:#2e2e2e}.header-light .navigation--main>.current-menu-item>a{background-color:#f7c51e;color:#2e2e2e}.header-light .navigation--main>.current-menu-item>a:after{color:#2e2e2e}.header-light .navigation--main>.current-menu-ancestor>a{background-color:#f7c51e;color:#2e2e2e}.header-light .navigation--main>.current-menu-ancestor>a:after{color:#2e2e2e}.header-light .carousel-content{left:inherit}.header-light .carousel-control.left{left:inherit;right:calc(5% + 50px)}}@media(min-width:1450px){.header-light .carousel-control.left{left:5%;right:inherit}}.header-light .jumbotron__title p{color:#eee;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:1.1}@media(min-width:480px){.header-light .jumbotron__title p{font-size:25px}}@media(min-width:992px){.header-light .jumbotron__title p{margin:18px 0 10px}}@media(min-width:1200px){.header-light .jumbotron__title p{font-size:30px}}@media(min-width:1450px){.header-light .jumbotron__title p{margin:26px 0 19px}}@media(min-width:992px){.header-transparent .top__right{align-items:center;display:flex}.header-transparent .top__left{padding:12px 0}}.header-transparent .header{background-color:transparent;font-size:0;margin-bottom:0}@media(min-width:992px){.header-transparent .header{align-items:center;background-color:transparent;display:flex;justify-content:space-between;margin-bottom:0}.header-transparent .header__container{background:linear-gradient(rgba(0,0,0,.3),hsla(0,0%,100%,0));box-shadow:0 1px 0 hsla(0,0%,100%,.3);left:0;position:absolute;right:0;z-index:210}}.header-transparent .navigation{display:inline-block;width:100%}@media(min-width:992px){.header-transparent .navigation{background:transparent;box-shadow:none;display:block;margin-bottom:0;text-align:right;width:auto}}.header-transparent .navigation--main{font-size:16px}@media(min-width:992px){.header-transparent .navigation--main>.current-menu-item>a{border-bottom:6px solid #f7c51e}.header-transparent .navigation--main>li.is-hover>a,.header-transparent .navigation--main>li:hover>a{border-bottom:6px solid #f7c51e;border-top:0;padding-top:45px}.header-transparent .navigation--main>li>a{border-bottom:6px solid transparent;padding:45px 15px 39px}}@media(min-width:1200px){.header-transparent .navigation--main>li>a{padding-left:20px;padding-right:20px}}@media(min-width:992px){.header-transparent .navigation--main>li>a:before{display:none}}.header-transparent .navigation--main .sub-menu{font-size:14px}@media(min-width:992px){.header-transparent .main-title{padding:190px 0 85px}}.header-transparent .main-title__secondary{color:#a19c95}.header-transparent .jumbotron{background-color:#524639;color:#fff}.header-transparent .jumbotron .carousel-content{padding-top:30px}@media(min-width:992px){.header-transparent .jumbotron .carousel-content{background:transparent;left:calc(50% - 350px);padding:0;text-align:center;top:40%;width:700px}}@media(min-width:1200px){.header-transparent .jumbotron .carousel-content{left:calc(50% - 450px);width:900px}}@media(min-width:992px){.header-transparent .jumbotron__title p{color:#fff;font-size:40px;font-weight:700;text-shadow:0 1px 3px rgba(0,0,0,.5)}}@media(min-width:1200px){.header-transparent .jumbotron__title p{font-size:48px}}@media(min-width:992px){.header-transparent .jumbotron__content p{color:#fff;font-size:18px}}.header-transparent .jumbotron .carousel-control.left,.header-transparent .jumbotron .carousel-control.right{background:#524639}@media(min-width:992px){.header-transparent .jumbotron .carousel-control.left,.header-transparent .jumbotron .carousel-control.right{line-height:42px;top:calc(50% + 33px)}}.header-transparent .navbar-toggle{font-size:14px}.header-transparent .testimonial__carousel .fa{vertical-align:top}.main-title{background-color:#f2f2f2;border-bottom:1px solid #e6e6e6;padding:30px 0;text-align:center}@media(min-width:992px){.main-title{padding:97px 0 60px}}.main-title__primary{font-size:36px;margin:0}@media(min-width:992px){.main-title__primary{font-size:48px}}.main-title__secondary{border-top:1px solid rgba(0,0,0,.06);color:#999;font-size:14px;margin-bottom:0;margin-top:30px;padding-top:30px;position:relative}.main-title__secondary:before{background:#f7c51e;content:"";height:3px;left:50%;margin-left:-15px;position:absolute;top:-1px;width:30px}.main-title--small{padding:20px 0}@media(min-width:992px){.main-title--small{padding:67px 0 30px}}.main-title--small .main-title__primary{font-size:30px}.main-title--small .main-title__secondary{border-top:none;font-family:Source Sans Pro,Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:0;margin-top:10px;padding-top:0}.main-title--small .main-title__secondary:before{display:none}.breadcrumbs{box-shadow:0 2px 2px #e6e6e6;font-size:10px;margin-bottom:30px}@media(min-width:480px){.breadcrumbs{font-size:12px}}@media(min-width:992px){.breadcrumbs{margin-bottom:60px}}.breadcrumbs--page-builder{margin-bottom:0}.breadcrumbs a{color:#666;display:inline-block;font-size:10px;font-weight:700;margin-right:10px;padding:10px 10px 10px 0;position:relative}@media(min-width:480px){.breadcrumbs a{font-size:12px;margin-right:20px;padding:14px 20px 14px 0}}.breadcrumbs a:after,.breadcrumbs a:before{background:#e2e2e2;content:"";height:21px;position:absolute;right:0;width:1px}@media(min-width:480px){.breadcrumbs a:after,.breadcrumbs a:before{height:27px}}.breadcrumbs a:before{top:-2px;transform:rotate(-30deg)}.breadcrumbs a:after{bottom:-2px;transform:rotate(30deg)}.breadcrumbs a:hover{color:#333;text-decoration:none}.breadcrumbs span>span{display:inline-block;padding:10px 0}@media(min-width:480px){.breadcrumbs span>span{padding:14px 0}}.sidebar{color:#999;margin-top:30px}@media(min-width:992px){.sidebar,.sidebar__headings{margin-top:0}}.footer{background-color:#f2f2f2;border-top:1px solid #e6e6e6;color:#666;padding:30px 0 0}@media(min-width:992px){.footer{padding:60px 0 30px}.footer .footer__headings{margin-top:0}}.footer .btn-primary{color:#454545}.footer .btn-primary:hover{color:#333}.footer .read-more:hover{color:#1b92bf}.footer-bottom{background:#f7c51e;color:#666;padding:10px 0;text-align:center}@media(min-width:992px){.footer-bottom{padding:19px 0;text-align:left}}.footer-bottom__left{display:inline-block}.footer-bottom__right{padding-top:5px}@media(min-width:992px){.footer-bottom__right{float:right;padding-top:0}}.wide-color{background-color:#eee}.wide-color .panel-grid{margin-bottom:0!important}.wide-color-dark{background-color:#454545}.wide-color-dark .panel-grid{margin-bottom:0!important}.wide-pattern{background-color:#f2f2f2;padding:30px 0}.wide-pattern .panel-grid{margin-bottom:0!important}.wide-image{background-position:50%;padding:30px 0}.wide-image .panel-grid{margin-bottom:0!important}.navigation--top{margin:0;padding:0;text-align:center}@media(min-width:992px){.navigation--top{text-align:right}}.navigation--top a{color:#999}.navigation--top>li{display:inline-block;list-style:none;position:relative}.navigation--top>li>a{display:block;padding:5px 10px 12px;text-decoration:none}@media(min-width:992px){.navigation--top>li>a{padding:7px 0 7px 15px}}.navigation--top>li>a:hover{background:none;color:#f7c51e}.navigation--top>li:hover>.sub-menu{opacity:1;visibility:visible}.navigation--top>li:hover>a{color:#f7c51e}.navigation--top>li:hover>a:after{border-color:#f7c51e transparent transparent}.navigation--top .sub-menu{display:block;left:0;list-style:none;margin-top:-1px;min-width:120px;opacity:0;padding:0;position:absolute;text-align:left;top:100%;transition:all .2s ease-out;visibility:hidden;width:auto;z-index:215}.navigation--top .sub-menu>li{position:relative}.navigation--top .sub-menu>li>a{background:#2b2b2b;border-bottom:1px solid #454545;display:block;padding:5px 15px;white-space:nowrap}.navigation--top .sub-menu>li>a:hover{color:#f7c51e;text-decoration:none}.navigation--top .sub-menu>li:hover>.sub-menu{opacity:1;visibility:visible}.navigation--top .sub-menu>li>.sub-menu{border-left:1px solid #454545;left:100%;margin-top:0;top:0}.navigation--top>.menu-item-has-children>a{padding-right:12px;position:relative}.navigation--top>.menu-item-has-children>a:after{bottom:calc(50% - 8px);color:#999;content:"";font-family:FontAwesome;position:absolute;right:0}@media(min-width:992px){.navigation--top>.menu-item-has-children>a:after{margin-bottom:-2px}.navigation{background-color:#f9f9f9;background:linear-gradient(180deg,#fff 0,#eee);box-shadow:0 0 4px rgba(0,0,0,.25);margin-bottom:-37px;position:relative;text-align:center;z-index:210}}.navigation--main{font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:700;margin:0;padding:10px}@media(min-width:992px){.navigation--main{padding:0}}.navigation--main>li{list-style:none;position:relative}@media(min-width:992px){.navigation--main>li{display:inline-block}}.navigation--main>li>a{color:#ddd;display:block;padding:6px 10px 6px 0;position:relative}@media(min-width:992px){.navigation--main>li>a{color:#999;margin-right:-4px;padding:27px 22px}}@media(min-width:1200px){.navigation--main>li>a{padding-left:30px;padding-right:30px}}@media(min-width:992px){.navigation--main>li>a:before{background:rgba(0,0,0,.08);content:"";height:15px;margin-top:-8px;position:absolute;right:0;top:50%;width:1px}}.navigation--main>li.is-hover>a,.navigation--main>li:hover>a{color:#fff;text-decoration:none}@media(min-width:992px){.navigation--main>li.is-hover>a,.navigation--main>li:hover>a{border-top:3px solid #f7c51e;color:#333;padding-top:24px}}.navigation--main>li.is-hover>a:after,.navigation--main>li:hover>a:after{color:#fff}@media(min-width:992px){.navigation--main>li.is-hover>a:after,.navigation--main>li:hover>a:after{color:#333}}.navigation--main>li.is-hover>.sub-menu,.navigation--main>li:hover>.sub-menu{opacity:1;visibility:visible;z-index:1}.navigation--main>li:last-child a:before{display:none}.navigation--main>.menu-item-has-children>a{position:relative}.navigation--main>.menu-item-has-children>a:after{color:#ddd;content:"";font-family:FontAwesome;position:absolute;right:0}@media(min-width:992px){.navigation--main>.menu-item-has-children>a:after{bottom:10px;color:#999;right:calc(50% - 5px)}}.navigation--main .sub-menu{display:block;font-family:Source Sans Pro,Helvetica,Arial,sans-serif;font-weight:700;list-style:none;padding:5px 10px;text-align:left;transition:all .2s ease-out}@media(min-width:992px){.navigation--main .sub-menu{border-top:2px solid #eeb908;left:0;min-width:180px;opacity:0;padding:0;position:absolute;top:100%;visibility:hidden;width:auto}}.navigation--main .sub-menu>li{position:relative}.navigation--main .sub-menu>li>a{color:#ddd;display:block;padding:3px 0;white-space:nowrap}@media(min-width:992px){.navigation--main .sub-menu>li>a{background:#f7c51e;border-bottom:1px solid #eeb908;color:#333;padding:12px 30px}}.navigation--main .sub-menu>li>a:hover{color:#fff;text-decoration:none}@media(min-width:992px){.navigation--main .sub-menu>li>a:hover{background:#eeb908;color:#333}}.navigation--main .sub-menu>li:hover>.sub-menu{opacity:1;visibility:visible}.navigation--main .sub-menu>li>.sub-menu{left:100%;margin-top:0;top:0}@media(min-width:992px){.navigation--main .sub-menu>li>.sub-menu{border-left:1px solid #eeb908;border-top:0;padding:0}}.navigation--main .sub-menu>.menu-item-has-children>a{position:relative}@media(min-width:992px){.navigation--main .sub-menu>.menu-item-has-children>a:after{bottom:calc(50% - 10px);color:#333;content:"";display:none;font-family:FontAwesome;position:absolute;right:15px}}.navigation--main .dropdown-toggle{background-color:#f7c51e;border:0;border-left:1px solid #f7c51e;color:#454545;outline:none;padding:6px 10px;position:absolute;right:-9px;top:0}.navbar-toggle{background:#f7c51e;border-radius:2px;margin:10px 0;padding:10px 12px;transition:all .2s ease-out}@media(min-width:480px){.navbar-toggle{margin:34px 0}}.navbar-toggle:hover{background:#eeb908}.navbar-toggle .icon-bar{background:#454545;height:3px;width:18px}.navbar-toggle .icon-bar+.icon-bar{margin-top:3px}.navbar-toggle:focus{outline:none}.navbar-toggle__text{color:#454545;display:inline-block;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:700;padding:0 10px 0 0}.navbar-toggle__icon-bar{display:inline-block;height:18px;vertical-align:middle}.navbar-collapse{max-height:100%;padding:0}@media(min-width:992px){.is-sticky-navbar .navigation{position:fixed;top:0;width:940px}.is-sticky-navbar.admin-bar .navigation{top:32px}.is-sticky-navbar .sticky-offset{height:37px}.is-sticky-navbar.header-transparent .navigation--main{text-align:center}}@media(min-width:1200px){.is-sticky-navbar .navigation{width:1140px}}.navigation--footer{display:inline-block;margin:0;padding:0;text-align:center}@media(min-width:992px){.navigation--footer{text-align:left}}.navigation--footer>li{display:inline-block;list-style:none;position:relative}.navigation--footer>li>a{padding:0 7px;text-decoration:none}.navigation--footer>li>a:hover{background:none}.navigation--footer .sub-menu{display:inline-block;list-style:none;padding:0}.navigation--footer .sub-menu>li{display:inline-block}.navigation--footer .sub-menu>li>a{padding:0 7px}.navigation--footer .sub-menu>li>a:hover{text-decoration:none}.jumbotron{background:#333;margin-bottom:0;padding:0 0 20px}.jumbotron.jumbotron--no-catption{padding-bottom:0}@media(min-width:480px){.jumbotron{padding-bottom:30px}}@media(min-width:992px){.jumbotron{background:#999;padding:0}}.carousel-control.left,.carousel-control.right{background-image:none;background:rgba(51,51,51,.9);border-radius:2px;color:#fff;font-size:36px;height:45px;line-height:46px;opacity:1;text-align:center;text-shadow:none;top:20px;width:45px}@media(min-width:480px){.carousel-control.left,.carousel-control.right{top:50px}}@media(min-width:768px){.carousel-control.left,.carousel-control.right{top:100px}}@media(min-width:992px){.carousel-control.left,.carousel-control.right{top:calc(50% - 22px)}}.carousel-control.left:hover,.carousel-control.right:hover{color:#eee}.carousel-control.left{left:5%}.carousel-control.left .fa-angle-left{padding-right:2px}.carousel-control.right{right:5%}.carousel-control.right .fa-angle-right{padding-left:2px}.carousel-content{max-height:100%;position:relative;z-index:0}@media(min-width:992px){.carousel-content{background:rgba(51,51,51,.9);left:calc(50% - 270px);padding:20px;position:absolute;top:18%;width:540px}}@media(min-width:1200px){.carousel-content{left:calc(50% - 250px);top:20%;width:500px}}@media(min-width:1450px){.carousel-content{left:inherit;margin-left:0;padding:30px;width:480px}}@media(min-width:1700px){.carousel-content{top:25%}}.carousel-inner>.item>a>img,.carousel-inner>.item>img{width:100%}.jumbotron__category{border-bottom:1px solid hsla(0,0%,98%,.2);margin-bottom:10px;margin-top:20px;padding-bottom:10px}@media(min-width:480px){.jumbotron__category{margin-bottom:15px;margin-top:30px;padding-bottom:15px}}@media(min-width:992px){.jumbotron__category{margin-top:0}}.jumbotron__category h6{color:#f7c51e;margin:0}.jumbotron__title h1,.jumbotron__title p{color:#eee;font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:1.1;margin-bottom:10.5px;margin-top:21px}@media(min-width:480px){.jumbotron__title h1,.jumbotron__title p{font-size:25px}}@media(min-width:992px){.jumbotron__title h1,.jumbotron__title p{margin:18px 0 10px}}@media(min-width:1200px){.jumbotron__title h1,.jumbotron__title p{font-size:30px}}@media(min-width:1450px){.jumbotron__title h1,.jumbotron__title p{margin:26px 0 19px}}.jumbotron__content p{font-size:14px;font-weight:400}@media(min-width:992px){.jumbotron__content p{margin:0 0 18px}}@media(min-width:1450px){.jumbotron__content p{margin:0 0 24px}body.boxed .carousel-content{left:calc(50% - 250px);padding:20px}}@media(min-width:1700px){body.boxed .carousel-content{top:20%}}@media(min-width:1200px){body.boxed .jumbotron__title h1{font-size:25px}}@media(min-width:1450px){body.boxed .jumbotron__title h1{margin:26px 0 19px}body.boxed .jumbotron__content p{margin:0 0 18px}}#comments-submit-button,.btn{border:2px solid transparent;border-radius:2px;font-family:Montserrat,Helvetica,Arial,sans-serif;line-height:1;padding:15px 18px;transition:all .2s ease-out}#comments-submit-button:active:focus,#comments-submit-button:focus,.btn:active:focus,.btn:focus{outline:0}#comments-submit-button,.btn-primary{background:#f7c51e;border-color:#f7c51e;color:#454545}#comments-submit-button:hover,.btn-primary:hover{background:#eeb908;border-color:#eeb908;color:#333}#comments-submit-button:focus,.btn-primary:focus{background:#f7c51e;border-color:#f7c51e;color:#454545}#comments-submit-button:active,.btn-primary:active{background:#e4b108;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#333}.post-password-form>p>input{background:#f7c51e;border:1px solid #f7c51e;border-radius:2px;color:#454545;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:14px;padding:6px 10px 3px;transition:all .2s ease-out}.post-password-form>p>input:hover{background:#eeb908;border-color:#eeb908;color:#333}.post-password-form>p>input:active{background:#e4b108;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#333}.btn-default{background-color:transparent;border-color:#ddd;color:#999}.btn-default:hover{background-color:transparent;color:#333}.btn-default:active{background:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#333}.btn-success{background-color:#83be00;border-color:#83be00;color:#f0f0f0}.btn-success:hover{background:#6e9f00;border-color:#6e9f00;color:#f0f0f0}.btn-success:active{background:#679500;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#f0f0f0}.btn-info{background-color:#21a7d7;border-color:#21a7d7;color:#f0f0f0}.btn-info:hover{background:#1d92bc;border-color:#1d92bc;color:#f0f0f0}.btn-info:active{background:#1c8cb4;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#f0f0f0}.btn-warning{background-color:#ec753a;border-color:#ec753a;color:#f0f0f0}.btn-warning:hover{background:#e9611e;border-color:#e9611e;color:#f0f0f0}.btn-warning:active{background:#e75b16;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#f0f0f0}.btn-danger{background-color:#cd1b2b;border-color:#cd1b2b;color:#f0f0f0}.btn-danger:hover{background:#b21725;border-color:#b21725;color:#f0f0f0}.btn-danger:active{background:#a91623;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#f0f0f0}.btn-light{background-color:#fff;border-color:#fff;color:#f7c51e}.btn-light:hover{background:#f0f0f0;border-color:#f0f0f0;color:#f7c51e}.btn-light:active{background:#ebebeb;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#f7c51e}#comments-submit-button{text-transform:uppercase}.secondary-font-roboto-slab h1,.secondary-font-roboto-slab h2,.secondary-font-roboto-slab h3,.secondary-font-roboto-slab h4,.secondary-font-roboto-slab h5,.secondary-font-roboto-slab h6{letter-spacing:0;line-height:1.5}.secondary-font-roboto-slab .btn,.secondary-font-roboto-slab .sidebar .widget_nav_menu ul,.secondary-font-roboto-slab .widget_nav_menu ul{font-weight:700}.primary-font-open-sans{line-height:1.6}.top .social-icons__link{padding:0 3px}.top .social-icons__link .fa{font-size:20px}.top .widget-social-icons{line-height:1.2;padding:6px 0 9px}.widget-social-icons{margin:0 10px;padding:9px 0;text-align:center}@media(min-width:992px){.widget-social-icons{float:right;text-align:left}}.social-icons__link{color:#f7c51e;font-size:25px;padding:0 8px;transition:all .2s ease-out}.social-icons__link:hover{color:#eeb908}.banner__text{font-size:20px;padding:30px 0 10px;text-align:center}@media(min-width:992px){.banner__text{float:left;padding:23px 0 22px}}.banner__buttons{padding:10px 0 30px;text-align:center}@media(min-width:992px){.banner__buttons{float:right;padding:14px 0 13px}}.banner__buttons .btn{margin:5px 0}@media(min-width:992px){.banner__buttons .btn{margin:0}}.testimonial{margin:30px 0}.panel-grid .testimonial .widget-title{margin-bottom:30px;padding-bottom:30px}.testimonial__quote{background:#fff;border:0;box-shadow:0 1px 2px rgba(0,0,0,.08);color:#666;font-size:16px;font-style:italic;margin-bottom:30px;padding:15px 15px 15px 45px;position:relative}@media(min-width:992px){.testimonial__quote{font-size:18px;padding:45px 45px 45px 75px}}.testimonial__quote:before{background:#bbb;color:#fff;content:"“";font-size:45px;height:30px;left:0;line-height:50px;position:absolute;top:30px;width:30px}@media(min-width:992px){.testimonial__quote:before{font-size:60px;height:45px;line-height:70px;padding-left:2px;width:45px}}.testimonial__quote:after{border-color:#fff transparent transparent;border-style:solid;border-width:20px 20px 0 0;bottom:-20px;content:"";height:0;left:30px;position:absolute;width:0}.testimonial__author{color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;font-style:normal;font-weight:700}.testimonial__rating{color:#f7c51e}.testimonial__carousel{border:2px solid #ddd;border-radius:2px;color:#999;float:right;font-size:38px;height:45px;margin-left:10px;text-align:center;transition:all .2s ease-out;width:45px}.testimonial__carousel:hover{background-color:transparent;border-color:#adadad;color:#333}.testimonial__carousel:active{background:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#333}.testimonial__carousel--left{padding-left:2px}.testimonial__carousel--right{padding-right:2px}.logo-panel{text-align:center}.logo-panel img{border:1px solid #ededed;border-radius:2px;box-shadow:0 1px 2px #ededed;margin:15px 0;opacity:.6;transition:all .2s ease-out}.logo-panel img:hover{border:1px solid #f7c51e;opacity:1}.motivational-text{color:#fff;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:14px;margin:0;text-align:center;text-shadow:0 1px 1px rgba(0,0,0,.12)}@media(min-width:992px){.motivational-text{font-size:20px;padding:30px 0}}.page-box__picture+.post-thumbnail>img,.page-box__picture>img{height:auto;width:100%}.page-box__title>a{color:#333}.page-box__content p:first-of-type{margin:0}.page-box--block .page-box__title{margin-bottom:15px;margin-top:25px}.page-box--inline .page-box__picture{display:block;float:left;margin-bottom:10px;margin-right:20px}.page-box--inline p:last-of-type,.widget_pt_featured_page .wp-post-image{margin-bottom:0}html.flexbox .page-box--inline{align-items:flex-start;display:flex;flex-flow:row nowrap;justify-content:space-between}html.flexbox .page-box--inline .page-box__picture{float:none;margin:0}html.flexbox .page-box--inline .page-box__content{flex-basis:calc(100% - 120px)}html.flexbox .page-box--inline .page-box__title{margin-top:0}.brochure-box{background-color:#eee;border-radius:2px;display:block;position:relative;transition:all .2s ease-out}.brochure-box .fa{background-color:#fff;color:#999;display:inline-block;font-size:20px;margin:2px;padding:15px;transition:all .2s ease-out;vertical-align:middle}.brochure-box:after{border-color:transparent transparent transparent #999;border-style:solid;border-width:4.5px 0 4.5px 5px;content:"";height:0;position:absolute;right:15px;top:calc(50% - 4px);transition:all .2s ease-out;width:0}.brochure-box:hover{background-color:#f7c51e;text-decoration:none}.brochure-box:hover .fa{color:#333}.brochure-box:hover:after{border-color:transparent transparent transparent #333}.brochure-box:hover .brochure-box__text{color:#333}.brochure-box__text{color:#999;display:inline-block;font-size:13px;padding-left:10px;transition:all .2s ease-out}.widget-brochure-box+.widget-brochure-box,.widget_pt_brochure_box+.widget_pt_brochure_box{margin-top:-15px}.fvp-dynamic .fvp-actionicon,.fvp-overlay .fvp-actionicon,.fvp-responsive .fvp-actionicon{background-image:url(https://coralgablesclassof82.com/wp-content/themes/buildpress/assets/images/play_button.svg);background-size:28%;bottom:0;display:block;right:0;z-index:10}.fvp-dynamic .fvp-actionicon.play,.fvp-overlay .fvp-actionicon.play,.fvp-responsive .fvp-actionicon.play{background-image:url(https://coralgablesclassof82.com/wp-content/themes/buildpress/assets/images/play_button.svg)}.widget-icon-box{border-bottom:1px solid hsla(0,0%,98%,.12);padding:12px 0;text-align:center;width:100%}@media(min-width:992px){.widget-icon-box{border-bottom:0;float:left;padding:8px 0;text-align:left;width:auto}}.widget-icon-box .icon-box{color:#999;text-align:left}.widget-icon-box .icon-box:hover{text-decoration:none}.widget-icon-box .icon-box:hover .fa{color:#ddd;transition:all .2s ease-out}.widget-icon-box:first-of-type{border-top:1px solid hsla(0,0%,98%,.12)}@media(min-width:992px){.widget-icon-box:first-of-type{border-top:0}}.widget-icon-box div.icon-box{cursor:default}.icon-box{display:inline-block;margin-left:15px;padding-right:15px;text-align:left;width:230px}@media(min-width:992px){.icon-box{border-right:1px solid hsla(0,0%,98%,.12);width:210px}}.icon-box>.fa{float:left;font-size:40px;margin-right:10px}.icon-box__title{color:#ddd;font-size:14px;font-weight:700;margin:4px 0 0}.icon-box__subtitle{color:#999}.widget_pt_icon_box .icon-box{width:auto}.widget_pt_icon_box .icon-box>.fa{color:#f7c51e}.widget_pt_icon_box .icon-box__title{color:#333}@media(min-width:992px){html.flexbox .header-widgets{display:flex;float:none;justify-content:center}}@media(min-width:1200px){html.flexbox .header-widgets{justify-content:flex-end}}@media(min-width:992px){html.flexbox .widget-icon-box{display:flex;float:none;justify-content:flex-start}}html.flexbox .widget-icon-box .icon-box{display:inherit;width:auto}html.flexbox .widget-icon-box .icon-box__text{flex-direction:column;margin-left:50px;width:calc(100% - 40px)}@media(min-width:992px){html.flexbox .widget-icon-box .icon-box__text{margin-left:0}html.flexbox .widget-social-icons{float:none}}html.flexbox .top .widget-icon-box .icon-box__text{width:auto}@media(min-width:992px){.top .icon-box{border-right:0}}.top .icon-box .fa{font-size:20px}.top .icon-box__title{color:#bbb;display:inline-block;margin-top:0}.top .icon-box__subtitle{color:#bbb}.top .widget-icon-box{padding:13px 0 11px}.top .widget-icon-box .icon-box{color:#bbb}.page-template-template-empty .icon-box{border-right:0}.page-template-template-empty .icon-box .fa{border:1px dashed #666;border-radius:2px;font-size:24px;height:50px;line-height:50px;text-align:center;width:50px}.page-template-template-empty .icon-box__title{color:#afb0b0;font-size:18px;font-weight:400}.page-template-template-empty .icon-box__subtitle{color:#f7c51e;font-size:18px;font-weight:700}.page-template-template-empty .widget_pt_icon_box .icon-box>.fa{color:#666}.countdown .flip{border-radius:0;display:inline-block;float:none}.countdown .flip+.flip{margin-left:-5px}.countdown .flip-clock-divider{float:none}@media(max-width:768px){.countdown .flip-clock-divider{display:block;height:30px;width:100%}.countdown .flip-clock-divider:first-child{width:100%}}.countdown .flip-clock-divider .flip-clock-label{bottom:-20px;color:#fff;font-size:14px;font-weight:700;text-transform:uppercase;top:inherit}@media(max-width:768px){.countdown .flip-clock-divider .flip-clock-label{bottom:-125px;left:0;right:0;width:100%}}.countdown.flip-clock-wrapper ul,.countdown.flip-clock-wrapper ul li a div.down,.countdown.flip-clock-wrapper ul li a div.down div.inn,.countdown.flip-clock-wrapper ul li a div.up div.inn{border-radius:0;color:#fff}.countdown .flip-clock-dot{background:#999;box-shadow:none}@media(max-width:768px){.countdown .flip-clock-dot{display:none}}.countdown .flip-clock-dot .top{border:0}.mailchimp-subscribe label{color:#333;font-size:18px;margin-bottom:20px;text-align:center;text-transform:uppercase;width:100%}.mailchimp-subscribe .form-control{background:#f2f2f2;border:1px solid #ddd;border-radius:2px;box-shadow:none;margin-bottom:15px;padding:23px 20px;width:100%}.mailchimp-subscribe .form-control:focus{background:#fff;border-color:#ddd}.mailchimp-subscribe .mailchimp-subscribe__submit{width:100%}.full-page-bg-video{background-size:cover;height:auto;left:50%;min-height:100%;min-width:100%;position:fixed;top:50%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);width:auto;z-index:-100}.full-page-bg-video-overlay{background:rgba(0,0,0,.7);bottom:0;content:"";left:0;min-height:100vw;position:fixed;right:0;top:0;z-index:-90}.icon-container{display:inline-block;font-size:18px;margin-right:3px}.project__meta-data{background-color:#eee;border-radius:2px;color:#666;margin-bottom:30px;padding:16px 22px}.project__meta-data ul{margin-bottom:0}.project__meta-data li{margin-bottom:5px}.project__meta-icon{display:inline-block;font-size:120%;margin-right:4px;min-width:20px;text-align:center}.project__navigation{margin-bottom:30px}@media(min-width:992px){.project__navigation{margin-bottom:0}}.project__navigation li{display:inline-block;min-height:1px;text-align:center;width:calc(50% - 15px)}.project__navigation li:last-of-type{margin-left:30px}.project__navigation a{background-color:#eee;color:#999!important;display:block;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:700;padding:15px;text-transform:uppercase;transition:all .2s ease-out}.project__navigation a:hover{color:#333!important;text-decoration:none}.project-gallery-item{margin-bottom:30px}.project-gallery-item img{height:auto;max-width:100%}.project-gallery-item__title{margin-top:0}.project-gallery-item__caption:not(:empty){margin-top:5px}.pagination{display:block;font-family:Montserrat,Helvetica,Arial,sans-serif;margin:0}.pagination>.page-numbers{border-top:1px solid rgba(0,0,0,.08);padding-top:30px}.pagination>.page-numbers .dots{display:block;padding:12px 0}.pagination ul{list-style:none;padding:0}.pagination li{background:#f2f2f2;border-radius:2px;display:inline-block;margin-bottom:4px;transition:all .2s ease-out;width:45px}.pagination li a{color:#999;display:block;padding:12px 18px}.pagination li:hover{background:#f7c51e}.pagination li:hover a{color:#333}.pagination li .current{background:#f7c51e;border-radius:2px;color:#333;display:block;padding:12px 18px}.multi-page{color:#666;margin-bottom:30px}.avatar{border-radius:2px}.avatar-container,.avatar-container--nested,.avatar-container--nestedx2{float:left;width:12%}.avatar-container img,.avatar-container--nested img,.avatar-container--nestedx2 img{height:auto;width:100%}.avatar-container--nested{margin-left:15%;width:10%}.avatar-container--nestedx2{margin-left:28%;width:8%}.comment-content,.comment-content--nested,.comment-content--nestedx2{float:left;margin-left:3%;position:relative;width:85%}.comment-content--nested:before,.comment-content--nestedx2:before,.comment-content:before{border:6px solid #fff;border-right-color:#f2f2f2;border-width:6px 10px 6px 0;content:"";display:block;left:-10px;position:absolute;top:20px}.comment-content .comment-inner,.comment-content--nested .comment-inner,.comment-content--nestedx2 .comment-inner{background-color:#f2f2f2;border-radius:2px;margin-bottom:30px;padding:30px}.comment-content .comment-author,.comment-content--nested .comment-author,.comment-content--nestedx2 .comment-author{color:#333;font-size:18px;font-style:normal;font-weight:700}.comment-content .comment-metadata,.comment-content--nested .comment-metadata,.comment-content--nestedx2 .comment-metadata{float:right;font-weight:400}.comment-content .comment-text,.comment-content--nested .comment-text,.comment-content--nestedx2 .comment-text{color:#999;margin-top:15px}.comment-content--nested{width:72%}.comment-content--nestedx2{width:61%}#comments{display:inline-block}#comments .children{padding-left:0}#comments .alternative-heading{margin-bottom:25px}.comment{list-style:none}.comment-form .comment-form-cookies-consent input,.comment-form .comment-form-cookies-consent label{display:inline}.comment-form .comment-form-cookies-consent input{height:auto;margin-right:3px;transform:translateY(-1px)}.comment-form-cookies-consent{min-height:45px;padding-top:10px}.comment-form .form-control{background:#f2f2f2;border:1px solid #dedede;border-radius:2px;box-shadow:none}.comment-form .form-control:focus{background:#fff;border-color:#dedede}.comment-form input{height:45px}.widget select{border-color:#dedede;border-radius:2px;color:#666;padding:8px 6px;width:100%}.sidebar .widget select{background:transparent}.footer .widget select{background:#f2f2f2}.master-container .widget_nav_menu ul,.sidebar .widget_nav_menu ul{list-style:none;padding:0}.master-container .widget_nav_menu ul>li,.sidebar .widget_nav_menu ul>li{margin:2px 0}.master-container .widget_nav_menu ul>li>a,.sidebar .widget_nav_menu ul>li>a{background-color:#eee;border-radius:2px;color:#999;display:block;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:13px;padding:18px 20px;transition:all .2s ease-out}.master-container .widget_nav_menu ul>li>a:hover,.sidebar .widget_nav_menu ul>li>a:hover{background-color:#f7c51e;color:#333;text-decoration:none}.master-container .widget_nav_menu ul>li>a:active,.sidebar .widget_nav_menu ul>li>a:active{background-color:#e4b108;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#333}.master-container .widget_nav_menu ul>li.current-menu-item>a,.sidebar .widget_nav_menu ul>li.current-menu-item>a{background-color:#f3bd09;color:#333;text-decoration:none}.master-container .widget_nav_menu .sub-menu a,.sidebar .widget_nav_menu .sub-menu a{font-size:12px;padding-left:40px}.master-container .widget_nav_menu .sub-menu .sub-menu a,.sidebar .widget_nav_menu .sub-menu .sub-menu a{padding-left:48px}.master-container .widget_nav_menu .sub-menu .sub-menu .sub-menu a,.sidebar .widget_nav_menu .sub-menu .sub-menu .sub-menu a{padding-left:56px}.master-container .widget_nav_menu .sub-menu .sub-menu .sub-menu .sub-menu a,.sidebar .widget_nav_menu .sub-menu .sub-menu .sub-menu .sub-menu a{padding-left:64px}.master-container .widget_nav_menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu a,.sidebar .widget_nav_menu .sub-menu .sub-menu .sub-menu .sub-menu .sub-menu a{padding-left:72px}.footer .widget_nav_menu ul{font-size:15px;list-style:none;padding:0}.footer .widget_nav_menu ul>li>a{color:#999;display:block;padding:6px 0}.footer .widget_nav_menu ul>li>a:hover{color:#666}.footer .widget_nav_menu ul .sub-menu{padding-left:10px}.widget_archive ul,.widget_categories ul,.widget_meta ul,.widget_pages ul,.widget_recent_comments ul,.widget_recent_entries ul,.widget_rss ul{padding-left:20px}.widget_text img{height:auto;max-width:100%}.widget_search{font-family:Source Sans Pro,Helvetica,Arial,sans-serif}.widget_search .screen-reader-text{display:none}@media(min-width:992px){.widget_search label.wp-block-search__label{float:none}}.widget_search label{width:100%}@media(min-width:992px){.widget_search label{float:left;width:70%}}.widget_search .search-field{background-color:#eee;border:1px solid #ddd;border-radius:2px;font-weight:400;height:40px;padding:6px 5px 6px 10px;width:100%}@media(min-width:992px){.widget_search .search-field{border-bottom-right-radius:0;border-right:none;border-top-right-radius:0}}.widget_search .search-field:focus{background:#fff}.widget_search .search-submit{background:#f7c51e;border:0;border-radius:2px;color:#333;font-weight:700;height:40px;transition:all .2s ease-out;width:100%}@media(min-width:992px){.widget_search .search-submit{border-bottom-left-radius:0;border-top-left-radius:0;width:30%}}.widget_search .search-submit:focus,.widget_search .search-submit:hover{background:#eeb908;outline:none}.error-404 .widget_search{margin:0 auto;width:100%}@media(min-width:992px){.error-404 .widget_search{width:300px}}.widget_calendar #wp-calendar{width:100%}.widget_calendar caption{background-color:#f7c51e;border-radius:2px;color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:12px;padding:5px 0;text-align:center}.widget_calendar thead tr th{background:#dedede;border:1px solid #f2f2f2;color:#666;padding:5px 0;text-align:center}.widget_calendar tbody tr td{border:1px solid #f2f2f2;padding:3px 0;text-align:center}.widget_calendar tfoot tr td{border-top:1px solid #dedede;padding:5px}.widget_calendar tfoot tr #next a{float:right}.footer .widget_calendar tbody tr td{border:1px solid #dedede}.widget_tag_cloud a{background:#f7c51e;border-radius:2px;color:#666;display:inline-block;margin:2px 0;padding:5px 8px;transition:all .2s ease-out}.widget_tag_cloud a:hover{background:#eeb908;color:#333}.single .hentry__content{border-bottom:1px solid rgba(0,0,0,.08);margin-bottom:30px;padding-bottom:15px}.wp-post-image{border-radius:2px;height:auto;margin:0 0 30px;max-width:100%}.meta-data{margin-bottom:5px}.meta-data a{color:#999;transition:all .2s ease-out}.meta-data a:hover{color:#333}.meta-data>span{border-right:1px solid rgba(0,0,0,.12);margin-right:10px;padding-right:10px}.meta-data>span:last-of-type{border-right:none}.meta-data>span:first-of-type{border-left:1px solid rgba(0,0,0,.12);margin-left:10px;padding-left:10px}.meta-data__seperator{color:#ddd}.hentry img{border-radius:2px}.hentry--search{margin-bottom:30px}@media(min-width:992px){.hentry--search{margin-bottom:60px}}.hentry__content{font-size:16px}.hentry__title{font-size:30px;margin-bottom:20px;margin-top:10px;padding-bottom:20px}.hentry__title a{color:#333}.hentry__title a:hover{color:#000}.portfolio .hentry__title{margin-top:0}.more-link{text-transform:uppercase}.more-link span{padding:0}.more-link .btn:hover{color:#1b92bf}.sticky{background:#f2f2f2;border-radius:2px;padding:30px}.sticky .hentry__content{color:#666}.aligncenter,.aligncenter img,.alignleft,.alignleft img,.alignnone,.alignnone img,.alignright,.alignright img{height:auto;max-width:100%}.alignnone{margin:5px 0 20px}.aligncenter{display:block;margin:5px auto}.alignright{float:right;margin:5px 0 20px 20px}.alignleft{float:left;margin:5px 20px 20px 0}a>img.alignright{float:right;margin:5px 0 20px 20px}a>img.alignleft,a>img.alignnone{margin:5px 20px 20px 0}a>img.alignleft{float:left}a>img.aligncenter{display:block;margin-left:auto;margin-right:auto}.wp-caption{background-color:rgba(0,0,0,.05);max-width:100%;padding:5px;text-align:center}.wp-caption.alignnone{margin:5px 0 20px}.wp-caption.alignleft{margin:5px 20px 20px 0}.wp-caption.alignright{margin:5px 0 20px 20px}.wp-caption img{border:0;height:auto;margin:0;padding:0;width:auto}.wp-caption .wp-caption-text{line-height:17px;margin:4px 5px}.gallery:after,.gallery:before{content:" ";display:table}.gallery:after{clear:both}.gallery{margin-bottom:20px}.gallery-item{float:left;margin:0 4px 4px 0;overflow:hidden;position:relative}.gallery-columns-1 .gallery-item{max-width:100%}.gallery-columns-2 .gallery-item{max-width:48%;max-width:calc(50% - 4px)}.gallery-columns-3 .gallery-item{max-width:32%;max-width:calc(33.3% - 4px)}.gallery-columns-4 .gallery-item{max-width:23%;max-width:calc(25% - 4px)}.gallery-columns-5 .gallery-item{max-width:19%;max-width:calc(20% - 4px)}.gallery-columns-6 .gallery-item{max-width:15%;max-width:calc(16.7% - 4px)}.gallery-columns-7 .gallery-item{max-width:13%;max-width:calc(14.28% - 4px)}.gallery-columns-8 .gallery-item{max-width:11%;max-width:calc(12.5% - 4px)}.gallery-columns-9 .gallery-item{max-width:9%;max-width:calc(11.1% - 4px)}.gallery-columns-1 .gallery-item:nth-of-type(1n),.gallery-columns-2 .gallery-item:nth-of-type(2n),.gallery-columns-3 .gallery-item:nth-of-type(3n),.gallery-columns-4 .gallery-item:nth-of-type(4n),.gallery-columns-5 .gallery-item:nth-of-type(5n),.gallery-columns-6 .gallery-item:nth-of-type(6n),.gallery-columns-7 .gallery-item:nth-of-type(7n),.gallery-columns-8 .gallery-item:nth-of-type(8n),.gallery-columns-9 .gallery-item:nth-of-type(9n){margin-right:0}.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(odd),.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1){clear:left}.gallery-caption{background-color:rgba(0,0,0,.7);bottom:0;color:#fff;font-size:12px;left:0;line-height:1.5;margin:0;max-height:50%;opacity:0;padding:6px 8px;position:absolute;text-align:left;width:100%}.gallery-caption:before{content:"";height:100%;left:0;min-height:49px;position:absolute;top:0;width:100%}.gallery-item:hover .gallery-caption{opacity:1}.gallery-columns-7 .gallery-caption,.gallery-columns-8 .gallery-caption,.gallery-columns-9 .gallery-caption{display:none}.bypostauthor{position:static}.hentry__content table td,.hentry__content table th{border:1px solid #dedede;padding:5px 10px}.panel-grid .widget-title{font-size:30px;margin-top:0}.read-more{display:inline-block;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;text-transform:uppercase}.read-more:hover{text-decoration:underline}.read-more--page-box{margin-top:4.5px}.post{margin-bottom:30px}@media(min-width:992px){.post{margin-bottom:60px}}.breadcrumbs .post,.single-post .post{margin-bottom:0}.error-404{text-align:center}.error-404__text{color:#999;font-size:18px;margin-bottom:30px}.wpcf7-date,.wpcf7-number,.wpcf7-select,.wpcf7-text,.wpcf7-textarea{background:#f2f2f2;border:1px solid #ddd;border-radius:2px;box-shadow:none;margin-bottom:15px;padding:20px;width:100%}.wpcf7-date:focus,.wpcf7-number:focus,.wpcf7-select:focus,.wpcf7-text:focus,.wpcf7-textarea:focus{background:#fff;border-color:#ddd}.wpcf7-textarea{height:220px}.wpcf7-submit{float:right;margin-bottom:15px}.wpcf7 .wpcf7-response-output{border-radius:2px;margin:5px 0;padding:10px 20px}.wpcf7 .wpcf7-validation-errors{background-color:#faf8d2;border:2px solid #faf8d2;color:#b9b015}.wpcf7 .wpcf7-mail-sent-ng{background-color:#ffe5e5;border:2px solid #ffe5e5;color:#e50000}.wpcf7 .wpcf7-mail-sent-ok{background-color:#dcf2dc;border:2px solid #dcf2dc;color:#389738}.wpcf7 .wpcf7-not-valid-tip{margin:0 0 5px}.wpb-js-composer .vc_col-has-fill>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{padding-top:15px}@media(min-width:992px){.wpb-js-composer .vc_col-has-fill>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.wpb-js-composer .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{padding-top:0}}.wpb-js-composer .wpcf7-select,.wpb-js-composer .wpcf7-text,.wpb-js-composer .wpcf7-textarea{margin-bottom:15px!important}.wpb-js-composer .banner__buttons p{margin:0}.wpb-js-composer .wpb_wrapper .widget-title{border-bottom:1px solid rgba(0,0,0,.08);font-size:30px;margin-bottom:15px;margin-top:0;padding-bottom:15px;position:relative}.wpb-js-composer .wpb_wrapper .widget-title:after{background-color:#f7c51e;bottom:-1px;content:"";height:3px;left:0;position:absolute;width:30px}.wpb-js-composer .logo-panel img{height:auto;max-width:100%}.home.light-elementor .master-container{margin-bottom:0}@media(max-width:1024px){.elementskit-menu-offcanvas-elements .menu-item .elementskit-submenu-indicator{border:0;border-radius:0;line-height:40px;margin:0 0 0 auto;padding:4px 18px}.elementskit-menu-offcanvas-elements .current-menu-item .elementskit-submenu-indicator,.elementskit-menu-offcanvas-elements .current-menu-parent .elementskit-submenu-indicator,.elementskit-menu-offcanvas-elements .menu-item .elementskit-submenu-indicator{background-color:var(--e-global-color-primary);color:var(--e-global-color-accent)}}.elementor-widget-ekit-nav-menu .elementskit-menu-overlay{background-color:transparent}@media(max-width:1024px){.light-elementor .hfe-nav-menu{margin:auto}}@media(min-width:1025px){.landscape-elementor header{left:0;position:absolute;width:100%}}@media(min-width:1024px){.landscape-elementor .main-title{padding:190px 0 85px}}@media(max-width:1024px){.landscape-elementor .elementskit-menu-offcanvas-elements .menu-item .elementskit-submenu-indicator{background-color:var(--e-global-color-primary);color:var(--e-global-color-secondary);margin:-12px -20px -12px 0}.landscape-elementor .elementskit-menu-offcanvas-elements .current-menu-item .elementskit-submenu-indicator,.landscape-elementor .elementskit-menu-offcanvas-elements .current-menu-parent .elementskit-submenu-indicator{background-color:var(--e-global-color-primary);color:var(--e-global-color-secondary)}}.landscape-elementor .elementskit-submenu-panel a{white-space:nowrap}@media(max-width:1024px){.rtl-elementor .elementskit-menu-offcanvas-elements .menu-item .elementskit-submenu-indicator{background-color:var(--e-global-color-primary);color:var(--e-global-color-secondary);margin:-12px -20px -12px 0}}@media screen and (max-width:1024px){html[dir=rtl] .rtl-elementor .elementskit-submenu-indicator{background-color:var(--e-global-color-primary);color:var(--e-global-color-secondary);left:0;line-height:38px;position:absolute!important}}.woocommerce ul.products,body.woocommerce-page ul.products{margin-bottom:0;padding-top:20px}@media(max-width:767px){.woocommerce ul.products li:nth-child(odd).product,body.woocommerce-page ul.products li:nth-child(odd).product{margin-right:4%}.woocommerce ul.products li:nth-child(2n).product,body.woocommerce-page ul.products li:nth-child(2n).product{margin-right:0}.woocommerce ul.products li.first,.woocommerce ul.products li.last,body.woocommerce-page ul.products li.first,body.woocommerce-page ul.products li.last{clear:none}}.woocommerce ul.products li.product,body.woocommerce-page ul.products li.product{margin-bottom:45px;width:48%}@media(min-width:768px){.woocommerce ul.products li.product,body.woocommerce-page ul.products li.product{width:22.05%}}.woocommerce ul.products li.product a img,body.woocommerce-page ul.products li.product a img{border-radius:2px;box-shadow:none;transition:all .1s ease-in-out}.woocommerce ul.products li.product a:hover img,body.woocommerce-page ul.products li.product a:hover img{box-shadow:0 0 0 2px;color:#f7c51e}.woocommerce ul.products li.product h3,body.woocommerce-page ul.products li.product h3{font-family:Montserrat,Helvetica,Arial,sans-serif}.woocommerce ul.products li.product .price,body.woocommerce-page ul.products li.product .price{color:#333;font-size:16px;font-weight:700;margin-bottom:15px}.woocommerce ul.products li.product .price del,body.woocommerce-page ul.products li.product .price del{color:#999;font-size:16px;font-weight:400}.woocommerce ul.products li.product .onsale,body.woocommerce-page ul.products li.product .onsale{margin:-7px -7px 0 0}.woocommerce ul.products .star-rating,body.woocommerce-page ul.products .star-rating{margin:0}.woocommerce a.add_to_cart_button,body.woocommerce-page a.add_to_cart_button{background:#eee;border:none;border-radius:2px;box-shadow:none;color:#999;font-family:Montserrat,Helvetica,Arial,sans-serif;margin-bottom:0;padding:15px;text-align:center;text-shadow:none;text-transform:uppercase;transition:all .2s ease-out;width:100%}.woocommerce a.add_to_cart_button:hover,body.woocommerce-page a.add_to_cart_button:hover{background:#f7c51e;box-shadow:none;color:#333}.woocommerce .woocommerce-ordering,body.woocommerce-page .woocommerce-ordering{margin:0 0 20px}.woocommerce .woocommerce-ordering .orderby,body.woocommerce-page .woocommerce-ordering .orderby{background-color:#fff;border:1px solid #ddd;border-radius:2px;padding:10px}.woocommerce span.onsale,body.woocommerce-page span.onsale{background:#f7c51e;box-shadow:none;color:#333;height:40px;text-shadow:none;width:40px}.woocommerce .wc-forward:after,body.woocommerce-page .wc-forward:after{content:"";font-family:FontAwesome;margin-left:10px}.woocommerce .star-rating,body.woocommerce-page .star-rating{color:#f7c51e}.woocommerce .star-rating:before,body.woocommerce-page .star-rating:before{color:#eee;content:"SSSSS"}body.woocommerce-page a.button,body.woocommerce-page button.button,body.woocommerce-page input.button,body.woocommerce-page input.button.alt{background:#eee;border:none;box-shadow:none;color:#999;display:inline-block;font-family:Montserrat,Helvetica,Arial,sans-serif;padding:15px;text-shadow:none;text-transform:uppercase;transition:all .2s ease-out}body.woocommerce-page a.button:hover,body.woocommerce-page button.button:hover,body.woocommerce-page input.button.alt:hover,body.woocommerce-page input.button:hover{background:#f7c51e;color:#333;text-shadow:none}body.woocommerce-page a.button:active,body.woocommerce-page button.button:active,body.woocommerce-page input.button.alt:active,body.woocommerce-page input.button:active{top:0}body.woocommerce-page .woocommerce-product-rating{line-height:1;margin-bottom:20px}body.woocommerce-page .woocommerce-product-rating .star-rating{margin-right:15px;margin-top:0}body.woocommerce-page .woocommerce-result-count{font-size:16px;margin:18px 0 20px}body.woocommerce-page nav.woocommerce-pagination{border-top:1px solid rgba(0,0,0,.08);font-family:Montserrat,Helvetica,Arial,sans-serif;padding-top:30px}body.woocommerce-page nav.woocommerce-pagination ul{border:none}body.woocommerce-page nav.woocommerce-pagination ul li{background-color:#f2f2f2;border:none;border-radius:2px;margin:0 2px}body.woocommerce-page nav.woocommerce-pagination ul li .page-numbers{padding:15px 0 16px;width:45px}body.woocommerce-page nav.woocommerce-pagination ul li a{color:#999;transition:all .2s ease-out}body.woocommerce-page nav.woocommerce-pagination ul li a:hover,body.woocommerce-page nav.woocommerce-pagination ul li span.current{background-color:#f7c51e;color:#333}body.woocommerce-page nav.woocommerce-pagination ul li .next,body.woocommerce-page nav.woocommerce-pagination ul li .prev{color:#f2f2f2}body.woocommerce-page nav.woocommerce-pagination ul li .next:hover,body.woocommerce-page nav.woocommerce-pagination ul li .prev:hover{color:#f7c51e}body.woocommerce-page nav.woocommerce-pagination ul li .next:hover:after,body.woocommerce-page nav.woocommerce-pagination ul li .next:hover:before,body.woocommerce-page nav.woocommerce-pagination ul li .prev:hover:after,body.woocommerce-page nav.woocommerce-pagination ul li .prev:hover:before{color:#333}body.woocommerce-page nav.woocommerce-pagination ul li .prev{position:relative}body.woocommerce-page nav.woocommerce-pagination ul li .prev:before{color:#999;content:"";font-family:FontAwesome;left:calc(50% - 3px);position:absolute;top:calc(50% - 6px);transition:all .2s ease-out}body.woocommerce-page nav.woocommerce-pagination ul li .next{position:relative}body.woocommerce-page nav.woocommerce-pagination ul li .next:after{color:#999;content:"";font-family:FontAwesome;left:calc(50% - 3px);position:absolute;top:calc(50% - 6px);transition:all .2s ease-out}body.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle,body.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background:#333;border:none;box-shadow:none}body.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{top:-3px}body.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle:last-child{margin-left:-12px}body.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content{background:#eee;margin:20px 0}body.woocommerce-page .widget_price_filter .price_slider_wrapper .price_label{font-size:16px;line-height:44px}body.woocommerce-page .widget_product_categories ul{list-style:none;padding:0}body.woocommerce-page .widget_product_categories ul>li{margin:2px 0}body.woocommerce-page .widget_product_categories ul>li>a{background:#eee;border-radius:2px;color:#999;display:block;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:13px;padding:18px 20px;text-transform:uppercase;transition:all .2s ease-out}body.woocommerce-page .widget_product_categories ul>li>a:hover{background:#f7c51e;color:#333;text-decoration:none}body.woocommerce-page .widget_product_categories ul>li>a:active{background:#e4b108;border-color:rgba(0,0,0,.05);box-shadow:inset 0 1px 2px rgba(0,0,0,.125);color:#333}body.woocommerce-page .widget_product_categories ul>li.current-menu-item a{background:#f3bd09;color:#333;text-decoration:none}body.woocommerce-page .widget_product_categories ul>li:first-of-type{margin-top:0}body.woocommerce-page .widget_product_categories ul .cat-parent a{margin:2px 0}body.woocommerce-page .widget_product_categories ul .cat-parent a:first-of-type{margin-top:0}body.woocommerce-page .widget_product_categories .children a{padding-left:30px}body.woocommerce-page .widget_product_categories .children .children a{padding-left:40px}body.woocommerce-page .widget_product_categories .children .children .children a{padding-left:50px}body.woocommerce-page .widget_product_categories .children .children .children .children a{padding-left:60px}body.woocommerce-page .widget_product_categories .children .children .children .children .children a{padding-left:70px}body.woocommerce-page ul.product_list_widget a{color:#333}body.woocommerce-page ul.product_list_widget li img{border-radius:2px;box-shadow:none;height:40px;margin-bottom:15px;width:40px}body.woocommerce-page .widget_product_search .screen-reader-text{display:none}body.woocommerce-page .widget_product_search .search-field{background-color:#eee;border:1px solid #ddd;border-radius:2px;font-weight:400;height:40px;margin-bottom:10px;padding:6px 5px 6px 10px;width:100%}@media(min-width:992px){body.woocommerce-page .widget_product_search .search-field{border-bottom-right-radius:0;border-right:none;border-top-right-radius:0;float:left;width:70%}}body.woocommerce-page .widget_product_search .search-field:focus{background:#fff}body.woocommerce-page .widget_product_search .search-field+button,body.woocommerce-page .widget_product_search .search-field+input{background-color:#f7c51e;border:0;border-radius:2px;color:#333;font-weight:700;height:40px;transition:all .2s ease-out;width:100%}@media(min-width:992px){body.woocommerce-page .widget_product_search .search-field+button,body.woocommerce-page .widget_product_search .search-field+input{border-bottom-left-radius:0;border-top-left-radius:0;width:30%}}body.woocommerce-page .widget_product_search .search-field+button:focus,body.woocommerce-page .widget_product_search .search-field+button:hover,body.woocommerce-page .widget_product_search .search-field+input:focus,body.woocommerce-page .widget_product_search .search-field+input:hover{background:#eeb908;outline:none}body.woocommerce-page .tagcloud a{background:#f7c51e;border-radius:2px;color:#666;display:inline-block;margin:2px 0;padding:5px 8px;transition:all .2s ease-out}body.woocommerce-page .tagcloud a:hover{background:#eeb908;color:#333}body.woocommerce-page div.product div.images{margin-bottom:30px}body.woocommerce-page div.product div.images img{border-radius:2px;box-shadow:none}body.woocommerce-page div.product div.images div.thumbnails{padding-top:0}body.woocommerce-page div.product p.price{color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:30px;font-weight:700}body.woocommerce-page div.product p.price ins{text-decoration:none}body.woocommerce-page div.product p.price del{font-family:Source Sans Pro,Helvetica,Arial,sans-serif;font-weight:400}body.woocommerce-page div.product form.cart div.quantity{margin-right:0}body.woocommerce-page div.product form.cart .button.single_add_to_cart_button{margin-left:6%;margin-right:0;width:75%}body.woocommerce-page div.product form.cart .variations{width:100%}body.woocommerce-page div.product form.cart .variations td.label{color:#333;padding-right:0;padding-top:10px;width:20%}body.woocommerce-page div.product form.cart .variations .value{padding-left:5%;width:75%}body.woocommerce-page div.product form.cart .variations select{background-color:#fff;border:1px solid #ddd;border-radius:2px;padding:10px;width:100%}body.woocommerce-page div.product form.cart .variations .reset_variations{display:inline-block}body.woocommerce-page div.product form.cart .single_variation .price{color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:16px}body.woocommerce-page div.product form.cart .single_variation .price del{color:#999;font-family:Source Sans Pro,Helvetica,Arial,sans-serif;font-size:14px}body.woocommerce-page div.product form.cart .single_variation .price ins{text-decoration:none}body.woocommerce-page div.product .woocommerce-tabs ul.tabs{background-color:#eee;border-radius:2px;margin-bottom:0;padding:0}body.woocommerce-page div.product .woocommerce-tabs ul.tabs:before{display:none}body.woocommerce-page div.product .woocommerce-tabs ul.tabs li{background:#eee;border:1px solid transparent;border-radius:0;border-radius:2px;box-shadow:0 0 0 2px #fff}body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before{display:none}body.woocommerce-page div.product .woocommerce-tabs ul.tabs li a{color:#999;font-family:Montserrat,Helvetica,Arial,sans-serif;padding:17px 15px;text-shadow:none;text-transform:uppercase}body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:hover a{color:#333}body.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active{background-color:#f7c51e;border:1px solid transparent}body.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a{color:#333}body.woocommerce-page div.product .woocommerce-tabs h2{font-size:18px}body.woocommerce-page div.product .woocommerce-tabs .commentlist{padding-left:0}body.woocommerce-page #reviews #comments{width:100%}body.woocommerce-page #reviews #comments ol.commentlist li .comment-text{border:1px solid #eee}body.woocommerce-page #reviews #comments ol.commentlist li .comment-text .meta{color:#666}body.woocommerce-page #reviews .comment-reply-title{font-size:18px;margin-top:15px}body.woocommerce-page #reviews label{font-weight:400}body.woocommerce-page .woocommerce-error,body.woocommerce-page .woocommerce-info,body.woocommerce-page .woocommerce-message{background:#f7c51e;border-radius:4px;border-top:0;box-shadow:none;color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;line-height:44px;padding:6px 6px 6px 60px!important;text-shadow:none}body.woocommerce-page .woocommerce-error .showcoupon,body.woocommerce-page .woocommerce-error .showlogin,body.woocommerce-page .woocommerce-info .showcoupon,body.woocommerce-page .woocommerce-info .showlogin,body.woocommerce-page .woocommerce-message .showcoupon,body.woocommerce-page .woocommerce-message .showlogin{color:#333;text-decoration:underline}body.woocommerce-page .woocommerce-error .showcoupon:hover,body.woocommerce-page .woocommerce-error .showlogin:hover,body.woocommerce-page .woocommerce-info .showcoupon:hover,body.woocommerce-page .woocommerce-info .showlogin:hover,body.woocommerce-page .woocommerce-message .showcoupon:hover,body.woocommerce-page .woocommerce-message .showlogin:hover{color:#000}body.woocommerce-page .woocommerce-error a.button,body.woocommerce-page .woocommerce-info a.button,body.woocommerce-page .woocommerce-message a.button{margin-bottom:0;margin-right:0}body.woocommerce-page .woocommerce-error:before,body.woocommerce-page .woocommerce-info:before,body.woocommerce-page .woocommerce-message:before{background-color:transparent;box-shadow:none;color:#333;font-family:FontAwesome;font-size:18px;padding-top:0;top:calc(50% - 19px)}body.woocommerce-page .woocommerce-error .wc-forward:after,body.woocommerce-page .woocommerce-info .wc-forward:after,body.woocommerce-page .woocommerce-message .wc-forward:after{display:none}body.woocommerce-page .woocommerce-message:before{content:""}body.woocommerce-page .woocommerce-info:before{content:""}body.woocommerce-page .woocommerce-error:before{content:""}body.woocommerce-page .short-description,body.woocommerce-page .woocommerce-product-details__short-description,body.woocommerce-page [itemprop=description]{border-top:1px solid rgba(0,0,0,.08);margin-bottom:20px;margin-top:20px;padding-top:15px}body.woocommerce-page .short-description:before,body.woocommerce-page .woocommerce-product-details__short-description:before,body.woocommerce-page [itemprop=description]:before{background-color:#f7c51e;content:"";height:3px;left:0;position:absolute;top:-3px;width:30px}body.woocommerce-page .short-description p,body.woocommerce-page .woocommerce-product-details__short-description p,body.woocommerce-page [itemprop=description] p{margin-bottom:0}body.woocommerce-page #review_form #respond input,body.woocommerce-page #review_form #respond textarea{background-color:#eee;border:1px solid #ddd;border-radius:2px;padding:8px}body.woocommerce-page #review_form #respond input:focus,body.woocommerce-page #review_form #respond textarea:focus{background-color:#fff;outline:0}body.woocommerce-page #review_form #respond input#submit{background:#f7c51e;border:none;box-shadow:none;color:#333;display:inline-block;font-family:Montserrat,Helvetica,Arial,sans-serif;margin-bottom:5px;margin-right:5px;padding:15px;text-shadow:none;text-transform:uppercase;transition:all .2s ease-out}body.woocommerce-page #review_form #respond input#submit:hover{background:#eeb908;text-shadow:none}body.woocommerce-page #review_form #respond input#submit:active{outline:0;top:0}body.woocommerce-page #review_form #respond input#submit:focus{outline:0}body.woocommerce-page #review_form #respond .comment-reply-title{margin-bottom:10px}body.woocommerce-page .related h2,body.woocommerce-page .upsells.products h2{font-size:18px}@media(max-width:767px){body.woocommerce-page .related ul.products li:nth-child(odd).product,body.woocommerce-page .upsells.products ul.products li:nth-child(odd).product{margin-right:4%}body.woocommerce-page .related ul.products li:nth-child(2n).product,body.woocommerce-page .upsells.products ul.products li:nth-child(2n).product{margin-right:0}}body.woocommerce-page .related ul.products li.product,body.woocommerce-page .upsells.products ul.products li.product{width:48%}@media(min-width:768px){body.woocommerce-page .related ul.products li.product,body.woocommerce-page .upsells.products ul.products li.product{width:22.05%}}body.woocommerce-page p.stars a{color:#f7c51e}body.woocommerce-page .entry-summary .entry-title{font-size:30px;margin-bottom:5px}body.woocommerce-page .quantity{border-radius:2px;width:19%}body.woocommerce-page .quantity .qty{border:1px solid #ddd;border-radius:2px;color:#999;font-family:Montserrat,Helvetica,Arial,sans-serif;height:44px;padding:0 0 0 10px;width:100%}body.woocommerce-page button.button.alt{background:#f7c51e;border-radius:2px;color:#333;outline:none;text-shadow:none}body.woocommerce-page button.button.alt:hover{background:#eeb908;color:#333;text-shadow:none}body.woocommerce-page table.shop_table th{padding:15px 12px;text-transform:uppercase}body.woocommerce-page table.shop_table .product-remove{padding:8px;width:30px}body.woocommerce-page table.shop_table .product-remove a.remove{background-color:#eee;border-radius:2px;color:#333!important;height:30px;line-height:30px;width:30px}body.woocommerce-page table.shop_table .product-remove a.remove:hover{background-color:#333;color:#eee!important}body.woocommerce-page table.shop_table .product-thumbnail{border-radius:2px;padding-left:0}body.woocommerce-page table.shop_table .product-thumbnail .attachment-shop_thumbnail{margin-bottom:0}body.woocommerce-page table.shop_table .product-name a{color:#999;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:12px}body.woocommerce-page table.shop_table .product-price{font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700}body.woocommerce-page table.shop_table .product-quantity .quantity{margin:0;width:60px}body.woocommerce-page table.shop_table .product-quantity .quantity .qty{font-size:12px;height:30px}body.woocommerce-page table.shop_table .product-subtotal .amount{color:#333;font-weight:"Montserrat",Helvetica,Arial,sans-serif;font-weight:700}body.woocommerce-page table.shop_table td.actions .coupon .input-text{background-color:#eee;border:1px solid #ddd;border-radius:2px;box-shadow:none;margin-right:12px;width:100px}body.woocommerce-page table.shop_table td.actions .coupon .input-text:focus{background-color:#fff}body.woocommerce-page table.shop_table td.actions input.button{font-size:12px;height:30px;padding:10px 15px}body.woocommerce-page table.shop_table td.actions input.button.alt{background:#f7c51e;color:#333;margin:0 0 0 6px}body.woocommerce-page table.shop_table td.actions input.button.alt:hover{background:#eeb908}body.woocommerce-page .cart-collaterals .cart_totals h2{font-size:18px;margin-top:18px;text-align:left}body.woocommerce-page .cart-collaterals .cart_totals table{border:1px solid rgba(0,0,0,.12);border-radius:2px;width:100%}body.woocommerce-page .cart-collaterals .cart_totals table tr td,body.woocommerce-page .cart-collaterals .cart_totals table tr th{border-top:1px solid rgba(0,0,0,.12);padding:10px 15px}body.woocommerce-page .cart-collaterals .cart_totals table tr th{border-right:1px solid rgba(0,0,0,.12);color:#333;font-family:Montserrat,Helvetica,Arial,sans-serif;text-transform:uppercase;width:45%}body.woocommerce-page .cart-collaterals .cart_totals table tr td{background-color:#eee;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:12px;text-align:left;vertical-align:middle}body.woocommerce-page .cart-collaterals .cart_totals table tr td strong .amount{color:#333}body.woocommerce-page .cart-collaterals .shipping_calculator h2 .shipping-calculator-button{color:#333;font-size:18px}body.woocommerce-page .cart-collaterals .shipping_calculator h2 .shipping-calculator-button:after{content:"";font-family:FontAwesome}body.woocommerce-page form .form-row input.input-text,body.woocommerce-page form .form-row select,body.woocommerce-page form .form-row textarea{background-color:#f2f2f2;border:1px solid #ddd;border-radius:2px;box-shadow:none;padding:10px;width:100%}body.woocommerce-page form .form-row input.input-text:focus,body.woocommerce-page form .form-row textarea:focus{background-color:#fff}body.woocommerce-page form .form-row .chosen-container-single .chosen-single{background:#eee;border:1px solid #ddd;border-radius:2px;box-shadow:none;color:#999;height:40px;padding:5px 10px;vertical-align:middle}body.woocommerce-page .cross-sells h2{font-size:18px}body.woocommerce-page #customer_details .checkbox{display:inline-block;margin:0 20px 0 0}body.woocommerce-page form.checkout_coupon{padding-bottom:6px}body.woocommerce-page #payment{background:#eee;border:1px solid #ddd;border-radius:2px;color:#333;padding:0 10px}body.woocommerce-page #payment #place_order{background-color:#f7c51e;color:#333}body.woocommerce-page #payment #place_order:hover{background-color:#eeb908}body.woocommerce-page #payment ul.payment_methods{border-bottom:1px solid #ddd}body.woocommerce-page #payment ul.payment_methods li input{margin-right:5px;vertical-align:middle}body.woocommerce-page #payment div.form-row{border-top:0}body.woocommerce-page #payment div.payment_box{background:#eee;border:1px solid #ddd;border-radius:2px;box-shadow:none}body.woocommerce-page #payment div.payment_box:after{border-bottom-color:#ddd}body.woocommerce-page table.shop_table th{color:#333}body.woocommerce-page table.shop_table tbody tr:first-child td{border-top:1px solid rgba(0,0,0,.1)}body.woocommerce-page table.shop_table tfoot td{color:#333}body.woocommerce-page a.button.added:before{right:-22px;top:12px}body.woocommerce-page td.product-name dl.variation dd{margin-bottom:0}body.woocommerce-shop-page .sidebar:first-of-type{margin-top:28px}.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{background-color:#f7c51e;color:#333}.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover{background-color:#eeb908;color:#333}.woocommerce button.button.alt:disabled,.woocommerce button.button.alt:disabled:hover,.woocommerce button.button.alt:disabled[disabled],.woocommerce button.button.alt:disabled[disabled]:hover{background-color:#f7c51e}html body.woocommerce-page nav.woocommerce-pagination ul li .next:hover,html body.woocommerce-page nav.woocommerce-pagination ul li .prev:hover{color:#f7c51e}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{text-align:center;width:1.2857142857em}.fa-ul{list-style-type:none;margin-left:2.1428571429em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2.1428571429em;position:absolute;text-align:center;top:.1428571429em;width:2.1428571429em}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{height:auto;margin:0;overflow:visible;position:static;width:auto;clip:auto}.fa-twitter:before{content:"";font-family:bootstrap-icons-only-x;vertical-align:text-bottom}




/* Get the bourbon mixin from http://bourbon.io */
/* Reset */
.flip-clock-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc; }

.flip-clock-wrapper a:hover {
  color: #fff; }

.flip-clock-wrapper ul {
  list-style: none; }

.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table; }

.flip-clock-wrapper.clearfix:after {
  clear: both; }

.flip-clock-wrapper.clearfix {
  *zoom: 1; }

/* Main */
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none; }

.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important; }

.flip-clock-meridium a { color: #313333; }

.flip-clock-wrapper {
  text-align: center;
  position: relative;
  width: 100%;
  margin: 1em;
}

.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.flip-clock-wrapper:after {
    clear: both;
}

/* Skeleton */
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 5px;
  width: 60px;
  height: 90px;
  font-size: 80px;
  font-weight: bold;
  line-height: 87px;
  border-radius: 6px;
  background: #000;
}

.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 87px;
  text-decoration: none !important;
}

.flip-clock-wrapper ul li:first-child {
  z-index: 2; }

.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important; }

.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden; 
  outline: 1px solid transparent; }

.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2; }

.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0; }

.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4); }

.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-shadow: 0 1px 2px #000;
  text-align: center;
  background-color: #333;
  border-radius: 6px;
  font-size: 70px; }

.flip-clock-wrapper ul li a div.up div.inn {
  top: 0; }

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0; }

/* PLAY */
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3; }

.flip-clock-wrapper .flip {   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7); }

.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5; }

.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 100px; }

.flip-clock-divider:first-child {
  width: 0; }

.flip-clock-dot {
  display: block;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  left: 5px; }

.flip-clock-divider .flip-clock-label {
  position: absolute;
  top: -1.5em;
  right: -86px;
  color: black;
  text-shadow: none; }

.flip-clock-divider.minutes .flip-clock-label {
  right: -88px; }

.flip-clock-divider.seconds .flip-clock-label {
  right: -91px; }

.flip-clock-dot.top {
  top: 30px; }

.flip-clock-dot.bottom {
  bottom: 30px; }

@-webkit-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@-moz-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@-o-keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

@keyframes asd {
  0% {
    z-index: 2; }

  20% {
    z-index: 4; }

  100% {
    z-index: 4; } }

.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both; }

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg); }

  100% {
    -webkit-transform: rotateX(0deg); } }

@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg); }

  100% {
    -moz-transform: rotateX(0deg); } }

@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg); }

  100% {
    -o-transform: rotateX(0deg); } }

@keyframes turn {
  0% {
    transform: rotateX(90deg); }

  100% {
    transform: rotateX(0deg); } }

.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both; }

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg); }

  100% {
    -webkit-transform: rotateX(-90deg); } }

@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg); }

  100% {
    -moz-transform: rotateX(-90deg); } }

@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg); }

  100% {
    -o-transform: rotateX(-90deg); } }

@keyframes turn2 {
  0% {
    transform: rotateX(0deg); }

  100% {
    transform: rotateX(-90deg); } }

.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3; }

/* SHADOW */
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both; }

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both; }

/*DOWN*/
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both; }

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both; }

@-webkit-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes show {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-webkit-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-moz-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-o-keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@keyframes hide {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }
.wp-block-navigation.wpbbe-responsive-navigation .wp-block-navigation__responsive-container-open:not(.always-shown){display:flex}.wp-block-navigation.wpbbe-responsive-navigation .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation.wpbbe-responsive-navigation .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:revert}
.wp-block-navigation:not(.is-responsive).has-hover .wp-block-navigation-item__content,.wp-block-navigation:not(.is-responsive).has-submenu-hover .wp-block-navigation-item__content{transition:color .1s}.wp-block-navigation:not(.is-responsive).has-hover .wp-block-navigation-item__content:hover{color:var(--wp-navigation-hover,initial)}.wp-block-navigation:not(.is-responsive).has-submenu-hover .is-menu-open .wp-block-navigation-item__content:hover,.wp-block-navigation:not(.is-responsive).has-submenu-hover .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover{color:var(--wp-navigation-submenu-hover,initial)}.wp-block-navigation.is-responsive.has-hover .wp-block-navigation.is-responsive .wp-block-navigation-item__content,.wp-block-navigation.is-responsive.has-submenu-hover .wp-block-navigation.is-responsive .wp-block-navigation-item__content{transition:color .1s}.wp-block-navigation.is-responsive.has-hover .wp-block-navigation.is-responsive .wp-block-navigation-item__content:hover{color:var(--wp-navigation-hover,initial)}.wp-block-navigation.is-responsive.has-submenu-hover .is-menu-open .wp-block-navigation.is-responsive .wp-block-navigation-item__content:hover,.wp-block-navigation.is-responsive.has-submenu-hover .wp-block-navigation.is-responsive .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover{color:var(--wp-navigation-submenu-hover,initial)}
.wp-block-button.has-hover-text :is(.wp-element-button:hover,.wp-block-button__link:hover){color:var(--wp-block-button--hover-text,initial)!important}.wp-block-button.has-hover-background :is(.wp-element-button:hover,.wp-block-button__link:hover){background-color:var(--wp-block-button--hover-background,initial)!important}.wp-block-button.has-hover-border :is(.wp-element-button:hover,.wp-block-button__link:hover){border-color:var(--wp-block-button--hover-border,initial)!important}.wp-block-button.has-hover-background :is(.wp-element-button,.wp-block-button__link),.wp-block-button.has-hover-border :is(.wp-element-button,.wp-block-button__link),.wp-block-button.has-hover-text :is(.wp-element-button,.wp-block-button__link){transition:color .1s,background-color .1s,border-color .1s}
.wpbbe-flex-item-prevent-shrinking{flex-shrink:0;max-width:100%}
[data-aos]{animation-delay:var(--aos-delay,0s);animation-duration:var(--aos-duration,.3s);animation-fill-mode:forwards;animation-timing-function:var(--aos-easing,ease);opacity:0;transform:translateZ(0)}[data-aos][data-aos-easing=linear]{--aos-easing:cubic-bezier(0.25,0.25,0.75,0.75)}[data-aos][data-aos-easing=ease]{--aos-easing:cubic-bezier(0.25,0.1,0.25,1)}[data-aos][data-aos-easing=ease-in]{--aos-easing:cubic-bezier(0.42,0,1,1)}[data-aos][data-aos-easing=ease-out]{--aos-easing:cubic-bezier(0,0,0.58,1)}[data-aos][data-aos-easing=ease-in-out]{--aos-easing:cubic-bezier(0.42,0,0.58,1)}[data-aos][data-aos-easing=ease-back]{--aos-easing:cubic-bezier(0.175,0.885,0.32,1.275)}[data-aos][data-aos-easing=ease-in-quad]{--aos-easing:cubic-bezier(0.55,0.085,0.68,0.53)}[data-aos][data-aos-easing=ease-out-quad]{--aos-easing:cubic-bezier(0.25,0.46,0.45,0.94)}[data-aos][data-aos-easing=ease-in-out-quad]{--aos-easing:cubic-bezier(0.455,0.03,0.515,0.955)}[data-aos][data-aos-easing=ease-in-quart]{--aos-easing:cubic-bezier(0.895,0.03,0.685,0.22)}[data-aos][data-aos-easing=ease-out-quart]{--aos-easing:cubic-bezier(0.165,0.84,0.44,1)}[data-aos][data-aos-easing=ease-in-out-quart]{--aos-easing:cubic-bezier(0.77,0,0.175,1)}[data-aos][data-aos-easing=ease-in-expo]{--aos-easing:cubic-bezier(0.95,0.05,0.795,0.035)}[data-aos][data-aos-easing=ease-out-expo]{--aos-easing:cubic-bezier(0.19,1,0.22,1)}[data-aos][data-aos-easing=ease-in-out-expo]{--aos-easing:cubic-bezier(1,0,0,1)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}[data-aos].aos-animate{animation-name:var(--aos-animation)}[data-aos|=fade-in],[data-aos|=fade]{--aos-animation:fadeIn}[data-aos|=fade-out]{--aos-animation:fadeOut}@keyframes slideUp{0%{opacity:0;transform:translate3d(0,30px,0)}to{opacity:1;transform:none}}@keyframes slideDown{0%{opacity:0;transform:translate3d(0,-30px,0)}to{opacity:1;transform:none}}@keyframes slideLeft{0%{opacity:0;transform:translate3d(50px,0,0)}to{opacity:1;transform:none}}@keyframes slideRight{0%{opacity:0;transform:translate3d(-50px,0,0)}to{opacity:1;transform:none}}[data-aos=slide-up]{--aos-animation:slideUp}[data-aos=slide-down]{--aos-animation:slideDown}[data-aos=slide-left]{--aos-animation:slideLeft}[data-aos=slide-right]{--aos-animation:slideRight}@keyframes zoomIn{0%{opacity:0;transform:translateZ(0) scale(.8)}to{opacity:1;transform:translateZ(0) scale(1)}}@keyframes zoomOut{0%{opacity:0;transform:translateZ(0) scale(1.2)}to{opacity:1;transform:translateZ(0) scale(1)}}[data-aos=zoom-in]{--aos-animation:zoomIn}[data-aos=zoom-out]{--aos-animation:zoomOut}
html.slb_overlay object,html.slb_overlay embed,html.slb_overlay iframe{visibility:hidden}html.slb_overlay #slb_viewer_wrap object,html.slb_overlay #slb_viewer_wrap embed,html.slb_overlay #slb_viewer_wrap iframe{visibility:visible}
/*! elementor-icons - v5.53.0 - 16-07-2026 */
[class*=" eicon-"],[class^=eicon]{display:inline-block;font-family:eicons;font-size:inherit;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@keyframes a{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:a 2s infinite linear}.eicon-editor-link:before{content:"\e800"}.eicon-editor-unlink:before{content:"\e801"}.eicon-editor-external-link:before{content:"\e802"}.eicon-editor-close:before{content:"\e803"}.eicon-editor-list-ol:before{content:"\e804"}.eicon-editor-list-ul:before{content:"\e805"}.eicon-editor-bold:before{content:"\e806"}.eicon-editor-italic:before{content:"\e807"}.eicon-editor-underline:before{content:"\e808"}.eicon-editor-paragraph:before{content:"\e809"}.eicon-editor-h1:before{content:"\e80a"}.eicon-editor-h2:before{content:"\e80b"}.eicon-editor-h3:before{content:"\e80c"}.eicon-editor-h4:before{content:"\e80d"}.eicon-editor-h5:before{content:"\e80e"}.eicon-editor-h6:before{content:"\e80f"}.eicon-editor-quote:before{content:"\e810"}.eicon-editor-code:before{content:"\e811"}.eicon-elementor:before{content:"\e812"}.eicon-elementor-circle:before{content:"\e813"}.eicon-pojome:before{content:"\e814"}.eicon-plus:before{content:"\e815"}.eicon-menu-bar:before{content:"\e816"}.eicon-apps:before{content:"\e817"}.eicon-accordion:before{content:"\e818"}.eicon-alert:before{content:"\e819"}.eicon-animation-text:before{content:"\e81a"}.eicon-animation:before{content:"\e81b"}.eicon-banner:before{content:"\e81c"}.eicon-blockquote:before{content:"\e81d"}.eicon-button:before{content:"\e81e"}.eicon-call-to-action:before{content:"\e81f"}.eicon-captcha:before{content:"\e820"}.eicon-carousel:before{content:"\e821"}.eicon-checkbox:before{content:"\e822"}.eicon-columns:before{content:"\e823"}.eicon-countdown:before{content:"\e824"}.eicon-counter:before{content:"\e825"}.eicon-date:before{content:"\e826"}.eicon-divider-shape:before{content:"\e827"}.eicon-divider:before{content:"\e828"}.eicon-download-button:before{content:"\e829"}.eicon-dual-button:before{content:"\e82a"}.eicon-email-field:before{content:"\e82b"}.eicon-facebook-comments:before{content:"\e82c"}.eicon-facebook-like-box:before{content:"\e82d"}.eicon-form-horizontal:before{content:"\e82e"}.eicon-form-vertical:before{content:"\e82f"}.eicon-gallery-grid:before{content:"\e830"}.eicon-gallery-group:before{content:"\e831"}.eicon-gallery-justified:before{content:"\e832"}.eicon-gallery-masonry:before{content:"\e833"}.eicon-icon-box:before{content:"\e834"}.eicon-image-before-after:before{content:"\e835"}.eicon-image-box:before{content:"\e836"}.eicon-image-hotspot:before{content:"\e837"}.eicon-image-rollover:before{content:"\e838"}.eicon-info-box:before{content:"\e839"}.eicon-inner-section:before{content:"\e83a"}.eicon-mailchimp:before{content:"\e83b"}.eicon-menu-card:before{content:"\e83c"}.eicon-navigation-horizontal:before{content:"\e83d"}.eicon-nav-menu:before{content:"\e83e"}.eicon-navigation-vertical:before{content:"\e83f"}.eicon-number-field:before{content:"\e840"}.eicon-parallax:before{content:"\e841"}.eicon-php7:before{content:"\e842"}.eicon-post-list:before{content:"\e843"}.eicon-post-slider:before{content:"\e844"}.eicon-post:before{content:"\e845"}.eicon-posts-carousel:before{content:"\e846"}.eicon-posts-grid:before{content:"\e847"}.eicon-posts-group:before{content:"\e848"}.eicon-posts-justified:before{content:"\e849"}.eicon-posts-masonry:before{content:"\e84a"}.eicon-posts-ticker:before{content:"\e84b"}.eicon-price-list:before{content:"\e84c"}.eicon-price-table:before{content:"\e84d"}.eicon-radio:before{content:"\e84e"}.eicon-rtl:before{content:"\e84f"}.eicon-scroll:before{content:"\e850"}.eicon-search:before{content:"\e851"}.eicon-select:before{content:"\e852"}.eicon-share:before{content:"\e853"}.eicon-sidebar:before{content:"\e854"}.eicon-skill-bar:before{content:"\e855"}.eicon-slider-3d:before{content:"\e856"}.eicon-slider-album:before{content:"\e857"}.eicon-slider-device:before{content:"\e858"}.eicon-slider-full-screen:before{content:"\e859"}.eicon-slider-push:before{content:"\e85a"}.eicon-slider-vertical:before{content:"\e85b"}.eicon-slider-video:before{content:"\e85c"}.eicon-slides:before{content:"\e85d"}.eicon-social-icons:before{content:"\e85e"}.eicon-spacer:before{content:"\e85f"}.eicon-table:before{content:"\e860"}.eicon-tabs:before{content:"\e861"}.eicon-tel-field:before{content:"\e862"}.eicon-text-area:before{content:"\e863"}.eicon-text-field:before{content:"\e864"}.eicon-thumbnails-down:before{content:"\e865"}.eicon-thumbnails-half:before{content:"\e866"}.eicon-thumbnails-right:before{content:"\e867"}.eicon-time-line:before{content:"\e868"}.eicon-toggle:before{content:"\e869"}.eicon-url:before{content:"\e86a"}.eicon-t-letter:before{content:"\e86b"}.eicon-wordpress:before{content:"\e86c"}.eicon-text:before{content:"\e86d"}.eicon-anchor:before{content:"\e86e"}.eicon-bullet-list:before{content:"\e86f"}.eicon-code:before{content:"\e870"}.eicon-favorite:before{content:"\e871"}.eicon-google-maps:before{content:"\e872"}.eicon-image:before{content:"\e873"}.eicon-photo-library:before{content:"\e874"}.eicon-woocommerce:before{content:"\e875"}.eicon-youtube:before{content:"\e876"}.eicon-flip-box:before{content:"\e877"}.eicon-settings:before{content:"\e878"}.eicon-headphones:before{content:"\e879"}.eicon-testimonial:before{content:"\e87a"}.eicon-counter-circle:before{content:"\e87b"}.eicon-person:before{content:"\e87c"}.eicon-chevron-right:before{content:"\e87d"}.eicon-chevron-left:before{content:"\e87e"}.eicon-close:before{content:"\e87f"}.eicon-file-download:before{content:"\e880"}.eicon-save:before{content:"\e881"}.eicon-zoom-in:before{content:"\e882"}.eicon-shortcode:before{content:"\e883"}.eicon-nerd:before{content:"\e884"}.eicon-device-desktop:before{content:"\e885"}.eicon-device-tablet:before{content:"\e886"}.eicon-device-mobile:before{content:"\e887"}.eicon-document-file:before{content:"\e888"}.eicon-folder-o:before{content:"\e889"}.eicon-hypster:before{content:"\e88a"}.eicon-h-align-left:before{content:"\e88b"}.eicon-h-align-right:before{content:"\e88c"}.eicon-h-align-center:before{content:"\e88d"}.eicon-h-align-stretch:before{content:"\e88e"}.eicon-v-align-top:before{content:"\e88f"}.eicon-v-align-bottom:before{content:"\e890"}.eicon-v-align-middle:before{content:"\e891"}.eicon-v-align-stretch:before{content:"\e892"}.eicon-pro-icon:before{content:"\e893"}.eicon-mail:before{content:"\e894"}.eicon-lock-user:before{content:"\e895"}.eicon-testimonial-carousel:before{content:"\e896"}.eicon-media-carousel:before{content:"\e897"}.eicon-section:before{content:"\e898"}.eicon-column:before{content:"\e899"}.eicon-edit:before{content:"\e89a"}.eicon-clone:before{content:"\e89b"}.eicon-trash:before{content:"\e89c"}.eicon-play:before{content:"\e89d"}.eicon-angle-right:before{content:"\e89e"}.eicon-angle-left:before{content:"\e89f"}.eicon-animated-headline:before{content:"\e8a0"}.eicon-menu-toggle:before{content:"\e8a1"}.eicon-fb-embed:before{content:"\e8a2"}.eicon-fb-feed:before{content:"\e8a3"}.eicon-twitter-embed:before{content:"\e8a4"}.eicon-twitter-feed:before{content:"\e8a5"}.eicon-sync:before{content:"\e8a6"}.eicon-import-export:before{content:"\e8a7"}.eicon-check-circle:before{content:"\e8a8"}.eicon-library-save:before{content:"\e8a9"}.eicon-library-download:before{content:"\e9dd"}.eicon-insert:before{content:"\e8ab"}.eicon-preview-medium:before{content:"\e8ac"}.eicon-sort-down:before{content:"\e8ad"}.eicon-sort-up:before{content:"\e8ae"}.eicon-heading:before{content:"\e8af"}.eicon-logo:before{content:"\e8b0"}.eicon-meta-data:before{content:"\e8b1"}.eicon-post-content:before{content:"\e8b2"}.eicon-post-excerpt:before{content:"\e8b3"}.eicon-post-navigation:before{content:"\e8b4"}.eicon-yoast:before{content:"\e8b5"}.eicon-nerd-chuckle:before{content:"\e8b6"}.eicon-nerd-wink:before{content:"\e8b7"}.eicon-comments:before{content:"\e8b8"}.eicon-download-circle-o:before{content:"\e8b9"}.eicon-library-upload:before{content:"\e8ba"}.eicon-save-o:before{content:"\e8bb"}.eicon-upload-circle-o:before{content:"\e8bc"}.eicon-ellipsis-h:before{content:"\e8bd"}.eicon-ellipsis-v:before{content:"\e8be"}.eicon-arrow-left:before{content:"\e8bf"}.eicon-arrow-right:before{content:"\e8c0"}.eicon-arrow-up:before{content:"\e8c1"}.eicon-arrow-down:before{content:"\e8c2"}.eicon-play-o:before{content:"\e8c3"}.eicon-archive-posts:before{content:"\e8c4"}.eicon-archive-title:before{content:"\e8c5"}.eicon-featured-image:before{content:"\e8c6"}.eicon-post-info:before{content:"\e8c7"}.eicon-post-title:before{content:"\e8c8"}.eicon-site-logo:before{content:"\e8c9"}.eicon-site-search:before{content:"\e8ca"}.eicon-site-title:before{content:"\e8cb"}.eicon-plus-square:before{content:"\e8cc"}.eicon-minus-square:before{content:"\e8cd"}.eicon-cloud-check:before{content:"\e8ce"}.eicon-drag-n-drop:before{content:"\e8cf"}.eicon-welcome:before{content:"\e8d0"}.eicon-handle:before{content:"\e8d1"}.eicon-cart:before{content:"\e8d2"}.eicon-product-add-to-cart:before{content:"\e8d3"}.eicon-product-breadcrumbs:before{content:"\e8d4"}.eicon-product-categories:before{content:"\e8d5"}.eicon-product-description:before{content:"\e8d6"}.eicon-product-images:before{content:"\e8d7"}.eicon-product-info:before{content:"\e8d8"}.eicon-product-meta:before{content:"\e8d9"}.eicon-product-pages:before{content:"\e8da"}.eicon-product-price:before{content:"\e8db"}.eicon-product-rating:before{content:"\e8dc"}.eicon-product-related:before{content:"\e8dd"}.eicon-product-stock:before{content:"\e8de"}.eicon-product-tabs:before{content:"\e8df"}.eicon-product-title:before{content:"\e8e0"}.eicon-product-upsell:before{content:"\e8e1"}.eicon-products:before{content:"\e8e2"}.eicon-bag-light:before{content:"\e8e3"}.eicon-bag-medium:before{content:"\e8e4"}.eicon-bag-solid:before{content:"\e8e5"}.eicon-basket-light:before{content:"\e8e6"}.eicon-basket-medium:before{content:"\e8e7"}.eicon-basket-solid:before{content:"\e8e8"}.eicon-cart-light:before{content:"\e8e9"}.eicon-cart-medium:before{content:"\e8ea"}.eicon-cart-solid:before{content:"\e8eb"}.eicon-exchange:before{content:"\e8ec"}.eicon-preview-thin:before{content:"\e8ed"}.eicon-device-laptop:before{content:"\e8ee"}.eicon-collapse:before{content:"\e8ef"}.eicon-expand:before{content:"\e8f0"}.eicon-navigator:before{content:"\e8f1"}.eicon-plug:before{content:"\e8f2"}.eicon-dashboard:before{content:"\e8f3"}.eicon-typography:before{content:"\e8f4"}.eicon-info-circle-o:before{content:"\e8f5"}.eicon-integration:before{content:"\e8f6"}.eicon-plus-circle-o:before{content:"\e8f7"}.eicon-rating:before{content:"\e8f8"}.eicon-review:before{content:"\e8f9"}.eicon-tools:before{content:"\e8fa"}.eicon-loading:before{content:"\e8fb"}.eicon-sitemap:before{content:"\e8fc"}.eicon-click:before{content:"\e8fd"}.eicon-clock:before{content:"\e8fe"}.eicon-library-open:before{content:"\e8ff"}.eicon-warning:before{content:"\e900"}.eicon-flow:before{content:"\e901"}.eicon-cursor-move:before{content:"\e902"}.eicon-arrow-circle-left:before{content:"\e903"}.eicon-flash:before{content:"\e904"}.eicon-redo:before{content:"\e905"}.eicon-ban:before{content:"\e906"}.eicon-barcode:before{content:"\e907"}.eicon-calendar:before{content:"\e908"}.eicon-caret-left:before{content:"\e909"}.eicon-caret-right:before{content:"\e90a"}.eicon-caret-up:before{content:"\e90b"}.eicon-chain-broken:before{content:"\e90c"}.eicon-check-circle-o:before{content:"\e90d"}.eicon-check:before{content:"\e90e"}.eicon-chevron-double-left:before{content:"\e90f"}.eicon-chevron-double-right:before{content:"\e910"}.eicon-undo:before{content:"\e911"}.eicon-filter:before{content:"\e912"}.eicon-circle-o:before{content:"\e913"}.eicon-circle:before{content:"\e914"}.eicon-clock-o:before{content:"\e915"}.eicon-cog:before{content:"\e916"}.eicon-cogs:before{content:"\e917"}.eicon-commenting-o:before{content:"\e918"}.eicon-copy:before{content:"\e919"}.eicon-database:before{content:"\e91a"}.eicon-dot-circle-o:before{content:"\e91b"}.eicon-envelope:before{content:"\e91c"}.eicon-external-link-square:before{content:"\e91d"}.eicon-eyedropper:before{content:"\e91e"}.eicon-folder:before{content:"\e91f"}.eicon-font:before{content:"\e920"}.eicon-adjust:before{content:"\e921"}.eicon-lightbox:before{content:"\e922"}.eicon-heart-o:before{content:"\e923"}.eicon-history:before{content:"\e924"}.eicon-image-bold:before{content:"\e925"}.eicon-info-circle:before{content:"\e926"}.eicon-link:before{content:"\e927"}.eicon-long-arrow-left:before{content:"\e928"}.eicon-long-arrow-right:before{content:"\e929"}.eicon-caret-down:before{content:"\e92a"}.eicon-paint-brush:before{content:"\e92b"}.eicon-pencil:before{content:"\e92c"}.eicon-plus-circle:before{content:"\e92d"}.eicon-zoom-in-bold:before{content:"\e92e"}.eicon-sort-amount-desc:before{content:"\e92f"}.eicon-sign-out:before{content:"\e930"}.eicon-spinner:before{content:"\e931"}.eicon-square:before{content:"\e932"}.eicon-star-o:before{content:"\e933"}.eicon-star:before{content:"\e934"}.eicon-text-align-justify:before{content:"\e935"}.eicon-text-align-center:before{content:"\e936"}.eicon-tags:before{content:"\e937"}.eicon-text-align-left:before{content:"\e938"}.eicon-text-align-right:before{content:"\e939"}.eicon-close-circle:before{content:"\e93a"}.eicon-trash-o:before{content:"\e93b"}.eicon-font-awesome:before{content:"\e93c"}.eicon-user-circle-o:before{content:"\e93d"}.eicon-video-camera:before{content:"\e93e"}.eicon-heart:before{content:"\e93f"}.eicon-wrench:before{content:"\e940"}.eicon-help:before{content:"\e941"}.eicon-help-o:before{content:"\e942"}.eicon-zoom-out-bold:before{content:"\e943"}.eicon-plus-square-o:before{content:"\e944"}.eicon-minus-square-o:before{content:"\e945"}.eicon-minus-circle:before{content:"\e946"}.eicon-minus-circle-o:before{content:"\e947"}.eicon-code-bold:before{content:"\e948"}.eicon-cloud-upload:before{content:"\e949"}.eicon-search-bold:before{content:"\e94a"}.eicon-map-pin:before{content:"\e94b"}.eicon-meetup:before{content:"\e94c"}.eicon-slideshow:before{content:"\e94d"}.eicon-t-letter-bold:before{content:"\e94e"}.eicon-preferences:before{content:"\e94f"}.eicon-table-of-contents:before{content:"\e950"}.eicon-tv:before{content:"\e951"}.eicon-upload:before{content:"\e952"}.eicon-instagram-comments:before{content:"\e953"}.eicon-instagram-nested-gallery:before{content:"\e954"}.eicon-instagram-post:before{content:"\e955"}.eicon-instagram-video:before{content:"\e956"}.eicon-instagram-gallery:before{content:"\e957"}.eicon-instagram-likes:before{content:"\e958"}.eicon-facebook:before{content:"\e959"}.eicon-twitter:before{content:"\e95a"}.eicon-pinterest:before{content:"\e95b"}.eicon-frame-expand:before{content:"\e95c"}.eicon-frame-minimize:before{content:"\e95d"}.eicon-archive:before{content:"\e95e"}.eicon-colors-typography:before{content:"\e95f"}.eicon-custom:before{content:"\e960"}.eicon-footer:before{content:"\e961"}.eicon-header:before{content:"\e962"}.eicon-layout-settings:before{content:"\e963"}.eicon-lightbox-expand:before{content:"\e964"}.eicon-error-404:before{content:"\e965"}.eicon-theme-style:before{content:"\e966"}.eicon-search-results:before{content:"\e967"}.eicon-single-post:before{content:"\e968"}.eicon-site-identity:before{content:"\e969"}.eicon-theme-builder:before{content:"\e96a"}.eicon-download-bold:before{content:"\e96b"}.eicon-share-arrow:before{content:"\e96c"}.eicon-global-settings:before{content:"\e96d"}.eicon-user-preferences:before{content:"\e96e"}.eicon-lock:before{content:"\e96f"}.eicon-export-kit:before{content:"\e970"}.eicon-import-kit:before{content:"\e971"}.eicon-lottie:before{content:"\e972"}.eicon-products-archive:before{content:"\e973"}.eicon-single-product:before{content:"\e974"}.eicon-disable-trash-o:before{content:"\e975"}.eicon-single-page:before{content:"\e976"}.eicon-wordpress-light:before{content:"\e977"}.eicon-cogs-check:before{content:"\e978"}.eicon-custom-css:before{content:"\e979"}.eicon-global-colors:before{content:"\e97a"}.eicon-globe:before{content:"\e97b"}.eicon-typography-1:before{content:"\e97c"}.eicon-background:before{content:"\e97d"}.eicon-device-responsive:before{content:"\e97e"}.eicon-device-wide:before{content:"\e97f"}.eicon-code-highlight:before{content:"\e980"}.eicon-video-playlist:before{content:"\e981"}.eicon-download-kit:before{content:"\e982"}.eicon-kit-details:before{content:"\e983"}.eicon-kit-parts:before{content:"\e984"}.eicon-kit-upload:before{content:"\e985"}.eicon-kit-plugins:before{content:"\e986"}.eicon-kit-upload-alt:before{content:"\e987"}.eicon-hotspot:before{content:"\e988"}.eicon-paypal-button:before{content:"\e989"}.eicon-shape:before{content:"\e98a"}.eicon-wordart:before{content:"\e98b"}.eicon-checkout:before{content:"\e98c"}.eicon-container:before{content:"\e98d"}.eicon-flip:before{content:"\e98e"}.eicon-info:before{content:"\e98f"}.eicon-my-account:before{content:"\e990"}.eicon-purchase-summary:before{content:"\e991"}.eicon-page-transition:before{content:"\e992"}.eicon-spotify:before{content:"\e993"}.eicon-stripe-button:before{content:"\e994"}.eicon-woo-settings:before{content:"\e995"}.eicon-woo-cart:before{content:"\e996"}.eicon-grow:before{content:"\e997"}.eicon-order-end:before{content:"\e998"}.eicon-nowrap:before{content:"\e999"}.eicon-order-start:before{content:"\e99a"}.eicon-progress-tracker:before{content:"\e99b"}.eicon-shrink:before{content:"\e99c"}.eicon-wrap:before{content:"\e99d"}.eicon-align-center-h:before{content:"\e99e"}.eicon-align-center-v:before{content:"\e99f"}.eicon-align-end-h:before{content:"\e9a0"}.eicon-align-end-v:before{content:"\e9a1"}.eicon-align-start-h:before{content:"\e9a2"}.eicon-align-start-v:before{content:"\e9a3"}.eicon-align-stretch-h:before{content:"\e9a4"}.eicon-align-stretch-v:before{content:"\e9a5"}.eicon-justify-center-h:before{content:"\e9a6"}.eicon-justify-center-v:before{content:"\e9a7"}.eicon-justify-end-h:before{content:"\e9a8"}.eicon-justify-end-v:before{content:"\e9a9"}.eicon-justify-space-around-h:before{content:"\e9aa"}.eicon-justify-space-around-v:before{content:"\e9ab"}.eicon-justify-space-between-h:before{content:"\e9ac"}.eicon-justify-space-between-v:before{content:"\e9ad"}.eicon-justify-space-evenly-h:before{content:"\e9ae"}.eicon-justify-space-evenly-v:before{content:"\e9af"}.eicon-justify-start-h:before{content:"\e9b0"}.eicon-justify-start-v:before{content:"\e9b1"}.eicon-woocommerce-cross-sells:before{content:"\e9b2"}.eicon-woocommerce-notices:before{content:"\e9b3"}.eicon-inner-container:before{content:"\e9b4"}.eicon-warning-full:before{content:"\e9b5"}.eicon-exit:before{content:"\e9b6"}.eicon-loop-builder:before{content:"\e9b7"}.eicon-notes:before{content:"\e9b8"}.eicon-read:before{content:"\e9b9"}.eicon-unread:before{content:"\e9ba"}.eicon-carousel-loop:before{content:"\e9bb"}.eicon-mega-menu:before{content:"\eb78"}.eicon-nested-carousel:before{content:"\e9bd"}.eicon-ai:before{content:"\e9be"}.eicon-taxonomy-filter:before{content:"\eb7d"}.eicon-container-grid:before{content:"\ef02"}.eicon-upgrade:before{content:"\e9c1"}.eicon-advanced:before{content:"\eb84"}.eicon-div-block:before{content:"\eb9b"}.eicon-notification:before{content:"\e9c3"}.eicon-light-mode:before{content:"\e9c4"}.eicon-dark-mode:before{content:"\e9c5"}.eicon-upgrade-crown:before{content:"\e9c6"}.eicon-off-canvas:before{content:"\e9c7"}.eicon-speakerphone:before{content:"\e9c9"}.eicon-ehp-cta:before{content:"\e9cb"}.eicon-ehp-forms:before{content:"\e9bc"}.eicon-ehp-hero:before{content:"\e9ca"}.eicon-ehp-zigzag:before{content:"\e9cc"}.eicon-e-button:before{content:"\e9ce"}.eicon-flexbox:before{content:"\e9d0"}.eicon-paragraph:before{content:"\e9d1"}.eicon-icon:before{content:"\e9d2"}.eicon-e-image:before{content:"\e9d3"}.eicon-video:before{content:"\e9d4"}.eicon-svg:before{content:"\e9d5"}.eicon-e-divider:before{content:"\e9d6"}.eicon-e-heading:before{content:"\e9d7"}.eicon-atomic:before{content:"\ebae"}.eicon-library-delete:before{content:"\e9d8"}.eicon-library-copy:before{content:"\e9d9"}.eicon-library-folder-empty:before{content:"\e9da"}.eicon-library-move:before{content:"\e9db"}.eicon-library-edit:before{content:"\e9dc"}.eicon-library-subscription-upgrade:before{content:"\e9de"}.eicon-library-folder-view:before{content:"\e9df"}.eicon-library-grid:before{content:"\e9e1"}.eicon-library-cloud-connect:before{content:"\e9e2"}.eicon-library-import:before{content:"\e9e3"}.eicon-library-list:before{content:"\e9e4"}.eicon-library-cloud-empty:before{content:"\e9e5"}.eicon-folder-plus:before{content:"\e8aa"}.eicon-library-folder:before{content:"\e9e6"}.eicon-accessibility:before{content:"\e9bf"}.eicon-lock-outline:before{content:"\e9e7"}.eicon-e-youtube:before{content:"\e9e8"}.eicon-contact:before{content:"\ebd2"}.eicon-layout:before{content:"\ebd8"}.eicon-components:before{content:"\ebd9"}.eicon-tab-content:before{content:"\ebda"}.eicon-tab-menu:before{content:"\ebdb"}.eicon-atomic-label:before{content:"\e9ee"}.eicon-atomic-form:before{content:"\e9ef"}.eicon-atomic-submit-button:before{content:"\e9f0"}.eicon-atomic-input:before{content:"\e9f1"}.eicon-atomic-text-area:before{content:"\e9f2"}.eicon-atomic-select:before{content:"\e9f3"}.eicon-atomic-checkbox:before{content:"\e9f4"}.eicon-atomic-radiobutton:before{content:"\e9f5"}.eicon-atomic-file-upload:before{content:"\ebe9"}.eicon-atomic-time-picker:before{content:"\ebea"}.eicon-atomic-date-picker:before{content:"\ebeb"}.eicon-upgrade-crown-full:before{content:"\ef03"}.eicon-after:before{content:"\ebfa"}.eicon-pagination-item:before{content:"\ebfb"}.eicon-before:before{content:"\ebfc"}.eicon-pagination:before{content:"\ebfd"}.eicon-loop-item:before{content:"\ec00"}.eicon-loop-widget:before{content:"\ec01"}.eicon-x-twitter:before{content:"\ef04"}.eicon-eye:before{content:"\e8ac"}.eicon-elementor-square:before{content:"\e813"}
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container,.elementor-widget:not(:has(.elementor-widget-container)) .elementor-widget-container{overflow:hidden}.elementor-widget .elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap;margin-inline:-8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-inline:8px}.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{border-width:0;border-inline-start-width:1px;border-style:solid;height:100%;inset-inline-end:-8px;inset-inline-start:auto;position:relative;width:auto}.elementor-widget .elementor-icon-list-items{list-style-type:none;margin:0;padding:0}.elementor-widget .elementor-icon-list-item{margin:0;padding:0;position:relative}.elementor-widget .elementor-icon-list-item:after{inset-block-end:0;position:absolute;width:100%}.elementor-widget .elementor-icon-list-item,.elementor-widget .elementor-icon-list-item a{align-items:var(--icon-vertical-align,center);display:flex;font-size:inherit}.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text{align-self:center;padding-inline-start:5px}.elementor-widget .elementor-icon-list-icon{display:flex;inset-block-start:var(--icon-vertical-offset,initial);position:relative}.elementor-widget .elementor-icon-list-icon svg{height:var(--e-icon-list-icon-size,1em);width:var(--e-icon-list-icon-size,1em)}.elementor-widget .elementor-icon-list-icon i{font-size:var(--e-icon-list-icon-size);width:1.25em}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon{text-align:var(--e-icon-list-icon-align)}.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg{margin:var(--e-icon-list-icon-margin,0 calc(var(--e-icon-list-icon-size, 1em) * .25) 0 0)}.elementor-widget.elementor-list-item-link-full_width a{width:100%}.elementor-widget.elementor-align-center .elementor-icon-list-item,.elementor-widget.elementor-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-align-start .elementor-icon-list-item,.elementor-widget.elementor-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-align-end .elementor-icon-list-item,.elementor-widget.elementor-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-align-start) .elementor-icon-list-item:after{inset-inline-end:0}@media (min-width:-1){.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-widescreen-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-widescreen-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-widescreen-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item,.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-widescreen-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-widescreen-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-widescreen-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-laptop-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-laptop-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-laptop-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item,.elementor-widget.elementor-laptop-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-laptop-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-laptop-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-laptop-align-start) .elementor-icon-list-item:after{inset-inline-end:0}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:1024px){.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-tablet-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-tablet-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item,.elementor-widget.elementor-tablet-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-tablet-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-tablet-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-tablet-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:-1){.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile_extra-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile_extra-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile_extra-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile_extra-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile_extra-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile_extra-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}@media (max-width:767px){.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a{justify-content:center}.elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after{margin:auto}.elementor-widget.elementor-mobile-align-center .elementor-inline-items{justify-content:center}.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-start .elementor-icon-list-item a{justify-content:start;text-align:start}.elementor-widget.elementor-mobile-align-start .elementor-inline-items{justify-content:start}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item,.elementor-widget.elementor-mobile-align-end .elementor-icon-list-item a{justify-content:end;text-align:end}.elementor-widget.elementor-mobile-align-end .elementor-icon-list-items{justify-content:end}.elementor-widget:not(.elementor-mobile-align-end) .elementor-icon-list-item:after{inset-inline-start:0}.elementor-widget:not(.elementor-mobile-align-start) .elementor-icon-list-item:after{inset-inline-end:0}}#left-area ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items{padding:0}
.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0:not(:has(.elementor-widget-container)),.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0:not(:has(.elementor-widget-container)){font-size:0;line-height:1}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;align-items:center;background-color:#69727d;cursor:pointer;display:inline-flex;justify-content:center;text-align:center}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{color:#fff;opacity:.9}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */


.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\e005"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-pay:before {
  content: "\e079"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\e05d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\e065"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\e066"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\e056"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-octopus-deploy:before {
  content: "\e082"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\e068"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\e069"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\e06c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-threads:before {
  content: '\e9cb'; }

.fa-threads-square:before {
  content: '\e9cc'; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-x-twitter:before {
  content: "\e9ca"; }

.fa-x-twitter-square:before {
  content: "\e9c9"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */


.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }
/*! jQuery UI - v1.13.2 - 2022-07-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;-ms-filter:"alpha(opacity=25)";opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;-ms-filter:"alpha(opacity=70)";font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;-ms-filter:"alpha(opacity=35)";background-image:none}.ui-state-disabled .ui-icon{-ms-filter:"alpha(opacity=35)"}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/ui-icons_777777_256x240.png")}.ui-icon-blank.ui-icon-blank.ui-icon-blank{background-image:none}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;-ms-filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.fab{font-family:"Font Awesome 5 Brands"}.fab,.far{font-weight:400}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
/*
  	Flaticon icon font: Flaticon
  	Creation date: 26/10/2018 09:37
  	*/



@media screen and (-webkit-min-device-pixel-ratio:0) {
  
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
font-family: Flaticon;
font-style: normal;
}
.flaticon-vaincode:before {content: "\f1bd";}
.flaticon-home:before { content: "\f100"; }
.flaticon-drawing:before { content: "\f101"; }
.flaticon-plug:before { content: "\f102"; }
.flaticon-clipboard-with-pencil:before { content: "\f103"; }
.flaticon-tools:before { content: "\f104"; }
.flaticon-line-chart:before { content: "\f105"; }
.flaticon-pie-chart:before { content: "\f106"; }
.flaticon-customer-service:before { content: "\f107"; }
.flaticon-medal:before { content: "\f108"; }
.flaticon-dollar-analysis-bars-chart:before { content: "\f109"; }
.flaticon-phone-call:before { content: "\f10a"; }
.flaticon-clock:before { content: "\f10b"; }
.flaticon-map-pin-silhouette:before { content: "\f10c"; }
.flaticon-message:before { content: "\f10d"; }
.flaticon-calculator:before { content: "\f10e"; }
.flaticon-parking:before { content: "\f10f"; }
.flaticon-stationary-bike:before { content: "\f110"; }
.flaticon-cup:before { content: "\f111"; }
.flaticon-heartbeat:before { content: "\f112"; }
.flaticon-medical-kit:before { content: "\f113"; }
.flaticon-patient:before { content: "\f114"; }
.flaticon-savings:before { content: "\f115"; }
.flaticon-box:before { content: "\f116"; }
.flaticon-support:before { content: "\f117"; }
.flaticon-reward:before { content: "\f118"; }
.flaticon-hamburger-meal:before { content: "\f119"; }
.flaticon-pizza:before { content: "\f11a"; }
.flaticon-cocktail:before { content: "\f11b"; }
.flaticon-pasta:before { content: "\f11c"; }
.flaticon-vegetables:before { content: "\f11d"; }
.flaticon-user:before { content: "\f11e"; }
.flaticon-chef:before { content: "\f11f"; }
.flaticon-digger:before { content: "\f120"; }
.flaticon-construction-worker:before { content: "\f121"; }
.flaticon-settings:before { content: "\f122"; }
.flaticon-notebook:before { content: "\f100"; }
.flaticon-edit:before { content: "\f101"; }
.flaticon-placeholder:before { content: "\f102"; }
.flaticon-paper-plane:before { content: "\f103"; }
.flaticon-unlink:before { content: "\f105"; }
.flaticon-success:before { content: "\f106"; }
.flaticon-search:before { content: "\f107"; }
.flaticon-drop:before { content: "\f108"; }
.flaticon-christmas-tree:before { content: "\f109"; }
.flaticon-plus:before { content: "\f10a"; }
.flaticon-rocket-ship:before { content: "\f10b"; }
.flaticon-battery:before { content: "\f10c"; }
.flaticon-target:before { content: "\f10d"; }
.flaticon-classroom:before { content: "\f10e"; }
.flaticon-first-aid-kit:before { content: "\f10f"; }
.flaticon-tablet:before { content: "\f110"; }
.flaticon-dustbin:before { content: "\f111"; }
.flaticon-telegram-logo:before { content: "\f112"; }
.flaticon-business:before { content: "\f113"; }
.flaticon-4-square-shapes:before { content: "\f114"; }
.flaticon-speech-bubble-and-three-dots:before { content: "\f115"; }
.flaticon-man:before { content: "\f116"; }
.flaticon-music:before { content: "\f117"; }
.flaticon-tree-of-love:before { content: "\f118"; }
.flaticon-play-button:before { content: "\f119"; }
.flaticon-long-arrow-pointing-to-the-right:before { content: "\f11a"; }
.flaticon-royal-crown-of-elegant-vintage-design:before { content: "\f11b"; }
.flaticon-desktop-computer-with-magnifying-lens-focusing-on-data:before { content: "\f11c"; }
.flaticon-test-tube-flask-and-drop-of-blood:before { content: "\f11d"; }
.flaticon-arrows:before { content: "\f11e"; }
.flaticon-stocks-graphic-on-laptop-monitor:before { content: "\f11f"; }
.flaticon-attachment:before { content: "\f120"; }
.flaticon-transport:before { content: "\f121"; }
.flaticon-recycle-triangle-of-three-arrows-outlines:before { content: "\f122"; }
.flaticon-arrows-1:before { content: "\f123"; }
.flaticon-snowflake:before { content: "\f124"; }
.flaticon-clock:before { content: "\f125"; }
.flaticon-find-in-folder:before { content: "\f126"; }
.flaticon-smartphone:before { content: "\f127"; }
.flaticon-arrow-pointing-to-right:before { content: "\f128"; }
.flaticon-gas-pump:before { content: "\f129"; }
.flaticon-house-silhouette:before { content: "\f12a"; }
.flaticon-cancel-music:before { content: "\f12b"; }
.flaticon-arrows-2:before { content: "\f12c"; }
.flaticon-floor:before { content: "\f12d"; }
.flaticon-exercise:before { content: "\f12e"; }
.flaticon-love-planet:before { content: "\f12f"; }
.flaticon-workers:before { content: "\f130"; }
.flaticon-open-magazine:before { content: "\f131"; }
.flaticon-confirm-schedule:before { content: "\f132"; }
.flaticon-star:before { content: "\f133"; }
.flaticon-order:before { content: "\f134"; }
.flaticon-key:before { content: "\f135"; }
.flaticon-medical:before { content: "\f136"; }
.flaticon-bank:before { content: "\f137"; }
.flaticon-smartphone-1:before { content: "\f138"; }
.flaticon-plug:before { content: "\f139"; }
.flaticon-arrows-3:before { content: "\f13a"; }
.flaticon-arrows-4:before { content: "\f13b"; }
.flaticon-money-bag:before { content: "\f13c"; }
.flaticon-next:before { content: "\f13d"; }
.flaticon-back:before { content: "\f13e"; }
.flaticon-reload:before { content: "\f13f"; }
.flaticon-headphones:before { content: "\f140"; }
.flaticon-signs:before { content: "\f141"; }
.flaticon-diamond:before { content: "\f142"; }
.flaticon-chat:before { content: "\f143"; }
.flaticon-phone:before { content: "\f144"; }
.flaticon-down-chevron:before { content: "\f145"; }
.flaticon-up-chevron:before { content: "\f146"; }
.flaticon-stairs:before { content: "\f147"; }
.flaticon-music-player:before { content: "\f148"; }
.flaticon-play-button-1:before { content: "\f149"; }
.flaticon-speaker:before { content: "\f14a"; }
.flaticon-menu:before { content: "\f14b"; }
.flaticon-calculator:before { content: "\f14c"; }
.flaticon-share:before { content: "\f14d"; }
.flaticon-map:before { content: "\f14e"; }
.flaticon-hourglass:before { content: "\f14f"; }
.flaticon-layers:before { content: "\f150"; }
.flaticon-settings:before { content: "\f151"; }
.flaticon-clock-1:before { content: "\f152"; }
.flaticon-file:before { content: "\f153"; }
.flaticon-list:before { content: "\f154"; }
.flaticon-home:before { content: "\f155"; }
.flaticon-star-1:before { content: "\f156"; }
.flaticon-bar-chart:before { content: "\f157"; }
.flaticon-handshake:before { content: "\f158"; }
.flaticon-time:before { content: "\f159"; }
.flaticon-worldwide:before { content: "\f15a"; }
.flaticon-board:before { content: "\f15b"; }
.flaticon-twitter:before { content: "\f15c"; }
.flaticon-smartphone-2:before { content: "\f15d"; }
.flaticon-mobile:before { content: "\f15e"; }
.flaticon-maps-and-flags:before { content: "\f15f"; }
.flaticon-add:before { content: "\f160"; }
.flaticon-substract:before { content: "\f161"; }
.flaticon-phone-call:before { content: "\f162"; }
.flaticon-mail:before { content: "\f163"; }
.flaticon-folder:before { content: "\f164"; }
.flaticon-shopping-cart:before { content: "\f165"; }
.flaticon-monitor:before { content: "\f166"; }
.flaticon-menu-1:before { content: "\f167"; }
.flaticon-cancel:before { content: "\f168"; }
.flaticon-up-arrow-inside-circle:before { content: "\f169"; }
.flaticon-circular-down-arrow-button:before { content: "\f16a"; }
.flaticon-24-hours:before { content: "\f16b"; }
.flaticon-t-shirt-outline:before { content: "\f16c"; }
.flaticon-folder-outline:before { content: "\f16d"; }
.flaticon-quote:before { content: "\f16e"; }
.flaticon-play-button-2:before { content: "\f16f"; }
.flaticon-right-quotation-sign:before { content: "\f170"; }
.flaticon-up-arrow:before { content: "\f171"; }
.flaticon-open-mail-interface-symbol:before { content: "\f172"; }
.flaticon-menu-button:before { content: "\f173"; }
.flaticon-smartphone-3:before { content: "\f174"; }
.flaticon-add-1:before { content: "\f175"; }
.flaticon-play-button-3:before { content: "\f176"; }
.flaticon-play-button-4:before { content: "\f177"; }
.flaticon-support:before { content: "\f178"; }
.flaticon-close:before { content: "\f179"; }
.flaticon-heart:before { content: "\f17a"; }
.flaticon-renewable:before { content: "\f17b"; }
.flaticon-shopping-cart-1:before { content: "\f17c"; }
.flaticon-bar-chart-1:before { content: "\f17d"; }
.flaticon-profit:before { content: "\f17e"; }
.flaticon-settings-1:before { content: "\f17f"; }
.flaticon-tick-inside-a-circle:before { content: "\f180"; }
.flaticon-confirm:before { content: "\f181"; }
.flaticon-edit-1:before { content: "\f182"; }
.flaticon-share-1:before { content: "\f183"; }
.flaticon-setting:before { content: "\f184"; }
.flaticon-stars:before { content: "\f185"; }
.flaticon-check:before { content: "\f186"; }
.flaticon-moon:before { content: "\f187"; }
.flaticon-star-2:before { content: "\f188"; }
.flaticon-decreasing:before { content: "\f189"; }
.flaticon-graph:before { content: "\f18a"; }
.flaticon-multi-tab:before { content: "\f18b"; }
.flaticon-graph-1:before { content: "\f18c"; }
.flaticon-graph-2:before { content: "\f18d"; }
.flaticon-tick:before { content: "\f18e"; }
.flaticon-pin:before { content: "\f18f"; }
.flaticon-small-calendar:before { content: "\f190"; }
.flaticon-alarm-clock:before { content: "\f191"; }
.flaticon-shopping-cart-2:before { content: "\f192"; }
.flaticon-close-1:before { content: "\f193"; }
.flaticon-settings-2:before { content: "\f194"; }
.flaticon-telephone:before { content: "\f195"; }
.flaticon-clock-2:before { content: "\f196"; }
.flaticon-home-1:before { content: "\f197"; }
.flaticon-search-1:before { content: "\f198"; }
.flaticon-abc-block:before { content: "\f199"; }
.flaticon-notification:before { content: "\f19a"; }
.flaticon-attachment-1:before { content: "\f19b"; }
.flaticon-down-arrow:before { content: "\f19c"; }
.flaticon-tv:before { content: "\f19d"; }
.flaticon-phone-receiver:before { content: "\f19e"; }
.flaticon-next-1:before { content: "\f19f"; }
.flaticon-back-1:before { content: "\f1a0"; }
.flaticon-phone-call-1:before { content: "\f1a1"; }
.flaticon-left-arrow-inside-a-circle:before { content: "\f1a2"; }
.flaticon-right-arrow-inside-a-circle:before { content: "\f1a3"; }
.flaticon-search-2:before { content: "\f1a4"; }
.flaticon-karaoke:before { content: "\f1a5"; }
.flaticon-partnership:before { content: "\f1a6"; }
.flaticon-solution:before { content: "\f1a7"; }
.flaticon-group:before { content: "\f1a8"; }
.flaticon-group-1:before { content: "\f1a9"; }
.flaticon-team:before { content: "\f1aa"; }
.flaticon-key-1:before { content: "\f1ab"; }
.flaticon-diamond-1:before { content: "\f1ac"; }
.flaticon-fish:before { content: "\f1ad"; }
.flaticon-fish-1:before { content: "\f1ae"; }
.flaticon-connection:before { content: "\f1af"; }
.flaticon-server:before { content: "\f1b0"; }
.flaticon-cloud:before { content: "\f1b1"; }
.flaticon-coffee:before { content: "\f1b2"; }
.flaticon-gift:before { content: "\f1b3"; }
.flaticon-wife:before { content: "\f1b4"; }
.flaticon-team-1:before { content: "\f1b5"; }
.flaticon-team-2:before { content: "\f1b6"; }
.flaticon-team-3:before { content: "\f1b7"; }
.flaticon-employee:before { content: "\f1b8"; }
.flaticon-group-2:before { content: "\f1b9"; }
.flaticon-movie-tickets:before { content: "\f1ba"; }
.flaticon-lecture:before { content: "\f1bb"; }
.flaticon-employee-1:before { content: "\f1bc"; }
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/owl_carousel/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* Slider */
.slick-slider
{
	position: relative;

	display: block;
	box-sizing: border-box;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list
{
	position: relative;

	display: block;
	overflow: hidden;

	margin: 0;
	padding: 0;
}
.slick-list:focus
{
	outline: none;
}
.slick-list.dragging
{
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track
{
	position: relative;
	top: 0;
	left: 0;

	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
	display: table;

	content: '';
}
.slick-track:after
{
	clear: both;
}
.slick-loading .slick-track
{
	visibility: hidden;
}

.slick-slide
{
	display: none;
	float: left;

	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide
{
	float: right;
}
.slick-slide img
{
	display: block;
}
.slick-slide.slick-loading img
{
	display: none;
}
.slick-slide.dragging img
{
	pointer-events: none;
}
.slick-initialized .slick-slide
{
	display: block;
}
.slick-loading .slick-slide
{
	visibility: hidden;
}
.slick-vertical .slick-slide
{
	display: block;

	height: auto;

	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
	background: #fff url('https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/slick/ajax-loader.gif') center center no-repeat;
}

/* Icons */

/* Arrows */
.slick-prev,
.slick-next
{
	font-size: 0;
	line-height: 0;

	position: absolute;
	top: 50%;

	display: block;

	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);

	cursor: pointer;

	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
	color: transparent;
	outline: none;
	background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
	opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
	opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;

	opacity: .75;
	color: white;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
	left: -25px;
}
[dir='rtl'] .slick-prev
{
	right: -25px;
	left: auto;
}
.slick-prev:before
{
	content: '←';
}
[dir='rtl'] .slick-prev:before
{
	content: '→';
}

.slick-next
{
	right: -25px;
}
[dir='rtl'] .slick-next
{
	right: auto;
	left: -25px;
}
.slick-next:before
{
	content: '→';
}
[dir='rtl'] .slick-next:before
{
	content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
	margin-bottom: 30px;
}

.slick-dots
{
	position: absolute;
	bottom: -25px;

	display: block;

	width: 100%;
	padding: 0;
	margin: 0;

	list-style: none;

	text-align: center;
}
.slick-dots li
{
	position: relative;

	display: inline-block;

	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;

	cursor: pointer;
}
.slick-dots li button
{
	font-size: 0;
	line-height: 0;

	display: block;

	width: 20px;
	height: 20px;
	padding: 5px;

	cursor: pointer;

	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
	outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
	opacity: 1;
}
.slick-dots li button:before
{
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;

	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;

	content: '•';
	text-align: center;

	opacity: .25;
	color: black;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
	opacity: .75;
	color: black;
}
:root {
}
/******************************************************************** General ************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style *,
	.mpwem_style *::after,
	.mpwem_style *::before { -webkit-box-sizing: border-box; box-sizing: border-box; }
	body { margin: 0; padding: 0; }
	body.noScroll { overflow: hidden; }
	/******/
	.mpwem_style { font-size: var(--fs); font-weight: var(--fw); line-height: 1.5; width: 100%; }
	.mpwem_style,
	.mpwem_style [data-collapse].mActive { display: block; }
	table th[data-collapse].mActive,
	table td[data-collapse].mActive,
	.mpwem_style table th[data-collapse].mActive,
	.mpwem_style table td[data-collapse].mActive { display: table-cell; }
	.mpwem_style a:not(.mp_wp_editor) {text-decoration: none; }
	.mpwem_style a:hover { opacity: 0.5; }
	.mpwem_style a:hover { text-decoration: none; }
	[data-collapse-target],
	[data-target-popup],
	[data-icon-change],
	[data-icon-change] { cursor: pointer; }
	div.mpwem_style [data-collapse] { display: none; }
	/*******/
	div.mpwem_style a,
	div.mpwem_style button,
	div.mpwem_style [data-bg-image],
	div.mpwem_style [data-tabs-target],
	div.mpPopup,
	div.mpPopup .popup_close,
	div.mpwem_style .customCheckbox,
	div.mpwem_style .checkbox_custom,
	div.mpwem_style .mp_transition,
	div.mpwem_style [class*="_mp_transition"] { -webkit-transition: all 350ms ease-in-out; -moz-transition: all 350ms ease-in-out; -o-transition: all 350ms ease-in-out; transition: all 350ms ease-in-out; }
	.mpwem_event_list.mpwem_style.mpwem_welcome_page .add-event-btn {
		background: #005497;
		color: #FFF;
		margin: 20px 0;
	}
}
/******************************************************************** Shadow content ************************************************/
@media only screen and (min-width: 10px) {
	div.mpwem_style [class*="_shadow_0"] { -webkit-box-shadow: var(--d_shadow); -moz-box-shadow: var(--d_shadow); -o-box-shadow: var(--d_shadow); box-shadow: var(--d_shadow); }
	.groupRadioCheck [data-radio-check].mpActive,
	div.mpwem_style [class*="_shadow_1"] { -webkit-box-shadow: 0 5px 10px rgba(0, 44, 102, 0.2); -moz-box-shadow: 0 5px 10px rgba(0, 44, 102, 0.2); -o-box-shadow: 0 5px 10px rgba(0, 44, 102, 0.2); box-shadow: 0 5px 10px rgba(0, 44, 102, 0.2); }
	div.mpwem_style [class*="_shadow_2"] { -webkit-box-shadow: 0 1px 2px rgb(3 54 63 / 40%), 0 -1px 2px rgb(3 54 63 / 4%); -moz-box-shadow: 0 1px 2px rgb(3 54 63 / 40%), 0 -1px 2px rgb(3 54 63 / 4%); -o-box-shadow: 0 1px 2px rgb(3 54 63 / 40%), 0 -1px 2px rgb(3 54 63 / 4%); box-shadow: 0 1px 2px rgb(3 54 63 / 40%), 0 -1px 2px rgb(3 54 63 / 4%); }
	div.mpwem_style [class*="_shadow_3"],
	div.mpwem_style [class*="slideIndicatorItem"].active { -webkit-box-shadow: 0 2px 10px #444; -moz-box-shadow: 0 2px 10px #444; -o-box-shadow: 0 2px 10px #444; box-shadow: 0 2px 10px #444; }
	div.mpwem_style [class*="_shadow_4"],
	div.mpwem_style ul.mpwem_input_select_list { -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5); -moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5); -o-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5); box-shadow: 3px 3px 10px rgba(0, 0, 0, .5); }
	div.mpwem_style [class*="_shadow_5"],
	div.mpwem_style [class*="_button"] { -webkit-box-shadow: var(--button_shadows); -moz-box-shadow: var(--button_shadows); -o-box-shadow: var(--button_shadows); box-shadow: var(--button_shadows); }
	div.mpwem_style [class*="_shadow_6"] { -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); -o-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); }
	div.mpwem_style [class*="_shadow_7"] { -webkit-box-shadow: 5px 4px 30px rgba(189, 189, 189, 0.07); -moz-box-shadow: 5px 4px 30px rgba(189, 189, 189, 0.07); -o-box-shadow: 5px 4px 30px rgba(189, 189, 189, 0.07); box-shadow: 5px 4px 30px rgba(189, 189, 189, 0.07); }
	div.mpwem_style [class*="_shadow_8"] { -webkit-box-shadow: 2px 4px 40px rgba(103, 103, 103, 0.1); -moz-box-shadow: 2px 4px 40px rgba(103, 103, 103, 0.1); -o-box-shadow: 2px 4px 40px rgba(103, 103, 103, 0.1); box-shadow: 2px 4px 40px rgba(103, 103, 103, 0.1); }
	.mpwem_style .formControl:focus,
	div.mpwem_style [class*="_shadow_9"] {-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);}
	div.mpwem_style .checkbox_item input:focus ~ .checkbox_custom::before,
	div.mpwem_style [class*="_shadow_10"] {-webkit-box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.3); box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.3);}
	.mpwem_style [class*="_group_content"] input[type="radio"],
	.mpwem_style [class*="_group_content"] input[type="radio"] ~ input:focus,
	div.mpwem_style div[class*="_button"],
	div.mpwem_style [class*="_shadow_no"] {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		-o-box-shadow: none;
		box-shadow: none !important;
	}
}
/******************************************************************** Flex Section ************************************************/
@media only screen and (min-width: 10px) {
	div.mpwem_style [class*="_flex"] {display: -webkit-flex; display: flex; }
	div.mpwem_style [class*="_flex_wrap"] {display: -webkit-flex; display: flex;-webkit-flex-wrap: wrap; flex-wrap: wrap; }
	.mpwem_style [class*="_equalChild"], .mpwem_style .equalChild, .mpwem_style .flexEqual, .mpwem_style [class*="listEqual"],
	.mpwem_style [class*="_dFlex"], .mpwem_style .dFlex,
	.mpwem_style .mpMenu li { display: -webkit-flex; display: flex; }
	.mpwem_style [class*="_group_content"],
	.mpwem_style .buttonGroup,
	.mpwem_style .inputGroup,
	.mpwem_style .inputInline .mpForm,
	.mpwem_style [class^="mpMenu"] { display: -webkit-inline-flex; display: inline-flex; }
	.mpwem_style .mpRow,
	.mpwem_style .flexWrap,
	.mpwem_style .listInline { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
	div.mpwem_style [class*="_wrap"] { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
	.mpwem_style .flexNowrap { display: -webkit-flex; display: flex; -webkit-flex-wrap: nowrap; flex-wrap: nowrap; }
	.mpwem_style ul.list_inline_two,
	.mpwem_style .flexWrapJustifyBetween { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-justify-content: space-between; justify-content: space-between; }
	[data-bg-image],
	div[data-bg-image],
	.mpwem_style .allCenter, .mpwem_style [class*="_allCenter"],
	.mpwem_style .all_center, .mpwem_style [class*="_all_center"],
	.mpwem_style .remove_icon,
	.mpwem_style [class*="mage_qty"],
	.mpwem_style .mpMenu li a,
	.mpTabs.tabBorder > .tabLists li,
	.mpwem_style [class*="_group_addon"],
	.mpwem_style button, .mpwem_style [class*="_button"],
	.mpwem_style [class*="slideIndicator"],
	.mpwem_style [class*="_icon_circle"],
	div.mpwem_style div[class*="dLoader"], div.mpwem_style div[class*="simpleSpinner"],
	div.mpwem_style div.mpPopup.in,
	div.mpwem_style.mpPopup.in,
	div.mpPopup .popup_close { display: -webkit-flex; display: flex; -webkit-justify-content: center; justify-content: center; -webkit-align-items: center; align-items: center; }
	/************/
	.mpwem_style [class*="_flexAuto"], .mpwem_style .flexAuto { -webkit-flex: auto; flex: auto; }
	/************/
	.mpwem_style .justifyStart { display: -webkit-flex; display: flex; -webkit-justify-content: flex-start; justify-content: flex-start; }
	.mpwem_style [class*="_justifyStart"] { -webkit-justify-content: flex-start; justify-content: flex-start; }
	.mpwem_style .justifyCenter { display: -webkit-flex; display: flex; -webkit-justify-content: center; justify-content: center; }
	.mpwem_style [class*="_justifyCenter"] { -webkit-justify-content: center; justify-content: center; }
	.mpwem_style .justify_between, .mpwem_style [class*="_justify_between"], .mpwem_style [class*="_justifyBetween"],
	.mpwem_style .inputInline .mpForm { display: -webkit-flex; display: flex;-webkit-justify-content: space-between; justify-content: space-between; }
	.mpwem_style .justifyAround { display: -webkit-flex; display: flex; -webkit-justify-content: space-around; justify-content: space-around; }
	.mpwem_style [class*="_justifyAround"] { -webkit-justify-content: space-around; justify-content: space-around; }
	.mpwem_style .justifyEnd { display: -webkit-flex; display: flex; -webkit-justify-content: flex-end; justify-content: flex-end; }
	.mpwem_style [class*="_justifyEnd"] { -webkit-justify-content: flex-end; justify-content: flex-end; }
	/********/
	.mpwem_style .customRadio,
	.mpwem_style .formControl,
	.mpwem_style .title_on_border,
	.mpwem_style .align_center, .mpwem_style [class*="_align_center"], .mpwem_style .alignCenter, .mpwem_style [class*="_alignCenter"] { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-flex-wrap: nowrap; flex-wrap: nowrap; }
	.mpwem_style .alignBaseline { display: -webkit-flex; display: flex; -webkit-align-items: baseline; align-items: baseline; }
	[class*="_alignBaseline"] { -webkit-align-items: baseline; align-items: baseline; }
	.mpwem_style .alignStart { display: -webkit-flex; display: flex; -webkit-align-items: flex-start; align-items: flex-start; }
	[class*="_alignStart"] { -webkit-align-items: flex-start; align-items: flex-start; }
	/*****************/
	.mpwem_style .ffColumn,
	.mpwem_style .flexColumn { display: -webkit-flex; display: flex; -webkit-flex-flow: column; flex-flow: column; }
	[class*="_ffColumn"] { -webkit-flex-flow: column; flex-flow: column; }
	.mpwem_style .fdColumn { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; }
	[data-bg-image],
	[class*="_fdColumn"] { -webkit-flex-direction: column; flex-direction: column; }
	.flexEqual > *, .equalChild > *, [class*="_equalChild"] > *,
	[class*="listEqual"] > li,
	.mpTabs.tabBorder > .tabLists li,
	.inputInline .inputList { -webkit-flex: 1; -ms-flex: 1; flex: 1; }
}
/******************************************************************** Radios Section************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style img,
	.mpwem_style [class*="dButton"], .mpwem_style button,
	div.filter_item,
	.mpwem_style .formControl,
	div.mpPopup .popupMainArea, div.mpPopup .popup_close,
	.mpwem_style [class*="clickSlide"],
	.mpwem_style [class*="slideIndicatorItem"],
	.mpwem_style [class*="dLayout"], .mpwem_style [class*="_layout_default"],
	.mpwem_style [class*="_group_content"],
	.mpwem_style [class*="_dBR"] { -webkit-border-radius: var(--dbr); border-radius: var(--dbr); }
	.mpwem_style div.mpwem_input_select .formControl:focus,
	.mpwem_style [class*="_dBR_T"] { -webkit-border-radius: var(--dbr) var(--dbr) 0 0; border-radius: var(--dbr) var(--dbr) 0 0; }
	.mpwem_style .buttonGroup > :last-child,
	.mpwem_style [class*="_dBR_R"] { -webkit-border-radius: 0 var(--dbr) var(--dbr) 0; border-radius: 0 var(--dbr) var(--dbr) 0; }
	.mpwem_style ul.mpwem_input_select_list,
	.mpwem_style [class*="_dBR_B"] { -webkit-border-radius: 0 0 var(--dbr) var(--dbr); border-radius: 0 0 var(--dbr) var(--dbr); }
	.mpwem_style .buttonGroup > :first-child,
	.mpwem_style [class*="_dBR_L"] { -webkit-border-radius: var(--dbr) 0 0 var(--dbr); border-radius: var(--dbr) 0 0 var(--dbr); }
	.mpwem_style [class*="_dBRL"] { -webkit-border-radius: var(--dbrl); border-radius: var(--dbrl); }
	.mpwem_style [class*="_dBRL_T"] { -webkit-border-radius: var(--dbrl) var(--dbrl) 0 0; border-radius: var(--dbrl) var(--dbrl) 0 0; }
	.mpwem_style [class*="_dBRL_R"] { -webkit-border-radius: 0 var(--dbrl) var(--dbrl) 0; border-radius: 0 var(--dbrl) var(--dbrl) 0; }
	.mpwem_style [class*="_dBRL_B"] { -webkit-border-radius: 0 0 var(--dbrl) var(--dbrl); border-radius: 0 0 var(--dbrl) var(--dbrl); }
	.mpwem_style [class*="_bB_50"] { -webkit-border-radius: 50px; border-radius: 50px; }
	.mpwem_style .remove_icon,
	.mpwem_style [class*="circle"] { -webkit-border-radius: 50%; border-radius: 50%; }
	.mpwem_style .buttonGroup > *,
	.mpwem_style [class*="_group_content"] .formControl,
	.mpwem_style .zeroRadius, .mpwem_style [class*="_zeroRadius"] { -webkit-border-radius: 0; border-radius: 0; }
}
/******************************************************************** Button Section ************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style button,
	div.mpwem_style [class*="_button"] { position: relative; font-size: var(--button_fs); font-weight: normal; padding: 2px; color: var(--d_color); background-color: transparent; line-height: 1; cursor: pointer; overflow: visible; border: none; -webkit-appearance: button; text-transform: capitalize; }
	.mpwem_style button[disabled] { cursor: not-allowed; opacity: 0.8; background-color: #DDD; }
	.mpwem_style button:hover, .mpwem_style button:focus { text-decoration: none; opacity: 0.8; background-color: var(--color_theme_cc); color: #FFF; }
	/***/
	div.mpwem_style a[class*="_button_general"] {border: 1px solid var(--color_border);background-color: var(--color_section);color: var(--color_theme);}
	div.mpwem_style a[class*="_button_general"]:hover {border: 1px solid var(--color_border);background-color: var(--color_theme);color: var(--color_section);}
	div.mpwem_style [class*="_button_general"].mpActive { border-color: var(--color_theme); color: var(--color_theme);background-color: var(--color_theme_alter); }
	div.mpwem_style [class*="_button_general"].mpActive:hover { background-color: var(--color_theme); color: var(--color_theme_alter); }
	/***/
	div.mpwem_style [class*="_button_default"] { padding: 0 var(--dmp); min-width: var(--button_width); height: auto; min-height: var(--button_height); color: var(--color_button); background-color: var(--button_bg); }
	div.mpwem_style [class*="_button_default"] span { margin: 0 var(--dmp_xs) 0 0; color: var(--color_button);}
	div.mpwem_style [class*="_button_default"]:hover,
	div.mpwem_style [class*="_button_default"].mActive { color: var(--color_theme_alter); background-color: var(--color_theme); }
	div.mpwem_style [class*="_text_default"] { color: var(--d_color); }
	div.mpwem_style [class*="_bg_default"] { background-color: var(--d_color); }
	/***/
	div.mpwem_style [class*="_button_theme"] { background-color: var(--color_theme); color: var(--color_theme_alter); padding: var(--dmp_xs) var(--dmp); border: 2px solid var(--color_theme); }
	div.mpwem_style [class*="_button_theme"] span { color: var(--color_theme_alter); }
	div.mpwem_style [class*="_button_theme"]:hover { background-color: var(--color_theme_cc); color: var(--color_theme_alter); border-color: var(--color_theme_cc); }
	div.mpwem_style [class*="_button_theme"]:hover span { color: var(--color_theme_alter); }
	div.mpwem_style [class*="_text_theme"] { color: var(--color_theme); }
	div.mpwem_style [class*="_bg_theme"] { background-color: var(--color_theme); color: var(--color_theme_alter); }
	div.mpwem_style [class*="_border_theme"] { border: 1px solid var(--color_theme); }
	/***/
	div.mpwem_style [class*="_button_theme_light"] { background-color: var(--color_theme_alter); color: var(--color_theme); padding: var(--dmp_xs) var(--dmp); border: 1px solid var(--color_theme); overflow: hidden;}
	div.mpwem_style [class*="_button_theme_light"] span { color: var(--color_theme); }
	div.mpwem_style [class*="_button_theme_light"]:hover,
	div.mpwem_style [class*="_button_theme_light"]:focus { opacity: 0.8;background-color: var(--color_theme_alter); color: var(--color_theme); }
	div.mpwem_style [class*="_button_theme_light"]:hover span { color: var(--color_theme); }
	/*********/
	div.mpwem_style [class*="_button_success"] { background-color: var(--color_success); color: var(--color_theme_alter); padding: var(--dmp_xs) var(--dmp); border: 2px solid var(--color_success); }
	div.mpwem_style [class*="_button_success"] span { color: var(--color_theme_alter); }
	div.mpwem_style [class*="_button_success"]:hover { background-color: var(--color_light); color: var(--color_success); }
	div.mpwem_style [class*="_button_success"]:hover span { color: var(--color_success); }
	div.mpwem_style [class*="_text_success"] { color: var(--color_success); }
	div.mpwem_style [class*="_bg_success"] { background-color: var(--color_success); }
	/*********/
	div.mpwem_style [class*="_button_navy_blue"] { background-color: var(--color_navy_blue); color: var(--color_theme_alter); padding: var(--dmp_xs) var(--dmp); border: 2px solid var(--color_navy_blue); }
	div.mpwem_style [class*="_button_navy_blue"] span { color: var(--color_theme_alter); }
	div.mpwem_style [class*="_button_navy_blue"]:hover { background-color: var(--color_theme_alter); color: var(--color_navy_blue); border-color: var(--color_navy_blue); }
	div.mpwem_style [class*="_button_navy_blue"]:hover span { color: var(--color_navy_blue); }
	/****/
	div.mpwem_style [class*="_button_warning"] { background-color: var(--color_warning); color: var(--color_dark); border: 2px solid var(--color_warning); }
	div.mpwem_style [class*="_button_warning"]:hover { background-color: var(--color_dark); color: var(--color_warning); }
	div.mpwem_style [class*="_text_warning"] { color: var(--color_warning); }
	div.mpwem_style [class*="_bg_warning"] { background-color: var(--color_warning); }
	/****/
	div.mpwem_style [class*="_button_danger"] { background-color: var(--color_danger); color: var(--color_theme_alter); border: 2px solid var(--color_danger); }
	div.mpwem_style [class*="_button_danger"]:hover { background-color: var(--color_theme_alter); color: var(--color_danger); }
	/*********
	/*********/
	div.mpwem_style [class*="_button_primary"] { background-color: var(--color_primary); color: var(--color_white); border: 2px solid var(--color_primary); }
	div.mpwem_style [class*="_button_primary"]:hover { background-color: var(--color_white); color: var(--color_primary); border-color: var(--color_primary); opacity: 0.8; }
	/*************************/
	div.mpwem_style [class*="_button_secondary"] { background-color: var(--color_secondary); color: var(--color_white); border: 2px solid var(--color_secondary); }
	div.mpwem_style [class*="_button_secondary"]:hover { background-color: var(--color_white); color: var(--color_secondary); border-color: var(--color_secondary); opacity: 0.8; }
	/*************************/
	div.mpwem_style [class*="_button"][class*="_xs"] {min-width: auto; min-height: var(--button_height_xs); font-size: var(--fs);padding: var(--dmp_xs); }
	div.mpwem_style [class*="_button"][class*="_xxs"] {padding: var(--dmp_xxs);font-size: var(--fs_small);min-height: auto;min-width: auto;}
}
/******************************************************************** Helper Section************************************************/
@media only screen and (min-width: 10px) {
	div.mpwem_style small { font-size: var(--fs_small);display: inline-block; }
	/********Helper Class***********/
	.mpwem_style ._divider, .mpwem_style [class*="_divider"], .mpwem_style hr { margin: var(--dmp_xs) 0; line-height: 1; border-color: var(--color_border); display: block; height: 1px; background-color: var(--color_border); width: 100%; }
	.mpwem_style ._divider_xs, .mpwem_style [class*="_divider_xs"] { margin: var(--dmp_xxs) 0;}
	.mpwem_style ._divider_3, .mpwem_style [class*="_divider_3"] { margin: var(--dmp_xs) 0; line-height: 1; border-color: var(--color_border); display: block; height: 3px; background-color: var(--color_border); width: 100%; }
	.mpwem_style ._dividerL, .mpwem_style [class*="_dividerL"] { margin: var(--dmp) 0; line-height: 1; border-color: var(--color_border); display: block; height: 1px; background-color: var(--color_border); width: 100%; }
	.mpwem_style .separatorRight > *, .mpwem_style [class*="_separatorRight"] > * { border-right: 2px solid var(--color_border); }
	.mpwem_style .separatorRight > *, .mpwem_style [class*="_separatorRight"] > :last-child { border-right: none; }
	div.mpwem_style .mpDisabled { cursor: no-drop; opacity: 0.7; pointer-events: none; }
	.mpwem_style .strikeLine { position: relative; padding: 0 var(--dmp_xs); color: var(--color_warning); }
	.mpwem_style .strikeLine:before { content: " "; display: block; width: 100%; border-top: 1px solid #8B0000AA; position: absolute; left: 0; right: 0; top: 11px; transform: rotate(-11deg); }
	/**************/
	div.mpwem_style [class*="_rotate_90"] {transform: rotate(90deg);}
	/**************/
	div.mpwem_style .mpwem_hidden_content,
	div.mpwem_style [class*="_d_none"],
	.mpwem_style .dNone, .mpwem_style [class*="_dNone"] { display: none; }
	.mpwem_style .dBlock, .mpwem_style [class*="_dBlock"] { display: block; }
	.mpwem_style .dInlineBlock, .mpwem_style [class*="_dInlineBlock"],
	.mpwem_style span, .mpwem_style strong { display: inline-block; }
	/**************/
	.mpwem_style .f_left, .mpwem_style [class*="_f_left"] { float: left; }
	.mpwem_style .f_right, .mpwem_style [class*="_f_right"] { float: right; }
	/**************/
	div.mpwem_style ._fw_600 { font-weight: 600; }
	div.mpwem_style ._fw_500 { font-weight: 500; }
	/**************/
	div.mpwem_style [class*="_text_left"] { text-align: left; }
	div.mpwem_style [class*="_text_center"] { text-align: center; }
	div.mpwem_style [class*="_text_right"] { text-align: right; }
	div.mpwem_style [class*="_text_capitalize"] { text-transform: capitalize; }
	div.mpwem_style [class*="_text_nowrap"] { white-space: nowrap; }
	div.mpwem_style [class*="_text_uppercase"] { text-transform: uppercase; }
	/**************/
	.mpwem_style [class*="_dotted"] { border-style: dotted; }
	.mpwem_style [class*="_border"] { border: 1px solid var(--color_border); }
	.mpwem_style .bT, .mpwem_style [class*="_bT"], .mpwem_style [class*="_bt"] { border-top: 1px solid var(--color_border); }
	.mpwem_style [class*="_bDot"] { border: 1px dotted var(--color_border); }
	.mpwem_style [class*="_bDash"] { border: 1px dashed var(--color_border); }
	.mpwem_style [class*="_bR"] { border-right: 1px solid var(--color_border); }
	.mpwem_style [class*="_bR_dash"] { border-right: 1px dashed var(--color_border); }
	.mpwem_style [class*="_bR_dot"] { border-right: 1px dotted var(--color_border); }
	.mpwem_style [class*="_bB"], .mpwem_style .borB { border-bottom: 1px solid var(--color_border); }
	.mpwem_style [class*="_bB_dot"] { border-bottom: 1px dotted var(--color_border); }
	.mpwem_style .zeroBorder, .mpwem_style [class*="_zeroBorder"] { border: none; }
	/**************/
	div.mpwem_style [class*="_padding_zero"] { padding: 0; }
	div.mpwem_style [class*="_padding"] { padding: var(--dmp); }
	div.mpwem_style [class*="_padding_xs"] { padding: var(--dmp_xs); }
	div.mpwem_style [class*="_padding_xxs"] { padding: var(--dmp_xxs); }
	/*******************************/
	div.mpwem_style [class*="_pt"] { padding-top: var(--dmp); }
	div.mpwem_style [class*="_pt_xs"] { padding-top: var(--dmp_xs); }
	div.mpwem_style [class*="_pr"] { padding-right: var(--dmp); }
	div.mpwem_style [class*="_pr_xs"] { padding-right: var(--dmp_xs); }
	div.mpwem_style [class*="_pb"] { padding-bottom: var(--dmp); }
	div.mpwem_style [class*="_pb_xs"] { padding-bottom: var(--dmp_xs); }
	div.mpwem_style [class*="_pl"] { padding-left: var(--dmp); }
	div.mpwem_style [class*="_pl_xs"] { padding-left: var(--dmp_xs); }
	div.mpwem_style [class*="_ptb"] { padding: var(--dmp) 0; }
	div.mpwem_style [class*="_ptb_xs"] { padding: var(--dmp_xs) 0; }
	/**************/
	div.mpwem_style [class*="_margin"] { margin: var(--dmp); }
	div.mpwem_style [class*="_margin_xs"] { margin: var(--dmp_xs); }
	div.mpwem_style [class*="_margin_zero"], .mpwem_style span[class*="_icon"] { margin: 0; }
	div.mpwem_style [class*="_margin_auto"] { margin: 0 auto; }
	/***************/
	div.mpwem_style [class*="_mt"] { margin-top: var(--dmp); }
	div.mpwem_style [class*="_mt_xs"] { margin-top: var(--dmp_xs); }
	div.mpwem_style [class*="_mt_xxs"] { margin-top: var(--dmp_xxs); }
	div.mpwem_style [class*="_mr"] { margin-right: var(--dmp); }
	div.mpwem_style [class*="_mr_xs"] { margin-right: var(--dmp_xs); }
	div.mpwem_style [class*="_mr_xxs"] { margin-right: var(--dmp_xxs); }
	div.mpwem_style [class*="_mb"] { margin-bottom: var(--dmp); }
	div.mpwem_style [class*="_mb_xs"] { margin-bottom: var(--dmp_xs); }
	div.mpwem_style [class*="_mb_xxs"] { margin-bottom: var(--dmp_xxs); }
	/**************/
	div.mpwem_style [class*="_ml"] { margin-left: var(--dmp); }
	div.mpwem_style [class*="_ml_xs"] { margin-left: var(--dmp_xs); }
	div.mpwem_style [class*="_ml_xxs"] { margin-left: var(--dmp_xxs); }
	div.mpwem_style [class*="_mtb"] { margin: var(--dmp) 0; }
	div.mpwem_style [class*="_mtb_xs"] { margin: var(--dmp_xs) 0; }
	div.mpwem_style [class*="_mlr"] { margin: 0 var(--dmp); }
	div.mpwem_style [class*="_mlr_xs"] { margin: 0 var(--dmp_xs); }
	div.mpwem_style [class*="_mtr_xs"] { margin: var(--dmp_xs) var(--dmp_xs) 0 0; }
	/***************/
	div.mpwem_style .mp_zero, div.mpwem_style [class*="_mp_zero"] { margin: 0; padding: 0; }
	/***************/
	div.mpwem_style [class*="_ov_auto"] { overflow: auto; }
	div.mpwem_style [class*="_ov_auto"] > *,
	div.mpwem_style [class*="_ov_hidden"] { overflow: hidden; }
	/***************/
	/*****************/
	.mpwem_style .noBR, .mpwem_style [class*="_noBR"] { border: none; -webkit-border-radius: 0; border-radius: 0; }
	/*****************/
	.mpwem_style .content_scroll { overflow: auto; }
	/*****************/
	.mpwem_style .vertical_top, .mpwem_style [class*="_vertical_top"] { vertical-align: top; }
	/*****************/
	/*****************/
	@media only screen and (max-width: 900px) {
		div.mpwem_style .hidden_sm { display: none; }
	}
	@media only screen and (max-width: 767px) {
		div.mpwem_style .hidden_xs, div.mpwem_style [class*="_hidden_xs"] { display: none; }
	}
}
/******************************************************************** Loader Section ************************************************/
@media only screen and (min-width: 10px) {
	div[class*="dLoader"],
	div[class*="simpleSpinner"] { position: absolute; z-index: 11111; left: 0; right: 0; top: 0; bottom: 0; font-size: var(--fs_h1); width: 100%; height: 100%; }
	div[class*="dLoader"] { background: #0003; color: var(--color_theme); }
	div[class*="dLoader"][class*="_p_fixed"] { position: fixed; max-width: 100vw; max-height: 100vh; }
	div.dLoader_xs { font-size: var(--fs_h5); }
	div[class*="dLoader"].border_spin_loader span {
		border-top: 5px solid var(--color_theme_alter); border-right: 5px solid var(--color_theme);
		border-bottom: 5px solid var(--color_theme_alter); border-left: 5px solid var(--color_theme);
		width: 60px; height: 60px;
		-webkit-animation: spin 1000ms linear infinite; animation: spin 1000ms linear infinite;
	}
	div[class*="dLoader_xs"].border_spin_loader span { border-width: 2px; width: 20px; height: 20px; }
	@keyframes spin {
		0% { transform: rotate(0deg); }
		25% { transform: rotate(90deg); }
		50% { transform: rotate(180deg); }
		75% { transform: rotate(270deg); }
		100% { transform: rotate(360deg); }
	}
	div[class*="simpleSpinner"] { padding: var(--dmp); color: var(--color_theme); }
	/****************************************/
	div.spinner_loading {position: absolute;z-index: 1111;left: 0;right: 0;top: 0;bottom: 0;background-color: #FFFD;}
	div.spinner_loading > div {height: 100%;}
	div.icon_loader { display: flex !important; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-size: 40px; z-index: 11111; position: relative;}
	div.icon_loader_xs { display: flex !important; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-size: 20px; z-index: 11111; position: relative}
	/******/
	.mpwem_loader_placeholder .placeholder_area { background-color: #FFF; position: relative; padding: var(--dmp_xs); }
	.mpwem_loader_placeholder .placeholder_area::before {
		position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 111; content: "";
		/*background: #f6f7f8;*/
		/*background: linear-gradient(to right, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 54%) 50% 50%;*/
		background: linear-gradient(to right, rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.4) 18%, rgba(255, 255, 255, 0) 33%);
		-webkit-animation: placeholderAnimate 3s linear infinite; animation: placeholderAnimate 3s linear infinite;
	}
	.mpwem_loader_placeholder [data-placeholder] { position: relative; overflow: hidden; }
	.mpwem_loader_placeholder [data-placeholder]::before { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 11; content: ""; background: #DDD; }
	@-webkit-keyframes placeholderAnimate {
		0% { background-position: -100% 0; }
		100% { background-position: 100% 0; }
	}
	@keyframes placeholderAnimate {
		0% { background-position: -1000px 0; }
		100% { background-position: 1000px 0; }
	}
}
/******************************************************************** Image/slider Section ************************************************/
@media only screen and (min-width: 10px) {
	/***********Bg Image****************/
	div.mpwem_style div.bg_image_area { width: 100%; overflow: hidden; position: relative; height: 200px; }
	div.mpwem_style [data-bg-image] { background-size: 100% 100%; background-position: center center; position: relative; height: 100%; width: 100%; min-height: inherit; }
	div.mpwem_style [data-bg-image]:before { content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 100%; opacity: .4; }
	div.mpwem_style [data-bg-image] > * { color: #FFF; }
	div.mpwem_style div.bg_image_area:hover [data-bg-image],
	div.mpwem_style [data-bg-image]:hover { -ms-transform: scale(1.1); transform: scale(1.1); -webkit-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; }
	div.mpwem_style [data-href] { cursor: pointer; }
	div.mpwem_style [data-bg-image].circle { overflow: hidden; }
	/**************** Super slider **********************************************/
	div.superSlider .iconIndicator,
	div.superSlider .sliderPopup .popup_close { -webkit-transition: 350ms ease-in-out; -moz-transition: 350ms ease-in-out; -o-transition: 350ms ease-in-out; transition: 350ms ease-in-out; }
	/******************************/
	div.superSlider .sliderPopup.in,
	div.superSlider .sliderPopup .popup_close,
	div.superSlider .slideIndicator,
	div.superSlider .sliderMoreItem { display: -webkit-flex; display: flex; -webkit-justify-content: center; justify-content: center; -webkit-align-items: center; align-items: center; }
	/***************************/
	div.mpwem_style div.superSlider { overflow: hidden; display: -webkit-flex; display: flex; background-color: #FFF; position: relative; }
	div.superSlider .area_column { -webkit-flex-direction: column; flex-direction: column; }
	div.superSlider .sliderAllItem { width: 100%; position: relative; overflow: hidden; border-radius: 10px; }
	div.superSlider .sliderItem img { width: 100%; max-height: 100%; }
	div.superSlider .sliderItem { position: relative;overflow: hidden; float: left; width: 100%; margin-right: -100%; -ms-transform: translateX(100%); transform: translateX(100%); backface-visibility: hidden; -webkit-transition: -webkit-transform 0.06s ease-in-out; transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; height: 100%; }
	div.superSlider .sliderItem.activeSlide { z-index: 1; transform: translateX(0); }
	div.superSlider .sliderItem.prevSlider { transform: translateX(-100%); z-index: 0; }
	div.superSlider .sliderItem.nextSlider { transform: translateX(100%); z-index: 0; }
	/*************Image Showcase***************/
	div.superSlider .sliderShowcase { display: -webkit-flex; display: flex; }
	div.superSlider .sliderShowcase.right,
	div.superSlider .sliderShowcase.left { width: 18.65%; min-width: 18.65%; -webkit-flex-direction: column; flex-direction: column; }
	div.superSlider .sliderShowcase.style_2,
	div.superSlider .sliderShowcase.style_2 { width: 39%; min-width: 39%; -webkit-flex-direction: initial; flex-direction: initial; -webkit-flex-wrap: wrap; flex-wrap: wrap; }
	div.superSlider .sliderShowcase.style_2 > div { width: calc(50% - 5px); margin: 0 var(--dmp_xs) 0 0; }
	div.superSlider .sliderShowcase.style_2 > div:first-child { width: 100%; margin: 0 0 var(--dmp_xs) 0; }
	div.superSlider .sliderShowcase.style_2 > div:last-child { margin: 0; }
	div.superSlider .sliderShowcase.left { margin: 0 var(--dmp_xs) 0 0; gap: var(--dmp_xs); }
	div.superSlider .sliderShowcase.right { margin: 0 0 0 var(--dmp_xs); gap: var(--dmp_xs); }
	div.superSlider .area_column .sliderShowcase { width: 100%; min-width: 100%; }
	div.superSlider .sliderShowcase.top { margin: 0 0 var(--dmp_xs) 0; gap: var(--dmp_xs); }
	div.superSlider .sliderShowcase.bottom { margin: var(--dmp_xs) 0 0 0; gap: var(--dmp_xs); }
	div.superSlider .sliderShowcase.bottom .sliderShowcaseItem {margin: 0 10px 0 0;width: auto;max-width: 25%;-webkit-flex: 1;flex: 1;}
	div.superSlider .sliderShowcase.bottom .sliderShowcaseItem:last-child {margin: 0;}
	div.superSlider .sliderShowcaseItem { position: relative; overflow: hidden;border-radius: 10px; }
	div.superSlider .sliderShowcase.style_1 .sliderShowcaseItem {-webkit-flex: 1;flex: 1;max-height: 25%;}
	div.superSlider .area_column .sliderShowcaseItem { width: calc(25% - var(--dmp_xs)); }
	div.superSlider .sliderShowcase div.superSlider .area_column { margin: 0 0 var(--dmp_xs) 0; position: relative; cursor: pointer; overflow: hidden; }
	div.superSlider .sliderShowcaseItem img { height: 100%; }
	div.superSlider .sliderMoreItem { position: absolute; left: 0; top: 0; right: 0; bottom: 0; -webkit-border-radius: 5px; border-radius: 5px; background-color: #000B; font-size: 18px; color: #FFF; }
	div.superSlider .sliderMoreItem span { margin: 0 5px; font-size: 10px; }
	div.superSlider .sliderMoreItem span:last-child { font-size: 18px; }
	/*******image indicator***************/
	div.superSlider .slideIndicator { -webkit-flex-wrap: wrap; flex-wrap: wrap; margin: 5px -5px; }
	div.superSlider .slideIndicatorItem { border: 3px solid #DDD; margin: 5px; background-color: #DDD; width: 75px; overflow: hidden; position: relative; }
	div.superSlider .slideIndicatorItem.activeSlide { border-color: var(--color_active); background-color: var(--color_active); }
	/*******Icon indicator***************/
	/* z-index only needs to clear slide layers (0/1); keep below site sticky headers (~100+) */
	div.superSlider .iconIndicator { position: absolute; z-index: 5; top: calc(50% - 15px); font-size: 30px; cursor: pointer; color: #FFF; }
	div.superSlider .iconIndicator:hover { color: #FFF; }
	div.superSlider .iconIndicator.prevItem { left: 20px; }
	div.superSlider .iconIndicator.nextItem { right: 20px; }
	/************* Style Two — full-bleed feature + bottom-right controls ***************/
	div.mpwem_slider_area.is-style-2,
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 {
		position: relative;
		overflow: hidden;
		width: 100%;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 {
		display: block;
		width: 100%;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 > .dFlex {
		display: block !important;
		width: 100%;
		position: relative;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderAllItem {
		width: 100% !important;
		min-width: 100%;
		border-radius: 12px;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderShowcase {
		display: none !important;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderItem,
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderItem .bg_image_area,
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderItem [data-bg-image] {
		width: 100%;
		height: 100%;
		min-height: inherit;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderItem [data-bg-image] {
		background-size: cover !important;
		background-position: center center !important;
		background-repeat: no-repeat;
	}
	div.mpwem_slider_area.is-style-2 .superSlider.is-style-2 .sliderItem [data-bg-image]:hover {
		-ms-transform: none;
		transform: none;
	}
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_controls {
		position: absolute;
		right: 16px;
		bottom: 16px;
		z-index: 20;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		gap: 8px;
	}
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_btn {
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		display: -webkit-inline-flex;
		display: inline-flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.92);
		color: #111113;
		box-shadow: 0 8px 24px rgba(17, 17, 19, 0.16);
		cursor: pointer;
		font-size: 15px;
		line-height: 1;
		transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
	}
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_btn:hover,
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_btn:focus-visible {
		background: #111113;
		color: #fff;
		outline: none;
		transform: translateY(-1px);
	}
	/* Override default mid-side icon placement when used as Style Two controls */
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_controls .iconIndicator {
		position: static !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		font-size: 15px !important;
		color: inherit !important;
	}
	div.mpwem_slider_area.is-style-2 .sliderItem[data-target-popup] {
		cursor: zoom-in;
	}
	div.mpwem_slider_area.is-style-2 .post_thumb.is-style-2 {
		position: relative;
		overflow: hidden;
		border-radius: 12px;
		width: 100%;
	}
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_feature {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: zoom-in;
		position: relative;
	}
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_feature img {
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
	}
	div.mpwem_slider_area.is-style-2 .mpwem_slider_style2_feature_zoom {
		position: absolute;
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
		border-radius: 50%;
		display: -webkit-inline-flex;
		display: inline-flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.92);
		color: #111113;
		box-shadow: 0 8px 24px rgba(17, 17, 19, 0.16);
		pointer-events: none;
	}
	/* Single-image Style Two: feature button already shows zoom; hide duplicate control row */
	div.mpwem_slider_area.is-style-2 .post_thumb.is-style-2 .mpwem_slider_style2_controls {
		display: none;
	}
	/* Keep popup markup in DOM without taking layout space */
	div.mpwem_slider_area.is-style-2 .post_thumb.is-style-2 > .superSlider {
		position: absolute;
		width: 0;
		height: 0;
		overflow: visible;
		margin: 0;
		padding: 0;
		background: transparent;
	}
	/*************popup slider***************/
	div.mpwem_style [data-target-popup] { cursor: pointer; }
	div.superSlider .sliderPopup div.superSlider { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; -webkit-flex-direction: column; flex-direction: column; -webkit-align-items: center; align-items: center; height: 100%; width: 100%; overflow: hidden; margin: 0; position: relative; }
	div.superSlider .sliderPopup { display: none; position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 111111111; overflow: hidden auto; background: #000C; }
	div.superSlider .sliderPopup .popup_close { position: absolute; z-index: 1111; cursor: pointer; top: 100%; right: 50px; width: 50px; height: 50px; background-color: #FFF; color: #222; font-size: 20px; }
	div.superSlider .sliderPopup .popup_close:hover { color: #FFF; background-color: #222; }
	div.superSlider .sliderPopup .sliderAllItem { height: 70vh; background-color: transparent; margin: 0 auto; overflow: hidden; position: relative; }
	div.superSlider .sliderPopup .sliderAllItem img { width: auto; height: 100%; }
	div.superSlider .sliderPopup .popupHeader { border-bottom: 1px solid #FFF; }
	div.superSlider .sliderPopup .popupHeader,
	div.superSlider .sliderPopup .popupFooter { color: #FFF; padding: 15px; max-height: 15vh; overflow: hidden auto; margin: 0 auto; width: 100%; background-color: #222; position: relative; }
	div.superSlider .sliderPopup .popupHeader { overflow: visible; }
	div.superSlider .sliderPopup .popupHeader h2 { color: #FFF; text-align: center; }
	div.superSlider .sliderPopup .popupFooter { border-top: 1px solid #FFF; }
	div.superSlider .sliderPopup .popupBody { position: relative; width: 80%; max-width: 100vh; }
	div.superSlider .sliderPopup .slideIndicator { margin: 0; }
}
/******************************************************************** Layout Section ************************************************/
@media only screen and (min-width: 10px) {
	/***********Input description***********/
	.mpwem_style span.des_info {font-size: var(--fs);line-height: 1.5;}
	/***********Circular***********/
	div.mpwem_style [class*="_icon_circle"] { width: 40px; height: 40px; min-width: 40px; background-color: var(--color_theme); color: var(--color_theme_alter); margin:5px; }
	div.mpwem_style [class*="_icon_circle"][class*="_xs"] { width: 25px; height: 25px; min-width: 25px; font-size: var(--fs_small); margin:5px; }
	/*****Remove icon******/
	.mpwem_style .mpwem_remove_area { position: relative; }
	.mpwem_style .remove_icon { position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; cursor: pointer; opacity: 0; font-size: var(--fs); background-color: var(--color_danger); color: var(--color_theme_alter); z-index: 1111;}
	.mpwem_style label:hover .remove_icon {opacity: 1;}
	/**************Default************************/
	div.mpwem_style [class*="_layout_"] {padding: var(--dmp); margin-bottom: var(--dmp); }
	div.mpwem_style [class*="_layout_default"] { background-color: var(--color_white); border: 1px solid var(--color_border); }
	div.mpwem_style [class*="_layout_info"] { background-color: var(--color_light);}
	div.mpwem_style [class*="_layout_"][class*="_xs"] { padding: var(--dmp_xs); margin-bottom: var(--dmp_xs); }
	div.mpwem_style [class*="_layout_"][class*="_mp_zero"] { padding: 0; margin: 0; }
}
/******************************************************************** position Section************************************************/
@media only screen and (min-width: 10px) {
	/********Absolute Content********/
	div.mpwem_style [class*="_p_fixed"] { position: fixed; }
	.mpwem_style .pRelative, .mpwem_style [class*="_pRelative"] { position: relative; }
	div.mpwem_style [class*="_pab_"] { position: absolute; z-index: 11;}
	div.mpwem_style [class*="_pab_full"] { left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%; }
	div.mpwem_style [class*="_pab_hover"] { right: 0; top: 100%; left: 0; display: none; padding: 7px; border: 1px solid var(--color_border); }
	div.mpwem_style [class*="_pab_top_right"] { right: var(--dmp); top: var(--dmp); left: inherit;bottom: inherit; }
	div.mpwem_style [class*="_pab_top_right_xs"] { right: var(--dmp_xs); top: var(--dmp_xs); }
	div.mpwem_style [class*="_pab_top_left"] { left: var(--dmp); top: var(--dmp);right: inherit; }
	div.mpwem_style [class*="_pab_top_left_xs"] { left: var(--dmp_xs); top: var(--dmp_xs);}
	div.mpwem_style [class*="_pab_bottom_right"] { right: -1px; bottom: -1px; }
	div.mpwem_style [class*="_pab_left_right_bottom"] { left: 0; right: 0; top: 100%; padding: var(--dmp_xs); }
	div.mpwem_style [class*="_pab_left_right_bottom_inside"] { left: 0; right: 0; top: inherit; bottom: 0; padding: var(--dmp_xs); }
	/****************/
	.mpwem_style .ribbon { position: absolute; top: var(--dmp); left: 0; width: auto; height: auto; padding: 5px var(--dmp); background: var(--color_warning); color: #FFF; border-radius: 3px 6px 6px 0; -webkit-box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.4); box-shadow: 1px 2px 2px 0 rgba(0, 0, 0, 0.4); z-index: 1; }
	.mpwem_style .ribbon::before { content: ""; position: absolute; left: 0; bottom: -10px; width: 0; height: 0; border: 5px solid var(--color_warning); border-bottom-color: transparent; border-left-color: transparent; z-index: -1; }
	/****************/
	.mpwem_style .title_on_border { line-height: 1; height: 40px; position: absolute; top: -20px; left: 30px; color: var(--color_theme); background-color: var(--color_theme_alter); padding: 0 var(--dmp); border-radius: var(--dbr); }
	/********fixed Content********/
	div.mpwem_style .mpwem_sticky_area.mpSticky { position: fixed;top: 100px; }
	div.mpwem_style .mpwem_sticky_area.mpSticky .mpwem_sticky_on_scroll { overflow: auto; z-index: 1111; }
	div.mpwem_style .mpwem_sticky_on_scroll {width: 100%;}
	div.mpwem_style .mpwem_sticky_area.stickyFixed {display: flex; flex-direction: column; justify-content: end;height: 100%;}
}
/******************************************************************** Form section ************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style input,
	.mpwem_style optgroup,
	.mpwem_style select,
	.mpwem_style textarea,
	.mpwem_style button { font-family: inherit; line-height: 1.25; margin: 0; }
	.mpwem_style .formControl:-webkit-autofill,
	.mpwem_style .formControl:-webkit-autofill:hover,
	.mpwem_style .formControl:-webkit-autofill:focus,
	.mpwem_style .formControl:-webkit-autofill:active { -webkit-transition: color 9999s ease-out, background-color 9999s ease-out; transition: color 9999s ease-out, background-color 9999s ease-out; -webkit-transition-delay: 9999s; transition-delay: 9999s; }
	div.mpwem_style form { margin: 0; padding: 0; line-height: 1.25; }
	.mpwem_style label { position: relative; }
	.mpwem_style label > span { white-space: nowrap }
	/***************************/
	.mpwem_style .formControl::placeholder { color: #0005; }
	.mpwem_style .formControl:disabled { background-color: #DDD5; }
	/***************************/
	div.mpwem_style .formControl { width: auto; height: auto; min-width: auto; max-width: inherit; min-height: 34px; border: 1px solid var(--color_border); padding: 5px var(--dmp_xs); font-size: var(--fs); color: var(--d_color); background-color: #F5F8FF; }
	.mpwem_style .formControl:focus { outline: 0; background-color: #FFF; border-color: #80BDFF; }
	div.mpwem_style select.formControl {
		background-image: url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/arrow_down.png");background-repeat: no-repeat;background-position: calc(100% - var(--dmp_xs));background-size: auto;
		-webkit-appearance: none; padding: var(--dmp_xs) 35px var(--dmp_xs) var(--dmp_xs) !important;max-width: 250px;
	}
	div.mpwem_style #mpwem_date_time{
		background-image: url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/arrow_down.png");
		background-repeat: no-repeat;
		background-position: calc(100% - var(--dmp_xs));
		background-size: auto;
	}
	div.mpwem_style select.formControl:focus { background-color: var(--color_theme_aa); }
	div.mpwem_style .formControl.date_type_without_year,
	div.mpwem_style .formControl.date_type,
	div.mpwem_style .formControl[type="date"] {
		background-image: url("https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/calendar.png");background-repeat: no-repeat; background-position: var(--dmp_xs) center; background-size: auto;
		-webkit-appearance: none; font-weight: var(--fw-medium); padding: var(--dmp_xs) var(--dmp_xs) var(--dmp_xs) 40px;
	}
	div.mpwem_style .formControl[type="time"] {padding: 3px 5px;}
	div.mpwem_style textarea.formControl { height: auto; }
	.mpwem_style .mpForm label { margin: var(--dmp_xs) 0 0 0; text-transform: capitalize; }
	.mpwem_style .mpForm label span { width: 100%; margin: 0 0 var(--dmp_xs) 0; }
	.mpwem_style .mpForm label span::before { padding: 0 var(--dmp_xs); }
	/****************/
	.mpwem_style .inputList { margin: var(--dmp) 0 0 0; position: relative; }
	.mpwem_style .inputList textarea.formControl { height: auto; }
	/******* group form*********/
	.mpwem_style .inputGroup { width: 100%; padding: 0 0 var(--dmp_xs) 0; }
	.mpwem_style .inputGroup label { width: auto; padding: 0 var(--dmp) 0 0; }
	.mpwem_style .inputGroup label input[type="checkbox"] { margin: 0 var(--dmp_xs); }
	/******* input as a select*********/
	div.mpwem_style div.mpwem_input_select .formControl:focus { border-color: var(--color_border); }
	.mpwem_style div.mpwem_input_select { position: relative; }
	.mpwem_style ul.mpwem_input_select_list {
		display: none; z-index: 111; overflow: auto;
		max-height: 250px; height: auto; width: 100%;
		margin: 1px 0 0 0; padding: 10px;
		position: absolute; left: 0; top: 100%; right: 0;
		border: 1px solid var(--color_border); background-color: var(--color_white);
	}
	.mpwem_style ul.mpwem_input_select_list li { padding: 10px; cursor: pointer; border-bottom: 1px solid var(--color_border); margin: 0; list-style-type: none; }
	.mpwem_style ul.mpwem_input_select_list li:last-child { border-bottom: none; }
	.mpwem_style ul.mpwem_input_select_list li:hover { background-color: #777; color: #FFF; }
	.mpwem_style ul.mpwem_input_select_list li span {margin: 0 var(--dmp_xs) 0 0;}
	/*****Form inline*******/
	.mpwem_style .inputInline .mpForm {width: 100%;max-width: 100%;}
	.mpwem_style .inputInline .inputList { width: 100%; margin: var(--dmp_xs) var(--dmp_xs) 0 0; }
	.mpwem_style .inputInline .inputList label {margin: 0;}
	.mpwem_style .inputInline .inputList:last-child {margin-right: 0;}
	/********Form Horizontal**************/
	.mpwem_style .inputHorizontal { max-width: 500px; width: 100%;margin: 0 auto; }
	/**********Checkbox Radio*********/
	div.mpwem_style .customRadioLabel { font-size: var(--fs_h6); font-weight: var(--fw-medium); -webkit-flex-wrap: wrap; flex-wrap: wrap; }
	div.mpwem_style .customRadioLabel input[type="radio"] ~ .formControl,
	.mpwem_style .customRadioLabel input[type="radio"] { display: none; }
	.mpwem_style .customRadio { padding: 0 var(--dmp_xs) 0 30px; margin: 0 var(--dmp_xs) var(--dmp_xs) 0; position: relative; cursor: pointer; line-height: 1; white-space: nowrap; min-height: 20px; }
	.mpwem_style .customRadio::before { content: ""; position: absolute; left: 0; top: 0; height: 20px; width: 20px; background-color: #FFF; border: 2px rgba(0, 0, 0, 0.5) solid;; border-radius: 50%; }
	.mpwem_style .customRadioLabel input[type="radio"]:checked ~ .formControl { display: block; }
	.mpwem_style .customRadioLabel input[type="radio"]:checked ~ .customRadio::after,
	.mpwem_style .customRadio.active::after { content: ""; position: absolute; left: 5px; top: 5px; height: 10px; width: 10px; background-color: var(--color_theme); border: 1px solid rgba(0, 0, 0, 0.5); border-radius: 50%; }
	.mpwem_style .customRadio.button_type {
		padding: var(--dmp_xs); margin: 5px; min-width: 120px; text-align: center;
		border: 1px solid var(--color_theme_alter);
		color: var(--color_theme_alter); background-color: var(--color_theme);
	}
	.mpwem_style .customRadio.button_type.active { background-color: grey; color: var(--color_theme_alter); }
	.mpwem_style .customRadio.button_type::before,
	.mpwem_style .customRadio.button_type::after { display: none; }
	/**********Checkbox Custom*********/
	div.mpwem_style .customCheckboxLabel { margin: 0 var(--dmp_xs) var(--dmp_xs) 0; cursor: pointer; font-weight: var(--fw-medium); }
	div.mpwem_style .customCheckboxLabel input[type="checkbox"] { display: none; }
	div.mpwem_style .customCheckboxLabel input:checked ~ .customCheckbox::before { background: var(--color_theme); border: 2px solid var(--color_theme); }
	div.mpwem_style .customCheckboxLabel input:checked ~ .customCheckbox::after { content: ""; position: absolute; left: 2px; top: 4px; height: 7px; width: 14px; border: 2px solid var(--color_theme_alter); border-top: none; border-right: none; z-index: 11; background-color: transparent; -ms-transform: rotate(-45deg); transform: rotate(-45deg); }
	div.mpwem_style .customCheckboxLabel.only_checkbox {width: 20px;margin: 0;}
	div.mpwem_style .customCheckboxLabel.only_checkbox span {padding: 0;}
	div.mpwem_style .customCheckboxLabel input:focus ~ .customCheckbox::before { outline: 0; }
	.mpwem_style .customCheckbox { padding: 1px 0 0 28px; position: relative; line-height: 1; min-width: auto; white-space: wrap; }
	.mpwem_style .customCheckbox::before { content: ""; position: absolute; left: 0; top: 0; height: 18px; width: 18px; background-color: var(--color_theme_alter); border: 2px solid var(--color_theme); border-radius: 2px; }
	/*******************/
	div.mpwem_style .checkbox_item { white-space: wrap;width: auto; cursor: pointer; font-weight: var(--fw-medium);display: -webkit-inline-flex;display: inline-flex;-webkit-align-items: center;align-items: center; }
	div.mpwem_style .checkbox_item .checkbox_custom { position: relative;width: 20px;height: 20px;background-color: var(--color_white); border: 2px solid var(--color_theme); border-radius: 2px; margin: 0 var(--dmp_xs) 0 0;}
	div.mpwem_style .checkbox_item.on .checkbox_custom { background: var(--color_theme);}
	div.mpwem_style .checkbox_item.on .checkbox_custom::after { content: ""; position: absolute; left: 1px; top: 2px; height: 7px; width: 15px; border: 2px solid var(--color_theme_alter); border-top: none; border-right: none; z-index: 11; background-color: transparent; -ms-transform: rotate(-50deg); transform: rotate(-50deg); }
	/*********Input Switch*******/
	.mpwem_style .round_switch_label input[type="checkbox"] { display: none; }
	.mpwem_style .round_switch { width: 50px; height: 22px; min-width: auto; position: relative; background-color: #CCC; border-radius: 30px; -webkit-transition: .4s; transition: .4s; }
	.mpwem_style .round_switch::before { position: absolute; content: "";height: 18px; width: 18px; left: 2px; bottom: 2px; background-color: white; border-radius: 50%; -webkit-transition: .4s; transition: .4s; }
	.mpwem_style .round_switch_label input:checked + .round_switch { background-color: var(--color_theme); }
	.mpwem_style .round_switch_label input:focus + .round_switch { box-shadow: 0 0 1px #2276D2; }
	.mpwem_style .round_switch_label input:checked + .round_switch:before { -ms-transform: translateX(27px); transform: translateX(27px); }
	/*********Group radio check*******/
	.groupRadioCheck [data-radio-check] { cursor: pointer; -webkit-justify-content: flex-start; justify-content: flex-start; }
	.groupRadioCheck button[data-radio-check] { -webkit-justify-content: center; justify-content: center; }
	.groupRadioCheck [data-radio-check]:hover { border-color: var(--color_theme_88); }
	.groupRadioCheck [data-radio-check].mpActive { border-color: var(--color_theme); }
	/*********Group Content*******/
	.mpwem_style [class*="_group_content"] { font-size: var(--fs); border: 1px solid var(--color_border); background-color: var(--color_light); color: var(--color_theme_alter); text-align: center; position: relative; }
	div.mpwem_style div[class*="_group_content"] > * { border-left: 1px solid var(--color_border); margin: 0; }
	div.mpwem_style div[class*="_group_content"] > *:first-child { border: none; }
	div.mpwem_style div[class*="_group_content"] .formControl { text-align: center; border: none; background-color: var(--color_white); height: 100%; border-radius: 0; }
	.mpwem_style [class*="_group_content"] textarea.formControl { text-align: left; }
	.mpwem_style [class*="_group_content"] input[type="radio"] { }
	.mpwem_style [class*="_group_content"] input[type="radio"]::after { position: absolute; content: ""; width: 20px; height: 20px; left: 0; top: 0; border: 1px solid var(--color_border); border-radius: 50%;margin: 10px; }
	div.mpwem_style [class*="_group_content"] input[type="radio"]:checked::after { border-color: var(--color_theme); }
	.mpwem_style [class*="_group_content"] input[type="radio"]:checked::before { position: absolute; content: ""; width: 14px; height: 14px; left: 3px; top: 3px; border: 1px solid var(--color_theme); border-radius: 50%; background-color: var(--color_theme);margin: 10px; }
	.mpwem_style [class*="_group_addon"] { min-width: 30px; cursor: pointer; background-color: #FFF; color: var(--color_theme_88); }
	.mpwem_style [class*="_group_addon"]:hover { background-color: #555; color: #F2F2F2; }
	.mpwem_style [class*="_group_content"] .select2-container--default .select2-selection--single {border: none;border-radius: 0;}
	/*****Form Qty inc dec*******/
	div.mpwem_style .qtyIncDec { display: -webkit-flex;display: flex;-webkit-align-items: center;align-items: center;max-width: 200px; }
	div.mpwem_style .inputIncDec {width: 50px; height: 36px; border: none; text-align: center; font-size: 16px; margin: 0 10px; pointer-events: none;user-select: none;cursor: not-allowed;}
	div.mpwem_style .qtyIncDec .incQty,
	div.mpwem_style .qtyIncDec .decQty {width: 36px; height: 36px; border-radius: 50%; border: none; background-color: #F0F2F5; color: var(--color_theme); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; padding: 10px;}
	/**********Responsive*********/
	@media only screen and (max-width: 1250px) {
		.mpwem_style .inputInline .inputList { max-width: calc(25% - 10px); }
	}
	@media only screen and (max-width: 1050px) {
		.mpwem_style .inputInline .mpForm {-webkit-flex-wrap: wrap;flex-wrap: wrap;}
		.mpwem_style .inputInline .inputList { max-width: calc(33.33% - 10px); -webkit-flex: inherit;flex: inherit;}
	}
	@media only screen and (max-width: 850px) {
		.mpwem_style .inputInline .inputList { max-width: calc(50% - 10px); }
	}
	@media only screen and (max-width: 600px) {
		.mpwem_style .inputInline .inputList { max-width: 100%; min-width: 100%; }
	}
	@media only screen and (max-width: 450px) {
		.mpwem_style [class*="_group_addon"] { min-width: 25px; }
	}
}
/******************************************************************** List section ************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style ul:not(.mp_wp_editor ul) { list-style-type: none; margin: 0; padding: 0; line-height: 1.25; }
	.mpwem_style ul li { margin: 0; padding: 0; line-height: inherit; }
	/******List inline**********/
	.mpwem_style ul.listInline li { text-align: center; border-right: 1px solid; }
	.mpwem_style ul.listInline li:last-child { border: none; }
	.mpwem_style ul.listInline li a { padding: var(--dmp_xs); display: block; }
	.mpwem_style ul.listInline li.mage_active { background-color: var(--color_active) }
	.mpwem_style ul.listInline li.mage_active a { color: #FFF; }
	/******list Horizontal*****/
	.mpwem_style ul.mp_list { margin: var(--dmp_xs) 0 0 0; }
	.mpwem_style ul.mp_list li { padding: 5px 0; border-bottom: 1px dotted var(--color_border); width: 100%; }
	.mpwem_style ul.mp_list li:last-child { border: none; }
	/******All in one line*****/
	.mpwem_style ul.listEqual li { text-align: center; border-right: 1px solid; }
	.mpwem_style ul.listEqual li a { padding: var(--dmp_xs); display: block; }
	.mpwem_style ul.listEqual li.mage_active { background-color: var(--color_active) }
	.mpwem_style ul.listEqual li.mage_active a { color: #FFF; }
	/***list inline two li***/
	.mpwem_style ul.list_inline_two li { width: 45%; padding: 5px; border-bottom: 1px solid var(--color_border); }
	.mpwem_style ul.list_inline_two li span { margin: 0 var(--dmp_xs) 0 0; }
}
/******************************************************************** Table section ************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style table { border-collapse: collapse; width: 100%; }
	.mpwem_style table[class*="_fixed"] { table-layout: fixed; }
	.mpwem_style table th,
	.mpwem_style table td { border: 1px solid var(--color_border); padding: var(--dmp_xs); }
	.mpwem_style table thead th {vertical-align: middle; padding: var(--dmp_xs); font-weight: bold; font-size: var(--fs); white-space: nowrap; background-color: var(--color_light); color: var(--d_color); }
	.mpwem_style table th { vertical-align: top; }
	.mpwem_style table td { padding: var(--dmp_xs); font-weight: var(--fw); font-size: var(--fs); line-height: 1.25; color: var(--d_color); vertical-align: middle; }
	/**************/
	.mpwem_style table tr[data-collapse].mActive { display: table-row; }
	.mpwem_style table th[data-collapse].mActive,
	.mpwem_style table td[data-collapse].mActive { display: table-cell; }
}
/******************************************************************** Tabs section ************************************************/
@media only screen and (min-width: 10px) {
	.mpwem_style .tabLists,
	.mpwem_style .leftTabs { display: -webkit-flex; display: flex; }
	.mpwem_style .tabLists { font-size: var(--fs_h6); width: 100%; }
	.mpwem_style .tabLists span { margin: 0 var(--dmp_xs) 0 0; }
	.leftTabs > .tabLists { -webkit-flex-flow: column; flex-flow: column; min-width: 250px; max-width: 250px; }
	div.mpwem_style [data-tabs-target] {
		display: -webkit-flex; display: flex;
		-webkit-align-items: center; align-items: center;
		-webkit-flex-wrap: nowrap; flex-wrap: nowrap;
		position: relative; text-align: left; cursor: pointer;
		padding: var(--dmp_xs); color: var(--d_color);
	}
	.mpwem_style [data-tabs-target]:hover { font-weight: var(--fw-medium); border-color: var(--color_theme); color: var(--color_white) }
	.mpwem_style [data-tabs-target].active { font-weight: var(--fw-medium); background-color: var(--color_theme); color: var(--color_theme_alter); }
	.topTabs [data-tabs-target] { border-right: 1px solid var(--color_border); -webkit-justify-content: center; justify-content: center; }
	.topTabs [data-tabs-target]:last-child { border-right: none; }
	.leftTabs [data-tabs-target] { border-bottom: 1px solid var(--color_border); }
	.mpwem_style .tabsContent { position: relative; overflow: hidden; width: 100%; padding: var(--dmp); }
	.tabsContent [data-tabs] { display: none; }
	/**************/
	.mpTabs.tabBorder { border: 1px solid var(--color_border); }
	.mpTabs.tabBorder > .tabLists { }
	/******Tab next*********/
	.mpwem_style .tabs_next { }
	.tabs_next .tabListsNext { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; }
	.tabs_next .tabListsNext.dNone {display: none;}
	.tabs_next .tabItemNext {
		position: relative; min-height: 80px;
		display: -webkit-flex; display: flex;
		-webkit-align-items: center; align-items: center;
		-webkit-flex-direction: column; flex-direction: column;
		-webkit-flex: 1; flex: 1;
	}
	.tabs_next .tabItemNext [class*="_icon_circle"] { background-color: var(--color_light); color: var(--d_color); margin: 0; z-index: 1; }
	.tabs_next .tabItemNext .circleTitle { color: var(--d_color); margin: var(--dmp_xs) 0 0 0; left: 0; top: 40px; width: 100%; position: absolute; text-align: center; }
	.tabs_next .tabItemNext.active [class*="_icon_circle"] { background-color: var(--color_theme); color: var(--color_theme_alter); }
	.tabs_next .tabItemNext.active [class*="_icon_circle"].success {background-color: var(--color_success);}
	.tabs_next .tabItemNext.active .circleTitle { color: var(--color_theme_aa); }
	.tabs_next .tabItemNext.active .circleTitle.success {color: var(--color_success);}
	.tabs_next .tabItemNext [class*="_icon_circle"]::after { content: ""; right: 0; left: calc(50% + 20px); top: 20px; position: absolute; border-bottom: 1px solid var(--color_border); z-index: -1; width: 100%; }
	.tabs_next .tabItemNext.active [class*="_icon_circle"]::after { border-color: var(--color_theme); }
	.tabs_next .tabItemNext:last-child [class*="_icon_circle"]::after { border: none; width: 0; }
	.mpwem_style .tabsContentNext { position: relative; width: 100%; padding: var(--dmp); }
	.tabsContentNext [data-tabs-next] { display: none; }
	.tabsContentNext [data-tabs-next].active { display: block; }
	.nextTab_prev_link {cursor: pointer;}
}
/******************************************************************** Panel section ************************************************/
@media only screen and (min-width: 10px) {
	div.mpwem_style .mpPanel,
	div.mpwem_style .mpPanel_xs { position: relative; border: 1px solid var(--color_border); border-radius: var(--dbr); }
	div.mpwem_style .mpPanelHeader { padding: 10px var(--dmp); background-color: #555; color: #FFF;border-radius: var(--dbr) var(--dbr) 0 0; }
	div.mpwem_style .mpPanelHeader .panelTitle,
	div.mpwem_style .mpPanelHeader .panelTitle span { color: #FFF; }
	div.mpwem_style .mpPanelBody { padding: var(--dmp); background-color: var(--color_3); overflow-x: auto;border-radius: 0 0 var(--dbr) var(--dbr); }
	div.mpwem_style .mpPanel_xs .mpPanelHeader,
	div.mpwem_style .mpPanel_xs .mpPanelBody {padding: var(--dmp_xs); }
	div.mpwem_style .mpPanelBody.mp_zero {margin: 0;padding: 0;}
}
/******************************************************************** Faq section ************************************************/
@media only screen and (min-width: 10px) {
	div.mp_faq_item {margin: 0 0 var(--dmp_xs) 0;}
	div.mp_faq_item .mp_faq_title {background-color: #FFF;border: 1px solid #DDD;border-radius: 5px;font-weight: normal;text-transform: none;}
	div.mp_faq_item .mp_faq_title.active {border-color: var(--color_theme);border-radius: 5px 5px 0 0;background-color: var(--color_theme);color: var(--color_theme_alter); }
	div.mp_faq_item .mp_faq_title span {padding: 10px;}
	div.mp_faq_content {background-color: #FFF;padding: var(--dmp);border: 1px solid var(--color_theme);border-radius: 0 0 5px 5px;overflow: hidden;color: #606B7B;font-size: var(--fs_label);}
	div.mp_faq_item div.superSlider {min-width: 300px;max-width: 50%; margin: 0 var(--dmp_xs) var(--dmp_xs) 0;float: left;}
}
/******************************************************************** Popup section ************************************************/
@media only screen and (min-width: 10px) {
	[data-target-popup] { cursor: pointer; }
	div.mpwem_style.mpPopup,
	div.mpwem_style div.mpPopup { display: none; position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 111111; overflow: hidden; background: #000C; }
	div.mpPopup .popupMainArea {
		min-width: 500px; max-width: 700px; width: auto; min-height: 250px; max-height: 100vh; height: auto;
		background-color: #FFF; border: 20px solid #444; position: relative;
		display: -webkit-flex; display: flex;
		-webkit-justify-content: space-between; justify-content: space-between;
		-webkit-flex-flow: column; flex-flow: column;
	}
	div.mpPopup .popupMainArea.fullWidth { max-width: 100vw; width: 100%; }
	div.mpPopup .popup_close { position: fixed; z-index: 1111; cursor: pointer; top: 50px; right: 50px; width: 50px; height: 50px; background-color: #444; color: #FFF; font-size: 20px; }
	div.mpPopup .popup_close:hover { color: #FFF; background-color: #6B003E; }
	div.mpPopup .popupHeader { border-bottom: 4px double var(--color_border); padding: var(--dmp_xs); }
	div.mpPopup .popupBody { padding: var(--dmp); overflow: auto; }
	div.mpPopup .popupBody.mp_zero {margin: 0;padding: 0;}
	div.mpPopup .popupFooter { border-top: 4px double var(--color_border); padding: var(--dmp_xs); }
	div.mpPopup .dLayout, div.mpPopup [class*="_dLayout"], div.mpPopup div.mpwem_style [class*="layout_default"] { margin: 0; }
	/****************************/
	div.mpPopup.right_popup {-webkit-justify-content: flex-end;justify-content: flex-end;}
	div.mpPopup.right_popup .popupMainArea {border: 0; border-radius: 0; padding: 50px 20px;}
	div.mpPopup.right_popup .popup_close {top: 0;right: 0;border-radius: 0;background-color: transparent;color: var(--color_danger);}
}
/******************************************************************** Pagination section ************************************************/
@media only screen and (min-width: 10px) {
	div.mpwem_pagination_area .pagination_item {position: relative;}
	div.mpwem_pagination_area .ribbon {left: var(--dmp_xs_negative);}
	div.pagination_area { margin: var(--dmp_xs) 0 0 0; }
	div.mpwem_style div.pagination_area button.active_pagination { color: var(--color_theme_alter); background-color: var(--color_active); min-width: 50px; font-size: var(--fs_h6); }
	div.mpwem_style div.pagination_area button.ellipse_left,
	div.mpwem_style div.pagination_area button.ellipse_right { color: var(--color_theme); background-color: transparent; }
}
/******************************************************************** Grid Section************************************************/
@media only screen and (min-width: 10px) {
	/********Sidebar Content**************/
	div.mpwem_style [class*="_section_left"],
	div.mpwem_style [class*="_section_left"] .mpwem_sticky_area { width: 100%; max-width: var(--sidebar_left); }
	div.mpwem_style [class*="_section_right"] { width: 100%; max-width: var(--sidebar_right); }
	div.mpwem_style [class*="_section_main"] { width: 100%; max-width: var(--main_section); margin: 0 0 0 var(--dmp); }
	/**************************************/
	body.theme-astra div.mpContainer,
	body.theme-twentytwenty div.mpContainer,
	body.theme-twentytwentyone div.mpContainer,
	body.theme-twentytwentytwo div.mpContainer,
	div.mpContainer { max-width: var(--d_container_width); width: 100%; margin: 0 auto; }
	div.mpRow { min-height: 1px; }
	/************************/
	div.mpwem_style [class*="_full_height"] { height: 100%; }
	div.mpwem_style [class*="_h_100"] { height: 100px; }
	div.mpwem_style [class*="_h_200"] { height: 200px; }
	/************************/
	div.mpwem_style [class*="_w_50"] { width: 50px; min-width: 50px; }
	div.mpwem_style [class*="_w_75"] { width: 75px; min-width: 75px; }
	div.mpwem_style [class*="_w_100"] { width: 100px; min-width: 100px; max-width: 100px;}
	div.mpwem_style [class*="_w_125"] { width: 125px; min-width: 125px; }
	div.mpwem_style [class*="_w_150"] { width: 150px; min-width: 150px; }
	div.mpwem_style [class*="_w_200"] { width: 200px; min-width: 200px; }
	div.mpwem_style [class*="_w_300"] { width: 300px; min-width: 300px; }
	div.mpwem_style [class*="_w_400"] { width: 400px; min-width: 400px; }
	div.mpwem_style [class*="_w_500"] { width: 500px; min-width: 500px; }
	div.mpwem_style [class*="_w_600"] { width: 600px; min-width: 600px; }
	div.mpwem_style [class*="_fullWidth"] { width: 100%; max-width: 100%; }
	/************************/
	div.mpwem_style [class*="_max_100"] { max-width: 100px; width: 100%; }
	div.mpwem_style .max_150, div.mpwem_style [class*="_max_150"] { max-width: 150px; width: 100%; }
	div.mpwem_style .max_200, div.mpwem_style [class*="_max_200"] { max-width: 200px; width: 100%; }
	div.mpwem_style .max_300, div.mpwem_style [class*="_max_300"] { max-width: 300px; width: 100%; }
	div.mpwem_style .max_400, div.mpwem_style [class*="_max_400"] { max-width: 400px; width: 100%; }
	div.mpwem_style .max_500, div.mpwem_style [class*="_max_500"] { max-width: 500px; width: 100%; }
	div.mpwem_style .max_600, div.mpwem_style [class*="_max_600"] { max-width: 600px; width: 100%; }
	div.mpwem_style .max_700, div.mpwem_style [class*="_max_700"] { max-width: 700px; width: 100%; }
	div.mpwem_style .max_800, div.mpwem_style [class*="_max_800"] { max-width: 800px; width: 100%; }
	div.mpwem_style .max_900, div.mpwem_style [class*="_max_900"] { max-width: 900px; width: 100%; }
	div.mpwem_style [class*="_max_1000"] { max-width: 1000px; width: 100%; }
	div.mpwem_style .max_1100, div.mpwem_style [class*="_max_1100"] { max-width: 1100px; width: 100%; }
	div.mpwem_style .max_1200, div.mpwem_style [class*="_max_1200"] { max-width: 1200px; width: 100%; }
	div.mpwem_style .max_full, div.mpwem_style [class*="_max_full"] { max-width: 100%; width: 100%; }
	/************************/
	div.mpwem_style .min_50, div.mpwem_style [class*="_min_50"] { min-width: 50px; }
	div.mpwem_style .min_100, div.mpwem_style [class*="_min_100"] { min-width: 100px; }
	div.mpwem_style .min_125, div.mpwem_style [class*="_min_125"] { min-width: 125px; }
	div.mpwem_style .min_150, div.mpwem_style [class*="_min_150"] { min-width: 150px; }
	div.mpwem_style .min_200, div.mpwem_style [class*="_min_200"] { min-width: 200px; }
	div.mpwem_style .min_250, div.mpwem_style [class*="_min_250"] { min-width: 250px; }
	div.mpwem_style .min_300, div.mpwem_style [class*="_min_300"] { min-width: 300px; }
	div.mpwem_style .min_400, div.mpwem_style [class*="_min_400"] { min-width: 400px; }
	div.mpwem_style .min_500, div.mpwem_style [class*="_min_500"] { min-width: 500px; }
	div.mpwem_style .min_600, div.mpwem_style [class*="_min_600"] { min-width: 600px; }
	div.mpwem_style .min_700, div.mpwem_style [class*="_min_700"] { min-width: 700px; }
	div.mpwem_style .min_800, div.mpwem_style [class*="_min_800"] { min-width: 800px; }
	div.mpwem_style .min_900, div.mpwem_style [class*="_min_900"] { min-width: 900px; }
	div.mpwem_style .min_1000, div.mpwem_style [class*="_min_1000"] { min-width: 1000px; }
	div.mpwem_style .min_auto, div.mpwem_style [class*="_min_auto"] { min-width: auto; }
	/**********************/
	div.mpwem_style div.grid_1 { width: 100%;padding: var(--dmp_xs); }
	div.mpwem_style div.grid_2 { width: calc(50% - var(--dmp));margin: var(--dmp_xs); padding: var(--dmp_xs);}
	div.mpwem_style div.grid_3 { width: calc(33.333333% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	div.mpwem_style div.grid_4 { width: calc(25% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	div.mpwem_style div.grid_5 { width: calc(20% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	div.mpwem_style div.grid_6 { width: calc(16.66666667% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	div.mpwem_style div.grid_7 { width: calc(14.285715% - var(--dmp));margin: var(--dmp_xs);padding: var(--dmp_xs); }
	div.mpwem_style div.grid_8 { width: calc(12.5% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	div.mpwem_style div.grid_9 { width: calc(11.1111111111% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	div.mpwem_style div.grid_10 { width: calc(10% - var(--dmp)); margin: var(--dmp_xs);padding: var(--dmp_xs);}
	@media only screen and (max-width: 1000px) {
		div.mpwem_style div.grid_2,
		div.mpwem_style div.grid_3,
		div.mpwem_style div.grid_4,
		div.mpwem_style div.grid_5,
		div.mpwem_style div.grid_6,
		div.mpwem_style div.grid_7,
		div.mpwem_style div.grid_8,
		div.mpwem_style div.grid_9,
		div.mpwem_style div.grid_10 { width: calc(50% - var(--dmp));}
	}
	@media only screen and (max-width: 600px) {
		div.mpwem_style div.grid_2,
		div.mpwem_style div.grid_3,
		div.mpwem_style div.grid_4,
		div.mpwem_style div.grid_5,
		div.mpwem_style div.grid_6,
		div.mpwem_style div.grid_7,
		div.mpwem_style div.grid_8,
		div.mpwem_style div.grid_9,
		div.mpwem_style div.grid_10 { width: 100%;}
	}
	/**********************/
	.mpwem_style .col_1 { width: 8.3333333333%; }
	.mpwem_style .col_2 { width: 16.666666667%; }
	.mpwem_style .col_3 { width: 25%; }
	.mpwem_style .col_4 { width: 33.333333333%; }
	.mpwem_style .col_5 { width: 41.666666667%; }
	.mpwem_style .col_6 { width: 50%; }
	.mpwem_style .col_7 { width: 58.333333333%; }
	.mpwem_style .col_8 { width: 66.666666667%; }
	.mpwem_style .col_9 { width: 75%; }
	.mpwem_style .col_10 { width: 83.33333333%; }
	.mpwem_style .col_11 { width: 91.66666667%; }
	div.mpwem_style .col_12 { width: 100%; }
	/**********************/
	@media only screen and (max-width: 1200px) {
		.mpwem_style .col_1_1200 { width: 8.3333333333%; }
		.mpwem_style .col_2_1200 { width: 16.666666667%; }
		.mpwem_style .col_3_1200 { width: 25%; }
		.mpwem_style .col_4_1200 { width: 33.333333333%; }
		.mpwem_style .col_5_1200 { width: 41.666666667%; }
		.mpwem_style .col_6_1200 { width: 50%; }
		.mpwem_style .col_7_1200 { width: 58.333333333%; }
		.mpwem_style .col_8_1200 { width: 66.666666667%; }
		.mpwem_style .col_9_1200 { width: 75%; }
		.mpwem_style .col_10_1200 { width: 83.33333333%; }
		.mpwem_style .col_11_1200 { width: 91.66666667%; }
		.mpwem_style .col_12_1200 { width: 100%; }
	}
	/**********************/
	@media only screen and (max-width: 1100px) {
		.mpwem_style .col_1_1100 { width: 8.3333333333%; }
		.mpwem_style .col_2_1100 { width: 16.666666667%; }
		.mpwem_style .col_3_1100 { width: 25%; }
		.mpwem_style .col_4_1100 { width: 33.333333333%; }
		.mpwem_style .col_5_1100 { width: 41.666666667%; }
		.mpwem_style .col_6_1100 { width: 50%; }
		.mpwem_style .col_7_1100 { width: 58.333333333%; }
		.mpwem_style .col_8_1100 { width: 66.666666667%; }
		.mpwem_style .col_9_1100 { width: 75%; }
		.mpwem_style .col_10_1100 { width: 83.33333333%; }
		.mpwem_style .col_11_1100 { width: 91.66666667%; }
		.mpwem_style .col_12_1100 { width: 100%; }
	}
	/**********************/
	@media only screen and (max-width: 1000px) {
		.mpwem_style .col_1_1000 { width: 8.3333333333%; }
		.mpwem_style .col_2_1000 { width: 16.666666667%; }
		.mpwem_style .col_3_1000 { width: 25%; }
		.mpwem_style .col_4_1000 { width: 33.333333333%; }
		.mpwem_style .col_5_1000 { width: 41.666666667%; }
		.mpwem_style .col_6_1000 { width: 50%; }
		.mpwem_style .col_7_1000 { width: 58.333333333%; }
		.mpwem_style .col_8_1000 { width: 66.666666667%; }
		.mpwem_style .col_9_1000 { width: 75%; }
		.mpwem_style .col_10_1000 { width: 83.33333333%; }
		.mpwem_style .col_11_1000 { width: 91.66666667%; }
		.mpwem_style .col_12_1000 { width: 100%; }
	}
	/**********************/
	@media only screen and (max-width: 900px) {
		.mpwem_style .col_1_900 { width: 8.3333333333%; }
		.mpwem_style .col_2_900 { width: 16.666666667%; }
		.mpwem_style .col_3_900 { width: 25%; }
		.mpwem_style .col_4_900 { width: 33.333333333%; }
		.mpwem_style .col_5_900 { width: 41.666666667%; }
		.mpwem_style .col_6_900 { width: 50%; }
		.mpwem_style .col_7_900 { width: 58.333333333%; }
		.mpwem_style .col_8_900 { width: 66.666666667%; }
		.mpwem_style .col_9_900 { width: 75%; }
		.mpwem_style .col_10_900 { width: 83.33333333%; }
		.mpwem_style .col_11_900 { width: 91.66666667%; }
		.mpwem_style .col_12_900 { width: 100%; }
	}
	/**********************/
	@media only screen and (max-width: 800px) {
		.mpwem_style .col_1_800 { width: 8.3333333333%; }
		.mpwem_style .col_2_800 { width: 16.666666667%; }
		.mpwem_style .col_3_800 { width: 25%; }
		.mpwem_style .col_4_800 { width: 33.333333333%; }
		.mpwem_style .col_5_800 { width: 41.666666667%; }
		.mpwem_style .col_6_800 { width: 50%; }
		.mpwem_style .col_7_800 { width: 58.333333333%; }
		.mpwem_style .col_8_800 { width: 66.666666667%; }
		.mpwem_style .col_9_800 { width: 75%; }
		.mpwem_style .col_10_800 { width: 83.33333333%; }
		.mpwem_style .col_11_800 { width: 91.66666667%; }
		.mpwem_style .col_12_800 { width: 100%; }
	}
	/**********************/
	@media only screen and (max-width: 700px) {
		.mpwem_style .col_1_700 { width: 8.3333333333%; }
		.mpwem_style .col_2_700 { width: 16.666666667%; }
		.mpwem_style .col_3_700 { width: 25%; }
		.mpwem_style .col_4_700 { width: 33.333333333%; }
		.mpwem_style .col_5_700 { width: 41.666666667%; }
		.mpwem_style .col_6_700 { width: 50%; }
		.mpwem_style .col_7_700 { width: 58.333333333%; }
		.mpwem_style .col_8_700 { width: 66.666666667%; }
		.mpwem_style .col_9_700 { width: 75%; }
		.mpwem_style .col_10_700 { width: 83.33333333%; }
		.mpwem_style .col_11_700 { width: 91.66666667%; }
		.mpwem_style .col_12_700 { width: 100%; }
	}
	/**********************/
	@media only screen and (max-width: 600px) {
		.mpwem_style .col_1_600 {width: 8.3333333333%;}
		.mpwem_style .col_2_600 {width: 16.666666667%;}
		.mpwem_style .col_3_600 {width: 25%;}
		.mpwem_style .col_4_600 {width: 33.333333333%;}
		.mpwem_style .col_5_600 {width: 41.666666667%;}
		.mpwem_style .col_6_600 {width: 50%;}
		.mpwem_style .col_7_600 {width: 58.333333333%;}
		.mpwem_style .col_8_600 {width: 66.666666667%;}
		.mpwem_style .col_9_600 {width: 75%;}
		.mpwem_style .col_10_600 {width: 83.33333333%;}
		.mpwem_style .col_11_600 {width: 91.66666667%;}
		.mpwem_style .col_12_600 {width: 100%;}
	}
	/**********************/
	@media only screen and (max-width: 500px) {
		.mpwem_style .col_1_500 {width: 8.3333333333%;}
		.mpwem_style .col_2_500 {width: 16.666666667%;}
		.mpwem_style .col_3_500 {width: 25%;}
		.mpwem_style .col_4_500 {width: 33.333333333%;}
		.mpwem_style .col_5_500 {width: 41.666666667%;}
		.mpwem_style .col_6_500 {width: 50%;}
		.mpwem_style .col_7_500 {width: 58.333333333%;}
		.mpwem_style .col_8_500 {width: 66.666666667%;}
		.mpwem_style .col_9_500 {width: 75%;}
		.mpwem_style .col_10_500 {width: 83.33333333%;}
		.mpwem_style .col_11_500 {width: 91.66666667%;}
		.mpwem_style .col_12_500 {width: 100%;}
	}
	/**********************/
	@media only screen and (max-width: 400px) {
		.mpwem_style .col_1_400 {width: 8.3333333333%;}
		.mpwem_style .col_2_400 {width: 16.666666667%;}
		.mpwem_style .col_3_400 {width: 25%;}
		.mpwem_style .col_4_400 {width: 33.333333333%;}
		.mpwem_style .col_5_400 {width: 41.666666667%;}
		.mpwem_style .col_6_400 {width: 50%;}
		.mpwem_style .col_7_400 {width: 58.333333333%;}
		.mpwem_style .col_8_400 {width: 66.666666667%;}
		.mpwem_style .col_9_400 {width: 75%;}
		.mpwem_style .col_10_400 {width: 83.33333333%;}
		.mpwem_style .col_11_400 {width: 91.66666667%;}
		.mpwem_style .col_12_400 {width: 100%;}
	}
}
/******************************************************************** Color section ************************************************/
@media only screen and (min-width: 10px) {
	div.mpwem_style .error { background-color: red; color: #FFF; }
	div.mpwem_style .mDisabled { cursor: not-allowed; opacity: 0.8; background-color: #F2F2F2; color: #777; }
	/*****info*********/
	div.mpwem_style [class*="textInfo"] { color: var(--color_info); }
	div.mpwem_style [class*="bgInfo"] { background-color: var(--color_info); }
	/*****danger*********/
	div.mpwem_style .textDanger, div.mpwem_style [class*="_textDanger"] { color: var(--color_danger); }
	div.mpwem_style .bgDanger, div.mpwem_style [class*="_bgDanger"] { background-color: var(--color_danger); }
	/*****required*********/
	div.mpwem_style .textRequired, div.mpwem_style [class*="_textRequired"] { color: var(--color_required); }
	div.mpwem_style .bgRequired, div.mpwem_style [class*="_bgRequired"] { background-color: var(--color_required); }
	div.mpwem_style .mpRequired, div.mpwem_style [class*="_mpRequired"] { border-color: var(--color_required); }
	/*****Light*********/
	div.mpwem_style .textLight, div.mpwem_style [class*="_textLight"] { color: var(--color_light); }
	div.mpwem_style [class*="_bg_light"] { background-color: var(--color_light); }
	div.mpwem_style .textLight_1, div.mpwem_style [class*="_textLight_1"] { color: var(--color_light_1); }
	div.mpwem_style [class*="_bg_light_1"] { background-color: var(--color_light_1); }
	div.mpwem_style .textLight_2, div.mpwem_style [class*="_textLight_2"] { color: var(--color_light_2); }
	div.mpwem_style [class*="_bg_light_2"] { background-color: var(--color_light_2); }
	div.mpwem_style .btLight_2, div.mpwem_style [class*="_btLight_2"] { background-color: var(--color_light_2); color: var(--color_info);}
	div.mpwem_style .textLight_3, div.mpwem_style [class*="_textLight_3"] { color: var(--color_light_3); }
	div.mpwem_style [class*="_bg_light_3"] { background-color: var(--color_light_3); }
	div.mpwem_style .btLight_3, div.mpwem_style [class*="_btLight_3"] { background-color: var(--color_light_3); color: var(--color_info);}
	div.mpwem_style .textLight_4, div.mpwem_style [class*="_textLight_4"] { color: var(--color_light_4); }
	div.mpwem_style [class*="_bg_light_4"] { background-color: var(--color_light_4); }
	div.mpwem_style .btLight_4, div.mpwem_style [class*="_btLight_4"] { background-color: var(--color_light_4); color: var(--color_info);}
	/*****Gray*********/
	div.mpwem_style .textGray, div.mpwem_style [class*="_textGray"] { color: rgb(128, 128, 128); }
	div.mpwem_style .bgGray, div.mpwem_style [class*="_bgGray"] { background-color: rgb(128, 128, 128); }
	/*****Black*********/
	div.mpwem_style .textBlack, div.mpwem_style a.textBlack, div.mpwem_style [class*="_textBlack"], div.mpwem_style a[class*="_textBlack"] { color: var(--color_black); }
	div.mpwem_style .bgBlack, div.mpwem_style [class*="_bgBlack"] { background-color: var(--color_black);}
	/*****yellow*********/
	div.mpwem_style .textYellow, div.textYellow, .mpwem_style [class*="textYellow"] { color: var(--color_yellow); }
	div.mpwem_style [class*="bgYellow"] { background-color: var(--color_yellow); }
	div.mpwem_style [class*="bgYellow_99"] { background-color: #FFFF0099; }
	div.mpwem_style [class*="bgYellow_77"] { background-color: #FFFF0077; }
	/*****white*********/
	div.mpwem_style [class*="textWhite"] { color: #FFF; }
	div.mpwem_style [class*="bgWhite"] { background-color: #FFF; }
	/*****blue*********/
	div.mpwem_style [class*="textBlue"] { color: var(--color_blue); }
	div.mpwem_style .bgBlue, div.mpwem_style [class*="_bgBlue"] { background-color: var(--color_blue); }
	div.mpwem_style [class*="borderBlue"] { border-color: var(--color_blue); }
	div.mpwem_style [class*="textBorderBlue"] { border-color: var(--color_blue); color: var(--color_blue); }
	/*****Navy blue*********/
	div.mpwem_style .textNavyBlue, div.mpwem_style [class*="_textNavyBlue"] { color: var(--color_navy_blue); }
	div.mpwem_style .bgNavyBlue, div.mpwem_style [class*="_bgNavyBlue"] { background-color: var(--color_navy_blue); }
	/*****Color_1*********/
	div.mpwem_style .textColor_1, div.mpwem_style [class*="_textColor_1"] { color: var(--color_1); }
	div.mpwem_style .bgColor_1, div.mpwem_style [class*="_bgColor_1"] { background-color: var(--color_1); }
	/*****Color_2*********/
	div.mpwem_style .textColor_2, div.mpwem_style [class*="_textColor_2"] { color: var(--color_2); }
	div.mpwem_style .bgColor_2, div.mpwem_style [class*="_bgColor_2"] { background-color: var(--color_2); }
	/*****Color_3*********/
	div.mpwem_style .textColor_3, div.mpwem_style [class*="_textColor_3"] { color: #F2FFC3; }
	div.mpwem_style .bgColor_3, div.mpwem_style [class*="_bgColor_3"] { background-color: #F2FFC3; }
	/*****Color_4*********/
	div.mpwem_style .textColor_4, div.mpwem_style [class*="_textColor_4"] { color: #1A1919; }
	div.mpwem_style .bgColor_4, div.mpwem_style [class*="_bgColor_4"] { background-color: #1A1919; }
}
@media only screen and (min-width: 10px) {
	[class*="mage_icon"] { display: inline-block; }
	span[class*="mp_chair_icon"] { position: relative; width: 30px; height: 35px; border: 1px solid var(--color_border); text-align: center; padding: 5px 0 0 0; }
	span[class*="mp_chair_icon_xs"] { width: 20px; height: 25px; padding: 3px 0 0 0; }
	span[class*="mp_chair_icon"] ::before,
	span[class*="mp_chair_icon"] ::after,
	span[class*="mp_chair_icon"] { -webkit-border-radius: 2px; border-radius: 2px; }
	span[class*="mp_chair_icon"] ::before,
	span[class*="mp_chair_icon"] ::after { content: ""; position: absolute; width: 7px; height: 20px; border: 1px solid var(--color_border); bottom: -1px; background-color: #FFF; }
	span[class*="mp_chair_icon_xs"] ::before,
	span[class*="mp_chair_icon_xs"] ::after { width: 4px; height: 12px; }
	span[class*="mp_chair_icon"] ::before { left: -4px; }
	span[class*="mp_chair_icon"] ::after { right: -4px; }
	span[class*="mp_chair_icon"] span.seat_handle { position: absolute; width: 25px; height: 6px; bottom: 0; left: 4px; border-top: 1px solid var(--color_border); background-color: #FFF; }
	span[class*="mp_chair_icon_xs"] span.seat_handle { width: 15px; height: 4px; }
	div.mpwem_style span.selection,
	div.mpwem_style span.select2-container.select2,
	div.mpwem_style span.select2-container span.select2-selection { min-width: auto; width: 100% !important; height: 100%; max-width: 300px;}
	div.mpwem_style span.selection { overflow: hidden; max-width: 100%; }
	div.mpwem_style span.select2-container span.select2-selection__rendered { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; height: 100%; }
	div.mpwem_style span.select2-container .select2-selection__arrow { top: 2px; height: 37px; }
	div.mpwem_style span.select2-container span { font-size: var(--fs); margin: 0; }
	div.mpwem_style .owl-nav { display: none; }
	/* Carousel Fallback Styles - When Owl Carousel is not available */
	.mep-carousel-fallback {
		display: grid !important;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 20px;
		width: 100%;
	}
	.mep-carousel-fallback .mep-event-item {
		width: 100% !important;
		margin: 0 !important;
		flex: none !important;
	}
	@media (max-width: 768px) {
		.mep-carousel-fallback {
			grid-template-columns: 1fr;
		}
	}
	@media (min-width: 769px) and (max-width: 1024px) {
		.mep-carousel-fallback {
			grid-template-columns: repeat(2, 1fr);
		}
	}
	@media (min-width: 1025px) {
		.mep-carousel-fallback {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	div.mpwem_style .mpwem_load_more_text_area { color: var(--d_color); }
	div.mpwem_style [data-read] { color: var(--color_theme); cursor: pointer;}
	.woocommerce-cart table.cart .product-remove { vertical-align: top; padding: var(--dmp_xs); width: 50px; }
	.woocommerce-cart table.cart .product-remove a:hover { color: var(--color_danger); border-color: var(--color_danger); }
	.woocommerce-cart table.cart .product-thumbnail { min-width: 20%; vertical-align: top; padding: var(--dmp_xs); }
	div.woocommerce .dLayout_xs, div.woocommerce [class*="layout_default"], div.woocommerce .dLayout { background-color: transparent; }
	div.woocommerce ul.cart_list { list-style-type: none; line-height: 1.25; font-size: var(--fs); color: var(--d_color); }
	div.woocommerce ul.cart_list li { padding: 3px 0; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-flex-wrap: wrap; flex-wrap: wrap; }
	div.woocommerce ul.cart_list li span {}
	div.woocommerce .cart_product_item { border: 1px solid var(--color_border); margin: var(--dmp_xs) 0 0 0; padding: var(--dmp_xs); border-radius: var(--dbr); }
	div.woocommerce td.product-name { font-size: var(--fs_h5); font-weight: 500; color: var(--color_theme); }
	div.woocommerce td.product-name dl.variation { display: -webkit-flex; display: flex; -webkit-flex-direction: column; flex-direction: column; color: var(--d_color); margin: 0;}
	div.woocommerce td.product-name dl.variation dd {margin: var(--dmp_xs) 0 0 0;}
	.woocommerce-order-details ul.wc-item-meta li { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; margin: var(--dmp_xs) 0 0 0; }
	.woocommerce-order-details ul.wc-item-meta li > p { margin: 0; color: var(--d_color); }
	#ui-datepicker-div {width: 342px;border-color: var(--color_theme);padding: 0;background-color: #FFF;z-index: 111111111 !important;}
	#ui-datepicker-div .ui-datepicker-header {
		background-color: var(--color_theme);background-image: none;border-color: var(--color_theme);
		padding: var(--dmp_xs);color: var(--color_theme_alter);border-radius: 0;
		display: -webkit-flex;display: flex;-webkit-justify-content: center;justify-content: center;
		font-size: var(--fs_h6);
	}
	#ui-datepicker-div .ui-datepicker-header .ui-icon {display: none;}
	#ui-datepicker-div .ui-datepicker-prev {top: var(--dmp_xs);left: 5px;height: 30px;width: 30px;}
	#ui-datepicker-div .ui-datepicker-next {top: var(--dmp_xs);right: 5px;height: 30px;width: 30px;}
	#ui-datepicker-div .ui-datepicker-prev:hover,
	#ui-datepicker-div .ui-datepicker-prev:focus,
	#ui-datepicker-div .ui-datepicker-next:focus,
	#ui-datepicker-div .ui-datepicker-next:hover {box-shadow: 0 0 0 2px #FFF, 0 0 2px 1px #FFF; outline: 1px solid transparent}
	#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::before,
	#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next::before { position: absolute;content: ">";color: #FFF;left: 10px;font-size: var(--fs_h3);top: 5px;font-weight: bold;line-height: 1;}
	#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::before {content: "<";}
	#ui-datepicker-div .ui-datepicker-header .ui-state-hover {background-color: var(--color_theme);background-image: none;border-color: var(--color_theme);color: var(--color_6);}
	#ui-datepicker-div .ui-state-default {
		background-color: transparent;background-image: none;border: none;border-radius: 50%;
		width: 35px;height: 35px;color: var(--color_theme);font-weight: bold;padding: 0;
		display: -webkit-flex;display: flex;-webkit-align-items: center;align-items: center;-webkit-justify-content: center;justify-content: center;
	}
	#ui-datepicker-div a.ui-state-default:hover {background-color: var(--color_theme); color: var(--color_6);}
	#ui-datepicker-div .ui-state-active {background-color: var(--color_theme);color: var(--color_6);background-image: none;}
	#ui-datepicker-div .ui-datepicker-title {background-color: var(--color_theme);color: var(--color_theme_alter);background-image: none;font-size: var(--fs_h5);display: -webkit-flex;display: flex;margin: 0;}
	#ui-datepicker-div .ui-datepicker-title select {min-width: 100px;height: 30px;font-size: var(--fs);padding: 0 var(--dmp_xs);text-align: left;visibility: visible;}
	#ui-datepicker-div.ui-datepicker td {background-color: floralwhite;border: 1px dotted #000;padding: 4px 6px;}
	.mpwem_style .themeButton, .mpwem_style [class*="_themeButton"] { background-color: var(--color_theme); color: var(--color_theme_alter); padding: var(--dmp_xs) var(--dmp); border: 2px solid var(--color_theme); }
	.mpwem_style .themeButton span, .mpwem_style [class*="_themeButton"] span { color: var(--color_theme_alter); }
	.mpwem_style .themeButton:hover, .mpwem_style [class*="_themeButton"]:hover { background-color: var(--color_theme_cc); color: var(--color_theme_alter); border-color: var(--color_theme_cc); }
	.mpwem_style .themeButton:hover span, .mpwem_style [class*="_themeButton"]:hover span { color: var(--color_theme_alter); }
	.mpwem_style .dButton, .mpwem_style [class*="_dButton"] { color: var(--color_button); background-color: var(--button_bg); }
	.mpwem_style .dButton:hover, .mpwem_style [class*="_dButton"]:hover,
	.mpwem_style .dButton.mActive, .mpwem_style [class*="_dButton"].mActive { color: var(--color_theme_alter); background-color: var(--color_theme); }
	.mpwem_style .dButton span, .mpwem_style [class*="_dButton"] span { color: var(--color_button); }
	div.mpwem_style [class*="Button"][class*="_xs"] {min-width: auto; min-height: var(--button_height_xs); font-size: var(--fs);padding: var(--dmp_xs); }
	div.mpwem_style [class*="Button"][class*="_xxs"] {padding: var(--dmp_xxs);font-size: var(--fs);min-height: auto;min-width: auto;}
	.mpwem_style .dLayout, .mpwem_style [class*="_dLayout"] { padding: var(--dmp); margin-bottom: var(--dmp); background-color: var(--color_white); border: 1px solid var(--color_border); }
	.mpwem_style .dLayout_xs, .mpwem_style [class*="_dLayout_xs"] { padding: var(--dmp_xs); margin-bottom: var(--dmp_xs); }
}
/*!
 * Mage Icon Font Library - Version 1.0.0
 * Author: Shahadat Hossain - https://mage-people.com
 * Description: A free icon font library of mage people.
 *
 * This library is licensed under the GNU General Public License v3.0.
 * See the full license at https://www.gnu.org/licenses/gpl-3.0.txt
 *
 * © 2025 Mage People
 */
/* FONT PATH
 * -------------------------- */

.mi {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: mageicon;
}

.mir {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: mageicon-regular;
}

.mil {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: mageicon-light;
}

.mit {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: mageicon-thin;
}

/* makes the font 33% larger relative to the icon container */
.mi-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.mi-2x {
  font-size: 2em;
}

.mi-3x {
  font-size: 3em;
}

.mi-4x {
  font-size: 4em;
}

.mi-5x {
  font-size: 5em;
}

.mi-fw {
  width: 1.2857142857em;
  text-align: center;
}

.mi-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.mi-ul > li {
  position: relative;
}

.mi-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.mi-li.mi-lg {
  left: -1.8571428571em;
}

.mi-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.mi-pull-left {
  float: left;
}

.mi-pull-right {
  float: right;
}

.mi.mi-pull-left {
  margin-right: 0.3em;
}
.mi.mi-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.mi.pull-left {
  margin-right: 0.3em;
}
.mi.pull-right {
  margin-left: 0.3em;
}

.mi-spin {
  -webkit-animation: mi-spin 2s infinite linear;
  animation: mi-spin 2s infinite linear;
}

.mi-pulse {
  -webkit-animation: mi-spin 1s infinite steps(8);
  animation: mi-spin 1s infinite steps(8);
}

@-webkit-keyframes mi-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes mi-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.mi-rotate-45 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0)";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mi-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mi-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mi-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.mi-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.mi-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .mi-rotate-45,
:root .mi-rotate-90,
:root .mi-rotate-180,
:root .mi-rotate-270,
:root .mi-flip-horizontal,
:root .mi-flip-vertical {
  filter: none;
}

.mi-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.mi-stack-1x, .mi-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.mi-stack-1x {
  line-height: inherit;
}

.mi-stack-2x {
  font-size: 2em;
}

.mi-inverse {
  color: #fff;
}

.mi-0::before {
  content: "\f000";
}

.mi-1::before {
  content: "\f001";
}

.mi-2::before {
  content: "\f002";
}

.mi-3::before {
  content: "\f003";
}

.mi-4::before {
  content: "\f004";
}

.mi-5::before {
  content: "\f005";
}

.mi-6::before {
  content: "\f006";
}

.mi-7::before {
  content: "\f007";
}

.mi-8::before {
  content: "\f008";
}

.mi-9::before {
  content: "\f009";
}

.mi-a::before {
  content: "\f00a";
}

.mi-accident::before {
  content: "\f00b";
}

.mi-acorn::before {
  content: "\f00c";
}

.mi-ad::before {
  content: "\f00d";
}

.mi-ad-paid::before {
  content: "\f00e";
}

.mi-add::before {
  content: "\f00f";
}

.mi-add-document::before {
  content: "\f010";
}

.mi-add-folder::before {
  content: "\f011";
}

.mi-add-image::before {
  content: "\f012";
}

.mi-address-book::before {
  content: "\f013";
}

.mi-admin::before {
  content: "\f014";
}

.mi-admin-alt::before {
  content: "\f015";
}

.mi-age::before {
  content: "\f016";
}

.mi-age-alt::before {
  content: "\f017";
}

.mi-age-restriction-eighteen::before {
  content: "\f018";
}

.mi-age-restriction-seven::before {
  content: "\f019";
}

.mi-age-restriction-six::before {
  content: "\f01a";
}

.mi-age-restriction-sixteen::before {
  content: "\f01b";
}

.mi-age-restriction-thirteen::before {
  content: "\f01c";
}

.mi-age-restriction-three::before {
  content: "\f01d";
}

.mi-age-restriction-twelve::before {
  content: "\f01e";
}

.mi-age-restriction-twenty-one::before {
  content: "\f01f";
}

.mi-age-restriction-zero::before {
  content: "\f020";
}

.mi-air-conditioner::before {
  content: "\f021";
}

.mi-air-conditioning::before {
  content: "\f022";
}

.mi-air-freshener::before {
  content: "\f023";
}

.mi-air-pollution::before {
  content: "\f024";
}

.mi-airplane-journey::before {
  content: "\f025";
}

.mi-airplay::before {
  content: "\f026";
}

.mi-airport-shuttle::before {
  content: "\f027";
}

.mi-alarm-clock::before {
  content: "\f028";
}

.mi-album::before {
  content: "\f029";
}

.mi-album-circle-plus::before {
  content: "\f02a";
}

.mi-album-circle-user::before {
  content: "\f02b";
}

.mi-album-collection::before {
  content: "\f02c";
}

.mi-alicorn::before {
  content: "\f02d";
}

.mi-alien::before {
  content: "\f02e";
}

.mi-ambulance::before {
  content: "\f02f";
}

.mi-analyse::before {
  content: "\f030";
}

.mi-analyse-alt::before {
  content: "\f031";
}

.mi-anatomical-heart::before {
  content: "\f032";
}

.mi-anchor::before {
  content: "\f033";
}

.mi-angle-circle-down::before {
  content: "\f034";
}

.mi-angle-circle-left::before {
  content: "\f035";
}

.mi-angle-circle-right::before {
  content: "\f036";
}

.mi-angle-circle-up::before {
  content: "\f037";
}

.mi-angle-double-left::before {
  content: "\f038";
}

.mi-angle-double-right::before {
  content: "\f039";
}

.mi-angle-double-small-down::before {
  content: "\f03a";
}

.mi-angle-double-small-left::before {
  content: "\f03b";
}

.mi-angle-double-small-right::before {
  content: "\f03c";
}

.mi-angle-double-small-up::before {
  content: "\f03d";
}

.mi-angle-down::before {
  content: "\f03e";
}

.mi-angle-left::before {
  content: "\f03f";
}

.mi-angle-right::before {
  content: "\f040";
}

.mi-angle-small-down::before {
  content: "\f041";
}

.mi-angle-small-left::before {
  content: "\f042";
}

.mi-angle-small-right::before {
  content: "\f043";
}

.mi-angle-small-up::before {
  content: "\f044";
}

.mi-angle-square-down::before {
  content: "\f045";
}

.mi-angle-square-left::before {
  content: "\f046";
}

.mi-angle-square-right::before {
  content: "\f047";
}

.mi-angle-square-up::before {
  content: "\f048";
}

.mi-angle-up::before {
  content: "\f049";
}

.mi-angles-up-down::before {
  content: "\f04a";
}

.mi-angry::before {
  content: "\f04b";
}

.mi-answer::before {
  content: "\f04c";
}

.mi-answer-alt::before {
  content: "\f04d";
}

.mi-apartment::before {
  content: "\f04e";
}

.mi-aperture::before {
  content: "\f04f";
}

.mi-apple-crate::before {
  content: "\f050";
}

.mi-apple-whole::before {
  content: "\f051";
}

.mi-apps::before {
  content: "\f052";
}

.mi-apps-add::before {
  content: "\f053";
}

.mi-apps-delete::before {
  content: "\f054";
}

.mi-apps-sort::before {
  content: "\f055";
}

.mi-archive::before {
  content: "\f056";
}

.mi-archway::before {
  content: "\f057";
}

.mi-arrow-alt-circle-down::before {
  content: "\f058";
}

.mi-arrow-alt-circle-left::before {
  content: "\f059";
}

.mi-arrow-alt-circle-right::before {
  content: "\f05a";
}

.mi-arrow-alt-circle-up::before {
  content: "\f05b";
}

.mi-arrow-alt-down::before {
  content: "\f05c";
}

.mi-arrow-alt-from-bottom::before {
  content: "\f05d";
}

.mi-arrow-alt-from-left::before {
  content: "\f05e";
}

.mi-arrow-alt-from-right::before {
  content: "\f05f";
}

.mi-arrow-alt-from-top::before {
  content: "\f060";
}

.mi-arrow-alt-left::before {
  content: "\f061";
}

.mi-arrow-alt-right::before {
  content: "\f062";
}

.mi-arrow-alt-square-down::before {
  content: "\f063";
}

.mi-arrow-alt-square-left::before {
  content: "\f064";
}

.mi-arrow-alt-square-right::before {
  content: "\f065";
}

.mi-arrow-alt-square-up::before {
  content: "\f066";
}

.mi-arrow-alt-to-bottom::before {
  content: "\f067";
}

.mi-arrow-alt-to-left::before {
  content: "\f068";
}

.mi-arrow-alt-to-right::before {
  content: "\f069";
}

.mi-arrow-alt-to-top::before {
  content: "\f06a";
}

.mi-arrow-alt-up::before {
  content: "\f06b";
}

.mi-arrow-circle-down::before {
  content: "\f06c";
}

.mi-arrow-circle-left::before {
  content: "\f06d";
}

.mi-arrow-circle-right::before {
  content: "\f06e";
}

.mi-arrow-circle-up::before {
  content: "\f06f";
}

.mi-arrow-comparison::before {
  content: "\f070";
}

.mi-arrow-down::before {
  content: "\f071";
}

.mi-arrow-down-from-arc::before {
  content: "\f072";
}

.mi-arrow-down-from-dotted-line::before {
  content: "\f073";
}

.mi-arrow-down-left::before {
  content: "\f074";
}

.mi-arrow-down-small-big::before {
  content: "\f075";
}

.mi-arrow-down-to-dotted-line::before {
  content: "\f076";
}

.mi-arrow-down-to-square::before {
  content: "\f077";
}

.mi-arrow-down-triangle-square::before {
  content: "\f078";
}

.mi-arrow-from-bottom::before {
  content: "\f079";
}

.mi-arrow-from-left::before {
  content: "\f07a";
}

.mi-arrow-from-right::before {
  content: "\f07b";
}

.mi-arrow-from-top::before {
  content: "\f07c";
}

.mi-arrow-left::before {
  content: "\f07d";
}

.mi-arrow-left-from-arc::before {
  content: "\f07e";
}

.mi-arrow-left-from-line::before {
  content: "\f07f";
}

.mi-arrow-left-to-arc::before {
  content: "\f080";
}

.mi-arrow-right::before {
  content: "\f081";
}

.mi-arrow-right-to-bracket::before {
  content: "\f082";
}

.mi-arrow-small-down::before {
  content: "\f083";
}

.mi-arrow-small-left::before {
  content: "\f084";
}

.mi-arrow-small-right::before {
  content: "\f085";
}

.mi-arrow-small-up::before {
  content: "\f086";
}

.mi-arrow-square-down::before {
  content: "\f087";
}

.mi-arrow-square-left::before {
  content: "\f088";
}

.mi-arrow-square-right::before {
  content: "\f089";
}

.mi-arrow-square-up::before {
  content: "\f08a";
}

.mi-arrow-to-bottom::before {
  content: "\f08b";
}

.mi-arrow-to-left::before {
  content: "\f08c";
}

.mi-arrow-to-right::before {
  content: "\f08d";
}

.mi-arrow-to-top::before {
  content: "\f08e";
}

.mi-arrow-trend-down::before {
  content: "\f08f";
}

.mi-arrow-trend-up::before {
  content: "\f090";
}

.mi-arrow-turn-down-left::before {
  content: "\f091";
}

.mi-arrow-turn-down-right::before {
  content: "\f092";
}

.mi-arrow-turn-left-up::before {
  content: "\f093";
}

.mi-arrow-up::before {
  content: "\f094";
}

.mi-arrow-up-from-dotted-line::before {
  content: "\f095";
}

.mi-arrow-up-from-ground-water::before {
  content: "\f096";
}

.mi-arrow-up-from-square::before {
  content: "\f097";
}

.mi-arrow-up-left::before {
  content: "\f098";
}

.mi-arrow-up-left-from-circle::before {
  content: "\f099";
}

.mi-arrow-up-right::before {
  content: "\f09a";
}

.mi-arrow-up-right-and-arrow-down-left-from-center::before {
  content: "\f09b";
}

.mi-arrow-up-right-from-square::before {
  content: "\f09c";
}

.mi-arrow-up-small-big::before {
  content: "\f09d";
}

.mi-arrow-up-to-arc::before {
  content: "\f09e";
}

.mi-arrow-up-to-dotted-line::before {
  content: "\f09f";
}

.mi-arrows::before {
  content: "\f0a0";
}

.mi-arrows-alt::before {
  content: "\f0a1";
}

.mi-arrows-alt-h::before {
  content: "\f0a2";
}

.mi-arrows-alt-v::before {
  content: "\f0a3";
}

.mi-arrows-cross::before {
  content: "\f0a4";
}

.mi-arrows-from-dotted-line::before {
  content: "\f0a5";
}

.mi-arrows-from-line::before {
  content: "\f0a6";
}

.mi-arrows-h::before {
  content: "\f0a7";
}

.mi-arrows-h-copy::before {
  content: "\f0a8";
}

.mi-arrows-repeat::before {
  content: "\f0a9";
}

.mi-arrows-repeat-1::before {
  content: "\f0aa";
}

.mi-arrows-retweet::before {
  content: "\f0ab";
}

.mi-arrows-split-right-and-left::before {
  content: "\f0ac";
}

.mi-arrows-split-up-and-left::before {
  content: "\f0ad";
}

.mi-arrows-to-circle::before {
  content: "\f0ae";
}

.mi-arrows-to-dotted-line::before {
  content: "\f0af";
}

.mi-arrows-to-eye::before {
  content: "\f0b0";
}

.mi-arrows-to-line::before {
  content: "\f0b1";
}

.mi-artificial-intelligence::before {
  content: "\f0b2";
}

.mi-assept-document::before {
  content: "\f0b3";
}

.mi-assessment::before {
  content: "\f0b4";
}

.mi-assign::before {
  content: "\f0b5";
}

.mi-assistive-listening-systems::before {
  content: "\f0b6";
}

.mi-asterik::before {
  content: "\f0b7";
}

.mi-at::before {
  content: "\f0b8";
}

.mi-attribution-pen::before {
  content: "\f0b9";
}

.mi-attribution-pencil::before {
  content: "\f0ba";
}

.mi-aubergine::before {
  content: "\f0bb";
}

.mi-auction::before {
  content: "\f0bc";
}

.mi-audience-megaphone::before {
  content: "\f0bd";
}

.mi-audio-description-slash::before {
  content: "\f0be";
}

.mi-audit::before {
  content: "\f0bf";
}

.mi-audit-alt::before {
  content: "\f0c0";
}

.mi-austral-sign::before {
  content: "\f0c1";
}

.mi-avocado::before {
  content: "\f0c2";
}

.mi-award::before {
  content: "\f0c3";
}

.mi-axe::before {
  content: "\f0c4";
}

.mi-axe-battle::before {
  content: "\f0c5";
}

.mi-b::before {
  content: "\f0c6";
}

.mi-baby::before {
  content: "\f0c7";
}

.mi-baby-carriage::before {
  content: "\f0c8";
}

.mi-back-up::before {
  content: "\f0c9";
}

.mi-background::before {
  content: "\f0ca";
}

.mi-backpack::before {
  content: "\f0cb";
}

.mi-bacteria::before {
  content: "\f0cc";
}

.mi-bacterium::before {
  content: "\f0cd";
}

.mi-badge::before {
  content: "\f0ce";
}

.mi-badge-check::before {
  content: "\f0cf";
}

.mi-badge-dollar::before {
  content: "\f0d0";
}

.mi-badge-percent::before {
  content: "\f0d1";
}

.mi-badge-sheriff::before {
  content: "\f0d2";
}

.mi-badger-honey::before {
  content: "\f0d3";
}

.mi-badget-check-alt::before {
  content: "\f0d4";
}

.mi-badminton::before {
  content: "\f0d5";
}

.mi-bag-map-pin::before {
  content: "\f0d6";
}

.mi-bag-seedling::before {
  content: "\f0d7";
}

.mi-bag-shopping-minus::before {
  content: "\f0d8";
}

.mi-bags-shopping::before {
  content: "\f0d9";
}

.mi-baguette::before {
  content: "\f0da";
}

.mi-bahai::before {
  content: "\f0db";
}

.mi-baht-sign::before {
  content: "\f0dc";
}

.mi-balance-scale-left::before {
  content: "\f0dd";
}

.mi-balance-scale-right::before {
  content: "\f0de";
}

.mi-ball-pile::before {
  content: "\f0df";
}

.mi-balloons::before {
  content: "\f0e0";
}

.mi-ballot::before {
  content: "\f0e1";
}

.mi-ballot-check::before {
  content: "\f0e2";
}

.mi-ban::before {
  content: "\f0e3";
}

.mi-banana::before {
  content: "\f0e4";
}

.mi-band-aid::before {
  content: "\f0e5";
}

.mi-bangladeshi-taka-sign::before {
  content: "\f0e6";
}

.mi-bank::before {
  content: "\f0e7";
}

.mi-banner::before {
  content: "\f0e8";
}

.mi-banner-2::before {
  content: "\f0e9";
}

.mi-banner-3::before {
  content: "\f0ea";
}

.mi-banner-4::before {
  content: "\f0eb";
}

.mi-banner-5::before {
  content: "\f0ec";
}

.mi-barber-pole::before {
  content: "\f0ed";
}

.mi-barber-shop::before {
  content: "\f0ee";
}

.mi-barcode::before {
  content: "\f0ef";
}

.mi-barcode-read::before {
  content: "\f0f0";
}

.mi-barcode-scan::before {
  content: "\f0f1";
}

.mi-bars-progress::before {
  content: "\f0f2";
}

.mi-baseball::before {
  content: "\f0f3";
}

.mi-baseball-alt::before {
  content: "\f0f4";
}

.mi-basket::before {
  content: "\f0f5";
}

.mi-basket-shopping-minus::before {
  content: "\f0f6";
}

.mi-basket-shopping-plus::before {
  content: "\f0f7";
}

.mi-basket-shopping-simple::before {
  content: "\f0f8";
}

.mi-basketball::before {
  content: "\f0f9";
}

.mi-bat::before {
  content: "\f0fa";
}

.mi-bath::before {
  content: "\f0fb";
}

.mi-bath-taking::before {
  content: "\f0fc";
}

.mi-battery-bolt::before {
  content: "\f0fd";
}

.mi-battery-empty::before {
  content: "\f0fe";
}

.mi-battery-exclamation::before {
  content: "\f0ff";
}

.mi-battery-full::before {
  content: "\f100";
}

.mi-battery-half::before {
  content: "\f101";
}

.mi-battery-quarter::before {
  content: "\f102";
}

.mi-battery-slash::before {
  content: "\f103";
}

.mi-battery-three-quarters::before {
  content: "\f104";
}

.mi-beacon::before {
  content: "\f105";
}

.mi-bed::before {
  content: "\f106";
}

.mi-bed-alt::before {
  content: "\f107";
}

.mi-bed-bunk::before {
  content: "\f108";
}

.mi-bed-empty::before {
  content: "\f109";
}

.mi-bee::before {
  content: "\f10a";
}

.mi-beer::before {
  content: "\f10b";
}

.mi-beer-mug-empty::before {
  content: "\f10c";
}

.mi-bell::before {
  content: "\f10d";
}

.mi-bell-concierge::before {
  content: "\f10e";
}

.mi-bell-notification-call::before {
  content: "\f10f";
}

.mi-bell-notification-social-media::before {
  content: "\f110";
}

.mi-bell-ring::before {
  content: "\f111";
}

.mi-bell-school::before {
  content: "\f112";
}

.mi-bell-slash::before {
  content: "\f113";
}

.mi-bells::before {
  content: "\f114";
}

.mi-benefit-diamond-alt::before {
  content: "\f115";
}

.mi-benefit-hand::before {
  content: "\f116";
}

.mi-benefit-increase::before {
  content: "\f117";
}

.mi-benefit-porcent::before {
  content: "\f118";
}

.mi-bible::before {
  content: "\f119";
}

.mi-bike::before {
  content: "\f11a";
}

.mi-biking::before {
  content: "\f11b";
}

.mi-biking-mountain::before {
  content: "\f11c";
}

.mi-bill-arrow::before {
  content: "\f11d";
}

.mi-billiard::before {
  content: "\f11e";
}

.mi-bin-bottles::before {
  content: "\f11f";
}

.mi-binary::before {
  content: "\f120";
}

.mi-binoculars::before {
  content: "\f121";
}

.mi-bio::before {
  content: "\f122";
}

.mi-bio-leaves::before {
  content: "\f123";
}

.mi-biohazard::before {
  content: "\f124";
}

.mi-bird::before {
  content: "\f125";
}

.mi-bitcoin-sign::before {
  content: "\f126";
}

.mi-blanket::before {
  content: "\f127";
}

.mi-blender::before {
  content: "\f128";
}

.mi-blender-phone::before {
  content: "\f129";
}

.mi-blinds::before {
  content: "\f12a";
}

.mi-blinds-open::before {
  content: "\f12b";
}

.mi-blinds-raised::before {
  content: "\f12c";
}

.mi-block::before {
  content: "\f12d";
}

.mi-block-brick::before {
  content: "\f12e";
}

.mi-blockchain-3::before {
  content: "\f12f";
}

.mi-blog-pencil::before {
  content: "\f130";
}

.mi-blog-text::before {
  content: "\f131";
}

.mi-blood::before {
  content: "\f132";
}

.mi-blood-dropper::before {
  content: "\f133";
}

.mi-blood-test-tube::before {
  content: "\f134";
}

.mi-blood-test-tube-alt::before {
  content: "\f135";
}

.mi-blueberries::before {
  content: "\f136";
}

.mi-blueprint::before {
  content: "\f137";
}

.mi-bold::before {
  content: "\f138";
}

.mi-bolt::before {
  content: "\f139";
}

.mi-bolt-auto::before {
  content: "\f13a";
}

.mi-bolt-slash::before {
  content: "\f13b";
}

.mi-bomb::before {
  content: "\f13c";
}

.mi-bone::before {
  content: "\f13d";
}

.mi-bone-break::before {
  content: "\f13e";
}

.mi-bong::before {
  content: "\f13f";
}

.mi-bonus::before {
  content: "\f140";
}

.mi-bonus-alt::before {
  content: "\f141";
}

.mi-bonus-star::before {
  content: "\f142";
}

.mi-book::before {
  content: "\f143";
}

.mi-book-alt::before {
  content: "\f144";
}

.mi-book-atlas::before {
  content: "\f145";
}

.mi-book-bookmark::before {
  content: "\f146";
}

.mi-book-dead::before {
  content: "\f147";
}

.mi-book-font::before {
  content: "\f148";
}

.mi-book-heart::before {
  content: "\f149";
}

.mi-book-medical::before {
  content: "\f14a";
}

.mi-book-open-cover::before {
  content: "\f14b";
}

.mi-book-open-reader::before {
  content: "\f14c";
}

.mi-book-plus::before {
  content: "\f14d";
}

.mi-book-quran::before {
  content: "\f14e";
}

.mi-book-section::before {
  content: "\f14f";
}

.mi-book-spells::before {
  content: "\f150";
}

.mi-book-tanakh::before {
  content: "\f151";
}

.mi-book-user::before {
  content: "\f152";
}

.mi-booking::before {
  content: "\f153";
}

.mi-bookmark::before {
  content: "\f154";
}

.mi-bookmark-slash::before {
  content: "\f155";
}

.mi-books::before {
  content: "\f156";
}

.mi-books-medical::before {
  content: "\f157";
}

.mi-boot::before {
  content: "\f158";
}

.mi-boot-heeled::before {
  content: "\f159";
}

.mi-booth-curtain::before {
  content: "\f15a";
}

.mi-border-all::before {
  content: "\f15b";
}

.mi-border-outer::before {
  content: "\f15c";
}

.mi-boss::before {
  content: "\f15d";
}

.mi-bottle::before {
  content: "\f15e";
}

.mi-bottle-droplet::before {
  content: "\f15f";
}

.mi-bow-arrow::before {
  content: "\f160";
}

.mi-bowl-chopsticks::before {
  content: "\f161";
}

.mi-bowl-rice::before {
  content: "\f162";
}

.mi-bowl-scoop::before {
  content: "\f163";
}

.mi-bowl-scoops::before {
  content: "\f164";
}

.mi-bowl-soft-serve::before {
  content: "\f165";
}

.mi-bowl-spoon::before {
  content: "\f166";
}

.mi-bowling::before {
  content: "\f167";
}

.mi-bowling-ball::before {
  content: "\f168";
}

.mi-bowling-pins::before {
  content: "\f169";
}

.mi-box::before {
  content: "\f16a";
}

.mi-box-check::before {
  content: "\f16b";
}

.mi-box-dollar::before {
  content: "\f16c";
}

.mi-box-open::before {
  content: "\f16d";
}

.mi-boxes::before {
  content: "\f16e";
}

.mi-bracket-curly::before {
  content: "\f16f";
}

.mi-bracket-curly-right::before {
  content: "\f170";
}

.mi-bracket-round::before {
  content: "\f171";
}

.mi-bracket-round-right::before {
  content: "\f172";
}

.mi-bracket-square::before {
  content: "\f173";
}

.mi-bracket-square-right::before {
  content: "\f174";
}

.mi-brackets-curly::before {
  content: "\f175";
}

.mi-brackets-round::before {
  content: "\f176";
}

.mi-brackets-square::before {
  content: "\f177";
}

.mi-brain::before {
  content: "\f178";
}

.mi-brain-circuit::before {
  content: "\f179";
}

.mi-brake-warning::before {
  content: "\f17a";
}

.mi-branching::before {
  content: "\f17b";
}

.mi-brand::before {
  content: "\f17c";
}

.mi-branding::before {
  content: "\f17d";
}

.mi-bread::before {
  content: "\f17e";
}

.mi-bread-loaf::before {
  content: "\f17f";
}

.mi-bread-slice::before {
  content: "\f180";
}

.mi-bread-slice-butter::before {
  content: "\f181";
}

.mi-briefcase::before {
  content: "\f182";
}

.mi-briefcase-arrow-right::before {
  content: "\f183";
}

.mi-briefcase-blank::before {
  content: "\f184";
}

.mi-brightness::before {
  content: "\f185";
}

.mi-brightness-low::before {
  content: "\f186";
}

.mi-bring-forward::before {
  content: "\f187";
}

.mi-bring-front::before {
  content: "\f188";
}

.mi-broadcast-tower::before {
  content: "\f189";
}

.mi-broccoli::before {
  content: "\f18a";
}

.mi-broken-chain-link-wrong::before {
  content: "\f18b";
}

.mi-broken-image::before {
  content: "\f18c";
}

.mi-broom::before {
  content: "\f18d";
}

.mi-broom-ball::before {
  content: "\f18e";
}

.mi-browser::before {
  content: "\f18f";
}

.mi-browser-ui::before {
  content: "\f190";
}

.mi-browsers::before {
  content: "\f191";
}

.mi-brush::before {
  content: "\f192";
}

.mi-bucket::before {
  content: "\f193";
}

.mi-budget-alt::before {
  content: "\f194";
}

.mi-bug::before {
  content: "\f195";
}

.mi-bug-slash::before {
  content: "\f196";
}

.mi-bugs::before {
  content: "\f197";
}

.mi-builder::before {
  content: "\f198";
}

.mi-building::before {
  content: "\f199";
}

.mi-building-circle-arrow-right::before {
  content: "\f19a";
}

.mi-building-ngo::before {
  content: "\f19b";
}

.mi-bulb::before {
  content: "\f19c";
}

.mi-bullet::before {
  content: "\f19d";
}

.mi-bullhorn::before {
  content: "\f19e";
}

.mi-bullseye::before {
  content: "\f19f";
}

.mi-bullseye-arrow::before {
  content: "\f1a0";
}

.mi-bullseye-pointer::before {
  content: "\f1a1";
}

.mi-burger-alt::before {
  content: "\f1a2";
}

.mi-burger-fries::before {
  content: "\f1a3";
}

.mi-burger-glass::before {
  content: "\f1a4";
}

.mi-burrito::before {
  content: "\f1a5";
}

.mi-burst::before {
  content: "\f1a6";
}

.mi-bus::before {
  content: "\f1a7";
}

.mi-business-time::before {
  content: "\f1a8";
}

.mi-butter::before {
  content: "\f1a9";
}

.mi-butterfly::before {
  content: "\f1aa";
}

.mi-c::before {
  content: "\f1ab";
}

.mi-cabin::before {
  content: "\f1ac";
}

.mi-cactus::before {
  content: "\f1ad";
}

.mi-cage-empty::before {
  content: "\f1ae";
}

.mi-cake-birthday::before {
  content: "\f1af";
}

.mi-cake-slice::before {
  content: "\f1b0";
}

.mi-cake-wedding::before {
  content: "\f1b1";
}

.mi-calculator::before {
  content: "\f1b2";
}

.mi-calculator-bill::before {
  content: "\f1b3";
}

.mi-calculator-math-tax::before {
  content: "\f1b4";
}

.mi-calculator-money::before {
  content: "\f1b5";
}

.mi-calculator-simple::before {
  content: "\f1b6";
}

.mi-calendar::before {
  content: "\f1b7";
}

.mi-calendar-arrow-down::before {
  content: "\f1b8";
}

.mi-calendar-arrow-up::before {
  content: "\f1b9";
}

.mi-calendar-birhtday-cake::before {
  content: "\f1ba";
}

.mi-calendar-call::before {
  content: "\f1bb";
}

.mi-calendar-check::before {
  content: "\f1bc";
}

.mi-calendar-clock::before {
  content: "\f1bd";
}

.mi-calendar-day::before {
  content: "\f1be";
}

.mi-calendar-days::before {
  content: "\f1bf";
}

.mi-calendar-event-tax::before {
  content: "\f1c0";
}

.mi-calendar-exclamation::before {
  content: "\f1c1";
}

.mi-calendar-gavel-legal::before {
  content: "\f1c2";
}

.mi-calendar-heart::before {
  content: "\f1c3";
}

.mi-calendar-image::before {
  content: "\f1c4";
}

.mi-calendar-lines::before {
  content: "\f1c5";
}

.mi-calendar-lines-pen::before {
  content: "\f1c6";
}

.mi-calendar-minus::before {
  content: "\f1c7";
}

.mi-calendar-payment-loan::before {
  content: "\f1c8";
}

.mi-calendar-pen::before {
  content: "\f1c9";
}

.mi-calendar-plus::before {
  content: "\f1ca";
}

.mi-calendar-salary::before {
  content: "\f1cb";
}

.mi-calendar-star::before {
  content: "\f1cc";
}

.mi-calendar-swap::before {
  content: "\f1cd";
}

.mi-calendar-week::before {
  content: "\f1ce";
}

.mi-calendar-xmark::before {
  content: "\f1cf";
}

.mi-call-duration::before {
  content: "\f1d0";
}

.mi-call-history::before {
  content: "\f1d1";
}

.mi-call-incoming::before {
  content: "\f1d2";
}

.mi-call-missed::before {
  content: "\f1d3";
}

.mi-call-outgoing::before {
  content: "\f1d4";
}

.mi-camcorder::before {
  content: "\f1d5";
}

.mi-camera::before {
  content: "\f1d6";
}

.mi-camera-cctv::before {
  content: "\f1d7";
}

.mi-camera-movie::before {
  content: "\f1d8";
}

.mi-camera-retro::before {
  content: "\f1d9";
}

.mi-camera-rotate::before {
  content: "\f1da";
}

.mi-camera-security::before {
  content: "\f1db";
}

.mi-camera-slash::before {
  content: "\f1dc";
}

.mi-camera-viewfinder::before {
  content: "\f1dd";
}

.mi-campfire::before {
  content: "\f1de";
}

.mi-camping::before {
  content: "\f1df";
}

.mi-can-food::before {
  content: "\f1e0";
}

.mi-candle-holder::before {
  content: "\f1e1";
}

.mi-candle-lotus-yoga::before {
  content: "\f1e2";
}

.mi-candle-pose-yoga::before {
  content: "\f1e3";
}

.mi-candy::before {
  content: "\f1e4";
}

.mi-candy-alt::before {
  content: "\f1e5";
}

.mi-candy-bar::before {
  content: "\f1e6";
}

.mi-candy-cane::before {
  content: "\f1e7";
}

.mi-candy-corn::before {
  content: "\f1e8";
}

.mi-candy-sweet::before {
  content: "\f1e9";
}

.mi-cannabis::before {
  content: "\f1ea";
}

.mi-canned-food::before {
  content: "\f1eb";
}

.mi-capsules::before {
  content: "\f1ec";
}

.mi-car::before {
  content: "\f1ed";
}

.mi-car-alt::before {
  content: "\f1ee";
}

.mi-car-battery::before {
  content: "\f1ef";
}

.mi-car-bolt::before {
  content: "\f1f0";
}

.mi-car-building::before {
  content: "\f1f1";
}

.mi-car-bump::before {
  content: "\f1f2";
}

.mi-car-bus::before {
  content: "\f1f3";
}

.mi-car-circle-bolt::before {
  content: "\f1f4";
}

.mi-car-crash::before {
  content: "\f1f5";
}

.mi-car-garage::before {
  content: "\f1f6";
}

.mi-car-journey::before {
  content: "\f1f7";
}

.mi-car-mechanic::before {
  content: "\f1f8";
}

.mi-car-rear::before {
  content: "\f1f9";
}

.mi-car-side::before {
  content: "\f1fa";
}

.mi-car-side-bolt::before {
  content: "\f1fb";
}

.mi-car-tilt::before {
  content: "\f1fc";
}

.mi-car-tunnel::before {
  content: "\f1fd";
}

.mi-car-wash::before {
  content: "\f1fe";
}

.mi-caravan::before {
  content: "\f1ff";
}

.mi-caravan-alt::before {
  content: "\f200";
}

.mi-card-club::before {
  content: "\f201";
}

.mi-card-diamond::before {
  content: "\f202";
}

.mi-card-heart::before {
  content: "\f203";
}

.mi-card-spade::before {
  content: "\f204";
}

.mi-cardinal-compass::before {
  content: "\f205";
}

.mi-career-growth::before {
  content: "\f206";
}

.mi-career-path::before {
  content: "\f207";
}

.mi-caret-circle-down::before {
  content: "\f208";
}

.mi-caret-circle-right::before {
  content: "\f209";
}

.mi-caret-circle-up::before {
  content: "\f20a";
}

.mi-caret-down::before {
  content: "\f20b";
}

.mi-caret-left::before {
  content: "\f20c";
}

.mi-caret-quare-up::before {
  content: "\f20d";
}

.mi-caret-right::before {
  content: "\f20e";
}

.mi-caret-square-down::before {
  content: "\f20f";
}

.mi-caret-square-left::before {
  content: "\f210";
}

.mi-caret-square-left_1::before {
  content: "\f211";
}

.mi-caret-square-right::before {
  content: "\f212";
}

.mi-caret-up::before {
  content: "\f213";
}

.mi-carrot::before {
  content: "\f214";
}

.mi-cars::before {
  content: "\f215";
}

.mi-cars-crash::before {
  content: "\f216";
}

.mi-cart-arrow-down::before {
  content: "\f217";
}

.mi-cart-minus::before {
  content: "\f218";
}

.mi-cart-shopping-fast::before {
  content: "\f219";
}

.mi-cash-register::before {
  content: "\f21a";
}

.mi-cassette-tape::before {
  content: "\f21b";
}

.mi-cassette-vhs::before {
  content: "\f21c";
}

.mi-castle::before {
  content: "\f21d";
}

.mi-cat::before {
  content: "\f21e";
}

.mi-cat-head::before {
  content: "\f21f";
}

.mi-cat-space::before {
  content: "\f220";
}

.mi-catalog::before {
  content: "\f221";
}

.mi-catalog-alt::before {
  content: "\f222";
}

.mi-catalog-magazine::before {
  content: "\f223";
}

.mi-category::before {
  content: "\f224";
}

.mi-category-alt::before {
  content: "\f225";
}

.mi-cauldron::before {
  content: "\f226";
}

.mi-cedi-sign::before {
  content: "\f227";
}

.mi-cello::before {
  content: "\f228";
}

.mi-cent-sign::before {
  content: "\f229";
}

.mi-chair::before {
  content: "\f22a";
}

.mi-chair-office::before {
  content: "\f22b";
}

.mi-chalkboard::before {
  content: "\f22c";
}

.mi-chalkboard-user::before {
  content: "\f22d";
}

.mi-challenge::before {
  content: "\f22e";
}

.mi-challenge-alt::before {
  content: "\f22f";
}

.mi-channel::before {
  content: "\f230";
}

.mi-charging-station::before {
  content: "\f231";
}

.mi-chart-area::before {
  content: "\f232";
}

.mi-chart-bullet::before {
  content: "\f233";
}

.mi-chart-candlestick::before {
  content: "\f234";
}

.mi-chart-connected::before {
  content: "\f235";
}

.mi-chart-gantt::before {
  content: "\f236";
}

.mi-chart-histogram::before {
  content: "\f237";
}

.mi-chart-kanban::before {
  content: "\f238";
}

.mi-chart-line-up::before {
  content: "\f239";
}

.mi-chart-line-up-down::before {
  content: "\f23a";
}

.mi-chart-mixed::before {
  content: "\f23b";
}

.mi-chart-mixed-up-circle-currency::before {
  content: "\f23c";
}

.mi-chart-mixed-up-circle-dollar::before {
  content: "\f23d";
}

.mi-chart-network::before {
  content: "\f23e";
}

.mi-chart-pie::before {
  content: "\f23f";
}

.mi-chart-pie-alt::before {
  content: "\f240";
}

.mi-chart-pie-simple-circle-currency::before {
  content: "\f241";
}

.mi-chart-pie-simple-circle-dollar::before {
  content: "\f242";
}

.mi-chart-pyramid::before {
  content: "\f243";
}

.mi-chart-radar::before {
  content: "\f244";
}

.mi-chart-scatter::before {
  content: "\f245";
}

.mi-chart-scatter-3d::before {
  content: "\f246";
}

.mi-chart-scatter-bubble::before {
  content: "\f247";
}

.mi-chart-set-theory::before {
  content: "\f248";
}

.mi-chart-simple::before {
  content: "\f249";
}

.mi-chart-simple-horizontal::before {
  content: "\f24a";
}

.mi-chart-tree::before {
  content: "\f24b";
}

.mi-chart-tree-map::before {
  content: "\f24c";
}

.mi-chart-user::before {
  content: "\f24d";
}

.mi-chart-waterfall::before {
  content: "\f24e";
}

.mi-chat::before {
  content: "\f24f";
}

.mi-chat-arrow-down::before {
  content: "\f250";
}

.mi-chat-arrow-grow::before {
  content: "\f251";
}

.mi-chat-bubble-call::before {
  content: "\f252";
}

.mi-chatbot::before {
  content: "\f253";
}

.mi-chatbot-speech-bubble::before {
  content: "\f254";
}

.mi-cheap::before {
  content: "\f255";
}

.mi-cheap-bill::before {
  content: "\f256";
}

.mi-cheap-dollar::before {
  content: "\f257";
}

.mi-cheap-stack::before {
  content: "\f258";
}

.mi-cheap-stack-dollar::before {
  content: "\f259";
}

.mi-check::before {
  content: "\f25a";
}

.mi-check-circle::before {
  content: "\f25b";
}

.mi-check-double::before {
  content: "\f25c";
}

.mi-check-in-calendar::before {
  content: "\f25d";
}

.mi-check-out-calendar::before {
  content: "\f25e";
}

.mi-checkbox::before {
  content: "\f25f";
}

.mi-checklist-task-budget::before {
  content: "\f260";
}

.mi-cheese::before {
  content: "\f261";
}

.mi-cheese-alt::before {
  content: "\f262";
}

.mi-cheeseburger::before {
  content: "\f263";
}

.mi-cherry::before {
  content: "\f264";
}

.mi-chess::before {
  content: "\f265";
}

.mi-chess-bishop::before {
  content: "\f266";
}

.mi-chess-board::before {
  content: "\f267";
}

.mi-chess-clock::before {
  content: "\f268";
}

.mi-chess-clock-alt::before {
  content: "\f269";
}

.mi-chess-king::before {
  content: "\f26a";
}

.mi-chess-king-alt::before {
  content: "\f26b";
}

.mi-chess-knight::before {
  content: "\f26c";
}

.mi-chess-knight-alt::before {
  content: "\f26d";
}

.mi-chess-pawn-alt::before {
  content: "\f26e";
}

.mi-chess-piece::before {
  content: "\f26f";
}

.mi-chess-queen::before {
  content: "\f270";
}

.mi-chess-queen-alt::before {
  content: "\f271";
}

.mi-chess-rook::before {
  content: "\f272";
}

.mi-chess-rook-alt::before {
  content: "\f273";
}

.mi-chevron-double-down::before {
  content: "\f274";
}

.mi-chevron-double-up::before {
  content: "\f275";
}

.mi-child::before {
  content: "\f276";
}

.mi-child-head::before {
  content: "\f277";
}

.mi-chimney::before {
  content: "\f278";
}

.mi-chip::before {
  content: "\f279";
}

.mi-chocolate::before {
  content: "\f27a";
}

.mi-choir-singing::before {
  content: "\f27b";
}

.mi-choose::before {
  content: "\f27c";
}

.mi-choose-alt::before {
  content: "\f27d";
}

.mi-church::before {
  content: "\f27e";
}

.mi-circle::before {
  content: "\f27f";
}

.mi-circle-0::before {
  content: "\f280";
}

.mi-circle-1::before {
  content: "\f281";
}

.mi-circle-2::before {
  content: "\f282";
}

.mi-circle-3::before {
  content: "\f283";
}

.mi-circle-4::before {
  content: "\f284";
}

.mi-circle-5::before {
  content: "\f285";
}

.mi-circle-6::before {
  content: "\f286";
}

.mi-circle-7::before {
  content: "\f287";
}

.mi-circle-8::before {
  content: "\f288";
}

.mi-circle-9::before {
  content: "\f289";
}

.mi-circle-a::before {
  content: "\f28a";
}

.mi-circle-b::before {
  content: "\f28b";
}

.mi-circle-bolt::before {
  content: "\f28c";
}

.mi-circle-book-open::before {
  content: "\f28d";
}

.mi-circle-bookmark::before {
  content: "\f28e";
}

.mi-circle-c::before {
  content: "\f28f";
}

.mi-circle-calendar::before {
  content: "\f290";
}

.mi-circle-camera::before {
  content: "\f291";
}

.mi-circle-d::before {
  content: "\f292";
}

.mi-circle-dashed::before {
  content: "\f293";
}

.mi-circle-divide::before {
  content: "\f294";
}

.mi-circle-e::before {
  content: "\f295";
}

.mi-circle-ellipsis::before {
  content: "\f296";
}

.mi-circle-ellipsis-vertical::before {
  content: "\f297";
}

.mi-circle-envelope::before {
  content: "\f298";
}

.mi-circle-exclamation-check::before {
  content: "\f299";
}

.mi-circle-f::before {
  content: "\f29a";
}

.mi-circle-g::before {
  content: "\f29b";
}

.mi-circle-h::before {
  content: "\f29c";
}

.mi-circle-half::before {
  content: "\f29d";
}

.mi-circle-half-stroke::before {
  content: "\f29e";
}

.mi-circle-heart::before {
  content: "\f29f";
}

.mi-circle-i::before {
  content: "\f2a0";
}

.mi-circle-j::before {
  content: "\f2a1";
}

.mi-circle-k::before {
  content: "\f2a2";
}

.mi-circle-l::before {
  content: "\f2a3";
}

.mi-circle-m::before {
  content: "\f2a4";
}

.mi-circle-microphone::before {
  content: "\f2a5";
}

.mi-circle-microphone-lines::before {
  content: "\f2a6";
}

.mi-circle-n::before {
  content: "\f2a7";
}

.mi-circle-nodes::before {
  content: "\f2a8";
}

.mi-circle-o::before {
  content: "\f2a9";
}

.mi-circle-overlap::before {
  content: "\f2aa";
}

.mi-circle-p::before {
  content: "\f2ab";
}

.mi-circle-phone::before {
  content: "\f2ac";
}

.mi-circle-phone-flip::before {
  content: "\f2ad";
}

.mi-circle-phone-hangup::before {
  content: "\f2ae";
}

.mi-circle-q::before {
  content: "\f2af";
}

.mi-circle-quarter::before {
  content: "\f2b0";
}

.mi-circle-quarters-alt::before {
  content: "\f2b1";
}

.mi-circle-r::before {
  content: "\f2b2";
}

.mi-circle-s::before {
  content: "\f2b3";
}

.mi-circle-small::before {
  content: "\f2b4";
}

.mi-circle-star::before {
  content: "\f2b5";
}

.mi-circle-t::before {
  content: "\f2b6";
}

.mi-circle-three-quarters::before {
  content: "\f2b7";
}

.mi-circle-trash::before {
  content: "\f2b8";
}

.mi-circle-u::before {
  content: "\f2b9";
}

.mi-circle-user::before {
  content: "\f2ba";
}

.mi-circle-v::before {
  content: "\f2bb";
}

.mi-circle-video::before {
  content: "\f2bc";
}

.mi-circle-w::before {
  content: "\f2bd";
}

.mi-circle-waveform-lines::before {
  content: "\f2be";
}

.mi-circle-x::before {
  content: "\f2bf";
}

.mi-circle-xmark::before {
  content: "\f2c0";
}

.mi-circle-y::before {
  content: "\f2c1";
}

.mi-circle-z::before {
  content: "\f2c2";
}

.mi-citrus::before {
  content: "\f2c3";
}

.mi-citrus-slice::before {
  content: "\f2c4";
}

.mi-city::before {
  content: "\f2c5";
}

.mi-clapperboard::before {
  content: "\f2c6";
}

.mi-clapperboard-play::before {
  content: "\f2c7";
}

.mi-clarinet::before {
  content: "\f2c8";
}

.mi-claw-marks::before {
  content: "\f2c9";
}

.mi-clear-alt::before {
  content: "\f2ca";
}

.mi-clip::before {
  content: "\f2cb";
}

.mi-clip-file::before {
  content: "\f2cc";
}

.mi-clip-mail::before {
  content: "\f2cd";
}

.mi-clipboard::before {
  content: "\f2ce";
}

.mi-clipboard-check::before {
  content: "\f2cf";
}

.mi-clipboard-exclamation::before {
  content: "\f2d0";
}

.mi-clipboard-list::before {
  content: "\f2d1";
}

.mi-clipboard-list-check::before {
  content: "\f2d2";
}

.mi-clipboard-prescription::before {
  content: "\f2d3";
}

.mi-clipboard-question::before {
  content: "\f2d4";
}

.mi-clipboard-user::before {
  content: "\f2d5";
}

.mi-clipoard-wrong::before {
  content: "\f2d6";
}

.mi-clock::before {
  content: "\f2d7";
}

.mi-clock-desk::before {
  content: "\f2d8";
}

.mi-clock-eight-thirty::before {
  content: "\f2d9";
}

.mi-clock-eleven::before {
  content: "\f2da";
}

.mi-clock-eleven-thirty::before {
  content: "\f2db";
}

.mi-clock-five::before {
  content: "\f2dc";
}

.mi-clock-five-thirty::before {
  content: "\f2dd";
}

.mi-clock-four-thirty::before {
  content: "\f2de";
}

.mi-clock-nine::before {
  content: "\f2df";
}

.mi-clock-nine-thirty::before {
  content: "\f2e0";
}

.mi-clock-one::before {
  content: "\f2e1";
}

.mi-clock-one-thirty::before {
  content: "\f2e2";
}

.mi-clock-seven::before {
  content: "\f2e3";
}

.mi-clock-seven-thirty::before {
  content: "\f2e4";
}

.mi-clock-six::before {
  content: "\f2e5";
}

.mi-clock-six-thirty::before {
  content: "\f2e6";
}

.mi-clock-ten::before {
  content: "\f2e7";
}

.mi-clock-ten-thirty::before {
  content: "\f2e8";
}

.mi-clock-three::before {
  content: "\f2e9";
}

.mi-clock-three-thirty::before {
  content: "\f2ea";
}

.mi-clock-time-tracking::before {
  content: "\f2eb";
}

.mi-clock-twelve::before {
  content: "\f2ec";
}

.mi-clock-twelve-thirty::before {
  content: "\f2ed";
}

.mi-clock-two::before {
  content: "\f2ee";
}

.mi-clock-two-thirty::before {
  content: "\f2ef";
}

.mi-clock-up-arrow::before {
  content: "\f2f0";
}

.mi-clone::before {
  content: "\f2f1";
}

.mi-closed-captioning-slash::before {
  content: "\f2f2";
}

.mi-clothes-hanger::before {
  content: "\f2f3";
}

.mi-cloud::before {
  content: "\f2f4";
}

.mi-cloud-back-up::before {
  content: "\f2f5";
}

.mi-cloud-back-up-alt::before {
  content: "\f2f6";
}

.mi-cloud-check::before {
  content: "\f2f7";
}

.mi-cloud-code::before {
  content: "\f2f8";
}

.mi-cloud-disabled::before {
  content: "\f2f9";
}

.mi-cloud-download::before {
  content: "\f2fa";
}

.mi-cloud-download-alt::before {
  content: "\f2fb";
}

.mi-cloud-drizzle::before {
  content: "\f2fc";
}

.mi-cloud-exclamation::before {
  content: "\f2fd";
}

.mi-cloud-gear-automation::before {
  content: "\f2fe";
}

.mi-cloud-hail::before {
  content: "\f2ff";
}

.mi-cloud-hail-mixed::before {
  content: "\f300";
}

.mi-cloud-meatball::before {
  content: "\f301";
}

.mi-cloud-moon::before {
  content: "\f302";
}

.mi-cloud-moon-rain::before {
  content: "\f303";
}

.mi-cloud-question::before {
  content: "\f304";
}

.mi-cloud-rain::before {
  content: "\f305";
}

.mi-cloud-rainbow::before {
  content: "\f306";
}

.mi-cloud-share::before {
  content: "\f307";
}

.mi-cloud-showers::before {
  content: "\f308";
}

.mi-cloud-showers-heavy::before {
  content: "\f309";
}

.mi-cloud-sleet::before {
  content: "\f30a";
}

.mi-cloud-snow::before {
  content: "\f30b";
}

.mi-cloud-sun::before {
  content: "\f30c";
}

.mi-cloud-sun-rain::before {
  content: "\f30d";
}

.mi-cloud-upload::before {
  content: "\f30e";
}

.mi-cloud-upload-alt::before {
  content: "\f30f";
}

.mi-clouds::before {
  content: "\f310";
}

.mi-clouds-moon::before {
  content: "\f311";
}

.mi-clouds-sun::before {
  content: "\f312";
}

.mi-clover-alt::before {
  content: "\f313";
}

.mi-club::before {
  content: "\f314";
}

.mi-cocktail::before {
  content: "\f315";
}

.mi-cocktail-alt::before {
  content: "\f316";
}

.mi-coconut::before {
  content: "\f317";
}

.mi-code-branch::before {
  content: "\f318";
}

.mi-code-commit::before {
  content: "\f319";
}

.mi-code-compare::before {
  content: "\f31a";
}

.mi-code-fork::before {
  content: "\f31b";
}

.mi-code-merge::before {
  content: "\f31c";
}

.mi-code-pull-request::before {
  content: "\f31d";
}

.mi-code-pull-request-closed::before {
  content: "\f31e";
}

.mi-code-pull-request-draft::before {
  content: "\f31f";
}

.mi-code-simple::before {
  content: "\f320";
}

.mi-coffee::before {
  content: "\f321";
}

.mi-coffee-bean::before {
  content: "\f322";
}

.mi-coffee-beans::before {
  content: "\f323";
}

.mi-coffee-heart::before {
  content: "\f324";
}

.mi-coffee-pot::before {
  content: "\f325";
}

.mi-coffin::before {
  content: "\f326";
}

.mi-coffin-cross::before {
  content: "\f327";
}

.mi-coin::before {
  content: "\f328";
}

.mi-coin-up-arrow::before {
  content: "\f329";
}

.mi-coins::before {
  content: "\f32a";
}

.mi-colon-sign::before {
  content: "\f32b";
}

.mi-columns-3::before {
  content: "\f32c";
}

.mi-comet::before {
  content: "\f32d";
}

.mi-command::before {
  content: "\f32e";
}

.mi-comment::before {
  content: "\f32f";
}

.mi-comment-alt::before {
  content: "\f330";
}

.mi-comment-alt-check::before {
  content: "\f331";
}

.mi-comment-alt-dots::before {
  content: "\f332";
}

.mi-comment-alt-edit::before {
  content: "\f333";
}

.mi-comment-alt-medical::before {
  content: "\f334";
}

.mi-comment-alt-middle::before {
  content: "\f335";
}

.mi-comment-alt-middle-top::before {
  content: "\f336";
}

.mi-comment-alt-minus::before {
  content: "\f337";
}

.mi-comment-alt-music::before {
  content: "\f338";
}

.mi-comment-arrow-down::before {
  content: "\f339";
}

.mi-comment-arrow-up::before {
  content: "\f33a";
}

.mi-comment-arrow-up-right::before {
  content: "\f33b";
}

.mi-comment-check::before {
  content: "\f33c";
}

.mi-comment-code::before {
  content: "\f33d";
}

.mi-comment-dollar::before {
  content: "\f33e";
}

.mi-comment-dots::before {
  content: "\f33f";
}

.mi-comment-exclamation::before {
  content: "\f340";
}

.mi-comment-heart::before {
  content: "\f341";
}

.mi-comment-image::before {
  content: "\f342";
}

.mi-comment-info::before {
  content: "\f343";
}

.mi-comment-medical::before {
  content: "\f344";
}

.mi-comment-minus::before {
  content: "\f345";
}

.mi-comment-pen::before {
  content: "\f346";
}

.mi-comment-question::before {
  content: "\f347";
}

.mi-comment-quote::before {
  content: "\f348";
}

.mi-comment-slash::before {
  content: "\f349";
}

.mi-comment-smile::before {
  content: "\f34a";
}

.mi-comment-sms::before {
  content: "\f34b";
}

.mi-comment-text::before {
  content: "\f34c";
}

.mi-comment-user::before {
  content: "\f34d";
}

.mi-comment-xmark::before {
  content: "\f34e";
}

.mi-comments::before {
  content: "\f34f";
}

.mi-comments-dollar::before {
  content: "\f350";
}

.mi-comments-question::before {
  content: "\f351";
}

.mi-comments-question-check::before {
  content: "\f352";
}

.mi-compass-alt::before {
  content: "\f353";
}

.mi-compass-east::before {
  content: "\f354";
}

.mi-compass-north::before {
  content: "\f355";
}

.mi-compass-slash::before {
  content: "\f356";
}

.mi-compass-south::before {
  content: "\f357";
}

.mi-compass-west::before {
  content: "\f358";
}

.mi-completed::before {
  content: "\f359";
}

.mi-compliance::before {
  content: "\f35a";
}

.mi-compliance-clipboard::before {
  content: "\f35b";
}

.mi-compliance-document::before {
  content: "\f35c";
}

.mi-compress::before {
  content: "\f35d";
}

.mi-compress-alt::before {
  content: "\f35e";
}

.mi-computer::before {
  content: "\f35f";
}

.mi-computer-classic::before {
  content: "\f360";
}

.mi-computer-mouse::before {
  content: "\f361";
}

.mi-computer-speaker::before {
  content: "\f362";
}

.mi-concierge-bell::before {
  content: "\f363";
}

.mi-condition::before {
  content: "\f364";
}

.mi-condition-alt::before {
  content: "\f365";
}

.mi-confetti::before {
  content: "\f366";
}

.mi-constellation::before {
  content: "\f367";
}

.mi-container-storage::before {
  content: "\f368";
}

.mi-convert-document::before {
  content: "\f369";
}

.mi-convert-shapes::before {
  content: "\f36a";
}

.mi-conveyor-belt::before {
  content: "\f36b";
}

.mi-conveyor-belt-alt::before {
  content: "\f36c";
}

.mi-conveyor-belt-arm::before {
  content: "\f36d";
}

.mi-conveyor-belt-empty::before {
  content: "\f36e";
}

.mi-cookie::before {
  content: "\f36f";
}

.mi-cookie-alt::before {
  content: "\f370";
}

.mi-copy::before {
  content: "\f371";
}

.mi-copy-alt::before {
  content: "\f372";
}

.mi-copy-image::before {
  content: "\f373";
}

.mi-copyright::before {
  content: "\f374";
}

.mi-corn::before {
  content: "\f375";
}

.mi-corporate::before {
  content: "\f376";
}

.mi-corporate-alt::before {
  content: "\f377";
}

.mi-couch::before {
  content: "\f378";
}

.mi-court-sport::before {
  content: "\f379";
}

.mi-cow::before {
  content: "\f37a";
}

.mi-cow-alt::before {
  content: "\f37b";
}

.mi-cowbell::before {
  content: "\f37c";
}

.mi-cowbell-circle-plus::before {
  content: "\f37d";
}

.mi-cowbell-more::before {
  content: "\f37e";
}

.mi-crab::before {
  content: "\f37f";
}

.mi-crate-empty::before {
  content: "\f380";
}

.mi-cream::before {
  content: "\f381";
}

.mi-credit-card::before {
  content: "\f382";
}

.mi-credit-card-buyer::before {
  content: "\f383";
}

.mi-credit-card-eye::before {
  content: "\f384";
}

.mi-cricket::before {
  content: "\f385";
}

.mi-crm::before {
  content: "\f386";
}

.mi-crm-alt::before {
  content: "\f387";
}

.mi-crm-computer::before {
  content: "\f388";
}

.mi-croissant::before {
  content: "\f389";
}

.mi-cross::before {
  content: "\f38a";
}

.mi-cross-circle::before {
  content: "\f38b";
}

.mi-cross-religion::before {
  content: "\f38c";
}

.mi-cross-small::before {
  content: "\f38d";
}

.mi-crow::before {
  content: "\f38e";
}

.mi-crown::before {
  content: "\f38f";
}

.mi-crutch::before {
  content: "\f390";
}

.mi-crutches::before {
  content: "\f391";
}

.mi-cruzeiro-sign::before {
  content: "\f392";
}

.mi-crypto-calendar::before {
  content: "\f393";
}

.mi-cryptocurrency::before {
  content: "\f394";
}

.mi-crystal-ball::before {
  content: "\f395";
}

.mi-cube::before {
  content: "\f396";
}

.mi-cubes::before {
  content: "\f397";
}

.mi-cubes-stacked::before {
  content: "\f398";
}

.mi-cucumber::before {
  content: "\f399";
}

.mi-cup::before {
  content: "\f39a";
}

.mi-cup-straw::before {
  content: "\f39b";
}

.mi-cup-straw-swoosh::before {
  content: "\f39c";
}

.mi-cup-togo::before {
  content: "\f39d";
}

.mi-cupcake::before {
  content: "\f39e";
}

.mi-cupcake-alt::before {
  content: "\f39f";
}

.mi-curling::before {
  content: "\f3a0";
}

.mi-cursor::before {
  content: "\f3a1";
}

.mi-cursor-finger::before {
  content: "\f3a2";
}

.mi-cursor-plus::before {
  content: "\f3a3";
}

.mi-cursor-text::before {
  content: "\f3a4";
}

.mi-cursor-text-alt::before {
  content: "\f3a5";
}

.mi-curve::before {
  content: "\f3a6";
}

.mi-curve-alt::before {
  content: "\f3a7";
}

.mi-curve-arrow::before {
  content: "\f3a8";
}

.mi-custard::before {
  content: "\f3a9";
}

.mi-customer-care::before {
  content: "\f3aa";
}

.mi-customer-service::before {
  content: "\f3ab";
}

.mi-customization::before {
  content: "\f3ac";
}

.mi-customization-cogwheel::before {
  content: "\f3ad";
}

.mi-customize::before {
  content: "\f3ae";
}

.mi-customize-computer::before {
  content: "\f3af";
}

.mi-customize-edit::before {
  content: "\f3b0";
}

.mi-cv::before {
  content: "\f3b1";
}

.mi-cvv-card::before {
  content: "\f3b2";
}

.mi-d::before {
  content: "\f3b3";
}

.mi-dagger::before {
  content: "\f3b4";
}

.mi-daily-calendar::before {
  content: "\f3b5";
}

.mi-damage::before {
  content: "\f3b6";
}

.mi-dart::before {
  content: "\f3b7";
}

.mi-dashboard::before {
  content: "\f3b8";
}

.mi-dashboard-monitor::before {
  content: "\f3b9";
}

.mi-dashboard-panel::before {
  content: "\f3ba";
}

.mi-data-transfer::before {
  content: "\f3bb";
}

.mi-database::before {
  content: "\f3bc";
}

.mi-debt::before {
  content: "\f3bd";
}

.mi-deck::before {
  content: "\f3be";
}

.mi-deer::before {
  content: "\f3bf";
}

.mi-deer-rudolph::before {
  content: "\f3c0";
}

.mi-delete::before {
  content: "\f3c1";
}

.mi-delete-document::before {
  content: "\f3c2";
}

.mi-delete-right::before {
  content: "\f3c3";
}

.mi-delete-user::before {
  content: "\f3c4";
}

.mi-democrat::before {
  content: "\f3c5";
}

.mi-department::before {
  content: "\f3c6";
}

.mi-department-structure::before {
  content: "\f3c7";
}

.mi-deposit::before {
  content: "\f3c8";
}

.mi-deposit-alt::before {
  content: "\f3c9";
}

.mi-description::before {
  content: "\f3ca";
}

.mi-description-alt::before {
  content: "\f3cb";
}

.mi-desk::before {
  content: "\f3cc";
}

.mi-desktop-arrow-down::before {
  content: "\f3cd";
}

.mi-desktop-wallpaper::before {
  content: "\f3ce";
}

.mi-devices::before {
  content: "\f3cf";
}

.mi-dewpoint::before {
  content: "\f3d0";
}

.mi-dharmachakra::before {
  content: "\f3d1";
}

.mi-diagram-cells::before {
  content: "\f3d2";
}

.mi-diagram-lean-canvas::before {
  content: "\f3d3";
}

.mi-diagram-nested::before {
  content: "\f3d4";
}

.mi-diagram-next::before {
  content: "\f3d5";
}

.mi-diagram-predecessor::before {
  content: "\f3d6";
}

.mi-diagram-previous::before {
  content: "\f3d7";
}

.mi-diagram-project::before {
  content: "\f3d8";
}

.mi-diagram-sankey::before {
  content: "\f3d9";
}

.mi-diagram-subtask::before {
  content: "\f3da";
}

.mi-diagram-successor::before {
  content: "\f3db";
}

.mi-diagram-venn::before {
  content: "\f3dc";
}

.mi-dial::before {
  content: "\f3dd";
}

.mi-dial-high::before {
  content: "\f3de";
}

.mi-dial-low::before {
  content: "\f3df";
}

.mi-dial-max::before {
  content: "\f3e0";
}

.mi-dial-med::before {
  content: "\f3e1";
}

.mi-dial-med-low::before {
  content: "\f3e2";
}

.mi-dial-min::before {
  content: "\f3e3";
}

.mi-dial-off::before {
  content: "\f3e4";
}

.mi-diamond::before {
  content: "\f3e5";
}

.mi-diamond-exclamation::before {
  content: "\f3e6";
}

.mi-diamond-turn-right::before {
  content: "\f3e7";
}

.mi-diary-bookmark-down::before {
  content: "\f3e8";
}

.mi-diary-bookmarks::before {
  content: "\f3e9";
}

.mi-diary-clasp::before {
  content: "\f3ea";
}

.mi-dice::before {
  content: "\f3eb";
}

.mi-dice-alt::before {
  content: "\f3ec";
}

.mi-dice-d10::before {
  content: "\f3ed";
}

.mi-dice-d12::before {
  content: "\f3ee";
}

.mi-dice-d20::before {
  content: "\f3ef";
}

.mi-dice-d4::before {
  content: "\f3f0";
}

.mi-dice-d6::before {
  content: "\f3f1";
}

.mi-dice-d8::before {
  content: "\f3f2";
}

.mi-dice-four::before {
  content: "\f3f3";
}

.mi-dice-one::before {
  content: "\f3f4";
}

.mi-dice-six::before {
  content: "\f3f5";
}

.mi-dice-three::before {
  content: "\f3f6";
}

.mi-dice-two::before {
  content: "\f3f7";
}

.mi-digging::before {
  content: "\f3f8";
}

.mi-digital-tachograph::before {
  content: "\f3f9";
}

.mi-dinner::before {
  content: "\f3fa";
}

.mi-diploma::before {
  content: "\f3fb";
}

.mi-direction-signal::before {
  content: "\f3fc";
}

.mi-direction-signal-arrow::before {
  content: "\f3fd";
}

.mi-disc-drive::before {
  content: "\f3fe";
}

.mi-disco-ball::before {
  content: "\f3ff";
}

.mi-discover::before {
  content: "\f400";
}

.mi-disease::before {
  content: "\f401";
}

.mi-disk::before {
  content: "\f402";
}

.mi-display-arrow-down::before {
  content: "\f403";
}

.mi-display-chart-up::before {
  content: "\f404";
}

.mi-display-code::before {
  content: "\f405";
}

.mi-display-medical::before {
  content: "\f406";
}

.mi-display-slash::before {
  content: "\f407";
}

.mi-distribute-spacing-horizontal::before {
  content: "\f408";
}

.mi-distribute-spacing-vertical::before {
  content: "\f409";
}

.mi-divide::before {
  content: "\f40a";
}

.mi-dizzy::before {
  content: "\f40b";
}

.mi-dna::before {
  content: "\f40c";
}

.mi-do-not-enter::before {
  content: "\f40d";
}

.mi-doctor::before {
  content: "\f40e";
}

.mi-document::before {
  content: "\f40f";
}

.mi-document-circle-wrong::before {
  content: "\f410";
}

.mi-document-paid::before {
  content: "\f411";
}

.mi-document-signed::before {
  content: "\f412";
}

.mi-dog::before {
  content: "\f413";
}

.mi-dog-leashed::before {
  content: "\f414";
}

.mi-dollar::before {
  content: "\f415";
}

.mi-dolly-flatbed::before {
  content: "\f416";
}

.mi-dolly-flatbed-alt::before {
  content: "\f417";
}

.mi-dolly-flatbed-empty::before {
  content: "\f418";
}

.mi-dolphin::before {
  content: "\f419";
}

.mi-domino-effect::before {
  content: "\f41a";
}

.mi-donate::before {
  content: "\f41b";
}

.mi-dong-sign::before {
  content: "\f41c";
}

.mi-donut::before {
  content: "\f41d";
}

.mi-door-closed::before {
  content: "\f41e";
}

.mi-door-open::before {
  content: "\f41f";
}

.mi-dot-circle::before {
  content: "\f420";
}

.mi-dot-pending::before {
  content: "\f421";
}

.mi-dove::before {
  content: "\f422";
}

.mi-down::before {
  content: "\f423";
}

.mi-down-from-bracket::before {
  content: "\f424";
}

.mi-down-left::before {
  content: "\f425";
}

.mi-down-left-and-up-right-to-center::before {
  content: "\f426";
}

.mi-down-right::before {
  content: "\f427";
}

.mi-down-to-line::before {
  content: "\f428";
}

.mi-download::before {
  content: "\f429";
}

.mi-drafting-compass::before {
  content: "\f42a";
}

.mi-dragon::before {
  content: "\f42b";
}

.mi-draw-polygon::before {
  content: "\f42c";
}

.mi-draw-square::before {
  content: "\f42d";
}

.mi-drawer::before {
  content: "\f42e";
}

.mi-drawer-alt::before {
  content: "\f42f";
}

.mi-drawer-empty::before {
  content: "\f430";
}

.mi-dreidel::before {
  content: "\f431";
}

.mi-drink-alt::before {
  content: "\f432";
}

.mi-driver-man::before {
  content: "\f433";
}

.mi-driver-woman::before {
  content: "\f434";
}

.mi-drone::before {
  content: "\f435";
}

.mi-drone-alt::before {
  content: "\f436";
}

.mi-drone-front::before {
  content: "\f437";
}

.mi-drop-down::before {
  content: "\f438";
}

.mi-dropdown::before {
  content: "\f439";
}

.mi-dropdown-select::before {
  content: "\f43a";
}

.mi-drum::before {
  content: "\f43b";
}

.mi-drum-steelpan::before {
  content: "\f43c";
}

.mi-drumstick::before {
  content: "\f43d";
}

.mi-drumstick-bite::before {
  content: "\f43e";
}

.mi-dryer::before {
  content: "\f43f";
}

.mi-dryer-alt::before {
  content: "\f440";
}

.mi-duck::before {
  content: "\f441";
}

.mi-dumbbell-fitness::before {
  content: "\f442";
}

.mi-dumbbell-horizontal::before {
  content: "\f443";
}

.mi-dumbbell-ray::before {
  content: "\f444";
}

.mi-dumbbell-weightlifting::before {
  content: "\f445";
}

.mi-dumpster::before {
  content: "\f446";
}

.mi-dumpster-fire::before {
  content: "\f447";
}

.mi-dungeon::before {
  content: "\f448";
}

.mi-duplicate::before {
  content: "\f449";
}

.mi-duration::before {
  content: "\f44a";
}

.mi-duration-alt::before {
  content: "\f44b";
}

.mi-e::before {
  content: "\f44c";
}

.mi-e-learning::before {
  content: "\f44d";
}

.mi-ear::before {
  content: "\f44e";
}

.mi-ear-deaf::before {
  content: "\f44f";
}

.mi-ear-muffs::before {
  content: "\f450";
}

.mi-earnings::before {
  content: "\f451";
}

.mi-earth-americas::before {
  content: "\f452";
}

.mi-earth-asia::before {
  content: "\f453";
}

.mi-eclipse::before {
  content: "\f454";
}

.mi-eclipse-alt::before {
  content: "\f455";
}

.mi-edit::before {
  content: "\f456";
}

.mi-edit-alt::before {
  content: "\f457";
}

.mi-effect::before {
  content: "\f458";
}

.mi-egg::before {
  content: "\f459";
}

.mi-egg-fried::before {
  content: "\f45a";
}

.mi-eject::before {
  content: "\f45b";
}

.mi-elephant::before {
  content: "\f45c";
}

.mi-elevator::before {
  content: "\f45d";
}

.mi-email-pending::before {
  content: "\f45e";
}

.mi-employee-alt::before {
  content: "\f45f";
}

.mi-employee-handbook::before {
  content: "\f460";
}

.mi-employee-man::before {
  content: "\f461";
}

.mi-employee-man-alt::before {
  content: "\f462";
}

.mi-employees::before {
  content: "\f463";
}

.mi-employees-woman-man::before {
  content: "\f464";
}

.mi-empty-set::before {
  content: "\f465";
}

.mi-endless-loop::before {
  content: "\f466";
}

.mi-engine::before {
  content: "\f467";
}

.mi-engine-warning::before {
  content: "\f468";
}

.mi-enter::before {
  content: "\f469";
}

.mi-envelope::before {
  content: "\f46a";
}

.mi-envelope-ban::before {
  content: "\f46b";
}

.mi-envelope-bulk::before {
  content: "\f46c";
}

.mi-envelope-dot::before {
  content: "\f46d";
}

.mi-envelope-download::before {
  content: "\f46e";
}

.mi-envelope-heart::before {
  content: "\f46f";
}

.mi-envelope-marker::before {
  content: "\f470";
}

.mi-envelope-open::before {
  content: "\f471";
}

.mi-envelope-open-dollar::before {
  content: "\f472";
}

.mi-envelope-open-text::before {
  content: "\f473";
}

.mi-envelope-plus::before {
  content: "\f474";
}

.mi-envelopes::before {
  content: "\f475";
}

.mi-equality::before {
  content: "\f476";
}

.mi-equals::before {
  content: "\f477";
}

.mi-eraser::before {
  content: "\f478";
}

.mi-error-camera::before {
  content: "\f479";
}

.mi-escalator::before {
  content: "\f47a";
}

.mi-ethernet::before {
  content: "\f47b";
}

.mi-euro::before {
  content: "\f47c";
}

.mi-excavator::before {
  content: "\f47d";
}

.mi-exchange::before {
  content: "\f47e";
}

.mi-exchange-alt::before {
  content: "\f47f";
}

.mi-exchange-cryptocurrency::before {
  content: "\f480";
}

.mi-exclamation::before {
  content: "\f481";
}

.mi-exit::before {
  content: "\f482";
}

.mi-exit-alt::before {
  content: "\f483";
}

.mi-expand::before {
  content: "\f484";
}

.mi-expand-arrows::before {
  content: "\f485";
}

.mi-expand-arrows-alt::before {
  content: "\f486";
}

.mi-expense::before {
  content: "\f487";
}

.mi-expense-bill::before {
  content: "\f488";
}

.mi-external-hard-drive::before {
  content: "\f489";
}

.mi-external-world::before {
  content: "\f48a";
}

.mi-eye::before {
  content: "\f48b";
}

.mi-eye-crossed::before {
  content: "\f48c";
}

.mi-eye-dropper::before {
  content: "\f48d";
}

.mi-eye-dropper-half::before {
  content: "\f48e";
}

.mi-eyes::before {
  content: "\f48f";
}

.mi-f::before {
  content: "\f490";
}

.mi-fabric::before {
  content: "\f491";
}

.mi-face-angry-horns::before {
  content: "\f492";
}

.mi-face-anguished::before {
  content: "\f493";
}

.mi-face-anxious-sweat::before {
  content: "\f494";
}

.mi-face-astonished::before {
  content: "\f495";
}

.mi-face-awesome::before {
  content: "\f496";
}

.mi-face-beam-hand-over-mouth::before {
  content: "\f497";
}

.mi-face-confounded::before {
  content: "\f498";
}

.mi-face-confused::before {
  content: "\f499";
}

.mi-face-cowboy-hat::before {
  content: "\f49a";
}

.mi-face-disappointed::before {
  content: "\f49b";
}

.mi-face-disguise::before {
  content: "\f49c";
}

.mi-face-downcast-sweat::before {
  content: "\f49d";
}

.mi-face-drooling::before {
  content: "\f49e";
}

.mi-face-explode::before {
  content: "\f49f";
}

.mi-face-expressionless::before {
  content: "\f4a0";
}

.mi-face-eyes-xmarks::before {
  content: "\f4a1";
}

.mi-face-fearful::before {
  content: "\f4a2";
}

.mi-face-glasses::before {
  content: "\f4a3";
}

.mi-face-grin-tongue-wink::before {
  content: "\f4a4";
}

.mi-face-hand-yawn::before {
  content: "\f4a5";
}

.mi-face-head-bandage::before {
  content: "\f4a6";
}

.mi-face-hushed::before {
  content: "\f4a7";
}

.mi-face-icicles::before {
  content: "\f4a8";
}

.mi-face-mask::before {
  content: "\f4a9";
}

.mi-face-monocle::before {
  content: "\f4aa";
}

.mi-face-nauseated::before {
  content: "\f4ab";
}

.mi-face-nose-steam::before {
  content: "\f4ac";
}

.mi-face-pensive::before {
  content: "\f4ad";
}

.mi-face-persevering::before {
  content: "\f4ae";
}

.mi-face-pleading::before {
  content: "\f4af";
}

.mi-face-raised-eyebrow::before {
  content: "\f4b0";
}

.mi-face-relieved::before {
  content: "\f4b1";
}

.mi-face-sad-sweat::before {
  content: "\f4b2";
}

.mi-face-scream::before {
  content: "\f4b3";
}

.mi-face-sleeping::before {
  content: "\f4b4";
}

.mi-face-sleepy::before {
  content: "\f4b5";
}

.mi-face-smile-halo::before {
  content: "\f4b6";
}

.mi-face-smile-hearts::before {
  content: "\f4b7";
}

.mi-face-smile-horns::before {
  content: "\f4b8";
}

.mi-face-smile-tear::before {
  content: "\f4b9";
}

.mi-face-smile-tongue::before {
  content: "\f4ba";
}

.mi-face-smile-upside-down::before {
  content: "\f4bb";
}

.mi-face-smiling-hands::before {
  content: "\f4bc";
}

.mi-face-smirking::before {
  content: "\f4bd";
}

.mi-face-sunglasses::before {
  content: "\f4be";
}

.mi-face-sunglasses-alt::before {
  content: "\f4bf";
}

.mi-face-thermometer::before {
  content: "\f4c0";
}

.mi-face-thinking::before {
  content: "\f4c1";
}

.mi-face-tongue-money::before {
  content: "\f4c2";
}

.mi-face-tongue-sweat::before {
  content: "\f4c3";
}

.mi-face-unamused::before {
  content: "\f4c4";
}

.mi-face-viewfinder::before {
  content: "\f4c5";
}

.mi-face-weary::before {
  content: "\f4c6";
}

.mi-face-worried::before {
  content: "\f4c7";
}

.mi-face-zany::before {
  content: "\f4c8";
}

.mi-fail::before {
  content: "\f4c9";
}

.mi-falafel::before {
  content: "\f4ca";
}

.mi-family::before {
  content: "\f4cb";
}

.mi-family-dress::before {
  content: "\f4cc";
}

.mi-family-pants::before {
  content: "\f4cd";
}

.mi-fan::before {
  content: "\f4ce";
}

.mi-fan-table::before {
  content: "\f4cf";
}

.mi-farm::before {
  content: "\f4d0";
}

.mi-faucet::before {
  content: "\f4d1";
}

.mi-faucet-drip::before {
  content: "\f4d2";
}

.mi-fax::before {
  content: "\f4d3";
}

.mi-feather::before {
  content: "\f4d4";
}

.mi-feather-pointed::before {
  content: "\f4d5";
}

.mi-features::before {
  content: "\f4d6";
}

.mi-features-alt::before {
  content: "\f4d7";
}

.mi-fee::before {
  content: "\f4d8";
}

.mi-fee-receipt::before {
  content: "\f4d9";
}

.mi-feedback::before {
  content: "\f4da";
}

.mi-feedback-alt::before {
  content: "\f4db";
}

.mi-feedback-cycle-loop::before {
  content: "\f4dc";
}

.mi-feedback-hand::before {
  content: "\f4dd";
}

.mi-feedback-review::before {
  content: "\f4de";
}

.mi-fence::before {
  content: "\f4df";
}

.mi-ferris-wheel::before {
  content: "\f4e0";
}

.mi-fighter-jet::before {
  content: "\f4e1";
}

.mi-file::before {
  content: "\f4e2";
}

.mi-file-ai::before {
  content: "\f4e3";
}

.mi-file-audio::before {
  content: "\f4e4";
}

.mi-file-binary::before {
  content: "\f4e5";
}

.mi-file-chart-line::before {
  content: "\f4e6";
}

.mi-file-chart-pie::before {
  content: "\f4e7";
}

.mi-file-circle-info::before {
  content: "\f4e8";
}

.mi-file-cloud::before {
  content: "\f4e9";
}

.mi-file-code::before {
  content: "\f4ea";
}

.mi-file-csv::before {
  content: "\f4eb";
}

.mi-file-download::before {
  content: "\f4ec";
}

.mi-file-edit::before {
  content: "\f4ed";
}

.mi-file-eps::before {
  content: "\f4ee";
}

.mi-file-excel::before {
  content: "\f4ef";
}

.mi-file-exclamation::before {
  content: "\f4f0";
}

.mi-file-export::before {
  content: "\f4f1";
}

.mi-file-image::before {
  content: "\f4f2";
}

.mi-file-import::before {
  content: "\f4f3";
}

.mi-file-invoice::before {
  content: "\f4f4";
}

.mi-file-invoice-dollar::before {
  content: "\f4f5";
}

.mi-file-medical::before {
  content: "\f4f6";
}

.mi-file-medical-alt::before {
  content: "\f4f7";
}

.mi-file-minus::before {
  content: "\f4f8";
}

.mi-file-pdf::before {
  content: "\f4f9";
}

.mi-file-powerpoint::before {
  content: "\f4fa";
}

.mi-file-prescription::before {
  content: "\f4fb";
}

.mi-file-psd::before {
  content: "\f4fc";
}

.mi-file-signature::before {
  content: "\f4fd";
}

.mi-file-spreadsheet::before {
  content: "\f4fe";
}

.mi-file-upload::before {
  content: "\f4ff";
}

.mi-file-user::before {
  content: "\f500";
}

.mi-file-video::before {
  content: "\f501";
}

.mi-file-word::before {
  content: "\f502";
}

.mi-file-zipper::before {
  content: "\f503";
}

.mi-files-medical::before {
  content: "\f504";
}

.mi-fill::before {
  content: "\f505";
}

.mi-film::before {
  content: "\f506";
}

.mi-film-canister::before {
  content: "\f507";
}

.mi-film-slash::before {
  content: "\f508";
}

.mi-films::before {
  content: "\f509";
}

.mi-filter::before {
  content: "\f50a";
}

.mi-filter-list::before {
  content: "\f50b";
}

.mi-filter-slash::before {
  content: "\f50c";
}

.mi-filters::before {
  content: "\f50d";
}

.mi-fingerprint::before {
  content: "\f50e";
}

.mi-fingerprint-security-risk::before {
  content: "\f50f";
}

.mi-fire-burner::before {
  content: "\f510";
}

.mi-fire-extinguisher::before {
  content: "\f511";
}

.mi-fire-flame-curved::before {
  content: "\f512";
}

.mi-fire-flame-simple::before {
  content: "\f513";
}

.mi-fire-hydrant::before {
  content: "\f514";
}

.mi-fire-smoke::before {
  content: "\f515";
}

.mi-fireplace::before {
  content: "\f516";
}

.mi-first::before {
  content: "\f517";
}

.mi-first-award::before {
  content: "\f518";
}

.mi-first-laurel::before {
  content: "\f519";
}

.mi-first-medal::before {
  content: "\f51a";
}

.mi-fish::before {
  content: "\f51b";
}

.mi-fish-bones::before {
  content: "\f51c";
}

.mi-fish-cooked::before {
  content: "\f51d";
}

.mi-fishing-rod::before {
  content: "\f51e";
}

.mi-fist-move::before {
  content: "\f51f";
}

.mi-flag::before {
  content: "\f520";
}

.mi-flag-alt::before {
  content: "\f521";
}

.mi-flag-checkered::before {
  content: "\f522";
}

.mi-flag-usa::before {
  content: "\f523";
}

.mi-flame::before {
  content: "\f524";
}

.mi-flashlight::before {
  content: "\f525";
}

.mi-flask::before {
  content: "\f526";
}

.mi-flask-gear::before {
  content: "\f527";
}

.mi-flask-poison::before {
  content: "\f528";
}

.mi-flask-potion::before {
  content: "\f529";
}

.mi-flatbread::before {
  content: "\f52a";
}

.mi-flatbread-stuffed::before {
  content: "\f52b";
}

.mi-flip-horizontal::before {
  content: "\f52c";
}

.mi-floor::before {
  content: "\f52d";
}

.mi-floor-alt::before {
  content: "\f52e";
}

.mi-floor-layer::before {
  content: "\f52f";
}

.mi-floppy-disk-circle-arrow-right::before {
  content: "\f530";
}

.mi-floppy-disk-circle-xmark::before {
  content: "\f531";
}

.mi-floppy-disk-pen::before {
  content: "\f532";
}

.mi-floppy-disks::before {
  content: "\f533";
}

.mi-florin-sign::before {
  content: "\f534";
}

.mi-flower::before {
  content: "\f535";
}

.mi-flower-bouquet::before {
  content: "\f536";
}

.mi-flower-butterfly::before {
  content: "\f537";
}

.mi-flower-daffodil::before {
  content: "\f538";
}

.mi-flower-tulip::before {
  content: "\f539";
}

.mi-flushed::before {
  content: "\f53a";
}

.mi-flute::before {
  content: "\f53b";
}

.mi-flux-capacitor::before {
  content: "\f53c";
}

.mi-fly-insect::before {
  content: "\f53d";
}

.mi-flying-disc::before {
  content: "\f53e";
}

.mi-fog::before {
  content: "\f53f";
}

.mi-folder::before {
  content: "\f540";
}

.mi-folder-download::before {
  content: "\f541";
}

.mi-folder-fire::before {
  content: "\f542";
}

.mi-folder-minus::before {
  content: "\f543";
}

.mi-folder-open::before {
  content: "\f544";
}

.mi-folder-times::before {
  content: "\f545";
}

.mi-folder-tree::before {
  content: "\f546";
}

.mi-folder-upload::before {
  content: "\f547";
}

.mi-folder-xmark::before {
  content: "\f548";
}

.mi-folders::before {
  content: "\f549";
}

.mi-follow-folder::before {
  content: "\f54a";
}

.mi-followcollection::before {
  content: "\f54b";
}

.mi-following::before {
  content: "\f54c";
}

.mi-fondue-pot::before {
  content: "\f54d";
}

.mi-food-service::before {
  content: "\f54e";
}

.mi-football::before {
  content: "\f54f";
}

.mi-foreign-language-audio::before {
  content: "\f550";
}

.mi-fork::before {
  content: "\f551";
}

.mi-forklift::before {
  content: "\f552";
}

.mi-form::before {
  content: "\f553";
}

.mi-fort::before {
  content: "\f554";
}

.mi-forward::before {
  content: "\f555";
}

.mi-forward-fast::before {
  content: "\f556";
}

.mi-fox::before {
  content: "\f557";
}

.mi-frame::before {
  content: "\f558";
}

.mi-franc-sign::before {
  content: "\f559";
}

.mi-free::before {
  content: "\f55a";
}

.mi-free-delivery::before {
  content: "\f55b";
}

.mi-french-fries::before {
  content: "\f55c";
}

.mi-friday::before {
  content: "\f55d";
}

.mi-frog::before {
  content: "\f55e";
}

.mi-frown::before {
  content: "\f55f";
}

.mi-ftp::before {
  content: "\f560";
}

.mi-fuel-gauge::before {
  content: "\f561";
}

.mi-function::before {
  content: "\f562";
}

.mi-function-process::before {
  content: "\f563";
}

.mi-function-square::before {
  content: "\f564";
}

.mi-funnel-dollar::before {
  content: "\f565";
}

.mi-g::before {
  content: "\f566";
}

.mi-galaxy::before {
  content: "\f567";
}

.mi-galaxy-planet::before {
  content: "\f568";
}

.mi-galaxy-star::before {
  content: "\f569";
}

.mi-gallery::before {
  content: "\f56a";
}

.mi-gallery-thumbnails::before {
  content: "\f56b";
}

.mi-game-board-alt::before {
  content: "\f56c";
}

.mi-gamepad::before {
  content: "\f56d";
}

.mi-garage::before {
  content: "\f56e";
}

.mi-garage-car::before {
  content: "\f56f";
}

.mi-garage-open::before {
  content: "\f570";
}

.mi-garlic::before {
  content: "\f571";
}

.mi-garlic-alt::before {
  content: "\f572";
}

.mi-gas-pump::before {
  content: "\f573";
}

.mi-gas-pump-alt::before {
  content: "\f574";
}

.mi-gas-pump-slash::before {
  content: "\f575";
}

.mi-gauge-circle-bolt::before {
  content: "\f576";
}

.mi-gauge-circle-minus::before {
  content: "\f577";
}

.mi-gauge-circle-plus::before {
  content: "\f578";
}

.mi-gavel::before {
  content: "\f579";
}

.mi-gears::before {
  content: "\f57a";
}

.mi-gem::before {
  content: "\f57b";
}

.mi-general::before {
  content: "\f57c";
}

.mi-ghost::before {
  content: "\f57d";
}

.mi-gif::before {
  content: "\f57e";
}

.mi-gif-square::before {
  content: "\f57f";
}

.mi-gift::before {
  content: "\f580";
}

.mi-gift-box-benefits::before {
  content: "\f581";
}

.mi-gift-card::before {
  content: "\f582";
}

.mi-gifts::before {
  content: "\f583";
}

.mi-gingerbread-man::before {
  content: "\f584";
}

.mi-glass::before {
  content: "\f585";
}

.mi-glass-champagne::before {
  content: "\f586";
}

.mi-glass-cheers::before {
  content: "\f587";
}

.mi-glass-citrus::before {
  content: "\f588";
}

.mi-glass-empty::before {
  content: "\f589";
}

.mi-glass-half::before {
  content: "\f58a";
}

.mi-glass-water-droplet::before {
  content: "\f58b";
}

.mi-glass-whiskey::before {
  content: "\f58c";
}

.mi-glass-whiskey-rocks::before {
  content: "\f58d";
}

.mi-glasses::before {
  content: "\f58e";
}

.mi-globe::before {
  content: "\f58f";
}

.mi-globe-alt::before {
  content: "\f590";
}

.mi-globe-pointer::before {
  content: "\f591";
}

.mi-globe-snow::before {
  content: "\f592";
}

.mi-goal-net::before {
  content: "\f593";
}

.mi-golf::before {
  content: "\f594";
}

.mi-golf-ball::before {
  content: "\f595";
}

.mi-golf-hole::before {
  content: "\f596";
}

.mi-gopuram::before {
  content: "\f597";
}

.mi-government-budget::before {
  content: "\f598";
}

.mi-government-flag::before {
  content: "\f599";
}

.mi-government-user::before {
  content: "\f59a";
}

.mi-gps-navigation::before {
  content: "\f59b";
}

.mi-graduation-cap::before {
  content: "\f59c";
}

.mi-gramophone::before {
  content: "\f59d";
}

.mi-grape::before {
  content: "\f59e";
}

.mi-graph-curve::before {
  content: "\f59f";
}

.mi-graphic-style::before {
  content: "\f5a0";
}

.mi-graphic-tablet::before {
  content: "\f5a1";
}

.mi-grate::before {
  content: "\f5a2";
}

.mi-grate-droplet::before {
  content: "\f5a3";
}

.mi-greater-than::before {
  content: "\f5a4";
}

.mi-greater-than-equal::before {
  content: "\f5a5";
}

.mi-greek-helmet::before {
  content: "\f5a6";
}

.mi-grid::before {
  content: "\f5a7";
}

.mi-grid-alt::before {
  content: "\f5a8";
}

.mi-grid-dividers::before {
  content: "\f5a9";
}

.mi-grill::before {
  content: "\f5aa";
}

.mi-grill-hot-alt::before {
  content: "\f5ab";
}

.mi-grimace::before {
  content: "\f5ac";
}

.mi-grin::before {
  content: "\f5ad";
}

.mi-grin-alt::before {
  content: "\f5ae";
}

.mi-grin-beam::before {
  content: "\f5af";
}

.mi-grin-beam-sweat::before {
  content: "\f5b0";
}

.mi-grin-hearts::before {
  content: "\f5b1";
}

.mi-grin-squint::before {
  content: "\f5b2";
}

.mi-grin-squint-tears::before {
  content: "\f5b3";
}

.mi-grin-stars::before {
  content: "\f5b4";
}

.mi-grin-tears::before {
  content: "\f5b5";
}

.mi-grin-tongue::before {
  content: "\f5b6";
}

.mi-grin-tongue-squint::before {
  content: "\f5b7";
}

.mi-grin-tongue-wink::before {
  content: "\f5b8";
}

.mi-grin-wink::before {
  content: "\f5b9";
}

.mi-grip-dots::before {
  content: "\f5ba";
}

.mi-grip-dots-vertical::before {
  content: "\f5bb";
}

.mi-grip-horizontal::before {
  content: "\f5bc";
}

.mi-grip-lines::before {
  content: "\f5bd";
}

.mi-grip-lines-vertical::before {
  content: "\f5be";
}

.mi-grip-vertical::before {
  content: "\f5bf";
}

.mi-grocery-bag::before {
  content: "\f5c0";
}

.mi-grocery-basket::before {
  content: "\f5c1";
}

.mi-group-arrows-rotate::before {
  content: "\f5c2";
}

.mi-group-call::before {
  content: "\f5c3";
}

.mi-group-community-social-media::before {
  content: "\f5c4";
}

.mi-growth-chart-invest::before {
  content: "\f5c5";
}

.mi-guarani-sign::before {
  content: "\f5c6";
}

.mi-guide::before {
  content: "\f5c7";
}

.mi-guide-alt::before {
  content: "\f5c8";
}

.mi-guitar::before {
  content: "\f5c9";
}

.mi-guitar-electric::before {
  content: "\f5ca";
}

.mi-guitars::before {
  content: "\f5cb";
}

.mi-gun-squirt::before {
  content: "\f5cc";
}

.mi-gym::before {
  content: "\f5cd";
}

.mi-h::before {
  content: "\f5ce";
}

.mi-h-square::before {
  content: "\f5cf";
}

.mi-h1::before {
  content: "\f5d0";
}

.mi-h2::before {
  content: "\f5d1";
}

.mi-h3::before {
  content: "\f5d2";
}

.mi-h4::before {
  content: "\f5d3";
}

.mi-hair-clipper::before {
  content: "\f5d4";
}

.mi-hamburger::before {
  content: "\f5d5";
}

.mi-hamburger-soda::before {
  content: "\f5d6";
}

.mi-hammer::before {
  content: "\f5d7";
}

.mi-hammer-crash::before {
  content: "\f5d8";
}

.mi-hammer-war::before {
  content: "\f5d9";
}

.mi-hamsa::before {
  content: "\f5da";
}

.mi-hand::before {
  content: "\f5db";
}

.mi-hand-back-fist::before {
  content: "\f5dc";
}

.mi-hand-back-point-down::before {
  content: "\f5dd";
}

.mi-hand-back-point-left::before {
  content: "\f5de";
}

.mi-hand-back-point-ribbon::before {
  content: "\f5df";
}

.mi-hand-back-point-right::before {
  content: "\f5e0";
}

.mi-hand-bill::before {
  content: "\f5e1";
}

.mi-hand-dots::before {
  content: "\f5e2";
}

.mi-hand-fingers-crossed::before {
  content: "\f5e3";
}

.mi-hand-fist::before {
  content: "\f5e4";
}

.mi-hand-heart::before {
  content: "\f5e5";
}

.mi-hand-holding-box::before {
  content: "\f5e6";
}

.mi-hand-holding-droplet::before {
  content: "\f5e7";
}

.mi-hand-holding-heart::before {
  content: "\f5e8";
}

.mi-hand-holding-magic::before {
  content: "\f5e9";
}

.mi-hand-holding-medical::before {
  content: "\f5ea";
}

.mi-hand-holding-seeding::before {
  content: "\f5eb";
}

.mi-hand-holding-skull::before {
  content: "\f5ec";
}

.mi-hand-holding-usd::before {
  content: "\f5ed";
}

.mi-hand-holding-water::before {
  content: "\f5ee";
}

.mi-hand-horns::before {
  content: "\f5ef";
}

.mi-hand-lizard::before {
  content: "\f5f0";
}

.mi-hand-love::before {
  content: "\f5f1";
}

.mi-hand-middle-finger::before {
  content: "\f5f2";
}

.mi-hand-paper::before {
  content: "\f5f3";
}

.mi-hand-peace::before {
  content: "\f5f4";
}

.mi-hand-point-ribbon::before {
  content: "\f5f5";
}

.mi-hand-scissors::before {
  content: "\f5f6";
}

.mi-hand-sparkles::before {
  content: "\f5f7";
}

.mi-hand-spock::before {
  content: "\f5f8";
}

.mi-hand-wave::before {
  content: "\f5f9";
}

.mi-handmade::before {
  content: "\f5fa";
}

.mi-hands-bubbles::before {
  content: "\f5fb";
}

.mi-hands-clapping::before {
  content: "\f5fc";
}

.mi-hands-heart::before {
  content: "\f5fd";
}

.mi-hands-holding::before {
  content: "\f5fe";
}

.mi-hands-holding-diamond::before {
  content: "\f5ff";
}

.mi-hands-usd::before {
  content: "\f600";
}

.mi-handshake::before {
  content: "\f601";
}

.mi-handshake-angle::before {
  content: "\f602";
}

.mi-handshake-deal-loan::before {
  content: "\f603";
}

.mi-handshake-simple-slash::before {
  content: "\f604";
}

.mi-handshake-trust::before {
  content: "\f605";
}

.mi-hard-hat::before {
  content: "\f606";
}

.mi-hastag::before {
  content: "\f607";
}

.mi-hat-beach::before {
  content: "\f608";
}

.mi-hat-birthday::before {
  content: "\f609";
}

.mi-hat-chef::before {
  content: "\f60a";
}

.mi-hat-cowboy::before {
  content: "\f60b";
}

.mi-hat-cowboy-side::before {
  content: "\f60c";
}

.mi-hat-santa::before {
  content: "\f60d";
}

.mi-hat-winter::before {
  content: "\f60e";
}

.mi-hat-witch::before {
  content: "\f60f";
}

.mi-hdd::before {
  content: "\f610";
}

.mi-head-side::before {
  content: "\f611";
}

.mi-head-side-brain::before {
  content: "\f612";
}

.mi-head-side-cough::before {
  content: "\f613";
}

.mi-head-side-cough-slash::before {
  content: "\f614";
}

.mi-head-side-headphones::before {
  content: "\f615";
}

.mi-head-side-heart::before {
  content: "\f616";
}

.mi-head-side-mask::before {
  content: "\f617";
}

.mi-head-side-medical::before {
  content: "\f618";
}

.mi-head-side-thinking::before {
  content: "\f619";
}

.mi-head-side-virus::before {
  content: "\f61a";
}

.mi-head-vr::before {
  content: "\f61b";
}

.mi-heading::before {
  content: "\f61c";
}

.mi-headphones::before {
  content: "\f61d";
}

.mi-headset::before {
  content: "\f61e";
}

.mi-heart::before {
  content: "\f61f";
}

.mi-heart-arrow::before {
  content: "\f620";
}

.mi-heart-brain::before {
  content: "\f621";
}

.mi-heart-crack::before {
  content: "\f622";
}

.mi-heart-half::before {
  content: "\f623";
}

.mi-heart-half-stroke::before {
  content: "\f624";
}

.mi-heart-health-muscle::before {
  content: "\f625";
}

.mi-heart-lock::before {
  content: "\f626";
}

.mi-heart-partner-handshake::before {
  content: "\f627";
}

.mi-heart-rate::before {
  content: "\f628";
}

.mi-heart-slash::before {
  content: "\f629";
}

.mi-heart-upside-down::before {
  content: "\f62a";
}

.mi-heat::before {
  content: "\f62b";
}

.mi-helicopter-side::before {
  content: "\f62c";
}

.mi-helmet-battle::before {
  content: "\f62d";
}

.mi-hexagon::before {
  content: "\f62e";
}

.mi-hexagon-check::before {
  content: "\f62f";
}

.mi-hexagon-divide::before {
  content: "\f630";
}

.mi-hexagon-exclamation::before {
  content: "\f631";
}

.mi-high-definition::before {
  content: "\f632";
}

.mi-high-five::before {
  content: "\f633";
}

.mi-high-five-celebration-yes::before {
  content: "\f634";
}

.mi-highlighter::before {
  content: "\f635";
}

.mi-highlighter-line::before {
  content: "\f636";
}

.mi-hiking::before {
  content: "\f637";
}

.mi-hippo::before {
  content: "\f638";
}

.mi-hockey-puck::before {
  content: "\f639";
}

.mi-hockey-stick-puck::before {
  content: "\f63a";
}

.mi-hockey-sticks::before {
  content: "\f63b";
}

.mi-holding-hand-gear::before {
  content: "\f63c";
}

.mi-holding-hand-revenue::before {
  content: "\f63d";
}

.mi-holly-berry::before {
  content: "\f63e";
}

.mi-home::before {
  content: "\f63f";
}

.mi-honey-pot::before {
  content: "\f640";
}

.mi-hood-cloak::before {
  content: "\f641";
}

.mi-horizontal-rule::before {
  content: "\f642";
}

.mi-horse::before {
  content: "\f643";
}

.mi-horse-head::before {
  content: "\f644";
}

.mi-horse-saddle::before {
  content: "\f645";
}

.mi-horseshoe::before {
  content: "\f646";
}

.mi-horseshoe-broken::before {
  content: "\f647";
}

.mi-hose::before {
  content: "\f648";
}

.mi-hose-reel::before {
  content: "\f649";
}

.mi-hospital::before {
  content: "\f64a";
}

.mi-hospital-symbol::before {
  content: "\f64b";
}

.mi-hospital-user::before {
  content: "\f64c";
}

.mi-hospitals::before {
  content: "\f64d";
}

.mi-hot-tub::before {
  content: "\f64e";
}

.mi-hotdog::before {
  content: "\f64f";
}

.mi-hotel::before {
  content: "\f650";
}

.mi-hourglass::before {
  content: "\f651";
}

.mi-hourglass-end::before {
  content: "\f652";
}

.mi-hourglass-start::before {
  content: "\f653";
}

.mi-house::before {
  content: "\f654";
}

.mi-house-building::before {
  content: "\f655";
}

.mi-house-window::before {
  content: "\f656";
}

.mi-hr::before {
  content: "\f657";
}

.mi-hr-group::before {
  content: "\f658";
}

.mi-hr-person::before {
  content: "\f659";
}

.mi-hryvnia::before {
  content: "\f65a";
}

.mi-humidity::before {
  content: "\f65b";
}

.mi-hundred-points::before {
  content: "\f65c";
}

.mi-hurricane::before {
  content: "\f65d";
}

.mi-i::before {
  content: "\f65e";
}

.mi-ice-cream::before {
  content: "\f65f";
}

.mi-ice-skate::before {
  content: "\f660";
}

.mi-icicles::before {
  content: "\f661";
}

.mi-icon-star::before {
  content: "\f662";
}

.mi-id-badge::before {
  content: "\f663";
}

.mi-id-card-clip-alt::before {
  content: "\f664";
}

.mi-igloo::before {
  content: "\f665";
}

.mi-image-slash::before {
  content: "\f666";
}

.mi-images::before {
  content: "\f667";
}

.mi-images-user::before {
  content: "\f668";
}

.mi-improve-user::before {
  content: "\f669";
}

.mi-inbox::before {
  content: "\f66a";
}

.mi-inbox-full::before {
  content: "\f66b";
}

.mi-inbox-in::before {
  content: "\f66c";
}

.mi-inbox-out::before {
  content: "\f66d";
}

.mi-inboxes::before {
  content: "\f66e";
}

.mi-incense-sticks-yoga::before {
  content: "\f66f";
}

.mi-incognito::before {
  content: "\f670";
}

.mi-indent::before {
  content: "\f671";
}

.mi-indian-rupee-sign::before {
  content: "\f672";
}

.mi-industry-alt::before {
  content: "\f673";
}

.mi-industry-windows::before {
  content: "\f674";
}

.mi-infinity::before {
  content: "\f675";
}

.mi-info::before {
  content: "\f676";
}

.mi-info-guide::before {
  content: "\f677";
}

.mi-information::before {
  content: "\f678";
}

.mi-inhaler::before {
  content: "\f679";
}

.mi-input-numeric::before {
  content: "\f67a";
}

.mi-input-pipe::before {
  content: "\f67b";
}

.mi-input-text::before {
  content: "\f67c";
}

.mi-insert::before {
  content: "\f67d";
}

.mi-insert-alt::before {
  content: "\f67e";
}

.mi-insert-arrows::before {
  content: "\f67f";
}

.mi-insert-button-circle::before {
  content: "\f680";
}

.mi-insert-credit-card::before {
  content: "\f681";
}

.mi-insert-square::before {
  content: "\f682";
}

.mi-insight::before {
  content: "\f683";
}

.mi-insight-alt::before {
  content: "\f684";
}

.mi-insight-head::before {
  content: "\f685";
}

.mi-integral::before {
  content: "\f686";
}

.mi-interactive::before {
  content: "\f687";
}

.mi-interlining::before {
  content: "\f688";
}

.mi-internet-speed-wifi::before {
  content: "\f689";
}

.mi-interrogation::before {
  content: "\f68a";
}

.mi-intersection::before {
  content: "\f68b";
}

.mi-introduction::before {
  content: "\f68c";
}

.mi-introduction-handshake::before {
  content: "\f68d";
}

.mi-inventory-alt::before {
  content: "\f68e";
}

.mi-invest::before {
  content: "\f68f";
}

.mi-investment::before {
  content: "\f690";
}

.mi-invite::before {
  content: "\f691";
}

.mi-invite-alt::before {
  content: "\f692";
}

.mi-iot::before {
  content: "\f693";
}

.mi-iot-alt::before {
  content: "\f694";
}

.mi-ip-address::before {
  content: "\f695";
}

.mi-island-tropical::before {
  content: "\f696";
}

.mi-issue-loupe::before {
  content: "\f697";
}

.mi-it::before {
  content: "\f698";
}

.mi-it-alt::before {
  content: "\f699";
}

.mi-it-computer::before {
  content: "\f69a";
}

.mi-italian-lira-sign::before {
  content: "\f69b";
}

.mi-italic::before {
  content: "\f69c";
}

.mi-j::before {
  content: "\f69d";
}

.mi-jam::before {
  content: "\f69e";
}

.mi-jar-alt::before {
  content: "\f69f";
}

.mi-jar-wheat::before {
  content: "\f6a0";
}

.mi-joint::before {
  content: "\f6a1";
}

.mi-joker::before {
  content: "\f6a2";
}

.mi-journal::before {
  content: "\f6a3";
}

.mi-journal-alt::before {
  content: "\f6a4";
}

.mi-journey::before {
  content: "\f6a5";
}

.mi-joystick::before {
  content: "\f6a6";
}

.mi-jpg::before {
  content: "\f6a7";
}

.mi-jug::before {
  content: "\f6a8";
}

.mi-jug-alt::before {
  content: "\f6a9";
}

.mi-jug-bottle::before {
  content: "\f6aa";
}

.mi-juice::before {
  content: "\f6ab";
}

.mi-jumping-rope::before {
  content: "\f6ac";
}

.mi-k::before {
  content: "\f6ad";
}

.mi-kaaba::before {
  content: "\f6ae";
}

.mi-kerning::before {
  content: "\f6af";
}

.mi-key::before {
  content: "\f6b0";
}

.mi-key-lock-crypto::before {
  content: "\f6b1";
}

.mi-key-skeleton-left-right::before {
  content: "\f6b2";
}

.mi-keyboard::before {
  content: "\f6b3";
}

.mi-keyboard-brightness::before {
  content: "\f6b4";
}

.mi-keyboard-brightness-low::before {
  content: "\f6b5";
}

.mi-keyboard-down::before {
  content: "\f6b6";
}

.mi-keyboard-left::before {
  content: "\f6b7";
}

.mi-keynote::before {
  content: "\f6b8";
}

.mi-kidneys::before {
  content: "\f6b9";
}

.mi-kip-sign::before {
  content: "\f6ba";
}

.mi-kiss::before {
  content: "\f6bb";
}

.mi-kiss-beam::before {
  content: "\f6bc";
}

.mi-kiss-wink-heart::before {
  content: "\f6bd";
}

.mi-kite::before {
  content: "\f6be";
}

.mi-kiwi-bird::before {
  content: "\f6bf";
}

.mi-kiwi-fruit::before {
  content: "\f6c0";
}

.mi-knife::before {
  content: "\f6c1";
}

.mi-knife-kitchen::before {
  content: "\f6c2";
}

.mi-knitting::before {
  content: "\f6c3";
}

.mi-kpi::before {
  content: "\f6c4";
}

.mi-kpi-evaluation::before {
  content: "\f6c5";
}

.mi-l::before {
  content: "\f6c6";
}

.mi-lacrosse-stick::before {
  content: "\f6c7";
}

.mi-lacrosse-stick-ball::before {
  content: "\f6c8";
}

.mi-lambda::before {
  content: "\f6c9";
}

.mi-lamp::before {
  content: "\f6ca";
}

.mi-lamp-desk::before {
  content: "\f6cb";
}

.mi-lamp-street::before {
  content: "\f6cc";
}

.mi-land-layer-location::before {
  content: "\f6cd";
}

.mi-land-layers::before {
  content: "\f6ce";
}

.mi-land-location::before {
  content: "\f6cf";
}

.mi-landmark-alt::before {
  content: "\f6d0";
}

.mi-language::before {
  content: "\f6d1";
}

.mi-laptop::before {
  content: "\f6d2";
}

.mi-laptop-arrow-down::before {
  content: "\f6d3";
}

.mi-laptop-binary::before {
  content: "\f6d4";
}

.mi-laptop-code::before {
  content: "\f6d5";
}

.mi-laptop-medical::before {
  content: "\f6d6";
}

.mi-laptop-mobile::before {
  content: "\f6d7";
}

.mi-laptop-slash::before {
  content: "\f6d8";
}

.mi-lari-sign::before {
  content: "\f6d9";
}

.mi-lasso-sparkles::before {
  content: "\f6da";
}

.mi-last-square::before {
  content: "\f6db";
}

.mi-laugh::before {
  content: "\f6dc";
}

.mi-laugh-beam::before {
  content: "\f6dd";
}

.mi-laugh-squint::before {
  content: "\f6de";
}

.mi-laugh-wink::before {
  content: "\f6df";
}

.mi-lawyer-man::before {
  content: "\f6e0";
}

.mi-lawyer-woman::before {
  content: "\f6e1";
}

.mi-layer-minus::before {
  content: "\f6e2";
}

.mi-layer-plus::before {
  content: "\f6e3";
}

.mi-layers::before {
  content: "\f6e4";
}

.mi-layout-fluid::before {
  content: "\f6e5";
}

.mi-lead::before {
  content: "\f6e6";
}

.mi-lead-funnel::before {
  content: "\f6e7";
}

.mi-lead-management::before {
  content: "\f6e8";
}

.mi-leader::before {
  content: "\f6e9";
}

.mi-leader-alt::before {
  content: "\f6ea";
}

.mi-leader-speech::before {
  content: "\f6eb";
}

.mi-leaderboard::before {
  content: "\f6ec";
}

.mi-leaderboard-alt::before {
  content: "\f6ed";
}

.mi-leaderboard-trophy::before {
  content: "\f6ee";
}

.mi-leadership::before {
  content: "\f6ef";
}

.mi-leadership-alt::before {
  content: "\f6f0";
}

.mi-leaf::before {
  content: "\f6f1";
}

.mi-leaf-heart::before {
  content: "\f6f2";
}

.mi-leaf-maple::before {
  content: "\f6f3";
}

.mi-leaf-oak::before {
  content: "\f6f4";
}

.mi-leafy-green::before {
  content: "\f6f5";
}

.mi-leave::before {
  content: "\f6f6";
}

.mi-left::before {
  content: "\f6f7";
}

.mi-left-from-bracket::before {
  content: "\f6f8";
}

.mi-legal::before {
  content: "\f6f9";
}

.mi-lemon::before {
  content: "\f6fa";
}

.mi-lesbian-couple::before {
  content: "\f6fb";
}

.mi-less-than::before {
  content: "\f6fc";
}

.mi-less-than-equal::before {
  content: "\f6fd";
}

.mi-lesson::before {
  content: "\f6fe";
}

.mi-lesson-class::before {
  content: "\f6ff";
}

.mi-letter-case::before {
  content: "\f700";
}

.mi-lettuce::before {
  content: "\f701";
}

.mi-level-down::before {
  content: "\f702";
}

.mi-level-down-alt::before {
  content: "\f703";
}

.mi-level-up::before {
  content: "\f704";
}

.mi-level-up-alt::before {
  content: "\f705";
}

.mi-license::before {
  content: "\f706";
}

.mi-life::before {
  content: "\f707";
}

.mi-life-ring::before {
  content: "\f708";
}

.mi-light-ceiling::before {
  content: "\f709";
}

.mi-light-emergency::before {
  content: "\f70a";
}

.mi-light-emergency-on::before {
  content: "\f70b";
}

.mi-light-switch::before {
  content: "\f70c";
}

.mi-light-switch-off::before {
  content: "\f70d";
}

.mi-light-switch-on::before {
  content: "\f70e";
}

.mi-lightbulb-cfl::before {
  content: "\f70f";
}

.mi-lightbulb-cfl-on::before {
  content: "\f710";
}

.mi-lightbulb-dollar::before {
  content: "\f711";
}

.mi-lightbulb-exclamation::before {
  content: "\f712";
}

.mi-lightbulb-head::before {
  content: "\f713";
}

.mi-lightbulb-on::before {
  content: "\f714";
}

.mi-lightbulb-question::before {
  content: "\f715";
}

.mi-lightbulb-setting::before {
  content: "\f716";
}

.mi-lightbulb-slash::before {
  content: "\f717";
}

.mi-lighthouse::before {
  content: "\f718";
}

.mi-lights-holiday::before {
  content: "\f719";
}

.mi-limit-hand::before {
  content: "\f71a";
}

.mi-limit-speedometer::before {
  content: "\f71b";
}

.mi-line-width::before {
  content: "\f71c";
}

.mi-link::before {
  content: "\f71d";
}

.mi-link-alt::before {
  content: "\f71e";
}

.mi-link-horizontal::before {
  content: "\f71f";
}

.mi-link-horizontal-slash::before {
  content: "\f720";
}

.mi-link-slash::before {
  content: "\f721";
}

.mi-link-slash-alt::before {
  content: "\f722";
}

.mi-lion::before {
  content: "\f723";
}

.mi-lion-head::before {
  content: "\f724";
}

.mi-lips::before {
  content: "\f725";
}

.mi-lipstick::before {
  content: "\f726";
}

.mi-lira-sign::before {
  content: "\f727";
}

.mi-list::before {
  content: "\f728";
}

.mi-list-check::before {
  content: "\f729";
}

.mi-list-dropdown::before {
  content: "\f72a";
}

.mi-list-music::before {
  content: "\f72b";
}

.mi-list-timeline::before {
  content: "\f72c";
}

.mi-litecoin-sign::before {
  content: "\f72d";
}

.mi-live::before {
  content: "\f72e";
}

.mi-live-alt::before {
  content: "\f72f";
}

.mi-loading::before {
  content: "\f730";
}

.mi-loan::before {
  content: "\f731";
}

.mi-lobster::before {
  content: "\f732";
}

.mi-location-alt::before {
  content: "\f733";
}

.mi-location-arrow::before {
  content: "\f734";
}

.mi-location-crosshairs::before {
  content: "\f735";
}

.mi-location-crosshairs-slash::before {
  content: "\f736";
}

.mi-location-dot-slash::before {
  content: "\f737";
}

.mi-location-exclamation::before {
  content: "\f738";
}

.mi-location-pin-call::before {
  content: "\f739";
}

.mi-lock::before {
  content: "\f73a";
}

.mi-lock-alt::before {
  content: "\f73b";
}

.mi-lock-hashtag::before {
  content: "\f73c";
}

.mi-lock-open-alt::before {
  content: "\f73d";
}

.mi-locust::before {
  content: "\f73e";
}

.mi-loop-square::before {
  content: "\f73f";
}

.mi-loveseat::before {
  content: "\f740";
}

.mi-low-vision::before {
  content: "\f741";
}

.mi-luchador::before {
  content: "\f742";
}

.mi-luggage-cart::before {
  content: "\f743";
}

.mi-luggage-rolling::before {
  content: "\f744";
}

.mi-lungs::before {
  content: "\f745";
}

.mi-lungs-virus::before {
  content: "\f746";
}

.mi-m::before {
  content: "\f747";
}

.mi-mace::before {
  content: "\f748";
}

.mi-magic-wand::before {
  content: "\f749";
}

.mi-magnet::before {
  content: "\f74a";
}

.mi-magnet-user::before {
  content: "\f74b";
}

.mi-mailbox::before {
  content: "\f74c";
}

.mi-mailbox-envelope::before {
  content: "\f74d";
}

.mi-mailbox-flag-up::before {
  content: "\f74e";
}

.mi-makeup-brush::before {
  content: "\f74f";
}

.mi-man-head::before {
  content: "\f750";
}

.mi-man-scientist::before {
  content: "\f751";
}

.mi-manat-sign::before {
  content: "\f752";
}

.mi-mandolin::before {
  content: "\f753";
}

.mi-mango::before {
  content: "\f754";
}

.mi-manhole::before {
  content: "\f755";
}

.mi-map::before {
  content: "\f756";
}

.mi-map-location-track::before {
  content: "\f757";
}

.mi-map-marker::before {
  content: "\f758";
}

.mi-map-marker-check::before {
  content: "\f759";
}

.mi-map-marker-cross::before {
  content: "\f75a";
}

.mi-map-marker-edit::before {
  content: "\f75b";
}

.mi-map-marker-home::before {
  content: "\f75c";
}

.mi-map-marker-minus::before {
  content: "\f75d";
}

.mi-map-marker-plus::before {
  content: "\f75e";
}

.mi-map-marker-question::before {
  content: "\f75f";
}

.mi-map-marker-slash::before {
  content: "\f760";
}

.mi-map-marker-smile::before {
  content: "\f761";
}

.mi-map-pin::before {
  content: "\f762";
}

.mi-map-point::before {
  content: "\f763";
}

.mi-marker::before {
  content: "\f764";
}

.mi-marker-time::before {
  content: "\f765";
}

.mi-marketplace::before {
  content: "\f766";
}

.mi-marketplace-alt::before {
  content: "\f767";
}

.mi-marketplace-store::before {
  content: "\f768";
}

.mi-mars::before {
  content: "\f769";
}

.mi-mars-double::before {
  content: "\f76a";
}

.mi-mars-stroke-right::before {
  content: "\f76b";
}

.mi-mars-stroke-up::before {
  content: "\f76c";
}

.mi-martini-glass-citrus::before {
  content: "\f76d";
}

.mi-martini-glass-empty::before {
  content: "\f76e";
}

.mi-mask::before {
  content: "\f76f";
}

.mi-mask-carnival::before {
  content: "\f770";
}

.mi-mask-face::before {
  content: "\f771";
}

.mi-mask-snorkel::before {
  content: "\f772";
}

.mi-massage::before {
  content: "\f773";
}

.mi-match-fire::before {
  content: "\f774";
}

.mi-mattress-pillow::before {
  content: "\f775";
}

.mi-measuring-tape::before {
  content: "\f776";
}

.mi-meat::before {
  content: "\f777";
}

.mi-medal::before {
  content: "\f778";
}

.mi-medical-star::before {
  content: "\f779";
}

.mi-medicine::before {
  content: "\f77a";
}

.mi-meditation::before {
  content: "\f77b";
}

.mi-meeting::before {
  content: "\f77c";
}

.mi-meeting-alt::before {
  content: "\f77d";
}

.mi-megaphone::before {
  content: "\f77e";
}

.mi-megaphone-announcement-leader::before {
  content: "\f77f";
}

.mi-meh::before {
  content: "\f780";
}

.mi-meh-blank::before {
  content: "\f781";
}

.mi-meh-rolling-eyes::before {
  content: "\f782";
}

.mi-melon::before {
  content: "\f783";
}

.mi-melon-alt::before {
  content: "\f784";
}

.mi-member-list::before {
  content: "\f785";
}

.mi-member-search::before {
  content: "\f786";
}

.mi-membership::before {
  content: "\f787";
}

.mi-membership-vip::before {
  content: "\f788";
}

.mi-memo::before {
  content: "\f789";
}

.mi-memo-circle-check::before {
  content: "\f78a";
}

.mi-memo-pad::before {
  content: "\f78b";
}

.mi-memory::before {
  content: "\f78c";
}

.mi-menu-burger::before {
  content: "\f78d";
}

.mi-menu-dots::before {
  content: "\f78e";
}

.mi-menu-dots-vertical::before {
  content: "\f78f";
}

.mi-mercury::before {
  content: "\f790";
}

.mi-message-arrow-down::before {
  content: "\f791";
}

.mi-message-arrow-up::before {
  content: "\f792";
}

.mi-message-arrow-up-right::before {
  content: "\f793";
}

.mi-message-bot::before {
  content: "\f794";
}

.mi-message-code::before {
  content: "\f795";
}

.mi-message-dollar::before {
  content: "\f796";
}

.mi-message-heart::before {
  content: "\f797";
}

.mi-message-image::before {
  content: "\f798";
}

.mi-message-question::before {
  content: "\f799";
}

.mi-message-quote::before {
  content: "\f79a";
}

.mi-message-slash::before {
  content: "\f79b";
}

.mi-message-sms::before {
  content: "\f79c";
}

.mi-message-text::before {
  content: "\f79d";
}

.mi-message-xmark::before {
  content: "\f79e";
}

.mi-messages::before {
  content: "\f79f";
}

.mi-messages-dollar::before {
  content: "\f7a0";
}

.mi-messages-question::before {
  content: "\f7a1";
}

.mi-meteor::before {
  content: "\f7a2";
}

.mi-meter::before {
  content: "\f7a3";
}

.mi-meter-bolt::before {
  content: "\f7a4";
}

.mi-meter-droplet::before {
  content: "\f7a5";
}

.mi-meter-fire::before {
  content: "\f7a6";
}

.mi-method::before {
  content: "\f7a7";
}

.mi-microchip::before {
  content: "\f7a8";
}

.mi-microchip-ai::before {
  content: "\f7a9";
}

.mi-microphone::before {
  content: "\f7aa";
}

.mi-microphone-alt::before {
  content: "\f7ab";
}

.mi-microphone-slash::before {
  content: "\f7ac";
}

.mi-microscope::before {
  content: "\f7ad";
}

.mi-microwave::before {
  content: "\f7ae";
}

.mi-milk::before {
  content: "\f7af";
}

.mi-milk-alt::before {
  content: "\f7b0";
}

.mi-mill-sign::before {
  content: "\f7b1";
}

.mi-mind-share::before {
  content: "\f7b2";
}

.mi-minus::before {
  content: "\f7b3";
}

.mi-minus-circle::before {
  content: "\f7b4";
}

.mi-minus-hexagon::before {
  content: "\f7b5";
}

.mi-minus-small::before {
  content: "\f7b6";
}

.mi-mistletoe::before {
  content: "\f7b7";
}

.mi-mix::before {
  content: "\f7b8";
}

.mi-mobile::before {
  content: "\f7b9";
}

.mi-mobile-button::before {
  content: "\f7ba";
}

.mi-mobile-notch::before {
  content: "\f7bb";
}

.mi-mockup::before {
  content: "\f7bc";
}

.mi-mode::before {
  content: "\f7bd";
}

.mi-mode-alt::before {
  content: "\f7be";
}

.mi-mode-landscape::before {
  content: "\f7bf";
}

.mi-mode-portrait::before {
  content: "\f7c0";
}

.mi-model-cube::before {
  content: "\f7c1";
}

.mi-model-cube-arrows::before {
  content: "\f7c2";
}

.mi-model-cube-space::before {
  content: "\f7c3";
}

.mi-module::before {
  content: "\f7c4";
}

.mi-monday::before {
  content: "\f7c5";
}

.mi-money::before {
  content: "\f7c6";
}

.mi-money-bill-simple::before {
  content: "\f7c7";
}

.mi-money-bill-transfer::before {
  content: "\f7c8";
}

.mi-money-bill-wave::before {
  content: "\f7c9";
}

.mi-money-bill-wave-alt::before {
  content: "\f7ca";
}

.mi-money-bills::before {
  content: "\f7cb";
}

.mi-money-bills-simple::before {
  content: "\f7cc";
}

.mi-money-check::before {
  content: "\f7cd";
}

.mi-money-check-edit::before {
  content: "\f7ce";
}

.mi-money-check-edit-alt::before {
  content: "\f7cf";
}

.mi-money-coin-transfer::before {
  content: "\f7d0";
}

.mi-money-from-bracket::before {
  content: "\f7d1";
}

.mi-money-simple-from-bracket::before {
  content: "\f7d2";
}

.mi-money-transfer-alt::before {
  content: "\f7d3";
}

.mi-money-transfer-coin-arrow::before {
  content: "\f7d4";
}

.mi-money-transfer-smartphone::before {
  content: "\f7d5";
}

.mi-money-wings::before {
  content: "\f7d6";
}

.mi-monkey::before {
  content: "\f7d7";
}

.mi-monument::before {
  content: "\f7d8";
}

.mi-moon::before {
  content: "\f7d9";
}

.mi-moon-stars::before {
  content: "\f7da";
}

.mi-moped::before {
  content: "\f7db";
}

.mi-mortar-pestle::before {
  content: "\f7dc";
}

.mi-mortgage::before {
  content: "\f7dd";
}

.mi-mosque::before {
  content: "\f7de";
}

.mi-mosque-alt::before {
  content: "\f7df";
}

.mi-mosque-moon::before {
  content: "\f7e0";
}

.mi-mosquito::before {
  content: "\f7e1";
}

.mi-mosquito-net::before {
  content: "\f7e2";
}

.mi-motorcycle::before {
  content: "\f7e3";
}

.mi-mound::before {
  content: "\f7e4";
}

.mi-mountain::before {
  content: "\f7e5";
}

.mi-mountain-city::before {
  content: "\f7e6";
}

.mi-mountains::before {
  content: "\f7e7";
}

.mi-mouse::before {
  content: "\f7e8";
}

.mi-mouse-field::before {
  content: "\f7e9";
}

.mi-mov-file::before {
  content: "\f7ea";
}

.mi-move-to-folder::before {
  content: "\f7eb";
}

.mi-move-to-folder-2::before {
  content: "\f7ec";
}

.mi-mp3-file::before {
  content: "\f7ed";
}

.mi-mp3-player::before {
  content: "\f7ee";
}

.mi-mp4-file::before {
  content: "\f7ef";
}

.mi-mug::before {
  content: "\f7f0";
}

.mi-mug-alt::before {
  content: "\f7f1";
}

.mi-mug-hot::before {
  content: "\f7f2";
}

.mi-mug-hot-alt::before {
  content: "\f7f3";
}

.mi-mug-marshmallows::before {
  content: "\f7f4";
}

.mi-mug-tea::before {
  content: "\f7f5";
}

.mi-mug-tea-saucer::before {
  content: "\f7f6";
}

.mi-multiple::before {
  content: "\f7f7";
}

.mi-multiple-alt::before {
  content: "\f7f8";
}

.mi-muscle::before {
  content: "\f7f9";
}

.mi-mushroom::before {
  content: "\f7fa";
}

.mi-mushroom-alt::before {
  content: "\f7fb";
}

.mi-music::before {
  content: "\f7fc";
}

.mi-music-alt::before {
  content: "\f7fd";
}

.mi-music-file::before {
  content: "\f7fe";
}

.mi-music-note::before {
  content: "\f7ff";
}

.mi-music-note-slash::before {
  content: "\f800";
}

.mi-music-slash::before {
  content: "\f801";
}

.mi-n::before {
  content: "\f802";
}

.mi-naira-sign::before {
  content: "\f803";
}

.mi-narwhal::before {
  content: "\f804";
}

.mi-navigation::before {
  content: "\f805";
}

.mi-nesting-dolls::before {
  content: "\f806";
}

.mi-network::before {
  content: "\f807";
}

.mi-network-analytic::before {
  content: "\f808";
}

.mi-network-cloud::before {
  content: "\f809";
}

.mi-neuter::before {
  content: "\f80a";
}

.mi-newsletter-subscribe::before {
  content: "\f80b";
}

.mi-newspaper::before {
  content: "\f80c";
}

.mi-newspaper-open::before {
  content: "\f80d";
}

.mi-nfc::before {
  content: "\f80e";
}

.mi-nfc-lock::before {
  content: "\f80f";
}

.mi-nfc-magnifying-glass::before {
  content: "\f810";
}

.mi-nfc-pen::before {
  content: "\f811";
}

.mi-nfc-slash::before {
  content: "\f812";
}

.mi-nfc-trash::before {
  content: "\f813";
}

.mi-night-day::before {
  content: "\f814";
}

.mi-no-fee::before {
  content: "\f815";
}

.mi-no-people::before {
  content: "\f816";
}

.mi-nonmarkingreturn::before {
  content: "\f817";
}

.mi-noodles::before {
  content: "\f818";
}

.mi-nose::before {
  content: "\f819";
}

.mi-not-equal::before {
  content: "\f81a";
}

.mi-not-found::before {
  content: "\f81b";
}

.mi-not-found-alt::before {
  content: "\f81c";
}

.mi-not-found-magnifying-glass::before {
  content: "\f81d";
}

.mi-notdef::before {
  content: "\f81e";
}

.mi-note::before {
  content: "\f81f";
}

.mi-note-medical::before {
  content: "\f820";
}

.mi-note-sticky::before {
  content: "\f821";
}

.mi-notebook::before {
  content: "\f822";
}

.mi-notebook-alt::before {
  content: "\f823";
}

.mi-notes::before {
  content: "\f824";
}

.mi-notes-medical::before {
  content: "\f825";
}

.mi-o::before {
  content: "\f826";
}

.mi-object-exclude::before {
  content: "\f827";
}

.mi-object-group::before {
  content: "\f828";
}

.mi-object-intersect::before {
  content: "\f829";
}

.mi-object-subtract::before {
  content: "\f82a";
}

.mi-object-ungroup::before {
  content: "\f82b";
}

.mi-object-union::before {
  content: "\f82c";
}

.mi-objects-column::before {
  content: "\f82d";
}

.mi-octagon::before {
  content: "\f82e";
}

.mi-octagon-check::before {
  content: "\f82f";
}

.mi-octagon-divide::before {
  content: "\f830";
}

.mi-octagon-exclamation::before {
  content: "\f831";
}

.mi-octagon-minus::before {
  content: "\f832";
}

.mi-octagon-plus::before {
  content: "\f833";
}

.mi-octagon-xmark::before {
  content: "\f834";
}

.mi-oil-can::before {
  content: "\f835";
}

.mi-oil-temp::before {
  content: "\f836";
}

.mi-olive::before {
  content: "\f837";
}

.mi-olive-oil::before {
  content: "\f838";
}

.mi-olives::before {
  content: "\f839";
}

.mi-om::before {
  content: "\f83a";
}

.mi-omega::before {
  content: "\f83b";
}

.mi-onboarding::before {
  content: "\f83c";
}

.mi-onion::before {
  content: "\f83d";
}

.mi-opacity::before {
  content: "\f83e";
}

.mi-open-mail-clip::before {
  content: "\f83f";
}

.mi-operating-system-upgrade::before {
  content: "\f840";
}

.mi-operation::before {
  content: "\f841";
}

.mi-order-history::before {
  content: "\f842";
}

.mi-organization-chart::before {
  content: "\f843";
}

.mi-ornament::before {
  content: "\f844";
}

.mi-otp::before {
  content: "\f845";
}

.mi-otter::before {
  content: "\f846";
}

.mi-outdent::before {
  content: "\f847";
}

.mi-oval::before {
  content: "\f848";
}

.mi-oval-alt::before {
  content: "\f849";
}

.mi-oven::before {
  content: "\f84a";
}

.mi-overline::before {
  content: "\f84b";
}

.mi-overview::before {
  content: "\f84c";
}

.mi-p::before {
  content: "\f84d";
}

.mi-package::before {
  content: "\f84e";
}

.mi-padlock-check::before {
  content: "\f84f";
}

.mi-page-break::before {
  content: "\f850";
}

.mi-pager::before {
  content: "\f851";
}

.mi-paid::before {
  content: "\f852";
}

.mi-paint-brush::before {
  content: "\f853";
}

.mi-paint-roller::before {
  content: "\f854";
}

.mi-paintbrush-pencil::before {
  content: "\f855";
}

.mi-palette::before {
  content: "\f856";
}

.mi-pallet-alt::before {
  content: "\f857";
}

.mi-pan::before {
  content: "\f858";
}

.mi-pan-food::before {
  content: "\f859";
}

.mi-pancakes::before {
  content: "\f85a";
}

.mi-panorama::before {
  content: "\f85b";
}

.mi-paper-plane::before {
  content: "\f85c";
}

.mi-paper-plane-launch::before {
  content: "\f85d";
}

.mi-paper-plane-top::before {
  content: "\f85e";
}

.mi-paperclip-vertical::before {
  content: "\f85f";
}

.mi-parachute-box::before {
  content: "\f860";
}

.mi-paragraph::before {
  content: "\f861";
}

.mi-paragraph-left::before {
  content: "\f862";
}

.mi-parking::before {
  content: "\f863";
}

.mi-parking-circle::before {
  content: "\f864";
}

.mi-parking-circle-slash::before {
  content: "\f865";
}

.mi-parking-slash::before {
  content: "\f866";
}

.mi-party-horn::before {
  content: "\f867";
}

.mi-passport::before {
  content: "\f868";
}

.mi-password::before {
  content: "\f869";
}

.mi-password-alt::before {
  content: "\f86a";
}

.mi-password-computer::before {
  content: "\f86b";
}

.mi-password-email::before {
  content: "\f86c";
}

.mi-password-smartphone::before {
  content: "\f86d";
}

.mi-paste::before {
  content: "\f86e";
}

.mi-pattern::before {
  content: "\f86f";
}

.mi-pause::before {
  content: "\f870";
}

.mi-pause-circle::before {
  content: "\f871";
}

.mi-pause-square::before {
  content: "\f872";
}

.mi-paw::before {
  content: "\f873";
}

.mi-paw-claws::before {
  content: "\f874";
}

.mi-paw-heart::before {
  content: "\f875";
}

.mi-payment-pos::before {
  content: "\f876";
}

.mi-payroll::before {
  content: "\f877";
}

.mi-payroll-calendar::before {
  content: "\f878";
}

.mi-payroll-check::before {
  content: "\f879";
}

.mi-peace::before {
  content: "\f87a";
}

.mi-peach::before {
  content: "\f87b";
}

.mi-peanut::before {
  content: "\f87c";
}

.mi-peanuts::before {
  content: "\f87d";
}

.mi-peapod::before {
  content: "\f87e";
}

.mi-pear::before {
  content: "\f87f";
}

.mi-pedestal::before {
  content: "\f880";
}

.mi-pen-circle::before {
  content: "\f881";
}

.mi-pen-clip::before {
  content: "\f882";
}

.mi-pen-clip-slash::before {
  content: "\f883";
}

.mi-pen-fancy::before {
  content: "\f884";
}

.mi-pen-fancy-slash::before {
  content: "\f885";
}

.mi-pen-field::before {
  content: "\f886";
}

.mi-pen-nib::before {
  content: "\f887";
}

.mi-pen-nib-slash::before {
  content: "\f888";
}

.mi-pen-slash::before {
  content: "\f889";
}

.mi-pen-square::before {
  content: "\f88a";
}

.mi-pen-swirl::before {
  content: "\f88b";
}

.mi-pencil::before {
  content: "\f88c";
}

.mi-pencil-paintbrush::before {
  content: "\f88d";
}

.mi-pencil-ruler::before {
  content: "\f88e";
}

.mi-pencil-slash::before {
  content: "\f88f";
}

.mi-pending::before {
  content: "\f890";
}

.mi-pennant::before {
  content: "\f891";
}

.mi-people::before {
  content: "\f892";
}

.mi-people-arrows-left-right::before {
  content: "\f893";
}

.mi-people-carry-box::before {
  content: "\f894";
}

.mi-people-dress::before {
  content: "\f895";
}

.mi-people-network-partner::before {
  content: "\f896";
}

.mi-people-pants::before {
  content: "\f897";
}

.mi-people-poll::before {
  content: "\f898";
}

.mi-people-pulling::before {
  content: "\f899";
}

.mi-people-roof::before {
  content: "\f89a";
}

.mi-pepper::before {
  content: "\f89b";
}

.mi-pepper-alt::before {
  content: "\f89c";
}

.mi-pepper-hot::before {
  content: "\f89d";
}

.mi-percent-10::before {
  content: "\f89e";
}

.mi-percent-100::before {
  content: "\f89f";
}

.mi-percent-20::before {
  content: "\f8a0";
}

.mi-percent-25::before {
  content: "\f8a1";
}

.mi-percent-30::before {
  content: "\f8a2";
}

.mi-percent-40::before {
  content: "\f8a3";
}

.mi-percent-50::before {
  content: "\f8a4";
}

.mi-percent-60::before {
  content: "\f8a5";
}

.mi-percent-70::before {
  content: "\f8a6";
}

.mi-percent-75::before {
  content: "\f8a7";
}

.mi-percent-80::before {
  content: "\f8a8";
}

.mi-percent-90::before {
  content: "\f8a9";
}

.mi-percentage::before {
  content: "\f8aa";
}

.mi-person-burst::before {
  content: "\f8ab";
}

.mi-person-carry-box::before {
  content: "\f8ac";
}

.mi-person-circle-check::before {
  content: "\f8ad";
}

.mi-person-circle-exclamation::before {
  content: "\f8ae";
}

.mi-person-circle-minus::before {
  content: "\f8af";
}

.mi-person-circle-plus::before {
  content: "\f8b0";
}

.mi-person-circle-question::before {
  content: "\f8b1";
}

.mi-person-circle-xmark::before {
  content: "\f8b2";
}

.mi-person-cv::before {
  content: "\f8b3";
}

.mi-person-dolly::before {
  content: "\f8b4";
}

.mi-person-dolly-empty::before {
  content: "\f8b5";
}

.mi-person-dress::before {
  content: "\f8b6";
}

.mi-person-dress-simple::before {
  content: "\f8b7";
}

.mi-person-luggage::before {
  content: "\f8b8";
}

.mi-person-lunge::before {
  content: "\f8b9";
}

.mi-person-pilates::before {
  content: "\f8ba";
}

.mi-person-praying::before {
  content: "\f8bb";
}

.mi-person-pregnant::before {
  content: "\f8bc";
}

.mi-person-seat::before {
  content: "\f8bd";
}

.mi-person-seat-reclined::before {
  content: "\f8be";
}

.mi-person-shelter::before {
  content: "\f8bf";
}

.mi-person-sign::before {
  content: "\f8c0";
}

.mi-person-simple::before {
  content: "\f8c1";
}

.mi-person-walking-with-cane::before {
  content: "\f8c2";
}

.mi-peseta-sign::before {
  content: "\f8c3";
}

.mi-peso-sign::before {
  content: "\f8c4";
}

.mi-pets::before {
  content: "\f8c5";
}

.mi-pharmacy::before {
  content: "\f8c6";
}

.mi-phone-call::before {
  content: "\f8c7";
}

.mi-phone-cross::before {
  content: "\f8c8";
}

.mi-phone-flip::before {
  content: "\f8c9";
}

.mi-phone-guide::before {
  content: "\f8ca";
}

.mi-phone-heart-message::before {
  content: "\f8cb";
}

.mi-phone-office::before {
  content: "\f8cc";
}

.mi-phone-pause::before {
  content: "\f8cd";
}

.mi-phone-plus::before {
  content: "\f8ce";
}

.mi-phone-rotary::before {
  content: "\f8cf";
}

.mi-phone-slash::before {
  content: "\f8d0";
}

.mi-photo-capture::before {
  content: "\f8d1";
}

.mi-photo-film-music::before {
  content: "\f8d2";
}

.mi-photo-video::before {
  content: "\f8d3";
}

.mi-physics::before {
  content: "\f8d4";
}

.mi-pi::before {
  content: "\f8d5";
}

.mi-piano::before {
  content: "\f8d6";
}

.mi-piano-keyboard::before {
  content: "\f8d7";
}

.mi-pickaxe::before {
  content: "\f8d8";
}

.mi-picking::before {
  content: "\f8d9";
}

.mi-picking-box::before {
  content: "\f8da";
}

.mi-picnic::before {
  content: "\f8db";
}

.mi-picpeople::before {
  content: "\f8dc";
}

.mi-picpeople-filled::before {
  content: "\f8dd";
}

.mi-picture::before {
  content: "\f8de";
}

.mi-pie::before {
  content: "\f8df";
}

.mi-piece::before {
  content: "\f8e0";
}

.mi-pig::before {
  content: "\f8e1";
}

.mi-pig-bank-bulb::before {
  content: "\f8e2";
}

.mi-pig-face::before {
  content: "\f8e3";
}

.mi-piggy-bank::before {
  content: "\f8e4";
}

.mi-piggy-bank-budget::before {
  content: "\f8e5";
}

.mi-pills::before {
  content: "\f8e6";
}

.mi-pinata::before {
  content: "\f8e7";
}

.mi-pineapple::before {
  content: "\f8e8";
}

.mi-pineapple-alt::before {
  content: "\f8e9";
}

.mi-ping-pong::before {
  content: "\f8ea";
}

.mi-pipe-smoking::before {
  content: "\f8eb";
}

.mi-pizza-slice::before {
  content: "\f8ec";
}

.mi-place-of-worship::before {
  content: "\f8ed";
}

.mi-plan::before {
  content: "\f8ee";
}

.mi-plan-strategy::before {
  content: "\f8ef";
}

.mi-plane::before {
  content: "\f8f0";
}

.mi-plane-alt::before {
  content: "\f8f1";
}

.mi-plane-arrival::before {
  content: "\f8f2";
}

.mi-plane-departure::before {
  content: "\f8f3";
}

.mi-plane-prop::before {
  content: "\f8f4";
}

.mi-plane-slash::before {
  content: "\f8f5";
}

.mi-plane-tail::before {
  content: "\f8f6";
}

.mi-planet-moon::before {
  content: "\f8f7";
}

.mi-planet-ringed::before {
  content: "\f8f8";
}

.mi-plant-care::before {
  content: "\f8f9";
}

.mi-plant-growth::before {
  content: "\f8fa";
}

.mi-plant-seed-invest::before {
  content: "\f8fb";
}

.mi-plant-wilt::before {
  content: "\f8fc";
}

.mi-plate::before {
  content: "\f8fd";
}

.mi-plate-utensils::before {
  content: "\f8fe";
}

.mi-plate-wheat::before {
  content: "\f8ff";
}

.mi-play::before {
  content: "豈";
}

.mi-play-alt::before {
  content: "更";
}

.mi-play-circle::before {
  content: "車";
}

.mi-play-microphone::before {
  content: "賈";
}

.mi-play-pause::before {
  content: "滑";
}

.mi-playing-cards::before {
  content: "串";
}

.mi-plug::before {
  content: "句";
}

.mi-plug-alt::before {
  content: "龜";
}

.mi-plug-cable::before {
  content: "龜";
}

.mi-plug-circle-bolt::before {
  content: "契";
}

.mi-plug-circle-check::before {
  content: "金";
}

.mi-plug-circle-exclamation::before {
  content: "喇";
}

.mi-plug-circle-minus::before {
  content: "奈";
}

.mi-plug-circle-plus::before {
  content: "懶";
}

.mi-plug-connection::before {
  content: "癩";
}

.mi-plus::before {
  content: "羅";
}

.mi-plus-hexagon::before {
  content: "蘿";
}

.mi-plus-minus::before {
  content: "螺";
}

.mi-plus-small::before {
  content: "裸";
}

.mi-png-file::before {
  content: "邏";
}

.mi-podcast::before {
  content: "樂";
}

.mi-podium::before {
  content: "洛";
}

.mi-podium-star::before {
  content: "烙";
}

.mi-podium-victory-leader::before {
  content: "珞";
}

.mi-point-of-sale::before {
  content: "落";
}

.mi-point-of-sale-bill::before {
  content: "酪";
}

.mi-point-of-sale-signal::before {
  content: "駱";
}

.mi-pointer-loading::before {
  content: "亂";
}

.mi-pointer-text::before {
  content: "卵";
}

.mi-poker-chip::before {
  content: "欄";
}

.mi-police-box::before {
  content: "爛";
}

.mi-poll-h::before {
  content: "蘭";
}

.mi-pollution::before {
  content: "鸞";
}

.mi-pompebled::before {
  content: "嵐";
}

.mi-poo::before {
  content: "濫";
}

.mi-poo-bolt::before {
  content: "藍";
}

.mi-pool-8-ball::before {
  content: "襤";
}

.mi-poop::before {
  content: "拉";
}

.mi-popcorn::before {
  content: "臘";
}

.mi-popsicle::before {
  content: "蠟";
}

.mi-portal-enter::before {
  content: "廊";
}

.mi-portal-exit::before {
  content: "朗";
}

.mi-portrait::before {
  content: "浪";
}

.mi-postal-address::before {
  content: "狼";
}

.mi-pot::before {
  content: "郎";
}

.mi-potato::before {
  content: "來";
}

.mi-pound::before {
  content: "冷";
}

.mi-power::before {
  content: "勞";
}

.mi-ppt-file::before {
  content: "擄";
}

.mi-practice::before {
  content: "櫓";
}

.mi-praying-hands::before {
  content: "爐";
}

.mi-prescription::before {
  content: "盧";
}

.mi-prescription-bottle::before {
  content: "老";
}

.mi-prescription-bottle-alt::before {
  content: "蘆";
}

.mi-prescription-bottle-pill::before {
  content: "虜";
}

.mi-presentation::before {
  content: "路";
}

.mi-preview::before {
  content: "露";
}

.mi-previous-square::before {
  content: "魯";
}

.mi-print::before {
  content: "鷺";
}

.mi-print-magnifying-glass::before {
  content: "碌";
}

.mi-print-slash::before {
  content: "祿";
}

.mi-priority-arrow::before {
  content: "綠";
}

.mi-priority-arrows::before {
  content: "菉";
}

.mi-priority-importance::before {
  content: "錄";
}

.mi-problem-solving::before {
  content: "鹿";
}

.mi-procedures::before {
  content: "論";
}

.mi-process::before {
  content: "壟";
}

.mi-productivity::before {
  content: "弄";
}

.mi-progress-complete::before {
  content: "籠";
}

.mi-progress-download::before {
  content: "聾";
}

.mi-progress-upload::before {
  content: "牢";
}

.mi-projector::before {
  content: "磊";
}

.mi-protractor::before {
  content: "賂";
}

.mi-pulse::before {
  content: "雷";
}

.mi-pump::before {
  content: "壘";
}

.mi-pump-medical::before {
  content: "屢";
}

.mi-pumpkin::before {
  content: "樓";
}

.mi-pumpkin-alt::before {
  content: "淚";
}

.mi-pumpkin-alt-2::before {
  content: "漏";
}

.mi-puzzle::before {
  content: "累";
}

.mi-puzzle-alt::before {
  content: "縷";
}

.mi-puzzle-piece-integration::before {
  content: "陋";
}

.mi-puzzle-pieces::before {
  content: "勒";
}

.mi-pyramid::before {
  content: "肋";
}

.mi-q::before {
  content: "凜";
}

.mi-qr::before {
  content: "凌";
}

.mi-qr-scan::before {
  content: "稜";
}

.mi-qrcode::before {
  content: "綾";
}

.mi-question::before {
  content: "菱";
}

.mi-question-square::before {
  content: "陵";
}

.mi-queue::before {
  content: "讀";
}

.mi-queue-alt::before {
  content: "拏";
}

.mi-queue-line::before {
  content: "樂";
}

.mi-queue-signal::before {
  content: "諾";
}

.mi-quill-pen-story::before {
  content: "丹";
}

.mi-quiz::before {
  content: "寧";
}

.mi-quiz-alt::before {
  content: "怒";
}

.mi-quote-right::before {
  content: "率";
}

.mi-r::before {
  content: "異";
}

.mi-rabbit::before {
  content: "北";
}

.mi-rabbit-fast::before {
  content: "磻";
}

.mi-raccoon::before {
  content: "便";
}

.mi-racquet::before {
  content: "復";
}

.mi-radar::before {
  content: "不";
}

.mi-radar-monitoring-track::before {
  content: "泌";
}

.mi-radiation::before {
  content: "數";
}

.mi-radiation-alt::before {
  content: "索";
}

.mi-radio::before {
  content: "參";
}

.mi-radio-alt::before {
  content: "塞";
}

.mi-radio-button::before {
  content: "省";
}

.mi-radish::before {
  content: "葉";
}

.mi-rainbow::before {
  content: "說";
}

.mi-raindrops::before {
  content: "殺";
}

.mi-ram::before {
  content: "辰";
}

.mi-ramp-loading::before {
  content: "沈";
}

.mi-rank::before {
  content: "拾";
}

.mi-ranking-podium::before {
  content: "若";
}

.mi-ranking-podium-empty::before {
  content: "掠";
}

.mi-ranking-star::before {
  content: "略";
}

.mi-ranking-stars::before {
  content: "亮";
}

.mi-raygun::before {
  content: "兩";
}

.mi-razor-barber::before {
  content: "凉";
}

.mi-react::before {
  content: "梁";
}

.mi-rec::before {
  content: "糧";
}

.mi-receipt::before {
  content: "良";
}

.mi-recipe::before {
  content: "諒";
}

.mi-recipe-book::before {
  content: "量";
}

.mi-record-vinyl::before {
  content: "勵";
}

.mi-rectabgle-vertical::before {
  content: "呂";
}

.mi-rectangle-barcode::before {
  content: "女";
}

.mi-rectangle-code::before {
  content: "廬";
}

.mi-rectangle-history-circle-plus::before {
  content: "旅";
}

.mi-rectangle-horizontal::before {
  content: "濾";
}

.mi-rectangle-list::before {
  content: "礪";
}

.mi-rectangle-panoramic::before {
  content: "閭";
}

.mi-rectangle-pro::before {
  content: "驪";
}

.mi-rectangle-vertical::before {
  content: "麗";
}

.mi-rectangle-vertical-history::before {
  content: "黎";
}

.mi-rectangle-xmark::before {
  content: "力";
}

.mi-rectangles-mixed::before {
  content: "曆";
}

.mi-recycle::before {
  content: "歷";
}

.mi-recycle-bin::before {
  content: "轢";
}

.mi-redo::before {
  content: "年";
}

.mi-redo-alt::before {
  content: "憐";
}

.mi-reel::before {
  content: "戀";
}

.mi-refer::before {
  content: "撚";
}

.mi-refer-arrow::before {
  content: "漣";
}

.mi-referral::before {
  content: "煉";
}

.mi-referral-alt::before {
  content: "璉";
}

.mi-referral-user::before {
  content: "秊";
}

.mi-reflect::before {
  content: "練";
}

.mi-reflect-horizontal::before {
  content: "聯";
}

.mi-reflect-horizontal-alt::before {
  content: "輦";
}

.mi-reflect-vertical::before {
  content: "蓮";
}

.mi-refresh::before {
  content: "連";
}

.mi-refrigerator::before {
  content: "鍊";
}

.mi-refund::before {
  content: "列";
}

.mi-refund-alt::before {
  content: "劣";
}

.mi-region-pin::before {
  content: "咽";
}

.mi-region-pin-alt::before {
  content: "烈";
}

.mi-registered::before {
  content: "裂";
}

.mi-registration-paper::before {
  content: "說";
}

.mi-remove-folder::before {
  content: "廉";
}

.mi-remove-user::before {
  content: "念";
}

.mi-rent::before {
  content: "捻";
}

.mi-rent-signal::before {
  content: "殮";
}

.mi-replace::before {
  content: "簾";
}

.mi-replay-10::before {
  content: "獵";
}

.mi-replay-30::before {
  content: "令";
}

.mi-replay-5::before {
  content: "囹";
}

.mi-reply-all::before {
  content: "寧";
}

.mi-republican::before {
  content: "嶺";
}

.mi-reservation-smartphone::before {
  content: "怜";
}

.mi-reservation-table::before {
  content: "玲";
}

.mi-resistance-band::before {
  content: "瑩";
}

.mi-resize::before {
  content: "羚";
}

.mi-resources::before {
  content: "聆";
}

.mi-restaurant::before {
  content: "鈴";
}

.mi-restaurants::before {
  content: "零";
}

.mi-restock::before {
  content: "靈";
}

.mi-restroom-simple::before {
  content: "領";
}

.mi-resume::before {
  content: "例";
}

.mi-revenue::before {
  content: "禮";
}

.mi-revenue-alt::before {
  content: "醴";
}

.mi-revenue-euro::before {
  content: "隸";
}

.mi-review::before {
  content: "惡";
}

.mi-rewind::before {
  content: "了";
}

.mi-rewind-button-circle::before {
  content: "僚";
}

.mi-rhombus::before {
  content: "寮";
}

.mi-ribbon::before {
  content: "尿";
}

.mi-right::before {
  content: "料";
}

.mi-right-from-bracket::before {
  content: "樂";
}

.mi-ring::before {
  content: "燎";
}

.mi-ring-diamond::before {
  content: "療";
}

.mi-rings-wedding::before {
  content: "蓼";
}

.mi-risk::before {
  content: "遼";
}

.mi-risk-alt::before {
  content: "龍";
}

.mi-road::before {
  content: "暈";
}

.mi-road-barrier::before {
  content: "阮";
}

.mi-road-sign-left::before {
  content: "劉";
}

.mi-robot::before {
  content: "杻";
}

.mi-robotic-arm::before {
  content: "柳";
}

.mi-rocket::before {
  content: "流";
}

.mi-rocket-lunch::before {
  content: "溜";
}

.mi-roller-coaster::before {
  content: "琉";
}

.mi-room-service::before {
  content: "留";
}

.mi-rotate-exclamation::before {
  content: "硫";
}

.mi-rotate-left::before {
  content: "紐";
}

.mi-rotate-reverse::before {
  content: "類";
}

.mi-rotate-right::before {
  content: "六";
}

.mi-rotate-square::before {
  content: "戮";
}

.mi-roulette::before {
  content: "陸";
}

.mi-route::before {
  content: "倫";
}

.mi-route-highway::before {
  content: "崙";
}

.mi-route-interstate::before {
  content: "淪";
}

.mi-router::before {
  content: "輪";
}

.mi-rss::before {
  content: "律";
}

.mi-rss-alt::before {
  content: "慄";
}

.mi-ruble-sign::before {
  content: "栗";
}

.mi-rugby::before {
  content: "率";
}

.mi-ruler-combined::before {
  content: "隆";
}

.mi-ruler-horizontal::before {
  content: "利";
}

.mi-ruler-triangle::before {
  content: "吏";
}

.mi-ruler-vertical::before {
  content: "履";
}

.mi-rules::before {
  content: "易";
}

.mi-rules-alt::before {
  content: "李";
}

.mi-running::before {
  content: "梨";
}

.mi-running-track::before {
  content: "泥";
}

.mi-rupee-sign::before {
  content: "理";
}

.mi-rupiah-sign::before {
  content: "痢";
}

.mi-rv::before {
  content: "罹";
}

.mi-s::before {
  content: "裏";
}

.mi-sack::before {
  content: "裡";
}

.mi-sack-dollar::before {
  content: "里";
}

.mi-sad::before {
  content: "離";
}

.mi-sad-cry::before {
  content: "匿";
}

.mi-sad-tear::before {
  content: "溺";
}

.mi-safe-box::before {
  content: "吝";
}

.mi-sailboat::before {
  content: "燐";
}

.mi-salad::before {
  content: "璘";
}

.mi-salary-alt::before {
  content: "藺";
}

.mi-salt-pepper::before {
  content: "隣";
}

.mi-salt-shaker::before {
  content: "鱗";
}

.mi-sandwich::before {
  content: "麟";
}

.mi-sandwich-alt::before {
  content: "林";
}

.mi-satellite::before {
  content: "淋";
}

.mi-satellite-dish::before {
  content: "臨";
}

.mi-saturday::before {
  content: "立";
}

.mi-sauce::before {
  content: "笠";
}

.mi-sausage::before {
  content: "粒";
}

.mi-sax-hot::before {
  content: "狀";
}

.mi-saxophone::before {
  content: "炙";
}

.mi-scale::before {
  content: "識";
}

.mi-scale-comparison::before {
  content: "什";
}

.mi-scale-comparison-alt::before {
  content: "茶";
}

.mi-scalpel::before {
  content: "刺";
}

.mi-scalpel-path::before {
  content: "切";
}

.mi-scanner-gun::before {
  content: "度";
}

.mi-scanner-image::before {
  content: "拓";
}

.mi-scanner-keyboard::before {
  content: "糖";
}

.mi-scanner-touchscreen::before {
  content: "宅";
}

.mi-scarecrow::before {
  content: "洞";
}

.mi-scarf::before {
  content: "暴";
}

.mi-school::before {
  content: "輻";
}

.mi-school-bus::before {
  content: "行";
}

.mi-scissors::before {
  content: "降";
}

.mi-scooter::before {
  content: "見";
}

.mi-screen::before {
  content: "廓";
}

.mi-screencast::before {
  content: "兀";
}

.mi-screw::before {
  content: "嗀";
}

.mi-screw-alt::before {
  content: "﨎";
}

.mi-screwdriver::before {
  content: "﨏";
}

.mi-scribble::before {
  content: "塚";
}

.mi-script::before {
  content: "﨑";
}

.mi-scroll::before {
  content: "晴";
}

.mi-scroll-document-story::before {
  content: "﨓";
}

.mi-scroll-old::before {
  content: "﨔";
}

.mi-scroll-torah::before {
  content: "凞";
}

.mi-scrubber::before {
  content: "猪";
}

.mi-scythe::before {
  content: "益";
}

.mi-sd-card::before {
  content: "礼";
}

.mi-sd-cards::before {
  content: "神";
}

.mi-seal::before {
  content: "祥";
}

.mi-seal-exclamation::before {
  content: "福";
}

.mi-seal-question::before {
  content: "靖";
}

.mi-search::before {
  content: "精";
}

.mi-search-alt::before {
  content: "羽";
}

.mi-search-dollar::before {
  content: "﨟";
}

.mi-search-heart::before {
  content: "蘒";
}

.mi-search-location::before {
  content: "﨡";
}

.mi-seat-airline::before {
  content: "諸";
}

.mi-seatbelt-safety-driver::before {
  content: "﨣";
}

.mi-second::before {
  content: "﨤";
}

.mi-second-award::before {
  content: "逸";
}

.mi-second-laurel::before {
  content: "都";
}

.mi-second-medal::before {
  content: "﨧";
}

.mi-security::before {
  content: "﨨";
}

.mi-seedling::before {
  content: "﨩";
}

.mi-selection::before {
  content: "飯";
}

.mi-sell::before {
  content: "飼";
}

.mi-seller::before {
  content: "館";
}

.mi-seller-store::before {
  content: "鶴";
}

.mi-selling::before {
  content: "郞";
}

.mi-send-back::before {
  content: "隷";
}

.mi-send-backward::before {
  content: "侮";
}

.mi-send-money::before {
  content: "僧";
}

.mi-send-money-smartphone::before {
  content: "免";
}

.mi-sensor::before {
  content: "勉";
}

.mi-sensor-alert::before {
  content: "勤";
}

.mi-sensor-fire::before {
  content: "卑";
}

.mi-sensor-on::before {
  content: "喝";
}

.mi-sensor-smoke::before {
  content: "嘆";
}

.mi-settings::before {
  content: "器";
}

.mi-settings-sliders::before {
  content: "塀";
}

.mi-share::before {
  content: "墨";
}

.mi-share-alt-square::before {
  content: "層";
}

.mi-share-square::before {
  content: "屮";
}

.mi-sheep::before {
  content: "悔";
}

.mi-shekel-sign::before {
  content: "慨";
}

.mi-shelves::before {
  content: "憎";
}

.mi-shield::before {
  content: "懲";
}

.mi-shield-alt::before {
  content: "敏";
}

.mi-shield-cat::before {
  content: "既";
}

.mi-shield-check::before {
  content: "暑";
}

.mi-shield-cross::before {
  content: "梅";
}

.mi-shield-dog::before {
  content: "海";
}

.mi-shield-exclamation::before {
  content: "渚";
}

.mi-shield-interrogation::before {
  content: "漢";
}

.mi-shield-keyhole::before {
  content: "煮";
}

.mi-shield-minus::before {
  content: "爫";
}

.mi-shield-plus::before {
  content: "琢";
}

.mi-shield-security-risk::before {
  content: "碑";
}

.mi-shield-slash::before {
  content: "社";
}

.mi-shield-trust::before {
  content: "祉";
}

.mi-shield-virus::before {
  content: "祈";
}

.mi-shield-xmark::before {
  content: "祐";
}

.mi-ship::before {
  content: "祖";
}

.mi-ship-side::before {
  content: "祝";
}

.mi-shipping-fast::before {
  content: "禍";
}

.mi-shipping-timed::before {
  content: "禎";
}

.mi-shirt::before {
  content: "穀";
}

.mi-shirt-long-sleeve::before {
  content: "突";
}

.mi-shirt-running::before {
  content: "節";
}

.mi-shirt-tank-top::before {
  content: "練";
}

.mi-shish-kebab::before {
  content: "縉";
}

.mi-shoe-prints::before {
  content: "繁";
}

.mi-shop::before {
  content: "署";
}

.mi-shop-lock::before {
  content: "者";
}

.mi-shop-slash::before {
  content: "臭";
}

.mi-shopping-bag::before {
  content: "艹";
}

.mi-shopping-bag-add::before {
  content: "艹";
}

.mi-shopping-basket::before {
  content: "著";
}

.mi-shopping-cart::before {
  content: "褐";
}

.mi-shopping-cart-add::before {
  content: "視";
}

.mi-shopping-cart-buyer::before {
  content: "謁";
}

.mi-shopping-cart-check::before {
  content: "謹";
}

.mi-shovel::before {
  content: "賓";
}

.mi-shovel-snow::before {
  content: "贈";
}

.mi-shower::before {
  content: "辶";
}

.mi-shower-down::before {
  content: "逸";
}

.mi-shredder::before {
  content: "難";
}

.mi-shrimp::before {
  content: "響";
}

.mi-shuffle::before {
  content: "頻";
}

.mi-shuttle-van::before {
  content: "恵";
}

.mi-shuttlecock::before {
  content: "𤋮";
}

.mi-sickle::before {
  content: "舘";
}

.mi-sidebar::before {
  content: "﩮";
}

.mi-sidebar-flip::before {
  content: "﩯";
}

.mi-sigma::before {
  content: "並";
}

.mi-sign-hanging::before {
  content: "况";
}

.mi-sign-in-alt::before {
  content: "全";
}

.mi-sign-out-alt::before {
  content: "侀";
}

.mi-sign-posts::before {
  content: "充";
}

.mi-sign-posts-wrench::before {
  content: "冀";
}

.mi-sign-up::before {
  content: "勇";
}

.mi-signal-alt::before {
  content: "勺";
}

.mi-signal-alt-1::before {
  content: "喝";
}

.mi-signal-alt-2::before {
  content: "啕";
}

.mi-signal-alt-slash::before {
  content: "喙";
}

.mi-signal-bars-fair::before {
  content: "嗢";
}

.mi-signal-bars-good::before {
  content: "塚";
}

.mi-signal-bars-weak::before {
  content: "墳";
}

.mi-signal-stream::before {
  content: "奄";
}

.mi-signal-stream-slash::before {
  content: "奔";
}

.mi-signature::before {
  content: "婢";
}

.mi-sim-card::before {
  content: "嬨";
}

.mi-sim-cards::before {
  content: "廒";
}

.mi-sink::before {
  content: "廙";
}

.mi-siren::before {
  content: "彩";
}

.mi-siren-on::before {
  content: "徭";
}

.mi-site::before {
  content: "惘";
}

.mi-site-alt::before {
  content: "慎";
}

.mi-site-browser::before {
  content: "愈";
}

.mi-sitemap::before {
  content: "憎";
}

.mi-skateboard::before {
  content: "慠";
}

.mi-skating::before {
  content: "懲";
}

.mi-skeleton::before {
  content: "戴";
}

.mi-skeleton-ribs::before {
  content: "揄";
}

.mi-skewer::before {
  content: "搜";
}

.mi-ski-boot-ski::before {
  content: "摒";
}

.mi-ski-jump::before {
  content: "敖";
}

.mi-ski-lift::before {
  content: "晴";
}

.mi-skiing::before {
  content: "朗";
}

.mi-skiing-nordic::before {
  content: "望";
}

.mi-skill::before {
  content: "杖";
}

.mi-skill-user::before {
  content: "歹";
}

.mi-skin::before {
  content: "殺";
}

.mi-skin-arrow::before {
  content: "流";
}

.mi-skin-drop::before {
  content: "滛";
}

.mi-skin-hair::before {
  content: "滋";
}

.mi-skip-15-seconds::before {
  content: "漢";
}

.mi-skull::before {
  content: "瀞";
}

.mi-skull-cow::before {
  content: "煮";
}

.mi-skull-crossbones::before {
  content: "瞧";
}

.mi-slash::before {
  content: "爵";
}

.mi-sledding::before {
  content: "犯";
}

.mi-sleeping-bag::before {
  content: "猪";
}

.mi-sleigh::before {
  content: "瑱";
}

.mi-sliders-h-square::before {
  content: "甆";
}

.mi-sliders-v::before {
  content: "画";
}

.mi-sliders-v-square::before {
  content: "瘝";
}

.mi-slot-machine::before {
  content: "瘟";
}

.mi-smartphone::before {
  content: "益";
}

.mi-smile::before {
  content: "盛";
}

.mi-smile-beam::before {
  content: "直";
}

.mi-smile-plus::before {
  content: "睊";
}

.mi-smile-wink::before {
  content: "着";
}

.mi-smiley-comment-alt::before {
  content: "磌";
}

.mi-smog::before {
  content: "窱";
}

.mi-smoke::before {
  content: "節";
}

.mi-smoking::before {
  content: "类";
}

.mi-smoking-ban::before {
  content: "絛";
}

.mi-snake::before {
  content: "練";
}

.mi-snap::before {
  content: "缾";
}

.mi-snooze::before {
  content: "者";
}

.mi-snow-blowing::before {
  content: "荒";
}

.mi-snowboarding::before {
  content: "華";
}

.mi-snowflake::before {
  content: "蝹";
}

.mi-snowflake-droplets::before {
  content: "襁";
}

.mi-snowflakes::before {
  content: "覆";
}

.mi-snowman-alt::before {
  content: "視";
}

.mi-snowman-head::before {
  content: "調";
}

.mi-snowmobile::before {
  content: "諸";
}

.mi-snowplow::before {
  content: "請";
}

.mi-soap::before {
  content: "謁";
}

.mi-soap-alt::before {
  content: "諾";
}

.mi-social-network::before {
  content: "諭";
}

.mi-socks::before {
  content: "謹";
}

.mi-sofa::before {
  content: "變";
}

.mi-sofa-size::before {
  content: "贈";
}

.mi-solar-panel::before {
  content: "輸";
}

.mi-solar-panel-sun::before {
  content: "遲";
}

.mi-solar-system::before {
  content: "醙";
}

.mi-sold-house::before {
  content: "鉶";
}

.mi-sold-signal::before {
  content: "陼";
}

.mi-sort::before {
  content: "難";
}

.mi-sort-alpha-down::before {
  content: "靖";
}

.mi-sort-alpha-up::before {
  content: "韛";
}

.mi-sort-alt::before {
  content: "響";
}

.mi-sort-amount-down::before {
  content: "頋";
}

.mi-sort-amount-down-alt::before {
  content: "頻";
}

.mi-sort-amount-up::before {
  content: "鬒";
}

.mi-sort-amount-up-alt::before {
  content: "龜";
}

.mi-sort-circle::before {
  content: "𢡊";
}

.mi-sort-circle-down::before {
  content: "𢡄";
}

.mi-sort-circle-up::before {
  content: "𣏕";
}

.mi-sort-down::before {
  content: "㮝";
}

.mi-sort-numeric-down::before {
  content: "䀘";
}

.mi-sort-numeric-down-alt::before {
  content: "䀹";
}

.mi-sort-shapes-down::before {
  content: "𥉉";
}

.mi-sort-shapes-up::before {
  content: "𥳐";
}

.mi-sort-size-down::before {
  content: "𧻓";
}

.mi-sort-size-up::before {
  content: "齃";
}

.mi-soup::before {
  content: "龎";
}

.mi-source-data::before {
  content: "﫚";
}

.mi-spa::before {
  content: "﫛";
}

.mi-space-shuttle::before {
  content: "﫜";
}

.mi-space-station-moon::before {
  content: "﫝";
}

.mi-space-station-moon-alt::before {
  content: "﫞";
}

.mi-spade::before {
  content: "﫟";
}

.mi-spaghetti-monster-flying::before {
  content: "﫠";
}

.mi-sparkles::before {
  content: "﫡";
}

.mi-spartan-helmet::before {
  content: "﫢";
}

.mi-speaker::before {
  content: "﫣";
}

.mi-speakers::before {
  content: "﫤";
}

.mi-speech-bubble-story::before {
  content: "﫥";
}

.mi-speedometer-arrow::before {
  content: "﫦";
}

.mi-speedometer-kpi::before {
  content: "﫧";
}

.mi-sphere::before {
  content: "﫨";
}

.mi-spider::before {
  content: "﫩";
}

.mi-spider-black-widow::before {
  content: "﫪";
}

.mi-spider-web::before {
  content: "﫫";
}

.mi-spinner::before {
  content: "﫬";
}

.mi-split::before {
  content: "﫭";
}

.mi-split-up-relation::before {
  content: "﫮";
}

.mi-splotch::before {
  content: "﫯";
}

.mi-spoon::before {
  content: "﫰";
}

.mi-sport::before {
  content: "﫱";
}

.mi-spray-can::before {
  content: "﫲";
}

.mi-spray-can-sparkles::before {
  content: "﫳";
}

.mi-spring-calendar::before {
  content: "﫴";
}

.mi-sprinkler::before {
  content: "﫵";
}

.mi-spy::before {
  content: "﫶";
}

.mi-square::before {
  content: "﫷";
}

.mi-square-0::before {
  content: "﫸";
}

.mi-square-1::before {
  content: "﫹";
}

.mi-square-2::before {
  content: "﫺";
}

.mi-square-3::before {
  content: "﫻";
}

.mi-square-4::before {
  content: "﫼";
}

.mi-square-5::before {
  content: "﫽";
}

.mi-square-6::before {
  content: "﫾";
}

.mi-square-7::before {
  content: "﫿";
}

.mi-square-8::before {
  content: "ﬀ";
}

.mi-square-9::before {
  content: "ﬁ";
}

.mi-square-a::before {
  content: "ﬂ";
}

.mi-square-b::before {
  content: "ﬃ";
}

.mi-square-bolt::before {
  content: "ﬄ";
}

.mi-square-c::before {
  content: "ﬅ";
}

.mi-square-code::before {
  content: "ﬆ";
}

.mi-square-d::before {
  content: "﬇";
}

.mi-square-dashed::before {
  content: "﬈";
}

.mi-square-dashed-circle-plus::before {
  content: "﬉";
}

.mi-square-divide::before {
  content: "﬊";
}

.mi-square-e::before {
  content: "﬋";
}

.mi-square-ellipsis::before {
  content: "﬌";
}

.mi-square-ellipsis-vertical::before {
  content: "﬍";
}

.mi-square-exclamation::before {
  content: "﬎";
}

.mi-square-f::before {
  content: "﬏";
}

.mi-square-g::before {
  content: "﬐";
}

.mi-square-h::before {
  content: "﬑";
}

.mi-square-heart::before {
  content: "﬒";
}

.mi-square-i::before {
  content: "ﬓ";
}

.mi-square-info::before {
  content: "ﬔ";
}

.mi-square-j::before {
  content: "ﬕ";
}

.mi-square-k::before {
  content: "ﬖ";
}

.mi-square-kanban::before {
  content: "ﬗ";
}

.mi-square-l::before {
  content: "﬘";
}

.mi-square-m::before {
  content: "﬙";
}

.mi-square-minus::before {
  content: "﬚";
}

.mi-square-n::before {
  content: "﬛";
}

.mi-square-o::before {
  content: "﬜";
}

.mi-square-p::before {
  content: "יִ";
}

.mi-square-phone-hangup::before {
  content: "ﬞ";
}

.mi-square-plus::before {
  content: "ײַ";
}

.mi-square-poll-horizontal::before {
  content: "ﬠ";
}

.mi-square-poll-vertical::before {
  content: "ﬡ";
}

.mi-square-q::before {
  content: "ﬢ";
}

.mi-square-quote::before {
  content: "ﬣ";
}

.mi-square-r::before {
  content: "ﬤ";
}

.mi-square-root::before {
  content: "ﬥ";
}

.mi-square-s::before {
  content: "ﬦ";
}

.mi-square-small::before {
  content: "ﬧ";
}

.mi-square-star::before {
  content: "ﬨ";
}

.mi-square-t::before {
  content: "﬩";
}

.mi-square-terminal::before {
  content: "שׁ";
}

.mi-square-u::before {
  content: "שׂ";
}

.mi-square-up-right::before {
  content: "שּׁ";
}

.mi-square-v::before {
  content: "שּׂ";
}

.mi-square-w::before {
  content: "אַ";
}

.mi-square-x::before {
  content: "אָ";
}

.mi-square-y::before {
  content: "אּ";
}

.mi-square-z::before {
  content: "בּ";
}

.mi-squid::before {
  content: "גּ";
}

.mi-squircle::before {
  content: "דּ";
}

.mi-squirrel::before {
  content: "הּ";
}

.mi-staff::before {
  content: "וּ";
}

.mi-stage::before {
  content: "זּ";
}

.mi-stage-concert::before {
  content: "﬷";
}

.mi-stage-theatre::before {
  content: "טּ";
}

.mi-stairs::before {
  content: "יּ";
}

.mi-stamp::before {
  content: "ךּ";
}

.mi-standard-definition::before {
  content: "כּ";
}

.mi-star::before {
  content: "לּ";
}

.mi-star-and-crescent::before {
  content: "﬽";
}

.mi-star-christmas::before {
  content: "מּ";
}

.mi-star-comment-alt::before {
  content: "﬿";
}

.mi-star-exclamation::before {
  content: "נּ";
}

.mi-star-octogram::before {
  content: "סּ";
}

.mi-star-of-david::before {
  content: "﭂";
}

.mi-star-rating-call::before {
  content: "ףּ";
}

.mi-star-sharp-half::before {
  content: "פּ";
}

.mi-star-sharp-half-stroke::before {
  content: "﭅";
}

.mi-star-shooting::before {
  content: "צּ";
}

.mi-starfighter::before {
  content: "קּ";
}

.mi-stars::before {
  content: "רּ";
}

.mi-stats::before {
  content: "שּ";
}

.mi-steak::before {
  content: "תּ";
}

.mi-steering-wheel::before {
  content: "וֹ";
}

.mi-step-backward::before {
  content: "בֿ";
}

.mi-step-forward::before {
  content: "כֿ";
}

.mi-sterling-sign::before {
  content: "פֿ";
}

.mi-stethoscope::before {
  content: "ﭏ";
}

.mi-sticker::before {
  content: "ﭐ";
}

.mi-stocking::before {
  content: "ﭑ";
}

.mi-stomach::before {
  content: "ﭒ";
}

.mi-stop::before {
  content: "ﭓ";
}

.mi-stop-circle::before {
  content: "ﭔ";
}

.mi-stop-square::before {
  content: "ﭕ";
}

.mi-stopwatch::before {
  content: "ﭖ";
}

.mi-store-alt::before {
  content: "ﭗ";
}

.mi-store-buyer::before {
  content: "ﭘ";
}

.mi-store-lock::before {
  content: "ﭙ";
}

.mi-story-fairy-tale::before {
  content: "ﭚ";
}

.mi-strawberry::before {
  content: "ﭛ";
}

.mi-street-view::before {
  content: "ﭜ";
}

.mi-stretcher::before {
  content: "ﭝ";
}

.mi-strikethrough::before {
  content: "ﭞ";
}

.mi-stroopwafel::before {
  content: "ﭟ";
}

.mi-student::before {
  content: "ﭠ";
}

.mi-student-alt::before {
  content: "ﭡ";
}

.mi-subscript::before {
  content: "ﭢ";
}

.mi-subscription::before {
  content: "ﭣ";
}

.mi-subscription-alt::before {
  content: "ﭤ";
}

.mi-subtitles::before {
  content: "ﭥ";
}

.mi-subtitles-slash::before {
  content: "ﭦ";
}

.mi-subway::before {
  content: "ﭧ";
}

.mi-suitcase-alt::before {
  content: "ﭨ";
}

.mi-summary-check::before {
  content: "ﭩ";
}

.mi-summer::before {
  content: "ﭪ";
}

.mi-sun::before {
  content: "ﭫ";
}

.mi-sun-dust::before {
  content: "ﭬ";
}

.mi-sun-plant-wilt::before {
  content: "ﭭ";
}

.mi-sun-salutation-yoga::before {
  content: "ﭮ";
}

.mi-sunday::before {
  content: "ﭯ";
}

.mi-sunglasses::before {
  content: "ﭰ";
}

.mi-sunglasses-alt::before {
  content: "ﭱ";
}

.mi-sunrise::before {
  content: "ﭲ";
}

.mi-sunrise-alt::before {
  content: "ﭳ";
}

.mi-sunset::before {
  content: "ﭴ";
}

.mi-superscript::before {
  content: "ﭵ";
}

.mi-supplier::before {
  content: "ﭶ";
}

.mi-supplier-alt::before {
  content: "ﭷ";
}

.mi-surfing::before {
  content: "ﭸ";
}

.mi-surprise::before {
  content: "ﭹ";
}

.mi-surveillance-camera::before {
  content: "ﭺ";
}

.mi-survey-xmark::before {
  content: "ﭻ";
}

.mi-sushi::before {
  content: "ﭼ";
}

.mi-sushi-alt::before {
  content: "ﭽ";
}

.mi-sushi-roll::before {
  content: "ﭾ";
}

.mi-svg::before {
  content: "ﭿ";
}

.mi-swap::before {
  content: "ﮀ";
}

.mi-swatchbook::before {
  content: "ﮁ";
}

.mi-swimmer::before {
  content: "ﮂ";
}

.mi-swimming-pool::before {
  content: "ﮃ";
}

.mi-swing::before {
  content: "ﮄ";
}

.mi-swipe-down::before {
  content: "ﮅ";
}

.mi-swipe-left::before {
  content: "ﮆ";
}

.mi-swipe-right::before {
  content: "ﮇ";
}

.mi-swipe-up::before {
  content: "ﮈ";
}

.mi-sword::before {
  content: "ﮉ";
}

.mi-symbol::before {
  content: "ﮊ";
}

.mi-symbols::before {
  content: "ﮋ";
}

.mi-synagogue::before {
  content: "ﮌ";
}

.mi-syringe::before {
  content: "ﮍ";
}

.mi-system-cloud::before {
  content: "ﮎ";
}

.mi-t::before {
  content: "ﮏ";
}

.mi-tab-folder::before {
  content: "ﮐ";
}

.mi-table::before {
  content: "ﮑ";
}

.mi-table-columns::before {
  content: "ﮒ";
}

.mi-table-layout::before {
  content: "ﮓ";
}

.mi-table-list::before {
  content: "ﮔ";
}

.mi-table-picnic::before {
  content: "ﮕ";
}

.mi-table-pivot::before {
  content: "ﮖ";
}

.mi-table-rows::before {
  content: "ﮗ";
}

.mi-table-tree::before {
  content: "ﮘ";
}

.mi-tablet::before {
  content: "ﮙ";
}

.mi-tablet-android::before {
  content: "ﮚ";
}

.mi-tablet-android-alt::before {
  content: "ﮛ";
}

.mi-tablet-rugged::before {
  content: "ﮜ";
}

.mi-tachometer::before {
  content: "ﮝ";
}

.mi-tachometer-alt-average::before {
  content: "ﮞ";
}

.mi-tachometer-alt-fastest::before {
  content: "ﮟ";
}

.mi-tachometer-alt-slow::before {
  content: "ﮠ";
}

.mi-tachometer-alt-slowest::before {
  content: "ﮡ";
}

.mi-tachometer-average::before {
  content: "ﮢ";
}

.mi-tachometer-fast::before {
  content: "ﮣ";
}

.mi-tachometer-fastest::before {
  content: "ﮤ";
}

.mi-tachometer-slow::before {
  content: "ﮥ";
}

.mi-tachometer-slowest::before {
  content: "ﮦ";
}

.mi-tags::before {
  content: "ﮧ";
}

.mi-talent::before {
  content: "ﮨ";
}

.mi-talent-alt::before {
  content: "ﮩ";
}

.mi-talent-hand::before {
  content: "ﮪ";
}

.mi-tally::before {
  content: "ﮫ";
}

.mi-tally-1::before {
  content: "ﮬ";
}

.mi-tally-2::before {
  content: "ﮭ";
}

.mi-tally-3::before {
  content: "ﮮ";
}

.mi-tally-4::before {
  content: "ﮯ";
}

.mi-tank-water::before {
  content: "ﮰ";
}

.mi-tap::before {
  content: "ﮱ";
}

.mi-tape::before {
  content: "﮲";
}

.mi-target::before {
  content: "﮳";
}

.mi-target-audience::before {
  content: "﮴";
}

.mi-tax::before {
  content: "﮵";
}

.mi-tax-alt::before {
  content: "﮶";
}

.mi-taxi::before {
  content: "﮷";
}

.mi-taxi-bus::before {
  content: "﮸";
}

.mi-team-check::before {
  content: "﮹";
}

.mi-team-check-alt::before {
  content: "﮺";
}

.mi-teddy-bear::before {
  content: "﮻";
}

.mi-teeth-open::before {
  content: "﮼";
}

.mi-telescope::before {
  content: "﮽";
}

.mi-temperature-down::before {
  content: "﮾";
}

.mi-temperature-frigid::before {
  content: "﮿";
}

.mi-temperature-high::before {
  content: "﯀";
}

.mi-temperature-list::before {
  content: "﯁";
}

.mi-temperature-low::before {
  content: "﯂";
}

.mi-temperature-up::before {
  content: "﯃";
}

.mi-template::before {
  content: "﯄";
}

.mi-template-alt::before {
  content: "﯅";
}

.mi-tenge::before {
  content: "﯆";
}

.mi-tennis::before {
  content: "﯇";
}

.mi-tent-arrow-down-to-line::before {
  content: "﯈";
}

.mi-tent-arrow-left-right::before {
  content: "﯉";
}

.mi-tent-arrow-turn-left::before {
  content: "﯊";
}

.mi-tents::before {
  content: "﯋";
}

.mi-terminal::before {
  content: "﯌";
}

.mi-terrace::before {
  content: "﯍";
}

.mi-test-tube::before {
  content: "﯎";
}

.mi-text::before {
  content: "﯏";
}

.mi-text-box::before {
  content: "﯐";
}

.mi-text-box-dots::before {
  content: "﯑";
}

.mi-text-box-edit::before {
  content: "﯒";
}

.mi-text-check::before {
  content: "ﯓ";
}

.mi-text-shadow::before {
  content: "ﯔ";
}

.mi-text-size::before {
  content: "ﯕ";
}

.mi-text-width::before {
  content: "ﯖ";
}

.mi-theater-masks::before {
  content: "ﯗ";
}

.mi-thermometer-alt::before {
  content: "ﯘ";
}

.mi-thermometer-full::before {
  content: "ﯙ";
}

.mi-thermometer-half::before {
  content: "ﯚ";
}

.mi-theta::before {
  content: "ﯛ";
}

.mi-third::before {
  content: "ﯜ";
}

.mi-third-award::before {
  content: "ﯝ";
}

.mi-third-laurel::before {
  content: "ﯞ";
}

.mi-third-medal::before {
  content: "ﯟ";
}

.mi-thought-bubble::before {
  content: "ﯠ";
}

.mi-three-leaf-clover::before {
  content: "ﯡ";
}

.mi-thumbs-up-trust::before {
  content: "ﯢ";
}

.mi-thumbtack::before {
  content: "ﯣ";
}

.mi-thunderstorm::before {
  content: "ﯤ";
}

.mi-thunderstorm-moon::before {
  content: "ﯥ";
}

.mi-thunderstorm-sun::before {
  content: "ﯦ";
}

.mi-thursday::before {
  content: "ﯧ";
}

.mi-ticket::before {
  content: "ﯨ";
}

.mi-ticket-airline::before {
  content: "ﯩ";
}

.mi-ticket-alt::before {
  content: "ﯪ";
}

.mi-tie::before {
  content: "ﯫ";
}

.mi-tilde::before {
  content: "ﯬ";
}

.mi-time-add::before {
  content: "ﯭ";
}

.mi-time-check::before {
  content: "ﯮ";
}

.mi-time-delete::before {
  content: "ﯯ";
}

.mi-time-fast::before {
  content: "ﯰ";
}

.mi-time-forward::before {
  content: "ﯱ";
}

.mi-time-forward-sixty::before {
  content: "ﯲ";
}

.mi-time-forward-ten::before {
  content: "ﯳ";
}

.mi-time-half-past::before {
  content: "ﯴ";
}

.mi-time-oclock::before {
  content: "ﯵ";
}

.mi-time-past::before {
  content: "ﯶ";
}

.mi-time-quarter-past::before {
  content: "ﯷ";
}

.mi-time-quarter-to::before {
  content: "ﯸ";
}

.mi-time-twenty-four::before {
  content: "ﯹ";
}

.mi-time-watch-calendar::before {
  content: "ﯺ";
}

.mi-timer-clock-call::before {
  content: "ﯻ";
}

.mi-times-hexagon::before {
  content: "ﯼ";
}

.mi-tint-slash::before {
  content: "ﯽ";
}

.mi-tire::before {
  content: "ﯾ";
}

.mi-tire-flat::before {
  content: "ﯿ";
}

.mi-tire-rugged::before {
  content: "ﰀ";
}

.mi-tired::before {
  content: "ﰁ";
}

.mi-to-do::before {
  content: "ﰂ";
}

.mi-to-do-alt::before {
  content: "ﰃ";
}

.mi-together-people::before {
  content: "ﰄ";
}

.mi-toggle-off::before {
  content: "ﰅ";
}

.mi-toggle-on::before {
  content: "ﰆ";
}

.mi-toilet::before {
  content: "ﰇ";
}

.mi-toilet-paper-blank::before {
  content: "ﰈ";
}

.mi-toilet-paper-blank-under::before {
  content: "ﰉ";
}

.mi-toilet-paper-slash::before {
  content: "ﰊ";
}

.mi-toilet-paper-under::before {
  content: "ﰋ";
}

.mi-toilet-paper-under-slash::before {
  content: "ﰌ";
}

.mi-toilets-portable::before {
  content: "ﰍ";
}

.mi-token::before {
  content: "ﰎ";
}

.mi-tomato::before {
  content: "ﰏ";
}

.mi-tombstone::before {
  content: "ﰐ";
}

.mi-tombstone-alt::before {
  content: "ﰑ";
}

.mi-tool-box::before {
  content: "ﰒ";
}

.mi-tool-crop::before {
  content: "ﰓ";
}

.mi-tool-marquee::before {
  content: "ﰔ";
}

.mi-tools::before {
  content: "ﰕ";
}

.mi-tooth::before {
  content: "ﰖ";
}

.mi-toothbrush::before {
  content: "ﰗ";
}

.mi-torch-inspiration-leader::before {
  content: "ﰘ";
}

.mi-torii-gate::before {
  content: "ﰙ";
}

.mi-tornado::before {
  content: "ﰚ";
}

.mi-total::before {
  content: "ﰛ";
}

.mi-tour-guide-people::before {
  content: "ﰜ";
}

.mi-tour-virtual::before {
  content: "ﰝ";
}

.mi-tower-control::before {
  content: "ﰞ";
}

.mi-track::before {
  content: "ﰟ";
}

.mi-tractor::before {
  content: "ﰠ";
}

.mi-trademark::before {
  content: "ﰡ";
}

.mi-traffic-cone::before {
  content: "ﰢ";
}

.mi-traffic-light-go::before {
  content: "ﰣ";
}

.mi-traffic-light-slow::before {
  content: "ﰤ";
}

.mi-traffic-light-stop::before {
  content: "ﰥ";
}

.mi-trailer::before {
  content: "ﰦ";
}

.mi-train::before {
  content: "ﰧ";
}

.mi-train-journey::before {
  content: "ﰨ";
}

.mi-train-side::before {
  content: "ﰩ";
}

.mi-train-station::before {
  content: "ﰪ";
}

.mi-train-station-building::before {
  content: "ﰫ";
}

.mi-train-subway-tunnel::before {
  content: "ﰬ";
}

.mi-train-track::before {
  content: "ﰭ";
}

.mi-train-tram::before {
  content: "ﰮ";
}

.mi-tram::before {
  content: "ﰯ";
}

.mi-transform::before {
  content: "ﰰ";
}

.mi-transformation-block::before {
  content: "ﰱ";
}

.mi-transformation-shapes::before {
  content: "ﰲ";
}

.mi-transformer-bolt::before {
  content: "ﰳ";
}

.mi-transgender::before {
  content: "ﰴ";
}

.mi-transporter::before {
  content: "ﰵ";
}

.mi-trash::before {
  content: "ﰶ";
}

.mi-trash-check::before {
  content: "ﰷ";
}

.mi-treadmill::before {
  content: "ﰸ";
}

.mi-treasure-chest::before {
  content: "ﰹ";
}

.mi-treatment::before {
  content: "ﰺ";
}

.mi-tree::before {
  content: "ﰻ";
}

.mi-tree-alt::before {
  content: "ﰼ";
}

.mi-tree-christmas::before {
  content: "ﰽ";
}

.mi-tree-deciduous::before {
  content: "ﰾ";
}

.mi-trees::before {
  content: "ﰿ";
}

.mi-trees-alt::before {
  content: "ﱀ";
}

.mi-triangle::before {
  content: "ﱁ";
}

.mi-triangle-warning::before {
  content: "ﱂ";
}

.mi-tricycle::before {
  content: "ﱃ";
}

.mi-trillium::before {
  content: "ﱄ";
}

.mi-trophy::before {
  content: "ﱅ";
}

.mi-trophy-achievement-skill::before {
  content: "ﱆ";
}

.mi-trophy-star::before {
  content: "ﱇ";
}

.mi-truck-check::before {
  content: "ﱈ";
}

.mi-truck-container::before {
  content: "ﱉ";
}

.mi-truck-container-empty::before {
  content: "ﱊ";
}

.mi-truck-fire::before {
  content: "ﱋ";
}

.mi-truck-flatbed::before {
  content: "ﱌ";
}

.mi-truck-front::before {
  content: "ﱍ";
}

.mi-truck-ladder::before {
  content: "ﱎ";
}

.mi-truck-loading::before {
  content: "ﱏ";
}

.mi-truck-medical::before {
  content: "ﱐ";
}

.mi-truck-monster::before {
  content: "ﱑ";
}

.mi-truck-moving::before {
  content: "ﱒ";
}

.mi-truck-pickup::before {
  content: "ﱓ";
}

.mi-truck-ramp::before {
  content: "ﱔ";
}

.mi-truck-side::before {
  content: "ﱕ";
}

.mi-truck-tow::before {
  content: "ﱖ";
}

.mi-trumpet::before {
  content: "ﱗ";
}

.mi-tshirt::before {
  content: "ﱘ";
}

.mi-tty-answer::before {
  content: "ﱙ";
}

.mi-tubes::before {
  content: "ﱚ";
}

.mi-tuesday::before {
  content: "ﱛ";
}

.mi-tugrik-sign::before {
  content: "ﱜ";
}

.mi-turn-left::before {
  content: "ﱝ";
}

.mi-turn-left-down::before {
  content: "ﱞ";
}

.mi-turn-right::before {
  content: "ﱟ";
}

.mi-turntable::before {
  content: "ﱠ";
}

.mi-turtle::before {
  content: "ﱡ";
}

.mi-tv-music::before {
  content: "ﱢ";
}

.mi-tv-retro::before {
  content: "ﱣ";
}

.mi-typewriter::before {
  content: "ﱤ";
}

.mi-u::before {
  content: "ﱥ";
}

.mi-ufo::before {
  content: "ﱦ";
}

.mi-ufo-beam::before {
  content: "ﱧ";
}

.mi-ui-ux::before {
  content: "ﱨ";
}

.mi-umbrella::before {
  content: "ﱩ";
}

.mi-umbrella-beach::before {
  content: "ﱪ";
}

.mi-under-construction::before {
  content: "ﱫ";
}

.mi-underline::before {
  content: "ﱬ";
}

.mi-undo::before {
  content: "ﱭ";
}

.mi-undo-alt::before {
  content: "ﱮ";
}

.mi-unicorn::before {
  content: "ﱯ";
}

.mi-uniform-martial-arts::before {
  content: "ﱰ";
}

.mi-universal-access::before {
  content: "ﱱ";
}

.mi-unlock::before {
  content: "ﱲ";
}

.mi-up::before {
  content: "ﱳ";
}

.mi-up-from-bracket::before {
  content: "ﱴ";
}

.mi-up-left::before {
  content: "ﱵ";
}

.mi-up-right::before {
  content: "ﱶ";
}

.mi-up-right-from-square::before {
  content: "ﱷ";
}

.mi-upload::before {
  content: "ﱸ";
}

.mi-url::before {
  content: "ﱹ";
}

.mi-usb-pendrive::before {
  content: "ﱺ";
}

.mi-usd-circle::before {
  content: "ﱻ";
}

.mi-usd-square::before {
  content: "ﱼ";
}

.mi-user::before {
  content: "ﱽ";
}

.mi-user-add::before {
  content: "ﱾ";
}

.mi-user-alien::before {
  content: "ﱿ";
}

.mi-user-astronaut::before {
  content: "ﲀ";
}

.mi-user-check::before {
  content: "ﲁ";
}

.mi-user-gear::before {
  content: "ﲂ";
}

.mi-user-graduate::before {
  content: "ﲃ";
}

.mi-user-headset::before {
  content: "ﲄ";
}

.mi-user-interface-ui::before {
  content: "ﲅ";
}

.mi-user-key::before {
  content: "ﲆ";
}

.mi-user-lock::before {
  content: "ﲇ";
}

.mi-user-md::before {
  content: "ﲈ";
}

.mi-user-minus::before {
  content: "ﲉ";
}

.mi-user-music::before {
  content: "ﲊ";
}

.mi-user-ninja::before {
  content: "ﲋ";
}

.mi-user-pen::before {
  content: "ﲌ";
}

.mi-user-pilot::before {
  content: "ﲍ";
}

.mi-user-police::before {
  content: "ﲎ";
}

.mi-user-robot::before {
  content: "ﲏ";
}

.mi-user-salary::before {
  content: "ﲐ";
}

.mi-user-shield::before {
  content: "ﲑ";
}

.mi-user-skill-gear::before {
  content: "ﲒ";
}

.mi-user-tag::before {
  content: "ﲓ";
}

.mi-user-time::before {
  content: "ﲔ";
}

.mi-user-trust::before {
  content: "ﲕ";
}

.mi-users::before {
  content: "ﲖ";
}

.mi-users-alt::before {
  content: "ﲗ";
}

.mi-users-class::before {
  content: "ﲘ";
}

.mi-users-gear::before {
  content: "ﲙ";
}

.mi-users-medical::before {
  content: "ﲚ";
}

.mi-utensils::before {
  content: "ﲛ";
}

.mi-utility-pole::before {
  content: "ﲜ";
}

.mi-utility-pole-double::before {
  content: "ﲝ";
}

.mi-ux::before {
  content: "ﲞ";
}

.mi-ux-browser::before {
  content: "ﲟ";
}

.mi-v::before {
  content: "ﲠ";
}

.mi-vacuum::before {
  content: "ﲡ";
}

.mi-vacuum-robot::before {
  content: "ﲢ";
}

.mi-value-absolute::before {
  content: "ﲣ";
}

.mi-vault::before {
  content: "ﲤ";
}

.mi-vector::before {
  content: "ﲥ";
}

.mi-vector-alt::before {
  content: "ﲦ";
}

.mi-vector-circle::before {
  content: "ﲧ";
}

.mi-vector-polygon::before {
  content: "ﲨ";
}

.mi-venus::before {
  content: "ﲩ";
}

.mi-venus-double::before {
  content: "ﲪ";
}

.mi-venus-mars::before {
  content: "ﲫ";
}

.mi-vest::before {
  content: "ﲬ";
}

.mi-vest-patches::before {
  content: "ﲭ";
}

.mi-video-camera-alt::before {
  content: "ﲮ";
}

.mi-video-duration::before {
  content: "ﲯ";
}

.mi-video-plus::before {
  content: "ﲰ";
}

.mi-video-slash::before {
  content: "ﲱ";
}

.mi-videoconference::before {
  content: "ﲲ";
}

.mi-vihara::before {
  content: "ﲳ";
}

.mi-violin::before {
  content: "ﲴ";
}

.mi-virus::before {
  content: "ﲵ";
}

.mi-virus-slash::before {
  content: "ﲶ";
}

.mi-viruses::before {
  content: "ﲷ";
}

.mi-visit::before {
  content: "ﲸ";
}

.mi-voicemail::before {
  content: "ﲹ";
}

.mi-volcano::before {
  content: "ﲺ";
}

.mi-volleyball::before {
  content: "ﲻ";
}

.mi-volume::before {
  content: "ﲼ";
}

.mi-volume-down::before {
  content: "ﲽ";
}

.mi-volume-mute::before {
  content: "ﲾ";
}

.mi-volume-slash::before {
  content: "ﲿ";
}

.mi-vr-cardboard::before {
  content: "ﳀ";
}

.mi-w::before {
  content: "ﳁ";
}

.mi-waffle::before {
  content: "ﳂ";
}

.mi-walkie-talkie::before {
  content: "ﳃ";
}

.mi-walking::before {
  content: "ﳄ";
}

.mi-wallet::before {
  content: "ﳅ";
}

.mi-wallet-arrow::before {
  content: "ﳆ";
}

.mi-wallet-buyer::before {
  content: "ﳇ";
}

.mi-warranty::before {
  content: "ﳈ";
}

.mi-washer::before {
  content: "ﳉ";
}

.mi-waste::before {
  content: "ﳊ";
}

.mi-waste-pollution::before {
  content: "ﳋ";
}

.mi-watch::before {
  content: "ﳌ";
}

.mi-watch-calculator::before {
  content: "ﳍ";
}

.mi-watch-fitness::before {
  content: "ﳎ";
}

.mi-watch-smart::before {
  content: "ﳏ";
}

.mi-water::before {
  content: "ﳐ";
}

.mi-water-bottle::before {
  content: "ﳑ";
}

.mi-water-ladder::before {
  content: "ﳒ";
}

.mi-water-lower::before {
  content: "ﳓ";
}

.mi-water-rise::before {
  content: "ﳔ";
}

.mi-watermelon::before {
  content: "ﳕ";
}

.mi-wave::before {
  content: "ﳖ";
}

.mi-wave-sine::before {
  content: "ﳗ";
}

.mi-wave-square::before {
  content: "ﳘ";
}

.mi-wave-triangle::before {
  content: "ﳙ";
}

.mi-waveform::before {
  content: "ﳚ";
}

.mi-waveform-path::before {
  content: "ﳛ";
}

.mi-web-design::before {
  content: "ﳜ";
}

.mi-webcam::before {
  content: "ﳝ";
}

.mi-webcam-slash::before {
  content: "ﳞ";
}

.mi-webhook::before {
  content: "ﳟ";
}

.mi-wednesday::before {
  content: "ﳠ";
}

.mi-whale::before {
  content: "ﳡ";
}

.mi-wheat::before {
  content: "ﳢ";
}

.mi-wheat-awn::before {
  content: "ﳣ";
}

.mi-wheelchair::before {
  content: "ﳤ";
}

.mi-whistle::before {
  content: "ﳥ";
}

.mi-white-space::before {
  content: "ﳦ";
}

.mi-wifi::before {
  content: "ﳧ";
}

.mi-wifi-slash::before {
  content: "ﳨ";
}

.mi-wind::before {
  content: "ﳩ";
}

.mi-wind-turbine::before {
  content: "ﳪ";
}

.mi-wind-warning::before {
  content: "ﳫ";
}

.mi-window-alt::before {
  content: "ﳬ";
}

.mi-window-frame::before {
  content: "ﳭ";
}

.mi-window-maximize::before {
  content: "ﳮ";
}

.mi-window-minimize::before {
  content: "ﳯ";
}

.mi-window-restore::before {
  content: "ﳰ";
}

.mi-windsock::before {
  content: "ﳱ";
}

.mi-wine-bottle::before {
  content: "ﳲ";
}

.mi-wine-glass-crack::before {
  content: "ﳳ";
}

.mi-wine-glass-empty::before {
  content: "ﳴ";
}

.mi-wishlist-heart::before {
  content: "ﳵ";
}

.mi-wishlist-star::before {
  content: "ﳶ";
}

.mi-woman-head::before {
  content: "ﳷ";
}

.mi-won-sign::before {
  content: "ﳸ";
}

.mi-work-in-progress::before {
  content: "ﳹ";
}

.mi-workflow-alt::before {
  content: "ﳺ";
}

.mi-workflow-setting::before {
  content: "ﳻ";
}

.mi-workflow-setting-alt::before {
  content: "ﳼ";
}

.mi-workshop::before {
  content: "ﳽ";
}

.mi-world::before {
  content: "ﳾ";
}

.mi-worm::before {
  content: "ﳿ";
}

.mi-wreath::before {
  content: "ﴀ";
}

.mi-wrench-alt::before {
  content: "ﴁ";
}

.mi-wrench-simple::before {
  content: "ﴂ";
}

.mi-x::before {
  content: "ﴃ";
}

.mi-x-ray::before {
  content: "ﴄ";
}

.mi-y::before {
  content: "ﴅ";
}

.mi-yen::before {
  content: "ﴆ";
}

.mi-yin-yang::before {
  content: "ﴇ";
}

.mi-z::before {
  content: "ﴈ";
}

.mi-zip-file::before {
  content: "ﴉ";
}

.mi-zoom-in::before {
  content: "ﴊ";
}

.mi-zoom-out::before {
  content: "ﴋ";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.timeline{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.timeline *,.timeline :after,.timeline :before{-webkit-box-sizing:inherit;box-sizing:inherit}.timeline:not(.timeline--horizontal):before{background-color:#ddd;bottom:0;content:'';left:50%;margin-left:-2px;position:absolute;top:0;width:4px;z-index:1}.timeline__wrap{overflow:hidden;position:relative;z-index:2}.timeline__item{font-size:16px;font-size:1rem;padding:.625rem 2.5rem .625rem 0;position:relative;width:50%;z-index:2}.timeline__item:after{background-color:#fff;border:4px solid #ddd;border-radius:50%;content:'';height:20px;position:absolute;right:-10px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%;width:20px;z-index:1}.timeline__item.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;opacity:0}.timeline__item.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}.timeline__item--left{left:0}.timeline__item--right{left:50%;padding:.625rem 0 .625rem 2.5rem}.timeline__item--right:after{left:-10px}.timeline__item--right .timeline__content:before{border-bottom:10px solid transparent;border-right:12px solid #ccc;border-left:none;border-top:10px solid transparent;left:-12px}.timeline__item--right .timeline__content:after{border-bottom:9px solid transparent;border-right:11px solid #fff;border-left:none;border-top:9px solid transparent;left:-10px}.timeline__content{background-color:#fff;border:1px solid #ccc;border-radius:10px;color:#333;display:block;padding:1.25rem;position:relative}.timeline__content:after,.timeline__content:before{content:'';height:0;position:absolute;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%;width:0}.timeline__content:before{border-bottom:10px solid transparent;border-left:12px solid #ccc;border-top:10px solid transparent;right:-12px;z-index:1}.timeline__content:after{border-bottom:9px solid transparent;border-left:11px solid #fff;border-top:9px solid transparent;right:-10px;z-index:2}.timeline__content h2{font-size:1.25rem;font-weight:700;margin:0 0 .625rem}.timeline__content p{font-size:.9375rem;line-height:1.5;margin-bottom:10px}.timeline--horizontal{font-size:0;padding:0 3.125rem;overflow:hidden;white-space:nowrap}.timeline--horizontal .timeline-divider{background-color:#ddd;display:block;height:4px;left:40px;position:absolute;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);right:40px;z-index:1}.timeline--horizontal .timeline__items{-webkit-transition:all .8s;-o-transition:all .8s;transition:all .8s;will-change:transform}.timeline--horizontal .timeline__item{display:inline-block;left:0;padding:0 0 2.5rem;position:relative;-webkit-transition:none;-o-transition:none;transition:none;vertical-align:top;white-space:normal}.timeline--horizontal .timeline__item:after{left:50%;right:auto;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);top:100%}.timeline--horizontal .timeline__item .timeline__item__inner{display:table;height:100%;width:100%}.timeline--horizontal .timeline__item .timeline__content__wrap{display:table-cell;margin:0;padding:0;vertical-align:bottom}.timeline--horizontal .timeline__item .timeline__content:before{border-left:12px solid transparent;border-right:12px solid transparent;border-top:12px solid #ccc;left:50%;right:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);top:100%}.timeline--horizontal .timeline__item .timeline__content:after{border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #fff;left:50%;right:auto;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);top:100%}.timeline--horizontal .timeline__item--bottom{padding:2.5rem 0 0}.timeline--horizontal .timeline__item--bottom:after{top:0}.timeline--horizontal .timeline__item--bottom .timeline__content__wrap{vertical-align:top}.timeline--horizontal .timeline__item--bottom .timeline__content:before{border-bottom:12px solid #ccc;border-left:12px solid transparent;border-right:12px solid transparent;border-top:none;bottom:100%;top:auto}.timeline--horizontal .timeline__item--bottom .timeline__content:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;border-top:none;bottom:100%;top:auto}.timeline-nav-button{background-color:#fff;border:2px solid #ddd;border-radius:50px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;cursor:pointer;display:block;height:40px;outline:0;position:absolute;text-indent:-9999px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);top:50%;width:40px;z-index:10}.timeline-nav-button:disabled{opacity:.5;pointer-events:none}.timeline-nav-button:before{background-position:center center;background-repeat:no-repeat;content:'';display:block;height:14px;left:50%;position:absolute;-webkit-transform:translateX(-50%) translateY(-50%);-ms-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);top:50%;width:8px}.timeline-nav-button--prev{left:0}.timeline-nav-button--prev:before{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/arrow-left.svg)}.timeline-nav-button--next{right:0}.timeline-nav-button--next:before{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/mage-eventpress/assets/helper/images/arrow-right.svg)}.timeline--mobile{padding:0}.timeline--mobile:before{left:10px!important;margin:0!important}.timeline--mobile .timeline__item{left:0;padding-left:40px;padding-right:0;width:100%}.timeline--mobile .timeline__item:after{left:2px;margin:0}.timeline--mobile .timeline__item .timeline__content:before{left:-12px;border-bottom:12px solid transparent;border-right:12px solid #ccc;border-left:none;border-top:12px solid transparent}.timeline--mobile .timeline__item .timeline__content:after{left:-10px;border-bottom:10px solid transparent;border-right:10px solid #fff;border-left:none;border-top:10px solid transparent}@-webkit-keyframes fadeIn{0%{opacity:0;top:70px}100%{opacity:1;top:0}}@keyframes fadeIn{0%{opacity:0;top:70px}100%{opacity:1;top:0}}@-webkit-keyframes liftUp{0%{top:0}100%{top:-15px}}@keyframes liftUp{0%{top:0}100%{top:-15px}}
.equinox .calendar-header{background-color:#0aa8e3;color:#fff;padding:8px 11px;border-top-left-radius:4px;border-top-right-radius:4px}.equinox .calendar-header:after,.equinox .calendar-header:before{content:" ";display:table}.equinox .calendar-header:after{clear:both}.equinox .calendar-actions{float:left}.equinox .month-label{text-align:right;font-size:24px;float:right}.equinox .month-weeks{border:1px solid #efefef;border-top:none;background-color:#fafafa;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.equinox .week{margin-left:-1px;position:relative}.equinox .week:first-child .day{border-top:none}.equinox .week-events{position:absolute;left:0;top:0;width:100%;list-style:none;padding:0;margin:0;padding-top:26px}.equinox .week-events .slot{margin:0}.equinox .week-events .slot>ul{list-style:none;margin:0;padding:0;display:table;table-layout:fixed;width:100%}.equinox .week-events .slot>ul>li{box-sizing:border-box;display:table-cell;margin:0;padding-left:9px;padding-right:8px;width:14.28571%}.equinox .week-events .slot>ul>li.span-1{width:14.28571%}.equinox .week-events .slot>ul>li.span-2{width:28.57143%}.equinox .week-events .slot>ul>li.span-3{width:42.85714%}.equinox .week-events .slot>ul>li.span-4{width:57.14286%}.equinox .week-events .slot>ul>li.span-5{width:71.42857%}.equinox .week-events .slot>ul>li.span-6{width:85.71429%}.equinox .week-events .slot>ul>li.span-7{width:100%}.equinox .week-events .event .start-time{display:none}.equinox .week-events .event .title{white-space:nowrap}.equinox .days-container{display:table;table-layout:fixed;width:100%}.equinox .days-container .day{box-sizing:border-box;display:table-cell;width:14.28571%;padding:8px;border-left:1px solid #efefef;border-top:1px solid #efefef}.equinox .week-header{font-size:10px;text-transform:uppercase;color:#aaa}.equinox .week-header .day{text-align:center;background-color:#fff;text-overflow:ellipsis;overflow:hidden}.equinox .date.outside-month .date-label{color:#d7d7d7}.equinox .date.current-date{background-color:#e7f6fc;position:relative}.equinox .date.current-date:before{content:"";position:absolute;display:block;left:-1px;top:-1px;right:-1px;bottom:-1px;border:1px solid #ceeef9;z-index:1}.equinox .date.current-date .date-label{color:#0aa8e3}.equinox .date-label{text-align:right;font-size:12px;color:#888}.equinox .date-events{list-style:none;padding:0;margin:0;min-height:68px}.equinox .event-container{box-sizing:border-box;min-height:34px;padding-top:6px;margin:0}.equinox .event-container.continuation .event{margin-left:-8px;border-top-left-radius:0;border-bottom-left-radius:0;border-left:none;padding-left:17px}.equinox .event-container.continued .event{margin-right:-8px;border-top-right-radius:0;border-bottom-right-radius:0;padding-right:14px}.equinox .event{display:block;box-sizing:border-box;min-height:28px;background-color:#fff;padding:7px 6px;font-size:12px;line-height:14px;border-radius:3px;box-shadow:0 1px 1px fade(#efefef,80%);border-left:3px solid #ffaa3c;color:#666;position:relative;z-index:2}.equinox .event .start-time{display:none;float:right;color:#bbb;margin-left:4px}.equinox .event .title{display:block;overflow-x:hidden;text-overflow:ellipsis}
.mpwem_style h1,
.mpwem_style h2,
.mpwem_style h3,
.mpwem_style h4,
.mpwem_style h5,
.mpwem_style h6 {
	color: #333;
}

.reg_close_msg {
	--mep-notice-accent: #c2410c;
	--mep-notice-ink: #1c1917;
	--mep-notice-muted: #57534e;
	--mep-notice-border: #e7e5e4;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 0;
	padding: 16px 18px;
	border: 1px solid var(--mep-notice-border);
	border-radius: 14px;
	background:
		linear-gradient(90deg, color-mix(in srgb, var(--mep-notice-accent) 14%, transparent) 0 4px, transparent 4px),
		linear-gradient(180deg, #fff7ed, #ffffff);
	color: var(--mep-notice-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	box-shadow: 0 8px 22px rgba(28, 25, 23, 0.06);
	animation: mpwemNoticeIn 0.45s ease;
}

.mpwem_date_expired_msg,
.mpwem_date_expired_msg._margin_zero_text_center {
	--mep-notice-accent: #b45309;
	--mep-notice-ink: #1c1917;
	--mep-notice-muted: #57534e;
	--mep-notice-border: #e7e5e4;
	--mep-notice-soft: #fffbeb;
	display: block;
	width: 100%;
	margin: 16px 0 0;
	padding: 0;
	border: 0;
	border-left: 0;
	background: transparent;
	box-shadow: none;
	text-align: left;
	animation: mpwemNoticeIn 0.45s ease;
}

.mpwem_date_expired_msg__inner {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--mep-notice-border);
	border-radius: 16px;
	background: linear-gradient(165deg, var(--mep-notice-soft), #ffffff 55%);
	box-shadow: 0 10px 28px rgba(28, 25, 23, 0.06);
}

.mpwem_date_expired_msg__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--mep-notice-accent) 12%, #fff);
	color: var(--mep-notice-accent);
	font-size: 18px;
	line-height: 1;
}

.mpwem_date_expired_msg__body {
	min-width: 0;
	flex: 1 1 auto;
}

.mpwem_date_expired_msg__title,
.mpwem_date_expired_msg ._text_theme {
	display: block;
	margin: 0 0 4px;
	color: var(--mep-notice-ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.mpwem_date_expired_msg__text {
	margin: 0;
	color: var(--mep-notice-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
}

.mpwem_date_expired_msg__meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid color-mix(in srgb, var(--mep-notice-accent) 22%, var(--mep-notice-border));
	color: var(--mep-notice-ink);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.mpwem_date_expired_msg__meta i {
	color: var(--mep-notice-accent);
}

.default_theme .mpwem_date_expired_msg,
.mep_smart_theme .mpwem_date_expired_msg,
.horizon_theme .mpwem_date_expired_msg,
.mep_virtual_theme .mpwem_date_expired_msg,
.virtual_theme .mpwem_date_expired_msg {
	margin-top: 12px;
}

@keyframes mpwemNoticeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	.mpwem_date_expired_msg__inner {
		gap: 12px;
		padding: 16px;
	}

	.mpwem_date_expired_msg__icon {
		width: 40px;
		height: 40px;
		border-radius: 10px;
		font-size: 16px;
	}

	.mpwem_date_expired_msg__title,
	.mpwem_date_expired_msg ._text_theme {
		font-size: 15px;
	}
}

div.mpwem_related_area.on_load_off {
	overflow: hidden;
	opacity: 0.55;
	filter: blur(2px);
	pointer-events: none;
}


.mpwem_registration_area_show_msg {
	display: flex;
	justify-content: center;
	margin: 40px 0;
}

.mpwem_registration_area_show_msg ._margin_zero_text_center {
	max-width: 620px;
	padding: 28px 32px;
	text-align: center;
	background: linear-gradient(135deg, #f8fafc, #ffffff);
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.mpwem_registration_area_show_msg ._margin_zero_text_center::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.mpwem_registration_area_show_msg ._text_theme {
	font-size: 17px;
	line-height: 1.7;
	color: #1f2937;
	font-weight: 500;
}

.mpwem_registration_area_show_msg strong {
	color: #4f46e5;
	font-weight: 600;
}

.mpwem_registration_area_show_msg ._margin_zero_text_center:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
	transition: all 0.25s ease;
}

.mep-default-content h2._mb,
.mep-default-content h3,
.mep-default-content h4,
.mep-default-content h5,
.mep-default-content h6 {
	font-size: 22px;
	font-weight: normal;
}

div.mpwem_related_area .related_title h3 {
	padding: 0;
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	color: #1a1a1f;
	letter-spacing: -0.02em;
}

div.mpwem_related_area .related_title {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	margin: 0 0 20px;
}

div.mpwem_related_area .related_title_sub {
	display: block;
	margin: 6px 0 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #6b6b76;
}

.mp_wp_editor ul,
.mp_wp_editor ol {
	list-style-type: inherit;
	margin-left: 20px;
	padding-left: 20px;
}

.mp_wp_editor ol {
	list-style-type: decimal;
}

div.mpwem_wrapper {
	display: block;
	max-width: 1320px;
	margin: var(--dmp) auto;
	background: #FFF;
	padding: var(--dmp);
	width: 100%;
}

.mpwem_style.mpwem_wrapper.mep-events-wrapper.wrapper {
	padding-top: 0;
}

div.mpwem_container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
}

.mep_smart_theme .mpwem_content_area {
	display: flex;
	margin: 40px 0 0 0;
	flex-direction: column;
}

.mep_smart_theme .mpwem_left_content {
	max-width: 100%;
	width: 100%;
}

.mep_smart_theme .mpwem_left_content h2 {
	font-size: 24px;
	color: #333;
	font-weight: bold;
}

.mep_smart_theme .mpwem_right_content {
	max-width: 100%;
	width: 100%;
}

.mep_smart_theme .mpwem_right_content h2 {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	margin: 0 0 var(--dmp);
}

div.mep_smart_theme .mpwem_sidebar_content {
	background-color: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 5px #DDD;
}

div.default_theme .content_area {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.mep-default-content {
	width: calc(100% - 300px);
	padding: 0 20px 0 0;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .content_area {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 28px;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-content {
	flex: 1 1 0%;
	width: auto;
	padding: 0;
	min-width: 0;
	max-width: 100%;
}

.mep-events-wrapper {
	width: 100%;
	display: block;
	max-width: 1320px;
	margin: 20px auto;
	background: #FFF;
	padding: 20px;
	font-size: 14px;
	letter-spacing: inherit;
}

.mep-events-wrapper a {
	text-decoration: none;
}

.mep-events-wrapper ul:not(.mp_wp_editor ul) {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.mep-events-wrapper table span.the-total {
	display: block;
	margin: 7px 0 0 0;
}

.mep-events-wrapper.wrapper {
	margin: 20px auto;
}

.mep-events-wrapper p#mep_btn_notice {
	text-align: center;
	font-size: 15px;
	color: red;
	margin: 0 0 7px 0;
}

.mep-events-wrapper table {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 15px 0;
}

.mep-events-wrapper table td {
	text-align: left;
	padding: 10px;
	vertical-align: middle;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px dashed #EEE;
}

.mep-events-wrapper div.xtra-item-left {
	font-size: 10px;
	font-style: italic;
	margin: 5px 0 0 0;
}

.mep-events-wrapper td.ticket-qty,
.mep-events-wrapper td.ticket-price {
	text-align: center;
}

.mep-events-wrapper strong {
	font-weight: bold;
}

.mep-events-wrapper button[disabled=disabled] {
	opacity: 0.5;
	cursor: no-drop;
}

.mep-events-wrapper .mpwem_book_now[disabled] {
	background-color: var(--color_theme);
	opacity: 0.6;
}

div.default_theme .mpwem_tile {
	margin: 0 0 var(--dmp_xs) 0;
	color: var(--color_black);
	font-size: 36px;
}

/* ========== Default Theme — Event title ========== */
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_title_block {
	--mep-title-ink: #111827;
	--mep-title-muted: #6b7280;
	--mep-title-line: #e5e7eb;
	--mep-title-accent: var(--color_theme, #2563eb);
	display: block;
	margin: 0 0 0px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--mep-title-line);
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_title_block .mpwem_tile,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) h1.mpwem_tile {
	margin: 0;
	padding: 0;
	color: var(--mep-title-ink);
	font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-wrap: balance;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_title_block .mpwem_tile::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	margin-top: 14px;
	border-radius: 999px;
	background: var(--mep-title-accent);
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_title_block {
		margin-bottom: 0;
		padding-bottom: 14px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_title_block .mpwem_tile,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) h1.mpwem_tile {
		font-size: clamp(1.5rem, 5.5vw, 1.9rem);
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_title_block .mpwem_tile::after {
		width: 32px;
		margin-top: 12px;
	}
}

div.mpwem_details {
	margin: var(--dmp) 0 0 0;
}

.mep_smart_theme div.mpwem_details {
	margin-top: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_details > h2,
.default_theme:not(.mep_smart_theme) .mpwem_details > h2._mb {
	margin: 0 0 14px !important;
	padding: 0 !important;
	font-size: 1.45rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: #1a1a1f !important;
	letter-spacing: -0.02em;
	background: transparent !important;
	border: 0 !important;
	text-transform: none;
}

div.mpwem_details_content,
div.mpwem_details_content.mp_wp_editor {
	text-align: justify;
}

div.mpwem_details_content p,
div.mpwem_details_content ul,
div.mpwem_details_content ul li {
	padding: inherit;
	margin: 15px 0;
	list-style: inherit;
	margin-left: 10px;
	text-align: justify;
}

div.mpwem_style div.date_time_location_short {
	display: -webkit-flex;
	display: flex;
	gap: 15px;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: var(--dmp) 0 0 0;
}

div.date_time_location_short .short_item {
	width: 100%;
	max-width: calc(33.333% - 10px);
	padding: var(--dmp_xs);
	background: #F7F7F7;
	display: -webkit-flex;
	display: flex;
	border-radius: var(--dbrl);
}

div.date_time_location_short .short_item h4 {
	font-size: 22px;
}

div.date_time_location_short .short_item h6 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

div.date_time_location_short .short_item p {
	color: #878787;
	margin: 5px 0 0 0;
}

/* ========== Default Theme — Date / Time / Location ========== */
.default_theme:not(.mep_smart_theme) .date_time_location_short {
	--mep-meta-radius: 14px;
	--mep-meta-border: #e6e8ee;
	--mep-meta-bg: #fff;
	--mep-meta-text: #1a1a1f;
	--mep-meta-muted: #6b6b76;
	--mep-meta-soft: #f5f6f8;
	--mep-meta-accent: var(--color_theme, #2563eb);
	--mep-meta-shadow: 0 2px 8px rgba(26, 26, 31, 0.05);
	--mep-meta-shadow-hover: 0 10px 24px rgba(26, 26, 31, 0.08);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0 0;
	padding: 0;
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item {
	width: auto;
	max-width: none;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	margin: 0;
	background: var(--mep-meta-bg);
	border: 1px solid var(--mep-meta-border);
	border-radius: var(--mep-meta-radius);
	box-shadow: var(--mep-meta-shadow);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item:hover {
	border-color: color-mix(in srgb, var(--mep-meta-accent) 28%, var(--mep-meta-border));
	box-shadow: var(--mep-meta-shadow-hover);
	transform: translateY(-2px);
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item h4,
.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item h4.__icon_circle_mr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 1;
	border-radius: 12px;
	border: 1px solid color-mix(in srgb, var(--mep-meta-accent) 22%, var(--mep-meta-border));
	background: color-mix(in srgb, var(--mep-meta-accent) 10%, #fff) !important;
	color: var(--mep-meta-accent) !important;
	box-shadow: 0 6px 14px color-mix(in srgb, var(--mep-meta-accent) 12%, transparent);
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item h4 span {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item ._fdColumn {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item h6 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase !important;
	color: var(--mep-meta-muted) !important;
}

.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item p {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--mep-meta-text);
	word-break: break-word;
}

@media only screen and (max-width: 1199px) {
	.default_theme:not(.mep_smart_theme) .date_time_location_short {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
}

@media only screen and (max-width: 767px) {
	.default_theme:not(.mep_smart_theme) .date_time_location_short {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 16px;
	}

	.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item {
		padding: 14px 16px;
	}

	.default_theme:not(.mep_smart_theme) .date_time_location_short .short_item:last-child:nth-child(odd) {
		grid-column: auto;
	}
}

div.mpwem_location,
div.mpwem_time {
	color: #393332;
	font-size: 16px;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	gap: 5px;
}

div.mpwem_location span,
div.mpwem_time span {
	width: 55px;
	height: 55px;
	background-color: #F1F5FF;
	color: #6046FF;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	font-size: 25px;
}

.mep_smart_theme .mpwem_location_time {
	display: flex;
	flex-direction: column;
	justify-content: start;
	gap: 10px;
	margin-bottom: 10px;
}

.mep_smart_theme .mpwem_location_time .mpwem_location,
.mep_smart_theme .mpwem_location_time .mpwem_time {
	flex-wrap: wrap;
	align-items: center;
}

.mep_smart_theme .mpwem_location_time .mpwem_location i,
.mep_smart_theme .mpwem_location_time .mpwem_time i {
	width: 30px;
	height: 30px;
	color: var(--color_theme);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	border-radius: 5px;
	margin-right: 5px;
}

div.mpwem_registration_area {
	margin: var(--dmp) 0 0 0;
}

div.mpwem_style .kera_ticket_area [data-tabs-target] {
	padding: 2px;
	margin: 0 15px 0 0;
	border-radius: 10px;
}

.mpwem_registration_area .section-title {
	font-size: 25px;
	font-weight: bold;
	margin: 10px 0;
}

.mpwem_registration_area .date-time-header {
	padding: 10px 25px;
	background: var(--color_theme);
	border-radius: 12px 12px 0 0;
	margin-bottom: -10px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border: 1px solid var(--color_theme);
	position: relative;
	z-index: 1;
	flex-direction: column;
}

.mpwem_registration_area .date-time-header .ticket-title {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: normal;
	color: var(--color_7);
}

.mpwem_registration_area .date-time-area {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}

.mpwem_registration_area .date-time-area label {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
}

.mpwem_registration_area .date-time-area label span {
	font-size: 16px;
	font-weight: normal;
	color: var(--color_7);
}

.mpwem_registration_area .date-time-area label i {
	color: var(--color_7);
}

.mpwem_registration_area .date-time-area .formControl {
	border-radius: 5px;
	padding: 10px 15px;
	max-width: 100%;
	box-sizing: border-box;
}

.mpwem_registration_area .date-time-area .formControl {
	border-radius: 5px;
	padding: 10px 15px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.mpwem_registration_area .mpwem_booking_panel {
	margin-bottom: 20px;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-header,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-header {
	background: linear-gradient(135deg, var(--color_theme), var(--color_theme));
	color: var(--color_7);
	padding: 20px 25px;
	font-size: 18px;
	font-weight: normal;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body {
	padding: 0 10px 10px 10px;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item {
	display: flex;
	flex-direction: column;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item:last-child,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item:last-child {
	border-bottom: none;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid #EAEAEA;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info {
	flex: 0 0 100%;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-name,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-name {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 6px;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-description,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-description {
	font-size: 14px;
	color: #6C757D;
	margin-bottom: 6px;
	line-height: 1.4;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining {
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	display: inline-block;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining.remaining-high,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining.remaining-high {
	background-color: #E6F4EA;
	color: #137333;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining.remaining-low,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining.remaining-low {
	background-color: #FCE8E6;
	color: #C5221F;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-price,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-price {
	font-size: 18px;
	font-weight: 600;
	color: #2B3A55;
	text-align: right;
	flex: 0 0 20%;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .dLayout {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	border: 0;
	margin: 15px 0;
	margin-bottom: 40px;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px 16px;
	align-items: start;
	padding: 10px;
	margin: 5px 0;
	background-color: #ECECEC;
	border-radius: 12px;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2,
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item > h6 {
	grid-column: 1 / -1;
	padding: 5px 10px;
	margin: 0;
	text-transform: none;
	font-size: 15px;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item > .mp_form_item {
	min-width: 0;
	margin: 0;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2 > .mp_form_item:has(textarea),
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item:has(textarea),
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2 > .mp_form_item:has(select[multiple]),
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item:has(select[multiple]),
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2 > .mp_form_item.mep_checkbox_item,
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item.mep_checkbox_item,
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2 > .mp_form_item.mep_radio_item,
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item.mep_radio_item,
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2 > .mp_form_item.mep_file_item,
.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item.mep_file_item {
	grid-column: 1 / -1;
}

@media (max-width: 640px) {
	.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item.mep-form--cols-2,
	.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item:has(> .mp_form_item:nth-of-type(5)) {
		grid-template-columns: minmax(0, 1fr);
	}
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label {
	flex-direction: column;
	align-items: start;
	width: 100%;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label span {
	width: 100%;
	font-weight: normal;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label .formControl {
	width: 100%;
	margin-top: 5px;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label select.formControl {
	width: 100%;
	max-width: 100%;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service {
	margin-top: 30px;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body {
	padding: 0 20px 20px 20px;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label {
	flex-direction: row;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label span {
	text-wrap: wrap;
}

.mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label .formControl {
	width: 100%;
}

div.mpwem_ex_service {
	display: none;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info {
	flex: 0 0 48%;
}

.mpwem_registration_area .date-time-header {
	flex-direction: row;
}

.mpwem_registration_area .date-time-area {
	flex-direction: row;
	justify-content: end;
	align-items: center;
}

.mep_smart_theme .mpwem_content_area {
	margin: 40px 0 0 0;
	flex-direction: row;
}

.mep_smart_theme .mpwem_left_content {
	max-width: 70%;
	margin-right: 2%;
}

.mep_smart_theme .mpwem_right_content {
	max-width: 30%;
	width: 100%;
}

.mpwem_registration_area input#mpwem_date_time {
	border-radius: 5px !important;
	position: relative;
}

.mpwem_registration_area input#mpwem_date_time {
	width: 220px;
	max-width: 100%;
	box-sizing: border-box;
}

.mpwem_registration_area .date-time-area>label::after {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-size: 17px;
	font-weight: 900;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	color: #a6c0cb;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data {
	padding: 12px 0 !important;
	margin: 0 !important;
	gap: 8px;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item {
	margin: 0 !important;
	padding: 0 !important;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body {
	padding: 15px 20px 20px 20px !important;
}

.ticket-price .mep-limited-availability-ribbon {
	margin-bottom: 6px;
	display: block;
	text-align: center;
	width: 80%;
	margin-left: 20%;
}

.mep_ticket_item .mep-low-stock-warning+.ticket-remaining,
.mep_ticket_item .mep-low-stock-warning~.ticket-remaining {
	display: none !important;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-name {
	margin-bottom: 4px !important;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-description {
	margin-bottom: 4px !important;
	font-size: 13px !important;
}

.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining {
	margin: 2px 0 !important;
	padding: 2px 6px !important;
	font-size: 11px !important;
}

/**********************************/
div.mpwem_form_submit_area {
	padding: var(--dmp);
	background-color: #F8F9FA;
	margin: var(--dmp) 0 0 0;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

div.mpwem_form_submit_area .term_condition_area {
	background: none;
}

div.mpwem_form_submit_area .term_condition_area a {
	color: #333;
	font-weight: normal;
}

div.mpwem_form_submit_area .mpwem_summery {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

div.mpwem_form_submit_area .total {
	font-size: 18px;
	font-weight: normal;
}

div.mpwem_form_submit_area button[type=submit] {
	background-color: var(--color_theme);
	border: 1px solid var(--color_theme);
	padding: var(--dmp);
}

/* ========== Smart Theme — Booking Submit ========== */
.mep_smart_theme .mpwem_form_submit_area {
	margin: 16px 0 0 !important;
	padding: 16px !important;
	border-top: 1px solid #eef2f7 !important;
	border-radius: 0 0 16px 16px !important;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%) !important;
	box-shadow: none !important;
}

.mep_smart_theme .mpwem_form_submit_area .term_condition_area {
	margin: 0 0 12px !important;
	padding: 0 !important;
	font-size: 12px;
	line-height: 1.5;
	color: #6b7280;
}

.mep_smart_theme .mpwem_form_submit_area .term_condition_area a {
	color: var(--color_theme, #2563eb) !important;
	font-weight: 600 !important;
	text-decoration: none !important;
}

.mep_smart_theme .mpwem_form_submit_area .mpwem_summery {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	width: 100% !important;
}

.mep_smart_theme .mpwem_form_submit_area .total {
	display: inline-flex !important;
	align-items: baseline !important;
	justify-content: flex-start !important;
	flex: 1 1 auto !important;
	gap: 8px !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em;
	color: #6b7280 !important;
	line-height: 1.2 !important;
	white-space: nowrap;
}

.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total,
.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total .amount,
.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total .woocommerce-Price-amount,
.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total bdi {
	font-size: 22px !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em;
	line-height: 1.1 !important;
	color: #111827 !important;
}

.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total .woocommerce-Price-currencySymbol {
	color: var(--color_theme, #2563eb) !important;
	font-weight: 800 !important;
}

.mep_smart_theme .mpwem_form_submit_area .mpwem_book_now,
.mep_smart_theme .mpwem_form_submit_area button._button_theme.mpwem_book_now,
.mep_smart_theme .mpwem_form_submit_area button[type=submit]._button_theme {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	flex: 0 0 auto !important;
	width: auto !important;
	min-width: 220px !important;
	min-height: 48px !important;
	margin: 0 0 0 auto !important;
	padding: 12px 20px !important;
	border: 1px solid var(--color_theme, #2563eb) !important;
	border-radius: 12px !important;
	background: var(--color_theme, #2563eb) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--color_theme, #2563eb) 26%, transparent) !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.mep_smart_theme .mpwem_form_submit_area .mpwem_book_now i,
.mep_smart_theme .mpwem_form_submit_area button._button_theme.mpwem_book_now i {
	margin: 0 !important;
	color: inherit !important;
	font-size: 15px !important;
	line-height: 1 !important;
}

.mep_smart_theme .mpwem_form_submit_area .mpwem_book_now:hover:not([disabled]),
.mep_smart_theme .mpwem_form_submit_area button._button_theme.mpwem_book_now:hover:not([disabled]),
.mep_smart_theme .mpwem_form_submit_area button[type=submit]._button_theme:hover:not([disabled]) {
	background: color-mix(in srgb, var(--color_theme, #2563eb) 88%, #000) !important;
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 88%, #000) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 16px 30px color-mix(in srgb, var(--color_theme, #2563eb) 34%, transparent) !important;
	filter: none;
}

.mep_smart_theme .mpwem_form_submit_area .mpwem_book_now[disabled],
.mep_smart_theme .mpwem_form_submit_area button._button_theme.mpwem_book_now[disabled],
.mep_smart_theme .mpwem_form_submit_area button[type=submit]._button_theme[disabled] {
	opacity: 0.45 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
	filter: grayscale(0.15);
}

/* Native checkout modal — Smart theme accents */
.mep_smart_theme #mep-native-checkout-modal {
	--mep-accent: var(--color_theme, #2563eb);
	--mep-accent-2: color-mix(in srgb, var(--color_theme, #2563eb) 72%, #7c3aed);
	--mep-accent-soft: color-mix(in srgb, var(--color_theme, #2563eb) 10%, #fff);
	--mep-ink: #111827;
	--mep-ink-soft: #4b5563;
	--mep-muted: #9ca3af;
	--mep-line: #e8edf5;
	--mep-bg-soft: #f8fafc;
	--mep-radius: 14px;
}

.mep_smart_theme #mep-native-checkout-modal .mep-native-modal-box {
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.mep_smart_theme #mep-native-checkout-modal .mep-native-modal-header {
	background: linear-gradient(180deg, color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff), #fff);
	border-bottom: 1px solid #eef2f7;
}

.mep_smart_theme #mep-native-checkout-modal .mep-native-modal-title {
	font-size: 20px;
	letter-spacing: -0.02em;
}

.mep_smart_theme #mep-native-checkout-modal .mep-native-primary-btn {
	border-radius: 12px !important;
	background: var(--color_theme, #2563eb) !important;
	box-shadow: 0 12px 26px color-mix(in srgb, var(--color_theme, #2563eb) 28%, transparent) !important;
}

.mep_smart_theme #mep-native-checkout-modal .mep-native-primary-btn:hover {
	background: color-mix(in srgb, var(--color_theme, #2563eb) 88%, #000) !important;
	filter: none;
}

@media (max-width: 640px) {
	.mep_smart_theme .mpwem_form_submit_area {
		padding: 14px !important;
	}

	.mep_smart_theme .mpwem_form_submit_area .mpwem_summery {
		flex-wrap: wrap !important;
		gap: 12px !important;
	}

	.mep_smart_theme .mpwem_form_submit_area .total {
		flex: 1 1 100% !important;
		white-space: normal;
	}

	.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total,
	.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total .amount,
	.mep_smart_theme .mpwem_form_submit_area .total .mpwem_total .woocommerce-Price-amount {
		font-size: 20px !important;
	}

	.mep_smart_theme .mpwem_form_submit_area .mpwem_book_now,
	.mep_smart_theme .mpwem_form_submit_area button._button_theme.mpwem_book_now,
	.mep_smart_theme .mpwem_form_submit_area button[type=submit]._button_theme {
		width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		min-height: 48px !important;
		font-size: 13px !important;
	}
}

.mep_smart_theme .attendee_area {
	margin: 10px 0;
}

.mep_smart_theme .attendee_area h2 {
	font-size: var(--fs_h2);
	font-weight: var(--fw-bold);
}

.attendee_area {
	margin: 10px 0;
}

.attendee_area .attendees {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.attendee_area .attendees .attendee_lists {
	display: flex;
	justify-content: start;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 5px #F1F1F1;
	padding: 10px;
}

.attendee_area .attendees .attendee_lists .attendee {
	width: 154px;
	background-color: #F9F9F9;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}

.attendee_area .attendees .attendee_lists .attendee img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50px;
}

.attendee_area .attendees .attendee_lists .attendee h2 {
	font-size: 16px;
	color: #333;
	margin: 10px 0;
}

.mep_attendee_info .mp_form_item {
	padding: 7px;
}

.mep_attendee_info .mp_form_item.mep_checkbox_item>span,
.mep_attendee_info .mp_form_item.mep_radio_item>span,
.mep_attendee_info .mp_form_item.mep_file_item>span,
.mep_attendee_info .mp_form_item>label>span {
	min-width: 200px;
	font-weight: normal;
}

.attendee_area .attendees .attendee_lists {
	gap: 21px;
	padding: 20px;
}

.attendee_area .attendees .attendee_lists .attendee {
	width: 160px;
}

.mep_smart_theme .attendee_area {
	margin: 50px 0;
}

div.mep_attendee_info,
div.mep_attendee_info_hidden {
	display: none;
}

div.mep_file_item img {
	height: 100%;
	width: auto;
	cursor: pointer;
	display: none;
	max-height: 100px;
}

div.mep_file_item iframe {
	height: 100%;
	width: auto;
	cursor: pointer;
	display: none;
	max-height: 300px;
}

.mep_same_attendee input {
	min-width: 40px;
	height: 20px;
	margin: 5px 10px 10px 0;
}

div.mpwem_organizer {
	padding: var(--dmp);
	background: var(--color_theme);
	border-radius: var(--dbr) var(--dbr) 0 0;
}

div.mpwem_organizer,
div.mpwem_organizer a {
	font-size: var(--fs_h6);
	font-weight: 400;
	color: var(--color_white) !important;
}

div.mpwem_organizer h5 {
	color: var(--color_white);
}

/* ========== Default Theme — Organizer alignment ========== */
.default_theme:not(.mep_smart_theme) .mpwem_organizer {
	--mep-org-icon-size: 1.15em;
	--mep-org-gap: 8px;
}

.default_theme:not(.mep_smart_theme) .mpwem_organizer h5 {
	display: flex;
	align-items: center;
	gap: var(--mep-org-gap);
	margin: 0 0 6px;
	line-height: 1.35;
}

.default_theme:not(.mep_smart_theme) .mpwem_organizer h5 .mi {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--mep-org-icon-size);
	min-width: var(--mep-org-icon-size);
	flex-shrink: 0;
	line-height: 1;
}

.default_theme:not(.mep_smart_theme) .mpwem_organizer_item {
	margin: 0;
	padding-left: calc(var(--mep-org-icon-size) + var(--mep-org-gap));
	line-height: 1.35;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.default_theme:not(.mep_smart_theme) .mpwem_organizer_item a {
	display: inline;
	max-width: 100%;
}

div.mep_smart_theme .mpwem_organizer {
	display: -webkit-flex;
	display: flex;
	margin: 5px 0;
}

div.mep_smart_theme .mpwem_organizer {
	padding: 0;
	background: transparent;
	border-radius: 0;
}

div.mep_smart_theme .mpwem_organizer,
div.mep_smart_theme .mpwem_organizer a {
	color: #393332 !important;
}

div.mep_smart_theme .mpwem_organizer h5 {
	margin: 0;
	color: var(--color_theme);
}

div.mpwem_timeline_area {
	margin: var(--dmp) 0 0 0;
	background-color: #FFF;
	border: 1px solid #EEEEF5;
	border-radius: 14px;
	overflow: hidden;
}

div.mpwem_timeline_area .timeline_section_header {
	background: linear-gradient(135deg, #F7F7F7, #F7F7F7);
	padding: var(--dmp);
}

div.mpwem_timeline_area .timeline_section_header h2 {
	font-size: var(--fs_h5);
	font-weight: normal;
	color: #333;
	margin: 0;
}

div.mpwem_timeline_area .timeline_body {
	padding: var(--dmp);
}

div.mpwem_timeline_area .timeline_area {
	position: relative;
}

div.mpwem_timeline_area .timeline_area::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	height: calc(100% - 30px);
	width: 2px;
	background-color: var(--color_theme);
	opacity: 0.25;
	z-index: 0;
}

div.timeline_item {
	padding: 0 0 20px 48px;
	position: relative;
}

div.timeline_item:last-child {
	padding-bottom: 0;
}

div.timeline_item .timeline_counter {
	position: absolute;
	left: 0;
	top: 4px;
	width: 30px;
	height: 30px;
	background-color: var(--color_theme);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #FFF;
	font-size: 13px;
	z-index: 2;
}

div.timeline_item .timeline_header {
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

div.timeline_item .timeline_tag {
	display: inline-flex;
	align-items: center;
	background-color: #ededed;
	padding: 9px 26px 9px 14px;
	clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%);
	flex-shrink: 0;
	transition: filter 0.2s;
}

div.timeline_item .timeline_header:hover .timeline_tag {
	filter: brightness(0.94);
}

div.timeline_item .tl_title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-transform: capitalize;
	white-space: nowrap;
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
}

div.timeline_item .timeline_connector {
	flex: 1;
	height: 0;
	border-bottom: 1.5px dashed #D0D3EA;
	min-width: 12px;
}

div.mpwem_timeline_area .timeline_time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--color_theme);
	font-weight: 600;
	padding: 6px 12px;
	background-color: var(--color_6);
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
}

div.mpwem_timeline_area .timeline_time i {
	font-size: 11px;
}

div.mpwem_timeline_area .timeline_content .mp_wp_editor {
	margin-top: 12px;
	background-color: #F7F7F7;
	padding: var(--dmp);
	border-radius: 10px;
	border: 1px solid #ddd;
}

/* ========== Default Theme — Event Timelines ========== */
.default_theme:not(.mep_smart_theme) .mpwem_timeline_area {
	--mep-tl-radius: 12px;
	--mep-tl-border: #e6e8ee;
	--mep-tl-bg: #fff;
	--mep-tl-text: #1a1a1f;
	--mep-tl-muted: #6b6b76;
	--mep-tl-soft: #f5f6f8;
	--mep-tl-accent: var(--color_theme, #2563eb);
	--mep-tl-accent-text: var(--color_theme_alter, #fff);
	--mep-tl-shadow: 0 2px 8px rgba(26, 26, 31, 0.05);
	--mep-tl-shadow-hover: 0 10px 24px rgba(26, 26, 31, 0.08);
	margin: 40px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_section_header {
	background: transparent !important;
	padding: 0 0 6px !important;
	margin: 0 0 4px !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_section_header h2 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 1.45rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--mep-tl-text) !important;
	letter-spacing: -0.02em;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_body {
	padding: 14px 0 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_area {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	padding-left: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_area::before {
	display: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 0 !important;
	position: relative;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 19px;
	top: 40px;
	bottom: -12px;
	width: 2px;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--mep-tl-accent) 45%, var(--mep-tl-border)),
		color-mix(in srgb, var(--mep-tl-accent) 12%, var(--mep-tl-soft))
	);
	border-radius: 2px;
	z-index: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item .timeline_counter {
	position: relative !important;
	left: auto !important;
	top: auto !important;
	width: 40px !important;
	height: 40px !important;
	margin: 0;
	border: 2px solid color-mix(in srgb, var(--mep-tl-accent) 24%, var(--mep-tl-border));
	border-radius: 10px !important;
	background: color-mix(in srgb, var(--mep-tl-accent) 10%, #fff) !important;
	color: var(--mep-tl-accent) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1;
	box-shadow: 0 6px 16px color-mix(in srgb, var(--mep-tl-accent) 14%, transparent);
	z-index: 2;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .timeline_counter {
	background: var(--mep-tl-accent) !important;
	border-color: var(--mep-tl-accent) !important;
	color: var(--mep-tl-accent-text) !important;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--mep-tl-accent) 28%, transparent);
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_content {
	min-width: 0;
	background: var(--mep-tl-bg) !important;
	border: 1px solid var(--mep-tl-border) !important;
	border-radius: var(--mep-tl-radius) !important;
	box-shadow: var(--mep-tl-shadow) !important;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:hover .timeline_content {
	border-color: color-mix(in srgb, var(--mep-tl-accent) 28%, var(--mep-tl-border)) !important;
	box-shadow: var(--mep-tl-shadow-hover) !important;
	transform: translateY(-1px);
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .timeline_content {
	border-color: color-mix(in srgb, var(--mep-tl-accent) 40%, var(--mep-tl-border)) !important;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--mep-tl-accent) 14%, transparent) !important;
	transform: none;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_header {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px !important;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_tag {
	display: block !important;
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 !important;
	background: transparent !important;
	clip-path: none !important;
	filter: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_header:hover .timeline_tag {
	filter: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .tl_title {
	display: block !important;
	max-width: none !important;
	overflow: visible !important;
	text-overflow: unset !important;
	white-space: normal !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	color: var(--mep-tl-text) !important;
	text-transform: none !important;
	letter-spacing: -0.01em;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .tl_title {
	color: var(--mep-tl-accent) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_connector {
	display: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_time {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	margin: 0;
	padding: 7px 11px !important;
	border: 1px solid color-mix(in srgb, var(--mep-tl-accent) 24%, var(--mep-tl-border)) !important;
	border-radius: 10px !important;
	background: color-mix(in srgb, var(--mep-tl-accent) 8%, #fff) !important;
	color: var(--mep-tl-accent) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1;
	white-space: nowrap;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .timeline_time {
	background: var(--mep-tl-accent) !important;
	border-color: var(--mep-tl-accent) !important;
	color: var(--mep-tl-accent-text) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_time i {
	font-size: 12px;
	line-height: 1;
	opacity: 0.9;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_content .mp_wp_editor {
	margin: 0 !important;
	padding: 0 16px 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--mep-tl-muted);
	font-size: 14px;
	line-height: 1.7;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_content .mp_wp_editor.mActive {
	border-top: 1px solid var(--mep-tl-border) !important;
	padding: 14px 16px 16px !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_content .mp_wp_editor p {
	margin: 0 0 10px;
}

.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_content .mp_wp_editor p:last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area {
		margin-top: 28px;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_section_header h2 {
		font-size: 1.25rem !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:not(:last-child)::before {
		left: 16px;
		top: 34px;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item .timeline_counter {
		width: 34px !important;
		height: 34px !important;
		border-radius: 8px !important;
		font-size: 12px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_header {
		flex-wrap: wrap;
		padding: 12px 14px !important;
		gap: 10px;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .tl_title {
		font-size: 14px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_content .mp_wp_editor.mActive {
		padding: 12px 14px 14px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_timeline_area .timeline_item:hover .timeline_content {
		transform: none;
	}
}

/* ========== Smart Theme — Event Timelines ========== */
.mep_smart_theme .mpwem_timeline_area {
	margin: 56px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.mep_smart_theme .mpwem_timeline_area .timeline_section_header {
	background: transparent;
	padding: 0 0 6px;
	margin: 0 0 4px;
}

.mep_smart_theme .mpwem_timeline_area .timeline_section_header h2 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: #111827 !important;
	letter-spacing: -0.02em;
}

.mep_smart_theme .mpwem_timeline_area .timeline_body {
	padding: 14px 0 0;
}

.mep_smart_theme .mpwem_timeline_area .timeline_area {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	padding-left: 0;
}

.mep_smart_theme .mpwem_timeline_area .timeline_area::before {
	display: none;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 0;
	position: relative;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 19px;
	top: 40px;
	bottom: -12px;
	width: 2px;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--color_theme, #2563eb) 45%, #e8edf5),
		color-mix(in srgb, var(--color_theme, #2563eb) 12%, #eef2f7)
	);
	border-radius: 2px;
	z-index: 0;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item .timeline_counter {
	position: relative;
	left: auto;
	top: auto;
	width: 40px;
	height: 40px;
	margin: 0;
	border: 2px solid color-mix(in srgb, var(--color_theme, #2563eb) 22%, #e8edf5);
	border-radius: 12px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 10%, #fff);
	color: var(--color_theme, #2563eb);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--color_theme, #2563eb) 12%, transparent);
	z-index: 2;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .timeline_counter {
	background: var(--color_theme, #2563eb);
	border-color: var(--color_theme, #2563eb);
	color: #fff;
	box-shadow: 0 12px 24px color-mix(in srgb, var(--color_theme, #2563eb) 28%, transparent);
}

.mep_smart_theme .mpwem_timeline_area .timeline_content {
	min-width: 0;
	background: #fff;
	border: 1px solid #e8edf5;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item:hover .timeline_content {
	border-color: #d7e0ef;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
	transform: translateY(-1px);
}

.mep_smart_theme .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .timeline_content {
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 35%, #e8edf5);
	box-shadow: 0 14px 32px color-mix(in srgb, var(--color_theme, #2563eb) 16%, transparent);
	transform: none;
}

.mep_smart_theme .mpwem_timeline_area .timeline_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.mep_smart_theme .mpwem_timeline_area .timeline_tag {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	padding: 0;
	background: transparent;
	clip-path: none;
	filter: none;
}

.mep_smart_theme .mpwem_timeline_area .timeline_header:hover .timeline_tag {
	filter: none;
}

.mep_smart_theme .mpwem_timeline_area .tl_title {
	display: block;
	max-width: none;
	overflow: visible;
	text-overflow: unset;
	white-space: normal;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: #111827;
	text-transform: none;
	letter-spacing: -0.01em;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .tl_title {
	color: var(--color_theme, #2563eb);
}

.mep_smart_theme .mpwem_timeline_area .timeline_connector {
	display: none;
}

.mep_smart_theme .mpwem_timeline_area .timeline_time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	margin: 0;
	padding: 7px 11px;
	border: 1px solid color-mix(in srgb, var(--color_theme, #2563eb) 22%, #e8edf5);
	border-radius: 999px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff);
	color: var(--color_theme, #2563eb);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.mep_smart_theme .mpwem_timeline_area .timeline_item:has(.mp_wp_editor.mActive) .timeline_time {
	background: var(--color_theme, #2563eb);
	border-color: var(--color_theme, #2563eb);
	color: #fff;
}

.mep_smart_theme .mpwem_timeline_area .timeline_time i {
	font-size: 12px;
	line-height: 1;
	opacity: 0.9;
}

.mep_smart_theme .mpwem_timeline_area .timeline_content .mp_wp_editor {
	margin: 0;
	padding: 0 16px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.7;
}

.mep_smart_theme .mpwem_timeline_area .timeline_content .mp_wp_editor.mActive {
	border-top: 1px solid #eef2f7;
	padding: 14px 16px 16px;
}

.mep_smart_theme .mpwem_timeline_area .timeline_content .mp_wp_editor p {
	margin: 0 0 10px;
}

.mep_smart_theme .mpwem_timeline_area .timeline_content .mp_wp_editor p:last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.mep_smart_theme .mpwem_timeline_area .timeline_section_header h2 {
		font-size: 20px !important;
	}

	.mep_smart_theme .mpwem_timeline_area .timeline_item {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
	}

	.mep_smart_theme .mpwem_timeline_area .timeline_item:not(:last-child)::before {
		left: 16px;
		top: 34px;
	}

	.mep_smart_theme .mpwem_timeline_area .timeline_item .timeline_counter {
		width: 34px;
		height: 34px;
		border-radius: 10px;
		font-size: 12px;
	}

	.mep_smart_theme .mpwem_timeline_area .timeline_header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding: 13px 14px;
	}

	.mep_smart_theme .mpwem_timeline_area .tl_title {
		font-size: 14px;
	}

	.mep_smart_theme .mpwem_timeline_area .timeline_content .mp_wp_editor.mActive {
		padding: 12px 14px 14px;
	}
}

.mpwem_sidebar_content h5 {
	color: #333;
}

.mep-default-sidebar {
	width: 300px;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-sidebar {
	flex: 0 0 300px;
	width: 300px;
}

.mep-default-sidebar .df-sidebar-part {
	background: #FFF;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
}

div.default_theme .mep-default-sidebar h5 {
	font-size: 18px;
	font-weight: normal;
	text-transform: capitalize;
	margin-bottom: 10px;
	margin-top: 0;
}

/* ************************seat status  section******************** */

/* ************************calender  section******************** */
div.mpwem_calender_area {
	padding: var(--dmp);
	border-top: 1px solid var(--color_border);
}

/* ========== Default Theme — Add Calendar ========== */
.default_theme:not(.mep_smart_theme) .mpwem_calender_area,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area--default {
	--mep-cal-radius: 12px;
	--mep-cal-border: #e6e8ee;
	--mep-cal-text: #1a1a1f;
	--mep-cal-soft: #f5f6f8;
	--mep-cal-accent: var(--color_theme, #2563eb);
	padding: 18px 18px 16px;
	border-top: 1px solid var(--mep-cal-border);
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area > button,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area > button._button_theme_margin_auto_min_150 {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-width: 0 !important;
	min-height: 46px;
	margin: 0 !important;
	padding: 12px 16px !important;
	border: 1px solid color-mix(in srgb, var(--mep-cal-accent) 28%, var(--mep-cal-border)) !important;
	border-radius: var(--mep-cal-radius) !important;
	background: color-mix(in srgb, var(--mep-cal-accent) 8%, #fff) !important;
	color: var(--mep-cal-accent) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area > button i,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area > button span {
	color: inherit !important;
	margin: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area > button:hover {
	background: var(--mep-cal-accent) !important;
	border-color: var(--mep-cal-accent) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--mep-cal-accent) 24%, transparent) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area > [data-collapse] {
	margin-top: 12px;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area > [data-collapse].mActive {
	display: block !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area ._mt_xs_fdColumn {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0 !important;
	padding: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a._button_general_mt_xs {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin: 0 !important;
	padding: 10px 12px !important;
	border: 1px solid var(--mep-cal-border) !important;
	border-radius: var(--mep-cal-radius) !important;
	background: #fff !important;
	color: var(--mep-cal-text) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(26, 26, 31, 0.04);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a._button_general_mt_xs:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(26, 26, 31, 0.1);
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_google,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="calendar.google.com"] {
	border-color: color-mix(in srgb, #4285F4 22%, var(--mep-cal-border)) !important;
	background: color-mix(in srgb, #4285F4 8%, #fff) !important;
	color: #1a73e8 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_google:hover,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="calendar.google.com"]:hover {
	background: #4285F4 !important;
	border-color: #4285F4 !important;
	color: #fff !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_yahoo,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="calendar.yahoo.com"] {
	border-color: color-mix(in srgb, #6001D2 22%, var(--mep-cal-border)) !important;
	background: color-mix(in srgb, #6001D2 8%, #fff) !important;
	color: #6001D2 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_yahoo:hover,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="calendar.yahoo.com"]:hover {
	background: #6001D2 !important;
	border-color: #6001D2 !important;
	color: #fff !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_outlook,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="outlook.live.com"] {
	border-color: color-mix(in srgb, #0078D4 22%, var(--mep-cal-border)) !important;
	background: color-mix(in srgb, #0078D4 8%, #fff) !important;
	color: #0078D4 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_outlook:hover,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="outlook.live.com"]:hover {
	background: #0078D4 !important;
	border-color: #0078D4 !important;
	color: #fff !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_apple,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="download-ics.php"] {
	border-color: color-mix(in srgb, #111827 16%, var(--mep-cal-border)) !important;
	background: color-mix(in srgb, #111827 5%, #fff) !important;
	color: #111827 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_calender_area a.mpwem_cal_apple:hover,
.default_theme:not(.mep_smart_theme) .mpwem_calender_area a[href*="download-ics.php"]:hover {
	background: #111827 !important;
	border-color: #111827 !important;
	color: #fff !important;
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .mpwem_calender_area,
	.default_theme:not(.mep_smart_theme) .mpwem_calender_area--default {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_calender_area ._mt_xs_fdColumn {
		grid-template-columns: 1fr;
	}
}

/* ========== Smart Theme — Add Calendar ========== */
.mep_smart_theme .mpwem_calender_area {
	padding: 18px 18px 16px;
	border-top: 1px solid #eef2f7;
}

.mep_smart_theme .mpwem_calender_area > button,
.mep_smart_theme .mpwem_calender_area > button._button_theme_margin_auto_min_150 {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-width: 0 !important;
	min-height: 46px;
	margin: 0 !important;
	padding: 12px 16px !important;
	border: 1px solid color-mix(in srgb, var(--color_theme, #2563eb) 28%, #e8edf5) !important;
	border-radius: 12px !important;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff) !important;
	color: var(--color_theme, #2563eb) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mep_smart_theme .mpwem_calender_area > button::before {
	content: '\f073';
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
}

.mep_smart_theme .mpwem_calender_area > button span {
	color: inherit !important;
}

.mep_smart_theme .mpwem_calender_area > button:hover {
	background: var(--color_theme, #2563eb) !important;
	border-color: var(--color_theme, #2563eb) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--color_theme, #2563eb) 24%, transparent) !important;
}

.mep_smart_theme .mpwem_calender_area > [data-collapse] {
	margin-top: 12px;
}

.mep_smart_theme .mpwem_calender_area > [data-collapse].mActive {
	display: block !important;
}

.mep_smart_theme .mpwem_calender_area ._mt_xs_fdColumn {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0 !important;
	padding: 0;
}

.mep_smart_theme .mpwem_calender_area a._button_general_mt_xs {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin: 0 !important;
	padding: 10px 12px !important;
	border: 1px solid #e8edf5 !important;
	border-radius: 12px !important;
	background: #fff !important;
	color: #111827 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.mep_smart_theme .mpwem_calender_area a._button_general_mt_xs:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.mep_smart_theme .mpwem_calender_area a[href*="calendar.google.com"] {
	border-color: color-mix(in srgb, #4285F4 22%, #e8edf5) !important;
	background: color-mix(in srgb, #4285F4 8%, #fff) !important;
	color: #1a73e8 !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="calendar.google.com"]:hover {
	background: #4285F4 !important;
	border-color: #4285F4 !important;
	color: #fff !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="calendar.yahoo.com"] {
	border-color: color-mix(in srgb, #6001D2 22%, #e8edf5) !important;
	background: color-mix(in srgb, #6001D2 8%, #fff) !important;
	color: #6001D2 !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="calendar.yahoo.com"]:hover {
	background: #6001D2 !important;
	border-color: #6001D2 !important;
	color: #fff !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="outlook.live.com"] {
	border-color: color-mix(in srgb, #0078D4 22%, #e8edf5) !important;
	background: color-mix(in srgb, #0078D4 8%, #fff) !important;
	color: #0078D4 !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="outlook.live.com"]:hover {
	background: #0078D4 !important;
	border-color: #0078D4 !important;
	color: #fff !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="download-ics.php"] {
	border-color: color-mix(in srgb, #111827 16%, #e8edf5) !important;
	background: color-mix(in srgb, #111827 5%, #fff) !important;
	color: #111827 !important;
}

.mep_smart_theme .mpwem_calender_area a[href*="download-ics.php"]:hover {
	background: #111827 !important;
	border-color: #111827 !important;
	color: #fff !important;
}

@media (max-width: 640px) {
	.mep_smart_theme .mpwem_calender_area {
		padding: 14px;
	}

	.mep_smart_theme .mpwem_calender_area ._mt_xs_fdColumn {
		grid-template-columns: 1fr;
	}
}

div.event_date_list_area {
	padding: var(--dmp_xs) var(--dmp);
}

div.event_date_list_area .date_list_area {
	max-height: 500px;
	overflow: auto;
	margin: 0 0 var(--dmp_xs) 0;
}

div.event_date_list_area .date_item {
	padding: 0 0 0 15px;
	position: relative;
}

div.event_date_list_area .date_item::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 0;
	background-color: var(--color_theme);
}

div.event_date_list_area .date_item a {
	color: inherit;
	display: block;
}

div.event_date_list_area .date-list-item {
	border-radius: 10px;
}

/* ========== Default Theme — Event Schedule Details ========== */
.default_theme:not(.mep_smart_theme) .event_date_list_area {
	--mep-sched-radius: 12px;
	--mep-sched-border: #e6e8ee;
	--mep-sched-text: #1a1a1f;
	--mep-sched-muted: #6b6b76;
	--mep-sched-soft: #f5f6f8;
	--mep-sched-accent: var(--color_theme, #2563eb);
	padding: 18px 18px 16px;
	border-top: 1px solid var(--mep-sched-border);
}

.default_theme:not(.mep_smart_theme) .event_date_list_area > h5 {
	display: flex !important;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--mep-sched-text) !important;
	letter-spacing: -0.01em;
	text-transform: none;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area > h5 > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 !important;
	border-radius: 10px;
	border: 1px solid color-mix(in srgb, var(--mep-sched-accent) 22%, var(--mep-sched-border));
	background: color-mix(in srgb, var(--mep-sched-accent) 10%, #fff);
	color: var(--mep-sched-accent) !important;
	font-size: 14px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px color-mix(in srgb, var(--mep-sched-accent) 10%, transparent);
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_list_area {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 340px;
	overflow: auto;
	margin: 0;
	padding: 2px 2px 4px;
	scrollbar-width: thin;
	scrollbar-color: #d5dbe7 transparent;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_list_area::-webkit-scrollbar {
	width: 6px;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_list_area::-webkit-scrollbar-thumb {
	background: #d5dbe7;
	border-radius: 999px;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date-list-item,
.default_theme:not(.mep_smart_theme) .event_date_list_area ._layout_info_xs.date-list-item {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: var(--mep-sched-radius) !important;
	background: transparent !important;
	box-shadow: none !important;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item {
	position: relative;
	padding: 0 !important;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item::before {
	display: none !important;
	content: none !important;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a {
	position: relative;
	display: block !important;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 5px 12px 28px !important;
	margin: 0 !important;
	border: 1px solid var(--mep-sched-border);
	border-radius: var(--mep-sched-radius);
	background: #fff;
	color: var(--mep-sched-text) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	white-space: nowrap !important;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none !important;
	box-shadow: 0 2px 8px rgba(26, 26, 31, 0.04);
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mep-sched-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--mep-sched-accent) 14%, transparent);
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 2px solid #9aa3b5;
	border-bottom: 2px solid #9aa3b5;
	transform: translateY(-50%) rotate(-45deg);
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a:hover {
	border-color: color-mix(in srgb, var(--mep-sched-accent) 32%, var(--mep-sched-border));
	background: color-mix(in srgb, var(--mep-sched-accent) 6%, #fff);
	color: var(--mep-sched-accent) !important;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--mep-sched-accent) 12%, transparent);
	transform: translateY(-1px);
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a:hover::after {
	border-color: var(--mep-sched-accent);
	transform: translateY(-50%) translateX(2px) rotate(-45deg);
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a._ml {
	padding-left: 34px !important;
	font-weight: 500 !important;
	color: var(--mep-sched-muted) !important;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a._ml::before {
	width: 6px;
	height: 6px;
	left: 15px;
	box-shadow: none;
	opacity: 0.7;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area button[data-collapse-target],
.default_theme:not(.mep_smart_theme) .event_date_list_area ._button_theme_margin_auto {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin: 12px 0 0 !important;
	padding: 10px 16px !important;
	border: 1px solid color-mix(in srgb, var(--mep-sched-accent) 28%, var(--mep-sched-border)) !important;
	border-radius: var(--mep-sched-radius) !important;
	background: color-mix(in srgb, var(--mep-sched-accent) 8%, #fff) !important;
	color: var(--mep-sched-accent) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .event_date_list_area button[data-collapse-target]:hover,
.default_theme:not(.mep_smart_theme) .event_date_list_area ._button_theme_margin_auto:hover {
	background: var(--mep-sched-accent) !important;
	border-color: var(--mep-sched-accent) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.default_theme:not(.mep_smart_theme) .event_date_list_area button[data-collapse-target] span,
.default_theme:not(.mep_smart_theme) .event_date_list_area ._button_theme_margin_auto span {
	color: inherit !important;
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .event_date_list_area {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme) .event_date_list_area .date_list_area {
		max-height: 280px;
	}

	.default_theme:not(.mep_smart_theme) .event_date_list_area .date_item a {
		padding: 11px 34px 11px 30px !important;
		font-size: 12px !important;
		white-space: normal !important;
	}
}

/* ========== Smart Theme — Event Schedule Details ========== */
.mep_smart_theme .event_date_list_area {
	padding: 18px 18px 16px;
}

.mep_smart_theme .event_date_list_area > h5 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px !important;
	padding: 0;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #111827 !important;
	letter-spacing: -0.01em;
}

.mep_smart_theme .event_date_list_area > h5 > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 !important;
	border-radius: 10px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 12%, #fff);
	color: var(--color_theme, #2563eb) !important;
	font-size: 14px;
	flex-shrink: 0;
}

.mep_smart_theme .event_date_list_area .date_list_area {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 340px;
	overflow: auto;
	margin: 0;
	padding: 2px 2px 4px;
	scrollbar-width: thin;
	scrollbar-color: #d5dbe7 transparent;
}

.mep_smart_theme .event_date_list_area .date_list_area::-webkit-scrollbar {
	width: 6px;
}

.mep_smart_theme .event_date_list_area .date_list_area::-webkit-scrollbar-thumb {
	background: #d5dbe7;
	border-radius: 999px;
}

.mep_smart_theme .event_date_list_area .date-list-item,
.mep_smart_theme .event_date_list_area ._layout_info_xs.date-list-item {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: transparent !important;
	box-shadow: none !important;
}

.mep_smart_theme .event_date_list_area .date_item {
	position: relative;
	padding: 0 !important;
}

.mep_smart_theme .event_date_list_area .date_item::before {
	display: none !important;
	content: none !important;
}

.mep_smart_theme .event_date_list_area .date_item a {
	position: relative;
	display: block !important;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 15px 12px 30px !important;
	margin: 5px 0 !important;
	border: 1px solid #e8edf5;
	border-radius: 12px;
	background: #fff;
	color: #111827 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	white-space: nowrap !important;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none !important;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.mep_smart_theme .event_date_list_area .date_item a::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 75%, #fff);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--color_theme, #2563eb) 12%, transparent);
}

.mep_smart_theme .event_date_list_area .date_item a::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 2px solid #9aa3b5;
	border-bottom: 2px solid #9aa3b5;
	transform: translateY(-50%) rotate(-45deg);
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.mep_smart_theme .event_date_list_area .date_item a:hover {
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 35%, #e8edf5);
	background: color-mix(in srgb, var(--color_theme, #2563eb) 6%, #fff);
	color: var(--color_theme, #2563eb) !important;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--color_theme, #2563eb) 12%, transparent);
	transform: translateY(-1px);
}

.mep_smart_theme .event_date_list_area .date_item a:hover::after {
	border-color: var(--color_theme, #2563eb);
	transform: translateY(-50%) translateX(2px) rotate(-45deg);
}

.mep_smart_theme .event_date_list_area .date_item a._ml {
	padding-left: 34px !important;
	font-weight: 500 !important;
	color: #4b5563 !important;
}

.mep_smart_theme .event_date_list_area .date_item a._ml::before {
	width: 6px;
	height: 6px;
	left: 14px;
	box-shadow: none;
	opacity: 0.7;
}

.mep_smart_theme .event_date_list_area button[data-collapse-target],
.mep_smart_theme .event_date_list_area ._button_theme_margin_auto {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin: 12px 0 0 !important;
	padding: 10px 16px !important;
	border: 1px solid color-mix(in srgb, var(--color_theme, #2563eb) 28%, #e8edf5) !important;
	border-radius: 12px !important;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff) !important;
	color: var(--color_theme, #2563eb) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mep_smart_theme .event_date_list_area button[data-collapse-target]:hover,
.mep_smart_theme .event_date_list_area ._button_theme_margin_auto:hover {
	background: var(--color_theme, #2563eb) !important;
	border-color: var(--color_theme, #2563eb) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.mep_smart_theme .event_date_list_area button[data-collapse-target] span,
.mep_smart_theme .event_date_list_area ._button_theme_margin_auto span {
	color: inherit !important;
}

@media (max-width: 640px) {
	.mep_smart_theme .event_date_list_area {
		padding: 14px;
	}

	.mep_smart_theme .event_date_list_area .date_list_area {
		max-height: 280px;
	}

	.mep_smart_theme .event_date_list_area .date_item a {
		padding: 11px 36px 11px 11px !important;
		font-size: 12px !important;
	}
}

button.mpwem_get_date_list {
	border-radius: 20px;
}

div.event_speaker_list_area {
	padding: var(--dmp);
}

/* Default theme — modern speaker cards */
div.default_theme .event_speaker_list_area > h5 {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #0f172a;
}

div.default_theme .speaker_list.mep-default-speakers,
#mage-container.mage div.default_theme .speaker_list.mep-default-speakers {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	flex-wrap: unset;
	flex-direction: unset;
}

div.default_theme .speaker_list.mep-default-speakers > .mep-default-speaker,
#mage-container.mage div.default_theme .speaker_list.mep-default-speakers > .mep-default-speaker,
div.default_theme a.mep-default-speaker,
#mage-container.mage div.default_theme a.mep-default-speaker {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	flex-direction: column !important;
	gap: 10px !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 16px 14px !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	text-decoration: none !important;
	color: inherit !important;
	box-sizing: border-box !important;
	text-align: center;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

div.default_theme .mep-default-speaker__link,
#mage-container.mage div.default_theme .mep-default-speaker__link {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	text-decoration: none !important;
	color: inherit !important;
}

div.default_theme .mep-default-speaker:hover,
div.default_theme .mep-default-speaker:focus-within,
div.default_theme a.mep-default-speaker:hover,
div.default_theme a.mep-default-speaker:focus,
#mage-container.mage div.default_theme a.mep-default-speaker:hover,
#mage-container.mage div.default_theme a.mep-default-speaker:focus {
	border-color: #93c5fd !important;
	background: #f8fbff !important;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
	transform: translateY(-1px);
	outline: none;
}

div.default_theme .mep-default-speaker__avatar,
#mage-container.mage div.default_theme .mep-default-speaker__avatar {
	position: relative;
	flex: 0 0 auto !important;
	width: 72px !important;
	height: 72px !important;
	max-width: 72px !important;
	margin: 0 auto !important;
	border-radius: 50% !important;
	overflow: hidden;
	background: linear-gradient(135deg, #dbeafe 0%, #e2e8f0 100%);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #e2e8f0;
}

div.default_theme .mep-default-speaker__avatar img,
#mage-container.mage div.default_theme .mep-default-speaker__avatar img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
}

div.default_theme .mep-default-speaker__initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 22px;
	font-weight: 700;
	color: #1d4ed8;
	line-height: 1;
}

div.default_theme .mep-default-speaker__meta,
#mage-container.mage div.default_theme .mep-default-speaker__meta {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 4px;
	min-width: 0 !important;
	flex: 0 1 auto !important;
	width: 100% !important;
	max-width: none !important;
	overflow: visible !important;
	text-align: center;
}

div.default_theme .mep-default-speaker__name,
#mage-container.mage div.default_theme .mep-default-speaker__name {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	color: #0f172a !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	word-break: normal !important;
	overflow-wrap: anywhere;
	text-align: center;
}

div.default_theme a.mep-default-speaker:hover .mep-default-speaker__name,
div.default_theme a.mep-default-speaker:focus .mep-default-speaker__name,
div.default_theme .mep-default-speaker:hover .mep-default-speaker__name,
div.default_theme .mep-default-speaker:focus-within .mep-default-speaker__name {
	color: #1d4ed8 !important;
}

div.default_theme .mep-default-speaker__role,
#mage-container.mage div.default_theme .mep-default-speaker__role {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: #64748b !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: clip !important;
	word-break: normal !important;
	overflow-wrap: anywhere;
	text-align: left !important;
}

div.default_theme .mep-default-speaker__role-more,
#mage-container.mage div.default_theme .mep-default-speaker__role-more {
	appearance: none;
	display: inline;
	margin: 0 0 0 4px;
	padding: 0;
	border: 0;
	background: none;
	color: #2563eb;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

div.default_theme .mep-default-speaker__role-more:hover,
div.default_theme .mep-default-speaker__role-more:focus {
	color: #1d4ed8;
	text-decoration: underline;
}

div.default_theme .mep-default-speaker__role-more [data-label-more],
div.default_theme .mep-default-speaker__role-more [data-label-less] {
	display: none !important;
}

div.default_theme .mep-default-speaker__role.is-collapsed .mep-default-speaker__role-more [data-label-more],
div.default_theme .mep-default-speaker__role:not(.is-expanded) .mep-default-speaker__role-more [data-label-more] {
	display: inline !important;
}

div.default_theme .mep-default-speaker__role.is-expanded .mep-default-speaker__role-more [data-label-less] {
	display: inline !important;
}

div.default_theme .mep-default-speaker__role.is-expanded .mep-default-speaker__role-more [data-label-more] {
	display: none !important;
}

@media screen and (max-width: 640px) {
	div.default_theme .speaker_list.mep-default-speakers,
	#mage-container.mage div.default_theme .speaker_list.mep-default-speakers {
		grid-template-columns: 1fr;
	}
}

/* Legacy default speaker anchors (shared markup fallback) */
div.default_theme .speaker_list:not(.mep-default-speakers) {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

div.default_theme .speaker_list:not(.mep-default-speakers) a {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding: var(--dmp_xs);
	border-radius: 0;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 50%;
	max-width: 120px;
}

div.default_theme .speaker_list:not(.mep-default-speakers) a [data-bg-image] {
	width: 90px;
	height: 90px;
	border-radius: 100%;
	overflow: hidden;
}

div.default_theme .speaker_list:not(.mep-default-speakers) a h6 {
	margin: var(--dmp_xs) 0 0 0;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
}

div.default_theme .speaker_list:not(.mep-default-speakers) img {
	width: 110px;
}

/* ── Smart theme only — modern speaker cards ─────────────────────── */

div.mep_smart_theme .speaker_list.mep-speakers,
#mage-container.mage div.mep_smart_theme .speaker_list.mep-speakers {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 10px;
	flex-direction: unset !important;
	flex-wrap: unset !important;
}

div.mep_smart_theme .speaker_list.mep-speakers > .mep-speaker,
#mage-container.mage div.mep_smart_theme .speaker_list.mep-speakers > .mep-speaker {
	display: flex !important;
	align-items: center !important;
	flex-direction: row !important;
	gap: 14px !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 12px 14px !important;
	border: 1px solid #e8e8e4 !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
	text-decoration: none !important;
	color: inherit !important;
	box-sizing: border-box !important;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

div.mep_smart_theme .speaker_list.mep-speakers > .mep-speaker:hover,
div.mep_smart_theme .speaker_list.mep-speakers > .mep-speaker:focus,
#mage-container.mage div.mep_smart_theme .speaker_list.mep-speakers > .mep-speaker:hover,
#mage-container.mage div.mep_smart_theme .speaker_list.mep-speakers > .mep-speaker:focus {
	border-color: #d4d4ce !important;
	background: #fafaf8 !important;
	box-shadow: 0 10px 28px rgba(17, 17, 19, 0.08);
	transform: translateY(-1px);
	outline: none;
}

div.mep_smart_theme .mep-speaker__avatar,
#mage-container.mage div.mep_smart_theme .mep-speaker__avatar {
	position: relative;
	flex: 0 0 auto !important;
	width: 56px !important;
	height: 56px !important;
	max-width: 56px !important;
	border-radius: 50% !important;
	overflow: hidden;
	background: linear-gradient(145deg, #f0f0ec 0%, #e7e7e3 100%);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #e7e7e3;
}

div.mep_smart_theme .mep-speaker__avatar img,
#mage-container.mage div.mep_smart_theme .mep-speaker__avatar img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
}

div.mep_smart_theme .mep-speaker__initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 18px;
	font-weight: 700;
	color: #111113;
	line-height: 1;
}

div.mep_smart_theme .mep-speaker__meta,
#mage-container.mage div.mep_smart_theme .mep-speaker__meta {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	justify-content: center !important;
	gap: 3px;
	min-width: 0 !important;
	flex: 1 1 auto !important;
	width: auto !important;
	overflow: hidden;
	text-align: left;
}

div.mep_smart_theme .mep-speaker__name,
#mage-container.mage div.mep_smart_theme .mep-speaker__name {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	letter-spacing: -0.01em;
	color: #111113 !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

div.mep_smart_theme .mep-speaker__role,
#mage-container.mage div.mep_smart_theme .mep-speaker__role {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: #777773 !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

div.mep_smart_theme .speaker_list:not(.mep-speakers) {
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: initial;
	flex-wrap: initial;
}

div.mep_smart_theme .speaker_list:not(.mep-speakers) a {
	max-width: 100%;
	width: 100%;
	-webkit-flex-direction: initial;
	flex-direction: initial;
}

div.mep_smart_theme .speaker_list:not(.mep-speakers) a [data-bg-image] {
	width: 70px;
	height: auto;
	border-radius: 0;
}

div.mep_smart_theme .speaker_list:not(.mep-speakers) a h6 {
	margin: 0;
	padding: var(--dmp);
	font-size: var(--fs_h4);
}

.mep_smart_theme .speaker-widget {
	margin-top: 10px;
}

.mep_smart_theme .speaker-widget h2 {
	text-transform: capitalize;
}

.mep_smart_theme .speaker-widget i {
	color: var(--color_theme);
}

.mep_smart_theme .speaker-widget .speaker-lists {
	background-color: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 5px #DDD;
}

.mep_smart_theme .speaker-widget .speaker-lists .items {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	gap: 20px;
	padding: 20px;
	border-bottom: 1px solid #DDD;
}

.mep_smart_theme .speaker-widget .speaker-lists .items:last-child {
	border-bottom: 0;
}

.mep_smart_theme .speaker-widget .speaker-lists .items img {
	width: 70px;
}

.mep_smart_theme .speaker-widget .speaker-lists .items h2 {
	font-size: 19px;
	letter-spacing: 0.04em;
	color: #333;
}

div.share_widgets {
	padding: var(--dmp);
	border-top: 1px solid var(--color_border);
	color: #333;
}

div.share_widgets .share_widgets_title {
	margin: 0 0 var(--dmp) 0;
	text-align: center;
	text-transform: capitalize;
}

div.share_widgets .share_widgets_list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	gap: var(--dmp_xs);
}

div.share_widgets .share_widgets_list li,
div.share_widgets .share_widgets_list a {
	margin: 0;
	padding: 0;
	color: inherit;
}

div.share_widgets .share_widgets_list i {
	width: 40px;
	height: 40px;
	font-size: 22px;
	padding: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s;
	background-color: #F7F7F7;
}

div.share_widgets .share_widgets_list a.facebook i {
	color: #3B5998;
}

div.share_widgets .share_widgets_list a.facebook:hover i {
	background-color: #3B5998;
	color: #FFF;
}

div.share_widgets .share_widgets_list a.twitter i {
	color: #1DA1F2;
}

div.share_widgets .share_widgets_list a.twitter:hover i {
	background-color: #1DA1F2;
	color: #FFF;
}

div.share_widgets .share_widgets_list a.linkedin i {
	color: #0077B5;
}

div.share_widgets .share_widgets_list a.linkedin:hover i {
	background-color: #0077B5;
	color: #FFF;
}

div.share_widgets .share_widgets_list a.whatsapp i {
	color: #25D366;
}

div.share_widgets .share_widgets_list a.whatsapp:hover i {
	background-color: #25D366;
	color: #FFF;
}

div.share_widgets .share_widgets_list a.email i {
	color: #DD4B39;
}

div.share_widgets .share_widgets_list a.email:hover i {
	background-color: #DD4B39;
	color: #FFF;
}

/* ========== Default Theme — Share This Event ========== */
.default_theme:not(.mep_smart_theme) .share_widgets,
.default_theme:not(.mep_smart_theme) .share_widgets--default {
	--mep-share-radius: 12px;
	--mep-share-border: #e6e8ee;
	--mep-share-text: #1a1a1f;
	--mep-share-soft: #f5f6f8;
	--mep-share-accent: var(--color_theme, #2563eb);
	padding: 18px 18px 16px;
	border-top: 1px solid var(--mep-share-border);
	color: var(--mep-share-text);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_title {
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin: 0 0 14px !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--mep-share-text) !important;
	text-align: left !important;
	text-transform: none;
	letter-spacing: -0.01em;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_title > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 !important;
	border-radius: 10px;
	border: 1px solid color-mix(in srgb, var(--mep-share-accent) 22%, var(--mep-share-border));
	background: color-mix(in srgb, var(--mep-share-accent) 10%, #fff);
	color: var(--mep-share-accent) !important;
	font-size: 13px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px color-mix(in srgb, var(--mep-share-accent) 10%, transparent);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--mep-share-border);
	border-radius: var(--mep-share-radius);
	background: #fff;
	box-shadow: 0 4px 14px rgba(26, 26, 31, 0.04);
	text-decoration: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list i {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	height: auto !important;
	min-width: 0;
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	font-size: 16px !important;
	line-height: 1 !important;
	transition: color 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(26, 26, 31, 0.1);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.facebook {
	border-color: color-mix(in srgb, #1877F2 22%, var(--mep-share-border));
	background: color-mix(in srgb, #1877F2 8%, #fff);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.facebook i {
	color: #1877F2 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.facebook:hover {
	background: #1877F2 !important;
	border-color: #1877F2 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.facebook:hover i {
	color: #fff !important;
	background: transparent !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.twitter {
	border-color: color-mix(in srgb, #111827 18%, var(--mep-share-border));
	background: color-mix(in srgb, #111827 6%, #fff);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.twitter i {
	color: #111827 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.twitter:hover {
	background: #111827 !important;
	border-color: #111827 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.twitter:hover i {
	color: #fff !important;
	background: transparent !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.linkedin {
	border-color: color-mix(in srgb, #0A66C2 22%, var(--mep-share-border));
	background: color-mix(in srgb, #0A66C2 8%, #fff);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.linkedin i {
	color: #0A66C2 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.linkedin:hover {
	background: #0A66C2 !important;
	border-color: #0A66C2 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.linkedin:hover i {
	color: #fff !important;
	background: transparent !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.whatsapp {
	border-color: color-mix(in srgb, #25D366 22%, var(--mep-share-border));
	background: color-mix(in srgb, #25D366 8%, #fff);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.whatsapp i {
	color: #25D366 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.whatsapp:hover {
	background: #25D366 !important;
	border-color: #25D366 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.whatsapp:hover i {
	color: #fff !important;
	background: transparent !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.email {
	border-color: color-mix(in srgb, #EA4335 22%, var(--mep-share-border));
	background: color-mix(in srgb, #EA4335 8%, #fff);
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.email i {
	color: #EA4335 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.email:hover {
	background: #EA4335 !important;
	border-color: #EA4335 !important;
}

.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a.email:hover i {
	color: #fff !important;
	background: transparent !important;
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .share_widgets,
	.default_theme:not(.mep_smart_theme) .share_widgets--default {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme) .share_widgets .share_widgets_list a {
		width: 42px;
		height: 42px;
	}
}

/* ========== Smart Theme — Share This Event ========== */
.mep_smart_theme .share_widgets {
	padding: 18px 18px 16px;
	border-top: 1px solid #eef2f7;
	color: #111827;
}

.mep_smart_theme .share_widgets .share_widgets_title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin: 0 0 14px !important;
	padding: 0;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #111827 !important;
	text-align: left !important;
	text-transform: none;
	letter-spacing: -0.01em;
}

.mep_smart_theme .share_widgets .share_widgets_title::before {
	content: '\f1e0';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 12%, #fff);
	color: var(--color_theme, #2563eb);
	font-size: 13px;
	flex-shrink: 0;
}

.mep_smart_theme .share_widgets .share_widgets_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mep_smart_theme .share_widgets .share_widgets_list li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.mep_smart_theme .share_widgets .share_widgets_list a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #e8edf5;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
	text-decoration: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.mep_smart_theme .share_widgets .share_widgets_list i {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	height: auto !important;
	min-width: 0;
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	font-size: 16px !important;
	line-height: 1 !important;
	transition: color 0.18s ease;
}

.mep_smart_theme .share_widgets .share_widgets_list a:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.mep_smart_theme .share_widgets .share_widgets_list a.facebook {
	border-color: color-mix(in srgb, #1877F2 22%, #e8edf5);
	background: color-mix(in srgb, #1877F2 8%, #fff);
}

.mep_smart_theme .share_widgets .share_widgets_list a.facebook i {
	color: #1877F2 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.facebook:hover {
	background: #1877F2 !important;
	border-color: #1877F2 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.facebook:hover i {
	color: #fff !important;
	background: transparent !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.twitter {
	border-color: color-mix(in srgb, #111827 18%, #e8edf5);
	background: color-mix(in srgb, #111827 6%, #fff);
}

.mep_smart_theme .share_widgets .share_widgets_list a.twitter i {
	color: #111827 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.twitter:hover {
	background: #111827 !important;
	border-color: #111827 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.twitter:hover i {
	color: #fff !important;
	background: transparent !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.linkedin {
	border-color: color-mix(in srgb, #0A66C2 22%, #e8edf5);
	background: color-mix(in srgb, #0A66C2 8%, #fff);
}

.mep_smart_theme .share_widgets .share_widgets_list a.linkedin i {
	color: #0A66C2 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.linkedin:hover {
	background: #0A66C2 !important;
	border-color: #0A66C2 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.linkedin:hover i {
	color: #fff !important;
	background: transparent !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.whatsapp {
	border-color: color-mix(in srgb, #25D366 22%, #e8edf5);
	background: color-mix(in srgb, #25D366 8%, #fff);
}

.mep_smart_theme .share_widgets .share_widgets_list a.whatsapp i {
	color: #25D366 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.whatsapp:hover {
	background: #25D366 !important;
	border-color: #25D366 !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.whatsapp:hover i {
	color: #fff !important;
	background: transparent !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.email {
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 22%, #e8edf5);
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff);
}

.mep_smart_theme .share_widgets .share_widgets_list a.email i {
	color: var(--color_theme, #2563eb) !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.email:hover {
	background: var(--color_theme, #2563eb) !important;
	border-color: var(--color_theme, #2563eb) !important;
}

.mep_smart_theme .share_widgets .share_widgets_list a.email:hover i {
	color: #fff !important;
	background: transparent !important;
}

@media (max-width: 640px) {
	.mep_smart_theme .share_widgets {
		padding: 14px;
	}

	.mep_smart_theme .share_widgets .share_widgets_list a {
		width: 42px;
		height: 42px;
	}
}

#mpwem_map_area {
	margin: var(--dmp) 0 0;
	background: white;
	border-radius: 12px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

#mpwem_map,
#mpwem_map_area iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
	max-height: 300px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#mpwem_map_area .map_title {
	background: linear-gradient(135deg, #F7F7F7, #F7F7F7);
	color: #333;
	padding: var(--dmp);
	font-weight: 600;
	margin: 0;
	text-transform: capitalize;
	font-size: var(--fs_h5);
}

#mpwem_map_area .map_section {
	padding: var(--dmp);
}

/* ========== Smart Theme — Event Map ========== */
.mep_smart_theme #mpwem_map_area {
	margin: 56px 0 0;
	background: #fff;
	border: 1px solid #e8edf5;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.mep_smart_theme #mpwem_map_area .map_title {
	display: block;
	margin: 0 !important;
	padding: 18px 18px 14px !important;
	background: transparent !important;
	background-image: none !important;
	color: #111827 !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: -0.02em;
	text-transform: none;
}

.mep_smart_theme #mpwem_map_area .map_section {
	padding: 0 14px 14px;
}

.mep_smart_theme #mpwem_map,
.mep_smart_theme #mpwem_map_area iframe {
	display: block;
	width: 100%;
	min-height: 320px;
	max-height: 360px;
	height: 320px;
	margin: 0;
	border: 1px solid #eef2f7;
	border-radius: 12px;
	box-shadow: none;
	background: #f8fafc;
}

@media (max-width: 640px) {
	.mep_smart_theme #mpwem_map_area .map_title {
		padding: 14px 14px 12px !important;
		font-size: 20px !important;
	}

	.mep_smart_theme #mpwem_map_area .map_section {
		padding: 0 12px 12px;
	}

	.mep_smart_theme #mpwem_map,
	.mep_smart_theme #mpwem_map_area iframe {
		min-height: 260px;
		max-height: 280px;
		height: 260px;
		border-radius: 10px;
	}
}

div.mpwem_location_sidebar {
	padding: var(--dmp);
	border-top: 1px solid var(--color_border);
	color: #333;
}

div.mpwem_location_sidebar .widgets_title {
	margin: 0 0 var(--dmp_xs) 0;
	text-transform: capitalize;
	font-weight: 600;
}

div.mpwem_location_sidebar p {
	margin: 0 0 var(--dmp_xs) 0;
	padding: 0;
}

div.mpwem_location_sidebar #mpwem_map_area {
	margin: 0;
}

/* ========== Default Theme — Event Location ========== */
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar--default {
	--mep-loc-radius: 12px;
	--mep-loc-border: #e6e8ee;
	--mep-loc-text: #1a1a1f;
	--mep-loc-muted: #6b6b76;
	--mep-loc-soft: #f5f6f8;
	--mep-loc-accent: var(--color_theme, #2563eb);
	padding: 18px 18px 16px;
	border-top: 1px solid var(--mep-loc-border);
	color: var(--mep-loc-text);
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .widgets_title {
	display: flex !important;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: var(--mep-loc-text) !important;
	letter-spacing: -0.01em;
	text-transform: none;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .widgets_title > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 !important;
	border-radius: 10px;
	border: 1px solid color-mix(in srgb, var(--mep-loc-accent) 22%, var(--mep-loc-border));
	background: color-mix(in srgb, var(--mep-loc-accent) 10%, #fff);
	color: var(--mep-loc-accent) !important;
	font-size: 14px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px color-mix(in srgb, var(--mep-loc-accent) 10%, transparent);
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .mpwem_location_address {
	display: block;
	margin: 0 0 14px !important;
	padding: 12px 14px !important;
	border: 1px solid var(--mep-loc-border);
	border-radius: var(--mep-loc-radius);
	background: var(--mep-loc-soft);
	box-shadow: none;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .mpwem_location_address p {
	margin: 0 !important;
	padding: 0 !important;
	color: #374151 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.55 !important;
	word-break: break-word;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button[data-target-popup],
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button.mpwem_location_map_btn,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button._button_theme_margin_auto {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-width: 0 !important;
	min-height: 46px;
	margin: 0 !important;
	padding: 12px 16px !important;
	border: 1px solid color-mix(in srgb, var(--mep-loc-accent) 28%, var(--mep-loc-border)) !important;
	border-radius: var(--mep-loc-radius) !important;
	background: color-mix(in srgb, var(--mep-loc-accent) 8%, #fff) !important;
	color: var(--mep-loc-accent) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button[data-target-popup]:hover,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button.mpwem_location_map_btn:hover,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button._button_theme_margin_auto:hover {
	background: var(--mep-loc-accent) !important;
	border-color: var(--mep-loc-accent) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--mep-loc-accent) 24%, transparent) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button[data-target-popup] i,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button.mpwem_location_map_btn i,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button._button_theme_margin_auto i,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button[data-target-popup] span,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button.mpwem_location_map_btn span,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar button._button_theme_margin_auto span {
	color: inherit !important;
	margin: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .mpPopup .popupMainArea {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(26, 26, 31, 0.18);
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .mpPopup .popup_close {
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--mep-loc-text);
	box-shadow: 0 4px 14px rgba(26, 26, 31, 0.12);
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map_area {
	margin: 0;
	background: #fff;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map_area .map_title {
	margin: 0;
	padding: 18px 20px 14px;
	background: #fff;
	border-bottom: 1px solid var(--mep-loc-border);
	color: var(--mep-loc-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	text-transform: none;
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map_area .map_section {
	padding: 16px 18px 18px;
	background: var(--mep-loc-soft);
}

.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map,
.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map_area iframe {
	min-height: 360px;
	max-height: 420px;
	height: 380px;
	border: 1px solid var(--mep-loc-border);
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(26, 26, 31, 0.06);
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar,
	.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar--default {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .mpwem_location_address {
		padding: 11px 12px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar .mpwem_location_address p {
		font-size: 12px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map,
	.default_theme:not(.mep_smart_theme) .mpwem_location_sidebar #mpwem_map_area iframe {
		min-height: 260px;
		max-height: 300px;
		height: 280px;
	}
}

/* ========== Smart Theme — Event Location ========== */
.mep_smart_theme .mpwem_location_sidebar {
	padding: 18px 18px 16px;
	border-top: 1px solid #eef2f7;
	color: #111827;
}

.mep_smart_theme .mpwem_location_sidebar .widgets_title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px !important;
	padding: 0;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #111827 !important;
	text-transform: none;
	letter-spacing: -0.01em;
}

.mep_smart_theme .mpwem_location_sidebar .widgets_title > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 !important;
	border-radius: 10px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 12%, #fff);
	color: var(--color_theme, #2563eb) !important;
	font-size: 14px;
	flex-shrink: 0;
}

.mep_smart_theme .mpwem_location_sidebar > p {
	display: block;
	margin: 0 0 14px !important;
	padding: 12px 14px !important;
	border: 1px solid #e8edf5;
	border-radius: 12px;
	background: #f8fafc;
	color: #374151 !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.55 !important;
}

.mep_smart_theme .mpwem_location_sidebar button[data-target-popup],
.mep_smart_theme .mpwem_location_sidebar button._button_theme_margin_auto,
.mep_smart_theme .mpwem_location_sidebar > button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-width: 0 !important;
	min-height: 46px;
	margin: 0 !important;
	padding: 12px 16px !important;
	border: 1px solid color-mix(in srgb, var(--color_theme, #2563eb) 28%, #e8edf5) !important;
	border-radius: 12px !important;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff) !important;
	color: var(--color_theme, #2563eb) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mep_smart_theme .mpwem_location_sidebar button[data-target-popup]:hover,
.mep_smart_theme .mpwem_location_sidebar button._button_theme_margin_auto:hover,
.mep_smart_theme .mpwem_location_sidebar > button:hover {
	background: var(--color_theme, #2563eb) !important;
	border-color: var(--color_theme, #2563eb) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--color_theme, #2563eb) 24%, transparent) !important;
}

.mep_smart_theme .mpwem_location_sidebar button[data-target-popup] i,
.mep_smart_theme .mpwem_location_sidebar button._button_theme_margin_auto i,
.mep_smart_theme .mpwem_location_sidebar > button i,
.mep_smart_theme .mpwem_location_sidebar button[data-target-popup] span,
.mep_smart_theme .mpwem_location_sidebar button._button_theme_margin_auto span,
.mep_smart_theme .mpwem_location_sidebar > button span {
	color: inherit !important;
	margin: 0 !important;
}

@media (max-width: 640px) {
	.mep_smart_theme .mpwem_location_sidebar {
		padding: 14px;
	}

	.mep_smart_theme .mpwem_location_sidebar > p {
		padding: 11px 12px !important;
		font-size: 12px !important;
	}
}

.mep_speaker_thumbnail {
	display: block;
	text-align: center;
}

.mep_speaker_name {
	text-align: center;
}

.mep_speaker_thumbnail img {
	display: inline-block;
	border-radius: 100%;
	height: 280px;
	border: 5px solid #DDD;
	padding: 3px;
	width: 280px;
}

.mep_events_speaker_wraper {
	max-width: 1100px;
	margin: 40px auto;
	background: #FFF;
	border-radius: 18px;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.09);
	padding: 40px 32px 48px 32px;
}

.mep_events_speaker_wraper .mep_speaker_thumbnail {
	text-align: center;
	margin-bottom: 28px;
}

.mep_events_speaker_wraper .mep_speaker_thumbnail img {
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
	border: 6px solid #F5F5F5;
}

.mep_events_speaker_wraper .mep_speaker_name h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 14px 0;
	text-align: center;
	color: #23272F;
	letter-spacing: 0.5px;
}

.mep_events_speaker_wraper .mep_speaker_details {
	font-size: 1.13rem;
	color: #444;
	margin-bottom: 36px;
	line-height: 1.7;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
}

.mep_events_speaker_wraper .mep_event_list {
	margin-top: 40px;
}

.mep_events_speaker_wraper .mep_cat-details h3 {
	font-size: 1.45rem;
	font-weight: 700;
	color: #1A73E8;
	margin-bottom: 24px;
	text-align: center;
	letter-spacing: 0.2px;
}

.mep_events_speaker_wraper .mage_grid_box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
}

.mep_events_speaker_wraper .mage_grid_box>* {
	background: #FFF;
	border-radius: 14px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.2s, transform 0.2s;
	padding: 0;
	min-width: 0;
}

.mep_events_speaker_wraper .mage_grid_box>*:hover {
	box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
	transform: translateY(-4px) scale(1.025);
}

div.faq_area {
	background-color: #FFF;
	border: 1px solid #F7F7F7;
	border-radius: 12px;
	margin-bottom: var(--dmp);
}

div.faq_area .description {
	padding: var(--dmp_xs) var(--dmp);
}

div.faq_area h2 {
	background: linear-gradient(135deg, #F7F7F7, #F7F7F7);
	color: #333;
	padding: var(--dmp);
	font-size: var(--fs_h5);
	font-weight: normal;
	text-align: left;
	border-radius: 12px 12px 0 0;
}

div.faq_area .faq_items {
	padding: 0;
}

div.faq_area .item {
	background-color: white;
	cursor: pointer;
	color: #333;
	transition: all .5s;
}

div.faq_area .item:hover,
div.faq_area .item:has(.content.mActive) {
	background-color: #F0F0F0;
}

div.faq_area .item .title {
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	color: #333;
	margin: 5px 0;
	border: 1px solid #ede8e8;
	border-radius: 5px;
}

div.faq_area .item .title i {
	color: var(--color_theme);
}

div.faq_area .item .title h3 {
	font-size: var(--fs);
	margin: 0;
}

div.faq_area .item .content {
	padding: var(--dmp_xs) var(--dmp);
}

/* ========== Default Theme — FAQ ========== */
.default_theme:not(.mep_smart_theme) .faq_area {
	--mep-faq-radius: 12px;
	--mep-faq-border: #e6e8ee;
	--mep-faq-bg: #fff;
	--mep-faq-text: #1a1a1f;
	--mep-faq-muted: #6b6b76;
	--mep-faq-soft: #f5f6f8;
	--mep-faq-accent: var(--color_theme, #2563eb);
	--mep-faq-accent-text: var(--color_theme_alter, #fff);
	--mep-faq-shadow: 0 2px 8px rgba(26, 26, 31, 0.05);
	--mep-faq-shadow-hover: 0 10px 24px rgba(26, 26, 31, 0.08);
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 40px 0 0 !important;
	box-shadow: none !important;
}

.default_theme:not(.mep_smart_theme) .faq_area > h2 {
	background: transparent !important;
	background-image: none !important;
	color: var(--mep-faq-text) !important;
	padding: 0 0 6px !important;
	margin: 0 0 4px !important;
	font-size: 1.45rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	text-align: left !important;
	border-radius: 0 !important;
	letter-spacing: -0.02em;
}

.default_theme:not(.mep_smart_theme) .faq_area .description {
	padding: 0 !important;
	margin: 0 0 18px !important;
	color: var(--mep-faq-muted) !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}

.default_theme:not(.mep_smart_theme) .faq_area .description:empty {
	display: none !important;
	margin: 0 !important;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 0;
	padding: 0 !important;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item {
	background: var(--mep-faq-bg) !important;
	border: 1px solid var(--mep-faq-border) !important;
	border-radius: var(--mep-faq-radius) !important;
	box-shadow: var(--mep-faq-shadow) !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	color: var(--mep-faq-text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:hover {
	border-color: color-mix(in srgb, var(--mep-faq-accent) 28%, var(--mep-faq-border)) !important;
	box-shadow: var(--mep-faq-shadow-hover) !important;
	background: var(--mep-faq-bg) !important;
	transform: translateY(-1px);
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:has(.content.mActive) {
	border-color: color-mix(in srgb, var(--mep-faq-accent) 40%, var(--mep-faq-border)) !important;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--mep-faq-accent) 14%, transparent) !important;
	background: var(--mep-faq-bg) !important;
	transform: none;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--mep-faq-text) !important;
	cursor: pointer;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title h3 {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: var(--mep-faq-text) !important;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:has(.content.mActive) .title h3 {
	color: var(--mep-faq-accent) !important;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title > i {
	position: relative;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid var(--mep-faq-border);
	background: var(--mep-faq-soft);
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title > i::before,
.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title > i::after {
	content: '';
	position: absolute;
	background: var(--mep-faq-muted);
	border-radius: 2px;
	transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title > i::before {
	width: 12px;
	height: 2px;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title > i::after {
	width: 2px;
	height: 12px;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:hover .title > i {
	border-color: color-mix(in srgb, var(--mep-faq-accent) 30%, var(--mep-faq-border));
	background: color-mix(in srgb, var(--mep-faq-accent) 8%, #fff);
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:hover .title > i::before,
.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:hover .title > i::after {
	background: var(--mep-faq-accent);
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:has(.content.mActive) .title > i {
	border-color: transparent;
	background: var(--mep-faq-accent);
	transform: none;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:has(.content.mActive) .title > i::before,
.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:has(.content.mActive) .title > i::after {
	background: var(--mep-faq-accent-text);
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:has(.content.mActive) .title > i::after {
	opacity: 0;
	transform: scaleY(0);
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .content {
	padding: 0 18px 16px !important;
	color: var(--mep-faq-muted);
	font-size: 14px;
	line-height: 1.7;
	border-top: 0;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .content.mActive {
	border-top: 1px solid var(--mep-faq-border);
	padding-top: 14px !important;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .content p {
	margin: 0 0 10px;
}

.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .faq_area {
		margin-top: 28px !important;
	}

	.default_theme:not(.mep_smart_theme) .faq_area > h2 {
		font-size: 1.25rem !important;
	}

	.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title {
		padding: 14px 14px !important;
		gap: 10px;
	}

	.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title h3 {
		font-size: 14px !important;
	}

	.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .title > i {
		width: 30px;
		height: 30px;
		border-radius: 8px;
	}

	.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .content {
		padding: 0 14px 14px !important;
	}

	.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item .content.mActive {
		padding-top: 12px !important;
	}

	.default_theme:not(.mep_smart_theme) .faq_area .faq_items .item:hover {
		transform: none;
	}
}

.mep_smart_theme .faq_area {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin: 56px 0 0;
	box-shadow: none;
}

.mep_smart_theme .faq_area > h2 {
	background: transparent !important;
	background-image: none !important;
	color: #111827 !important;
	padding: 0 0 6px !important;
	margin: 0 0 4px !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	text-align: left !important;
	border-radius: 0 !important;
	letter-spacing: -0.02em;
}

.mep_smart_theme .faq_area .description {
	padding: 0;
	margin: 0 0 18px;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.6;
}

.mep_smart_theme .faq_area .description:empty {
	display: none;
	margin: 0;
}

.mep_smart_theme .faq_area .faq_items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 0;
	padding: 0;
}

.mep_smart_theme .faq_area .faq_items .item {
	background: #fff !important;
	border: 1px solid #e8edf5 !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04) !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	color: #111827;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mep_smart_theme .faq_area .faq_items .item:hover {
	border-color: #d7e0ef !important;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07) !important;
	background: #fff !important;
	transform: translateY(-1px);
}

.mep_smart_theme .faq_area .faq_items .item:has(.content.mActive) {
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 35%, #e8edf5) !important;
	box-shadow: 0 14px 32px color-mix(in srgb, var(--color_theme, #2563eb) 16%, transparent) !important;
	background: #fff !important;
	transform: none;
}

.mep_smart_theme .faq_area .faq_items .item .title {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #111827 !important;
	cursor: pointer;
}

.mep_smart_theme .faq_area .faq_items .item .title h3 {
	flex: 1 1 auto;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: #111827 !important;
}

.mep_smart_theme .faq_area .faq_items .item:has(.content.mActive) .title h3 {
	color: var(--color_theme, #2563eb) !important;
}

.mep_smart_theme .faq_area .faq_items .item .title > i {
	position: relative;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid #e5eaf3;
	background: #f8fafc;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mep_smart_theme .faq_area .faq_items .item .title > i::before,
.mep_smart_theme .faq_area .faq_items .item .title > i::after {
	content: '';
	position: absolute;
	background: #64748b;
	border-radius: 2px;
	transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.mep_smart_theme .faq_area .faq_items .item .title > i::before {
	width: 12px;
	height: 2px;
}

.mep_smart_theme .faq_area .faq_items .item .title > i::after {
	width: 2px;
	height: 12px;
}

.mep_smart_theme .faq_area .faq_items .item:hover .title > i {
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 30%, #e5eaf3);
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff);
}

.mep_smart_theme .faq_area .faq_items .item:has(.content.mActive) .title > i {
	border-color: transparent;
	background: var(--color_theme, #2563eb);
	transform: none;
}

.mep_smart_theme .faq_area .faq_items .item:has(.content.mActive) .title > i::before,
.mep_smart_theme .faq_area .faq_items .item:has(.content.mActive) .title > i::after {
	background: #fff;
}

.mep_smart_theme .faq_area .faq_items .item:has(.content.mActive) .title > i::after {
	opacity: 0;
	transform: scaleY(0);
}

.mep_smart_theme .faq_area .faq_items .item .content {
	padding: 0 18px 16px !important;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.7;
	border-top: 0;
}

.mep_smart_theme .faq_area .faq_items .item .content.mActive {
	border-top: 1px solid #eef2f7;
	padding-top: 14px !important;
}

.mep_smart_theme .faq_area .faq_items .item .content p {
	margin: 0 0 10px;
}

.mep_smart_theme .faq_area .faq_items .item .content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.mep_smart_theme .faq_area > h2 {
		font-size: 20px !important;
	}

	.mep_smart_theme .faq_area .faq_items .item .title {
		padding: 14px 14px !important;
		gap: 10px;
	}

	.mep_smart_theme .faq_area .faq_items .item .title h3 {
		font-size: 14px !important;
	}

	.mep_smart_theme .faq_area .faq_items .item .content {
		padding: 0 14px 14px !important;
	}

	.mep_smart_theme .faq_area .faq_items .item .content.mActive {
		padding-top: 12px !important;
	}
}

/****************/
.mep-event-faq-part {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.08);
}

.mep-event-faq-part .faq-body .mep-event-faq-set {
	margin-bottom: 10px;
	border-radius: 8px;
	overflow: hidden;
	border-bottom: 1px solid #EAEAEA;
}

.mep-event-faq-part .faq-body .mep-event-faq-set:last-child {
	border-bottom: 0;
}

.mep-event-faq-part .faq-body .mep-event-faq-set .faq-question {
	padding: 18px 25px;
	background-color: white;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	color: #333;
}

.mep-event-faq-part .faq-body .mep-event-faq-set .faq-question i {
	color: #3B5FE2;
}

.mep-event-faq-part .faq-body .mep-event-faq-set .mep-event-faq-content {
	padding: 18px 25px;
}

.mep-event-faq-part .ex-sec-title {
	margin-bottom: 10px;
}

.mep-event-faq-part .mep-event-faq-set {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #F5F5F5;
}

.mep-event-faq-part .mep-event-faq-set>a {
	display: block;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	cursor: pointer;
}

.mep-event-faq-part .mep-event-faq-set>a i {
	float: right;
	margin-top: 2px;
}

.mep-event-faq-part .mep-event-faq-set>a.active {
	background-color: #F5F5F5;
	color: #000;
}

.mep-event-faq-part .mep-event-faq-content {
	background-color: #FFF;
	border: 1px solid #F5F5F5;
	padding: 10px;
	display: none;
}

.mep-event-tags-widget {
	margin-bottom: 20px;
}

.mep-event-tags-widget .location-title {
	font-size: 16px;
	font-weight: 600;
	margin: 10px;
	margin-left: 9%;
}

.mep-event-tags-list {
	margin: 14px !important;
	padding: 0;
	line-height: 2;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-sidebar-tags {
	padding: 18px 18px 16px;
	border-top: 1px solid #e6e8ee;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-event-tags-widget {
	margin: 0;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-event-tags-widget .location-title {
	margin: 0 0 12px !important;
	padding: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-event-tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 !important;
	padding: 0;
	line-height: 1.3;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-event-tags-list a.mep-tag-link {
	margin: 0;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.mep-event-tags-list a.mep-tag-link {
	display: inline-block;
	padding: 5px 15px;
	margin: 3px 5px 3px 0;
	background: #F5F5F5;
	color: #555;
	border-radius: 4px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid #E0E0E0;
}

.mep-event-tags-list a.mep-tag-link:hover {
	background: var(--color_theme);
	color: #FFF;
	border-color: var(--color_theme);
	transform: translateY(-2px);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mpwem_slider_area div.post_thumb {
	overflow: hidden;
	position: relative;
	background: #f5f5f5;
}

.mpwem_slider_area div.post_thumb img {
	width: 100%;
	height: auto;
	object-fit: cover;
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
}

.mpwem_slider_area {
	margin-top: 0;
}

/* Hidden by default; smart theme enables the loading skeleton */
.mpwem_slider_skeleton {
	display: none;
}

.mep_smart_theme .mpwem_slider_area div.superSlider .sliderAllItem {
	border-radius: 15px;
}

.mep_smart_theme .mpwem_slider_area {
	margin: 0 0 0;
}

.mep_smart_theme .mpwem_slider_area div.superSlider .sliderShowcaseItem {
	border-radius: 15px;
}

.mep_smart_theme .mpwem_slider_area div.superSlider .iconIndicator {
	color: var(--color_6);
}

.mep_smart_theme .mpwem_slider_area div.superSlider .iconIndicator {
	color: var(--color_theme);
}

div.mpwem_related_area {
	margin: 48px 0 var(--dmp) 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

div.mpwem_related_area div.related_item,
div.mpwem_related_area div.slick-track {
	display: -webkit-flex;
	display: flex;
	gap: 0;
}

div.mpwem_related_area div.related_navigation {
	display: -webkit-inline-flex;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

div.mpwem_related_area div.related_navigation button {
	margin: 0;
}

div.mpwem_related_area div.mep-event-list-loop {
	background-color: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	height: auto;
	min-width: auto !important;
}

/* ========== Default Theme — Related Events ========== */
.default_theme:not(.mep_smart_theme) .mpwem_related_area {
	--mep-rel-radius: 14px;
	--mep-rel-border: #e6e8ee;
	--mep-rel-bg: #fff;
	--mep-rel-text: #1a1a1f;
	--mep-rel-muted: #6b6b76;
	--mep-rel-soft: #f5f6f8;
	--mep-rel-accent: var(--color_theme, #2563eb);
	--mep-rel-accent-text: var(--color_theme_alter, #fff);
	--mep-rel-shadow: 0 2px 8px rgba(26, 26, 31, 0.06);
	--mep-rel-shadow-hover: 0 14px 32px rgba(26, 26, 31, 0.12);
	--mep-rel-gap: 14px;
	margin: 48px 0 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-sizing: border-box;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_title {
	display: flex !important;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 22px !important;
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_title_text {
	min-width: 0;
	flex: 1 1 auto;
	padding-left: 0;
	border-left: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_title h3 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 1.45rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--mep-rel-text) !important;
	letter-spacing: -0.02em;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_title_sub {
	display: block !important;
	margin: 6px 0 0 !important;
	padding: 0 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: var(--mep-rel-muted) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button._button_theme_xs,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button.slick-arrow {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--mep-rel-border) !important;
	border-radius: 12px !important;
	background: var(--mep-rel-bg) !important;
	color: var(--mep-rel-text) !important;
	box-shadow: var(--mep-rel-shadow) !important;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button:hover,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button._button_theme_xs:hover {
	background: var(--mep-rel-accent) !important;
	border-color: var(--mep-rel-accent) !important;
	color: var(--mep-rel-accent-text) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px color-mix(in srgb, var(--mep-rel-accent) 28%, transparent) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button span,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button i {
	color: inherit !important;
	font-size: 13px !important;
	line-height: 1 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_item,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_item.mep_event_list {
	margin: 0;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden !important;
	gap: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_item .slick-list {
	/* Pull half-gap outside the clip so first/last cards align with the title */
	margin: 0 calc(var(--mep-rel-gap) / -2) !important;
	padding: 6px 0 12px;
	width: auto !important;
	overflow: hidden !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_item .slick-track {
	display: flex !important;
	align-items: stretch;
	gap: 0 !important;
	margin-left: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_item .slick-slide,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep-event-list-loop,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_grid_item,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_card {
	position: relative !important;
	display: flex !important;
	flex-direction: column;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	/* Outer half-gaps are clipped by the negative list margin above */
	padding: 0 calc(var(--mep-rel-gap) / 2) !important;
	box-sizing: border-box !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
	max-width: none !important;
	min-width: 0 !important;
	float: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_card::before {
	display: none !important;
	content: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__surface {
	display: flex !important;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	height: 100%;
	background: var(--mep-rel-bg) !important;
	border: 1px solid var(--mep-rel-border) !important;
	border-radius: var(--mep-rel-radius) !important;
	box-shadow: var(--mep-rel-shadow) !important;
	overflow: hidden !important;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_card:hover .mep_event_card__surface {
	border-color: color-mix(in srgb, var(--mep-rel-accent) 35%, var(--mep-rel-border)) !important;
	box-shadow: var(--mep-rel-shadow-hover) !important;
	transform: translateY(-4px);
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__media {
	position: relative !important;
	display: block !important;
	flex: 0 0 auto !important;
	width: 100% !important;
	height: 180px !important;
	min-height: 180px !important;
	max-height: 180px !important;
	overflow: hidden !important;
	background: var(--mep-rel-soft) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_thumb {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	max-height: none !important;
	margin: 0 !important;
	overflow: hidden !important;
	background: var(--mep-rel-soft) !important;
	border-radius: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_thumb_img {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 320ms ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_card:hover .mep_list_thumb_img {
	transform: scale(1.05);
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_thumb > [data-bg-image],
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_thumb > div[data-href] {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	opacity: 0 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__category {
	position: absolute !important;
	left: 12px !important;
	bottom: 12px !important;
	z-index: 3 !important;
	display: inline-flex !important;
	align-items: center;
	max-width: calc(100% - 24px);
	padding: 5px 10px !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.94) !important;
	color: var(--mep-rel-text) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 12px rgba(26, 26, 31, 0.12);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__media .mep-ev-start-date,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep-ev-start-date {
	position: absolute !important;
	top: 12px !important;
	left: 12px !important;
	z-index: 3 !important;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	padding: 8px 10px !important;
	border-radius: 12px !important;
	background: var(--mep-rel-accent) !important;
	color: var(--mep-rel-accent-text) !important;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--mep-rel-accent) 35%, transparent);
	line-height: 1.1;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep-ev-start-date .mep-month {
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.92;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep-ev-start-date .mep-day {
	font-size: 20px !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mepev-ribbons {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	left: auto !important;
	z-index: 3 !important;
	display: flex !important;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mepev-ribbon {
	display: inline-flex !important;
	align-items: center;
	gap: 5px;
	padding: 5px 9px !important;
	border-radius: 999px !important;
	background: rgba(17, 17, 19, 0.78) !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	backdrop-filter: blur(6px);
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mepev-ribbon.multidate,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mepev-ribbon.recurring {
	background: rgba(17, 17, 19, 0.78) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_event_details,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__body {
	display: flex !important;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 16px 16px 14px !important;
	box-sizing: border-box;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .event_details_link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 auto;
	min-width: 0;
	text-decoration: none !important;
	color: inherit !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_title {
	margin: 0 0 2px !important;
	padding: 0 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	color: var(--mep-rel-text) !important;
	letter-spacing: -0.015em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep-event-list-loop:hover .mep_list_title {
	color: var(--mep-rel-accent) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_content {
	display: flex !important;
	align-items: flex-start;
	gap: 7px;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	color: var(--mep-rel-muted) !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_content.upcomming_date_only_only {
	color: var(--mep-rel-text) !important;
	font-weight: 600 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_content.upcomming_location {
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_content span.mi,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_content i {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--mep-rel-accent) !important;
	font-size: 12px;
	opacity: 0.9;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_content.upcomming_organizer {
	display: none !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mpwem-price-area,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__footer {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--mep-rel-border);
	flex-wrap: nowrap;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_price_label {
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-rel-muted) !important;
	line-height: 1;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_price_value,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_price_value .amount,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_price_value .woocommerce-Price-amount {
	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	color: var(--mep-rel-accent) !important;
	letter-spacing: -0.02em;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_price_value .woocommerce-Price-currencySymbol {
	color: var(--mep-rel-accent) !important;
	font-weight: 800 !important;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__book {
	display: inline-flex !important;
	align-items: center;
	gap: 4px;
	margin-left: auto;
	padding: 9px 14px;
	border-radius: 10px;
	background: var(--mep-rel-accent);
	color: var(--mep-rel-accent-text) !important;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	flex-shrink: 0;
	transition: filter 150ms ease, transform 150ms ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__book:hover {
	filter: brightness(0.94);
	color: var(--mep-rel-accent-text) !important;
	transform: translateY(-1px);
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__book span {
	transition: transform 150ms ease;
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__book:hover span {
	transform: translateX(2px);
}

.default_theme:not(.mep_smart_theme) .mpwem_related_area .mpwem_status_area,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .mpwem_list_date_list,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .list_calender,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .date_list_area,
.default_theme:not(.mep_smart_theme) .mpwem_related_area .calendar-list-area,
.default_theme:not(.mep_smart_theme) .mpwem_related_area button.mpwem_get_date_list {
	display: none !important;
}

@media (max-width: 640px) {
	.default_theme:not(.mep_smart_theme) .mpwem_related_area {
		--mep-rel-gap: 10px;
		margin-top: 32px;
		padding: 0;
		border-radius: 0;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_title {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_title h3 {
		font-size: 1.25rem !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button,
	.default_theme:not(.mep_smart_theme) .mpwem_related_area .related_navigation button._button_theme_xs {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		border-radius: 10px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__media {
		height: 160px !important;
		min-height: 160px !important;
		max-height: 160px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_event_details,
	.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_event_card__body {
		padding: 14px 14px 12px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .mep_list_title {
		font-size: 15px !important;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_card:hover .mep_event_card__surface {
		transform: none;
	}

	.default_theme:not(.mep_smart_theme) .mpwem_related_area .filter_item.mep_event_card:hover .mep_list_thumb_img {
		transform: none;
	}
}

/* ========== Smart Theme — Related Events (modern) ========== */
.mep_smart_theme .mpwem_related_area {
	--mep-rel-radius: 16px;
	--mep-rel-border: #e8e8ec;
	--mep-rel-bg: #fff;
	--mep-rel-text: #111113;
	--mep-rel-muted: #6b6b76;
	--mep-rel-soft: #f4f4f6;
	--mep-rel-shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
	--mep-rel-shadow-hover: 0 16px 40px rgba(17, 17, 19, 0.1);
	--mep-rel-gap: 16px;
	margin: 56px 0 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.mep_smart_theme .mpwem_related_area .related_title {
	display: flex !important;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 22px !important;
	padding: 0 !important;
	background: transparent !important;
	background-image: none !important;
	border-radius: 0 !important;
}

.mep_smart_theme .mpwem_related_area .related_title_text {
	min-width: 0;
	flex: 1 1 auto;
}

.mep_smart_theme .mpwem_related_area .related_title h3 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--mep-rel-text) !important;
	letter-spacing: -0.02em;
}

.mep_smart_theme .mpwem_related_area .related_title_sub {
	display: block !important;
	margin: 6px 0 0 !important;
	padding: 0 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: var(--mep-rel-muted) !important;
}

.mep_smart_theme .mpwem_related_area .related_navigation {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding: 4px;
	border: 1px solid var(--mep-rel-border);
	border-radius: 999px;
	background: var(--mep-rel-soft);
}

.mep_smart_theme .mpwem_related_area .related_navigation button,
.mep_smart_theme .mpwem_related_area .related_navigation button._button_theme_xs,
.mep_smart_theme .mpwem_related_area .related_navigation button.slick-arrow {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--mep-rel-text) !important;
	box-shadow: var(--mep-rel-shadow) !important;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}

.mep_smart_theme .mpwem_related_area .related_navigation button:hover,
.mep_smart_theme .mpwem_related_area .related_navigation button._button_theme_xs:hover {
	background: var(--mep-rel-text) !important;
	color: #fff !important;
	transform: none;
	box-shadow: none !important;
}

.mep_smart_theme .mpwem_related_area .related_navigation button span,
.mep_smart_theme .mpwem_related_area .related_navigation button i {
	color: inherit !important;
	font-size: 12px !important;
	line-height: 1 !important;
}

.mep_smart_theme .mpwem_related_area .related_item,
.mep_smart_theme .mpwem_related_area .related_item.mep_event_list {
	margin: 0;
	min-width: 0;
	overflow: visible;
	gap: 0 !important;
}

.mep_smart_theme .mpwem_related_area .related_item .slick-list {
	margin: 0 calc(var(--mep-rel-gap) * -1);
	padding: 8px 0 20px;
	overflow: hidden !important;
}

.mep_smart_theme .mpwem_related_area .related_item .slick-track {
	display: flex !important;
	align-items: stretch;
	gap: 0 !important;
}

/* Slide = filter_item: transparent gutter only. Card chrome lives on __surface. */
.mep_smart_theme .mpwem_related_area .related_item .slick-slide,
.mep_smart_theme .mpwem_related_area .mep-event-list-loop,
.mep_smart_theme .mpwem_related_area .filter_item.mep_event_grid_item,
.mep_smart_theme .mpwem_related_area .filter_item.mep_event_card {
	position: relative !important;
	display: flex !important;
	flex-direction: column;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 var(--mep-rel-gap) !important;
	box-sizing: border-box !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

.mep_smart_theme .mpwem_related_area .filter_item.mep_event_card::before {
	display: none !important;
	content: none !important;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__surface {
	display: flex !important;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	height: 100%;
	background: var(--mep-rel-bg) !important;
	border: 1px solid var(--mep-rel-border) !important;
	border-radius: var(--mep-rel-radius) !important;
	box-shadow: var(--mep-rel-shadow) !important;
	overflow: hidden !important;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mep_smart_theme .mpwem_related_area .filter_item.mep_event_card:hover .mep_event_card__surface {
	border-color: transparent !important;
	box-shadow: var(--mep-rel-shadow-hover) !important;
	transform: translateY(-3px);
}

.mep_smart_theme .mpwem_related_area .mep_event_card__media {
	position: relative !important;
	display: block !important;
	flex: 0 0 auto !important;
	width: 100% !important;
	height: 190px !important;
	min-height: 190px !important;
	max-height: 190px !important;
	overflow: hidden !important;
	background: var(--mep-rel-soft) !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.mep_smart_theme .mpwem_related_area .mep_list_thumb {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	max-height: none !important;
	margin: 0 !important;
	overflow: hidden !important;
	background: var(--mep-rel-soft) !important;
	border-radius: 0 !important;
}

.mep_smart_theme .mpwem_related_area .mep_list_thumb_img {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: cover !important;
	object-position: center !important;
	opacity: 1 !important;
	visibility: visible !important;
	transition: transform 500ms ease;
}

.mep_smart_theme .mpwem_related_area .filter_item.mep_event_card:hover .mep_list_thumb_img {
	transform: scale(1.04);
}

/* Keep clickable overlay; hide lazy-bg layer so it cannot cover/collapse the img */
.mep_smart_theme .mpwem_related_area .mep_list_thumb > [data-bg-image],
.mep_smart_theme .mpwem_related_area .mep_list_thumb > div[data-href] {
	position: absolute !important;
	inset: 0 !important;
	z-index: 2 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	background-image: none !important;
	opacity: 1 !important;
	cursor: pointer;
}

.mep_smart_theme .mpwem_related_area .mep_list_thumb > [data-bg-image]::before,
.mep_smart_theme .mpwem_related_area .mep_list_thumb > div[data-href]::before {
	display: none !important;
	content: none !important;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__category {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
	max-width: min(48%, 130px);
	padding: 5px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--mep-rel-text);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__media .mep-ev-start-date,
.mep_smart_theme .mpwem_related_area .mep-ev-start-date {
	position: absolute !important;
	top: 12px !important;
	left: 12px !important;
	right: auto !important;
	bottom: auto !important;
	z-index: 6;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	float: none !important;
	width: auto !important;
	min-width: 48px;
	max-width: 64px;
	margin: 0 !important;
	padding: 7px 8px !important;
	border-radius: 12px !important;
	background: rgba(255, 255, 255, 0.96) !important;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 0 !important;
	box-shadow: 0 4px 16px rgba(17, 17, 19, 0.08) !important;
	color: var(--mep-rel-text);
	line-height: 1.1;
	pointer-events: none;
}

.mep_smart_theme .mpwem_related_area .mep-ev-start-date .mep-month {
	background: transparent !important;
	border-radius: 0;
	font-size: 10px !important;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-rel-muted) !important;
}

.mep_smart_theme .mpwem_related_area .mep-ev-start-date .mep-day {
	font-size: 18px !important;
	font-weight: 800;
	color: var(--mep-rel-text) !important;
}

.mep_smart_theme .mpwem_related_area .mepev-ribbons {
	position: absolute !important;
	top: auto !important;
	left: auto !important;
	right: 12px !important;
	bottom: 12px !important;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	max-width: calc(100% - 24px);
	pointer-events: none;
}

.mep_smart_theme .mpwem_related_area .mepev-ribbon {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 9px;
	border-radius: 8px;
	background: rgba(17, 17, 19, 0.82);
	color: #fff !important;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.mep_smart_theme .mpwem_related_area .mepev-ribbon.multidate,
.mep_smart_theme .mpwem_related_area .mepev-ribbon.recurring {
	background: rgba(37, 99, 235, 0.9);
}

.mep_smart_theme .mpwem_related_area .mep_list_event_details,
.mep_smart_theme .mpwem_related_area .mep_event_card__body {
	position: relative;
	z-index: 1;
	display: flex !important;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	padding: 16px !important;
	box-sizing: border-box;
	gap: 0;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.mep_smart_theme .mpwem_related_area .event_details_link {
	display: flex !important;
	flex-direction: column;
	gap: 6px;
	text-decoration: none !important;
	color: inherit;
	min-height: 0 !important;
	margin-bottom: 0 !important;
	flex: 0 0 auto;
}

.mep_smart_theme .mpwem_related_area .mep_list_title {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	color: var(--mep-rel-text) !important;
	letter-spacing: -0.01em;
	text-transform: none !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mep_smart_theme .mpwem_related_area .mep-event-list-loop:hover .mep_list_title {
	color: var(--mep-rel-text) !important;
}

.mep_smart_theme .mpwem_related_area .list_content {
	display: flex !important;
	align-items: flex-start;
	gap: 7px;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	color: var(--mep-rel-muted) !important;
}

.mep_smart_theme .mpwem_related_area .list_content.upcomming_date_only_only {
	color: var(--mep-rel-text) !important;
	font-weight: 600 !important;
}

.mep_smart_theme .mpwem_related_area .list_content.upcomming_location {
	display: -webkit-box !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mep_smart_theme .mpwem_related_area .list_content span.mi,
.mep_smart_theme .mpwem_related_area .list_content i {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--mep-rel-muted) !important;
	font-size: 12px;
	opacity: 0.8;
}

.mep_smart_theme .mpwem_related_area .list_content.upcomming_organizer {
	display: none !important;
}

.mep_smart_theme .mpwem_related_area .mpwem-price-area,
.mep_smart_theme .mpwem_related_area .mep_event_card__footer {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--mep-rel-border);
	flex-wrap: nowrap;
}

.mep_smart_theme .mpwem_related_area .list_price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.mep_smart_theme .mpwem_related_area .list_price_label {
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-rel-muted) !important;
	line-height: 1;
}

.mep_smart_theme .mpwem_related_area .list_price_value,
.mep_smart_theme .mpwem_related_area .list_price_value .amount,
.mep_smart_theme .mpwem_related_area .list_price_value .woocommerce-Price-amount {
	font-size: 16px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	color: var(--mep-rel-text) !important;
	letter-spacing: -0.02em;
}

.mep_smart_theme .mpwem_related_area .list_price_value .woocommerce-Price-currencySymbol {
	color: var(--mep-rel-text) !important;
	font-weight: 800 !important;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__book {
	display: inline-flex !important;
	align-items: center;
	gap: 4px;
	margin-left: auto;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--mep-rel-text);
	color: #fff !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none !important;
	flex-shrink: 0;
	transition: opacity 150ms ease;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__book:hover {
	opacity: 0.88;
	color: #fff !important;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__book span {
	transition: transform 150ms ease;
}

.mep_smart_theme .mpwem_related_area .mep_event_card__book:hover span {
	transform: translateX(2px);
}

/* Clean related cards: hide secondary list actions */
.mep_smart_theme .mpwem_related_area .mpwem_status_area,
.mep_smart_theme .mpwem_related_area .mpwem_list_date_list,
.mep_smart_theme .mpwem_related_area .list_calender,
.mep_smart_theme .mpwem_related_area .date_list_area,
.mep_smart_theme .mpwem_related_area .calendar-list-area,
.mep_smart_theme .mpwem_related_area button.mpwem_get_date_list {
	display: none !important;
}

@media (max-width: 640px) {
	.mep_smart_theme .mpwem_related_area {
		--mep-rel-gap: 12px;
		margin-top: 40px;
	}

	.mep_smart_theme .mpwem_related_area .related_title {
		align-items: center;
		margin-bottom: 16px !important;
	}

	.mep_smart_theme .mpwem_related_area .related_title h3 {
		font-size: 1.25rem !important;
	}

	.mep_smart_theme .mpwem_related_area .related_title_sub {
		font-size: 13px !important;
	}

	.mep_smart_theme .mpwem_related_area .related_navigation button,
	.mep_smart_theme .mpwem_related_area .related_navigation button._button_theme_xs {
		width: 32px !important;
		height: 32px !important;
		min-width: 32px !important;
	}

	.mep_smart_theme .mpwem_related_area .mep_event_card__media {
		height: 160px !important;
		min-height: 160px !important;
		max-height: 160px !important;
	}

	.mep_smart_theme .mpwem_related_area .mep_list_event_details,
	.mep_smart_theme .mpwem_related_area .mep_event_card__body {
		padding: 14px !important;
	}

	.mep_smart_theme .mpwem_related_area .mep_list_title {
		font-size: 14px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mep_smart_theme .mpwem_related_area .filter_item.mep_event_card:hover .mep_event_card__surface {
		transform: none;
	}

	.mep_smart_theme .mpwem_related_area .filter_item.mep_event_card:hover .mep_list_thumb_img {
		transform: none;
	}
}

.wp-site-blocks>.mage {
	max-width: 100%;
}

div.list_with_filter_section {
	margin: 0 0 20px 0;
}

div.list_with_filter_section div.all_filter_item {
	display: none;
}

.list_with_filter_section.mep_event_list {
	max-width: 1270px;
	margin: auto;
}

.list_with_filter_section [class*=defaultButton] {
	background-color: var(--color_theme);
}

/****************************************/
div.search_result_empty {
	display: none;
	font-weight: 500;
	font-size: 22px;
	color: #6B003E;
}

.search_sort_code_counts {
	display: none;
}

div.search_sort_code {
	position: relative;
	width: 100%;
}

.search_sort_code .search_result_empty {
	display: none;
}

div.search_sort_code .filter_input_area .formControl {
	border: 1px solid #e4e4e9;
	border-radius: 12px;
	height: 46px;
}

div.search_sort_code span.fa {
	margin: 0 7px 0 0;
	font-size: 12px;
}

div.mpwem_related_area div.mpwem_list_date_list .date_list_area.open_list::before {
	display: none;
}

div.mpwem_related_area div.mpwem_list_date_list .list_date_list {
	top: -340px;
}

div.filter_input_area {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border: none;
}

div.filter_input_area:first-child {
	border-bottom-width: 0;
}

div.filter_input_area:last-child {
	border-top-width: 0;
}

div.filter_input_area>* {
	border-right: none;
}

div.filter_input_area>*:last-child {
	border-right: none;
}

/****************************************/
.pagination_area .ellipse_left,
.pagination_area .ellipse_right {
	min-width: 50px;
	background-color: #FFF;
}

.pagination_area .ellipse_left>div,
.pagination_area .ellipse_right>div {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.pagination_area [class*="Button"] {
	padding: 0 15px;
	font-size: 18px;
	cursor: pointer;
	min-width: 150px;
	height: auto;
	min-height: 40px;
	border-radius: 5px;
	font-weight: 500;
	-webkit-appearance: button;
	overflow: visible;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.pagination_area [class*="Button"]:hover {
	opacity: 0.8;
}

.pagination_area button.pagination_load_more {
	border: none;
}

.pagination_area button[class*="defaultButton_xs"] {
	min-width: 50px;
	padding: 0;
	color: var(--color_theme);
	background-color: #FFF;
	border: 1px solid var(--color_theme);
}

.pagination_area button[class*="defaultButton_xs"]:first-child {
	border: none;
}

.pagination_area button[class*="defaultButton_xs"]:last-child {
	border-radius: 0 5px 5px 0 !important;
}

.pagination_area button[class*="defaultButton_xs"].active_pagination {
	color: #000;
	background-color: #DDD;
}

.pagination_area .ellipse_left {
	display: none;
}

.pagination_area button[disabled] {
	cursor: not-allowed;
	opacity: 0.8;
	background-color: #DDD;
}

/****************************************/
.list_with_filter_section div.buttonGroup [class*="Button"] {
	border: none;
	border-left: 2px solid #DDD;
	border-radius: 0;
}

.list_with_filter_section div.buttonGroup {
	position: relative;
	border: 0;
	border-radius: 5px;
	display: -webkit-flex;
	display: flex;
}

div.buttonGroup [class*="Button"]:first-child {
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	border-left: none;
}

.list_with_filter_section .flexEqual {
	display: -webkit-flex;
	display: flex;
}

div.buttonGroup>*,
.list_with_filter_section .flexEqual>* {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.list_with_filter_section ._icon_circle_xs {
	width: 25px;
	height: 25px;
	min-width: 25px;
	background-color: #FF5959;
	color: #FFF;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.list_with_filter_section .sort_code_search_box {
	display: block;
	border: 1px solid #e8e8ec;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
	padding: 16px 18px;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.list_with_filter_section .sort_code_search_box label,
.list_with_filter_section .mep_filter_field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}

.list_with_filter_section .mep_filter_field__label {
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b6b76;
}

.list_with_filter_section .mep_filter_field__control {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.list_with_filter_section .mep_filter_field__icon {
	position: absolute;
	left: 14px;
	z-index: 1;
	color: #6b6b76;
	pointer-events: none;
	font-size: 13px;
	line-height: 1;
}

.list_with_filter_section .mep_filter_field--search .formControl,
.list_with_filter_section .mep_filter_field--date .formControl {
	padding-left: 40px;
}

.list_with_filter_section .mep_filter_field__control--select::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #6b6b76;
	border-bottom: 1.5px solid #6b6b76;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.list_with_filter_section .mep_filter_field__control--select .formControl {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 36px;
	cursor: pointer;
}

.list_with_filter_section .flexEqual.filter_input_area {
	display: grid;
	grid-template-columns: minmax(220px, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px 14px;
	align-items: end;
}

.list_with_filter_section .flexEqual.filter_input_area > * {
	flex: none;
}

.list_with_filter_section [class*="defaultButton"] {
	color: #FFF;
}

.list_with_filter_section [class*="defaultButton_xs"] {
	min-width: auto;
	padding: 7px;
	font-size: 16px;
}

.list_with_filter_section .search_sort_code_area {
	margin: 0 0 18px;
}

.list_with_filter_section .search_sort_code_counts {
	margin: 10px 2px 0;
	font-size: 13px;
	color: #6b6b76;
	text-align: left;
}

.list_with_filter_section .formControl {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	width: 100%;
	font-size: 14px;
	min-width: auto;
	max-width: inherit;
	padding: 0 14px;
	margin: 0;
	color: #111113;
	line-height: 1.25;
	background: #fff;
	border-radius: 12px;
	border: 1px solid #e8e8ec;
	height: 46px;
	box-sizing: border-box;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.list_with_filter_section .formControl:focus {
	outline: none;
	border-color: var(--color_theme, #111113);
	box-shadow: 0 0 0 3px rgba(17, 17, 19, 0.08);
}

.list_with_filter_section .formControl:-webkit-autofill,
.list_with_filter_section .formControl:-webkit-autofill:hover,
.list_with_filter_section .formControl:-webkit-autofill:focus,
.list_with_filter_section .formControl:-webkit-autofill:active {
	-webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
	transition: color 9999s ease-out, background-color 9999s ease-out;
	-webkit-transition-delay: 9999s;
	transition-delay: 9999s;
}

.list_with_filter_section .alignCenter {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.list_with_filter_section .allCenter {
	display: -webkit-flex !important;
	display: flex !important;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.list_with_filter_section label {
	position: relative;
}

.list_with_filter_section span.filter_date_icon {
	position: absolute;
	top: 0;
	right: 0;
	padding: 7px 5px;
	bottom: 0;
	margin: 5px;
	color: #DDD;
	cursor: pointer;
}

.mep_list_event_details {
	min-height: 100px;
	width: 60%;
}

div.mep_list_event_details .mep_list_title {
	color: #191C1F;
	font-size: 22px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
	line-height: 1.25;
	text-transform: none;
	text-align: left;
}

.event_details_link {
	text-align: left;
}

button.mpwem_get_date_list {
	background-color: var(--color_theme);
	color: var(--color_theme_alter);
	border-radius: 10px;
	padding: 12px 15px;
	font-weight: 700;
	font-size: 16px;
	min-width: 174px;
}

.mep_event_list div.mpwem-price-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	flex-wrap: wrap;
}

div.mpwem-price-area .list_price_label {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-self: start;
	text-transform: uppercase;
	color: #434652;
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
}

div.mpwem-price-area .list_price_value {
	font-size: 26px;
	font-weight: 600;
	color: #002869;
	line-height: 1.2;
}

div.mpwem-price-area .mpwem_get_status {
	background-color: var(--color_theme_alter);
	color: var(--color_theme);
	border: 2px solid var(--color_theme);
	border-radius: 10px;
	padding: 10px 15px;
	font-weight: 700;
	font-size: 16px;
	min-width: 130px;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}

button.mpwem_get_status {
	background-color: var(--color_theme);
	color: var(--color_theme_alter);
	border: 1px solid var(--color_theme);
	border-radius: 10px;
	padding: 12px 15px;
	font-weight: 500;
	font-size: 16px;
	min-width: 174px;
	text-align: center;
}

.mpwem_get_status_calender {
	position: relative;
}

.mpwem_get_status_calender .mpwem_get_date_list {
	background-color: #e7e8ec;
	color: #333;
	font-weight: 700;
}

.mpwem_get_status_calender .mpwem_get_date_list:hover,
.mpwem_get_status_calender .mpwem_get_date_list:focus {
	background-color: #e7e8ec;
	color: #000;

}

.calendar-list-area {
	position: absolute;
	left: 0;
	top: calc(100% + var(--dmp_xs));
	max-height: 300px;
	overflow: auto;
	z-index: 1111;
	background: #FFF;
	padding: 10px;
	border: 1px solid var(--color_theme);
	width: auto;
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 2px 5px var(--color_theme);
	width: 100%;
}

div.mpwem_related_area div.mpwem_list_date_list .calendar-list-area {
	top: -250px;
}

.calendar-list-area .list_calender {
	min-width: auto;
	min-height: var(--button_height_xs);
	font-size: var(--fs);
	padding: var(--dmp_xs);
	border: 1px solid var(--color_border);
	background-color: var(--color_section);
	color: var(--color_theme);
	margin-top: var(--dmp_xs);
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.calendar-list-area .list_calender i {
	margin-right: 5px;
}

.mpwem_style.mpwem_list_date_list {
	width: auto;
	margin: 0;
}

button.mpwem_get_date_list i {
	font-size: 16px;
	margin-left: 10px;
}

button.mpwem_get_date_list:focus {
	background-color: var(--color_theme);
	opacity: 1;

}

div.mep_list_event_details div.list_content {
	color: #6b6b6b;
	font-weight: 600;
	font-size: 15px;
	margin: 7px 0;
}

div.mep_list_event_details div.list_content span {
	color: #434652;
	margin: 0 var(--dmp_xs) 0 0;
	font-weight: normal;
}

div.mep_list_event_details div.mep_minimal_list_organizer,
div.mep_list_event_details div.mep_minimal_list_location,
div.mep_list_event_details div.mep_list_event_date {
	color: #505050;
	font-weight: normal;
	font-style: normal;
	font-size: 15px;
	margin: var(--dmp_xxs) 0 0 0;
}

div.mep_list_event_details div.mep_minimal_list_organizer span,
div.mep_list_event_details div.mep_minimal_list_location span,
div.mep_list_event_details div.mep_list_event_date span {
	color: var(--color_theme);
}

/*********************/
div.mep-event-excerpt {
	padding: 0;
	margin: 10px 0;
	font-size: 16px;
}

/*********************/
div.mep-event-list-loop div.item_hover_effect {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	z-index: 1111;
}

div.mep-event-list-loop div.item_hover_effect a {
	font-size: 22px;
	font-weight: 500;
	color: #FFF;
	padding: 15px 30px;
	border-radius: 5px;
	background-color: #346B80;
	transition: 250ms ease-in-out;
	border: 1px solid #FFF;
}

div.mep-event-list-loop div.item_hover_effect a:hover {
	color: #346B80;
	background-color: #FFF;
	border: 1px solid #346B80;
}

div.mep-event-list-loop:hover div.item_hover_effect {
	display: -webkit-flex;
	display: flex;
}

/*********************/
div.mep-event-list-loop .mepev-ribbons {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 11;
}

div.mep-event-list-loop .mepev-ribbons .mepev-ribbon {
	padding: 5px 10px;
	color: #333;
	background: rgba(255, 255, 255, 0.667);
	text-align: center;
	border-radius: 50px;
	border: 1px solid #d2d2d2;
	font-size: 14px;
	font-weight: 500;
}

div.mep-event-list-loop .mepev-ribbons .mepev-ribbon:nth-child(2) {
	background: rgba(96, 70, 255, 0.6666666667);
}

div.mep-event-list-loop .mepev-ribbons .mepev-ribbon.sold-out {
	background: rgba(255, 70, 70, 0.6666666667);
}

/*********************/
div.mep-ev-start-date {
	background: var(--color_theme);
	color: var(--color_7);
	position: absolute;
	top: 10px;
	;
	left: 10px;
	text-align: center;
	padding: 5px 10px;
	z-index: 11;
	border-radius: 12px;
}

div.mep-ev-start-date .mep-day {
	font-weight: bold;
	font-size: 30px;
	line-height: 1.2;
}

div.mep-ev-start-date .mep-month {
	background: var(--color_theme);
	text-transform: uppercase;
	color: var(--color_theme_alter);
	border-radius: 12px;
	font-weight: 500;
	font-size: 14px;
}

.mep_smart_theme div.mep-ev-start-date .mep-month {
	background: transparent !important;
	border-radius: 0;
}

/*********************/
div.mpwem_list_date_list {
	position: relative;
	margin: var(--dmp_xs) 0 0 0;
}

div.mpwem_list_date_list .list_date_list {
	position: absolute;
	left: 0;
	top: calc(100% + var(--dmp_xs));
	max-height: 300px;
	overflow: auto;
	z-index: 1111;
	background: #FFF;
	padding: 10px;
	border: 1px solid var(--color_theme);
	width: auto;
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 10px 25px var(--color_theme);
	width: 100%;
}

div.mpwem_list_date_list .date_list_area {
	position: relative;
}

div.mpwem_list_date_list .date_list_area.open_list:before {
	content: "";
	position: absolute;
	top: 0;
	left: var(--dmp);
	transform: translateX(-50%);
	border-left: var(--dmp_xs) solid transparent;
	border-right: var(--dmp_xs) solid transparent;
	border-bottom: var(--dmp_xs) solid var(--color_theme);
}

div.mpwem_list_date_list .date_list_area .date_item {
	background-color: var(--color_light);
	padding: var(--dmp_xs);
	margin: 0 0 var(--dmp_xs) 0;
}

div.mpwem_list_date_list .date_list_area .date_item:last-child {
	margin: 0;
}

div.mpwem_list_date_list .date_list_area .date_item:hover {
	background-color: var(--color_section);
	color: var(--color_theme);
}

/*********************/
.mep-list-header {
	position: relative;
	padding: 0 0 0 20px;
}

.mep-list-header:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	height: 100%;
}

.mep_event_list_item .mep-list-header {
	padding: 0;
}

.mep_event_grid_item .mep-list-header {
	padding: 0;
}

.mep_event_list_item .mep-list-header:before,
.mep_event_grid_item .mep-list-header:before {
	border-color: var(--color_theme);
}

/*********************/
div.one_column {
	display: -webkit-flex;
	display: flex;
	width: 100%;
	margin: 0 0 18px 0;
}

div.three_column {
	width: calc(33.33% - 18px) !important;
	margin: 0 15px 15px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}

div.column_style {
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

div.two_column {
	width: calc(50% - 18px);
	margin: 0 15px 15px 0;
}

div.four_column {
	width: calc(25% - 18px);
	margin: 0 15px 15px 0;
}

.mep-event-list-loop.column_style {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*********************/
/*********************/
.mep_event_title_list_item {
	display: block;
	overflow: hidden;
	width: 100%;
}

.mep_event_title_list_item a {
	display: block;
	font-size: 18px;
	border-bottom: 1px dashed #333;
}

.mep_event_title_list_item a {
	display: block;
	font-size: 18px;
	border-bottom: 1px dashed #DDD !important;
	padding: 10px 0;
	color: #333 !important;
}

/*********************/
p.mep_list_title,
h2.mep_list_title {
	font-size: 18px;
	font-weight: 700 !important;
	padding: 0 0 5px 0;
}

p.mep_list_title:before,
h2.mep_list_title:before {
	display: none;
}

/*********************/
.mep_list_thumb {
	width: 40%;
	position: relative;
	min-height: 100px;
	overflow: hidden;
}

.mep_list_thumb a {
	height: 100%;
}

.mep_list_thumb .dLoader {
	display: none !important;
}

.mep_event_list .mep_list_thumb img,
.mep_list_thumb img {
	height: auto;
	width: auto;
	max-width: 100%;
	border-radius: 0;
}

div.column_style .mep_list_thumb img {
	height: 160px;
}

.mep_event_grid_item .mep_list_thumb {
	border-radius: 5px 5px 0 0;
	width: 100%;
	height: 270px;
}

.mep_event_list_item .mep_list_thumb {
	border-radius: 5px 0 0 5px;
}

/*********************/
.mp_event_more_date_list {
	list-style: none;
	padding: 5px;
}

.mp_event_more_date_list:hover {
	background-color: #FFF;
}

.mp_event_more_date_list li {
	font-size: 12px;
	position: relative;
	padding-left: 10px;
	margin: 0;
}

.mp_event_more_date_list li .mep-more-date:hover {
	color: var(--color_theme);
}

.mp_event_more_date_list li .mep-more-date p {
	margin: 5px;
	font-size: 12px;
}

.mp_event_more_date_list li .mep-more-time {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	padding-left: 30px;
}

.mp_event_more_date_list li .mep-more-time .time {
	position: relative;
	padding-left: 10px;
}

.mp_event_more_date_list li .mep-more-time .time::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50px;
	margin-right: 5px;
	background-color: #AAA;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

ul.mp_event_more_date_list {
	position: absolute;
	top: 99%;
	left: 0;
	right: 0;
	z-index: 111111;
	background-color: #FFF;
	padding: 10px;
	border-radius: 0 0 10px 10px;
	max-height: 250px;
	overflow: auto;
	box-shadow: 0 4px 5px #AAA;
}

ul.mp_event_more_date_list li {
	border-bottom-color: #D3D3D3;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

ul.mp_event_more_date_list li:hover i {
	color: var(--color_theme);
}

ul.mp_event_more_date_list li span i {
	margin: 0 7px 0 0;
	padding: 0;
}

ul.mp_event_more_date_list li span,
span.mep-more-date {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin: 5px 0;
	padding: 0;
}

span.mep-more-date i,
span.mep-more-time i {
	margin: 0 7px 0 0;
	padding: 0;
}

ul.mep-more-date-lists li span i {
	display: inline-block;
	text-align: center;
	padding: 6px 0 0 0;
	margin: 0;
}

ul.mep-more-date-lists li span {
	margin-right: 5px;
}

ul.mep-more-date-lists li {
	display: block;
	border-bottom: 1px dashed #DDD;
	padding: 5px 0;
}

h3.mep_list_date {
	font-size: 16px;
	font-weight: bold;
	color: var(--color_theme);
	margin: 5px 0 0 0;
}

p.mep_list_date {
	font-size: 16px;
	font-weight: bold;
	color: var(--color_theme);
	margin: 5px 0 0 0;
}

h3.mep_list_date i {
	background: var(--color_theme);
	color: var(--color_7);
}

p.mep_list_date i {
	color: var(--color_theme);
}

/*************************/
/*********************/
.mep_list_event_details h2,
.mep_list_event_details h3,
.mep_list_event_details h4,
.mep_list_event_details h6 {
	padding: 0;
	margin: 0;
	color: inherit;
}

.mep_list_event_details a {
	color: #000;
	overflow: hidden;
}

.mep_list_event_details p {
	white-space: nowrap;
	font-size: 15px;
	font-weight: 500;
	overflow: hidden;
}

.mep_list_event_details p.read-more a {
	color: var(--color_theme);
}

.mep_list_event_details p.read-more a:hover {
	color: #DDD;
}

.mep_event_grid_item .mep_list_event_details {
	margin: 0;
	height: auto;
	width: auto;
	padding: 20px;
}

[data-column="4"] .mep_event_grid_item .mep_list_event_details {
	padding: 10px;
}

.mep_event_list_item .mep_list_event_details {
	padding: 10px;
}

.mep_event_winter_list .mep_list_event_details {
	width: auto;
	float: left;
	display: block;
	padding: 10px;
	margin: 0;
}

.mep_event_spring_list .mep_list_event_details.mep_list_details_col_one i {
	margin-right: 5px;
}

/*********************/
.mep-list-footer {
	padding: 10px 0 0 0;
}

.mep-list-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mep-list-footer ul li {
	margin: 7px 0 0 0;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.mep-list-footer ul li i {
	color: var(--color_theme);
	background: transparent !important;
	font-size: 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-justify-content: center;
	justify-content: center;
}

.mep-list-footer h5 {
	text-transform: capitalize;
}

.mep-list-footer h6 {
	text-transform: capitalize;
}

.mep-list-footer ul li h5 {
	display: inline;
	font-size: 14px;
	font-weight: 600;
	padding: 0 5px 0 0;
	margin: 0
}

.mep-list-footer ul li h6 {
	font-size: 15px;
	font-weight: 600;
	display: inline;
	margin: 0
}

.mep-list-footer ul li p {
	display: inline;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	padding: 0 5px 0 0;
}

.mep-list-footer .mep-more-date-lists li i {
	display: inline-block;
	padding: 6px 5px 5px 6px;
}

.mep-list-footer ul li div {
	display: inline-block;
}

/*********************/
.owl-item div.two_column,
.owl-item div.three_column,
.owl-item div.four_column {
	width: 100%;
	padding: 0;
	margin: 0 20px;
}

.owl-item {
	background: transparent;
}

.mep_event_list_sec .owl-theme {
	position: relative;
}

/*********************/
.mep_event_list .mep_list_date .mep_minimal_list_organizer {
	color: #505050;
	font-weight: normal;
}

.mep_event_list .mep_list_date {
	color: var(--color_theme);
}

.mep_event_list .mep_event_list_sec,
.mep_event_list div,
.mep_event_list a {
	display: block;
}

div.mep_event_list a {
	border: none;
	text-decoration: none !important;
	box-shadow: none;
}

.mep_event_list button.owl-prev {
	position: absolute;
	top: 25%;
	left: -45px;
	padding: 20px;
	display: block;
	width: 50px;
	font-size: 70px !important;
}

.mep_event_list button.owl-next {
	position: absolute;
	top: 25%;
	right: -32px;
	font-size: 70px !important;
}

div.mep_event_list div.mage_grid_box {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.mep_event_list .owl-item .mep_more_date_btn {
	margin-top: 10px;
	margin-bottom: 10px;
}

.mep_event_list button.owl-next {
	right: -30px;
}

.mep_event_list button.owl-prev {
	left: -30px;
}

.mep_event_list .owl-nav>button {
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin-top: 25px !important;
	background: #FFF !important;
	border-radius: 50% !important;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25) !important;
	border: none !important;
	outline: 0;
}

.mep_event_list .owl-nav>button:hover {
	background: var(--color_theme) !important;
}

.mep_event_list .owl-nav i,
.mep_event_list button.owl-next,
.mep_event_list button.owl-prev {
	font-size: 14px !important;
}

.mep_event_list .owl-dots button.active {
	background: var(--color_theme);
}

.mep_event_list .owl-dots button {
	width: 15px;
	height: 15px;
	display: inline-block;
	background: #CFCFD0 !important;
	margin-right: 5px;
	border-radius: 50%;
	position: relative;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	outline: 0;
}

.mep_event_list .owl-dots button.active::before {
	border-bottom-color: var(--color_theme);
}

.mep_event_list .owl-dots button::before {
	position: absolute;
	content: "";
	top: -10px;
	border: 7px solid transparent;
	left: 52%;
	transform: translateX(-50%);
	border-bottom-color: #CFCFD0;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
}

.mep_event_list .owl-dots button span {
	display: none !important;
}

.mep_event_list .owl-dots {
	margin: auto;
}

/***********************/
.mep_event_list_item {
	border: 1px solid #DDD;
	padding: 0;
	margin: 10px 0;
}

.mep_event_list_item:hover {
	border-color: var(--color_theme);
}

.mep_event_list_item .mep-list-footer {
	padding: 0;
	margin: 0;
	margin-top: 20px;
}

.mep_event_list_item .mep-list-footer .mep_list_org_name {
	margin: 0;
}

.mep_event_list_item .mep_list_org_name,
.mep_event_list_item .mep_list_location_name,
.mep_event_list_item .mep_list_event_date {
	display: flex;
	align-items: center;
	margin: 0;
}

.mep_event_list_item .mep-list-footer-ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 10px;
}

/*******************/
.mage_grid_box {
	margin: 0;
}

.mage_grid_box .blank_div {
	margin: 0 20px 0 0;
}

.mage_grid_box .blank_div:last-child {
	margin: 0 0 15px 0;
}

div.mep_event_list div.mage_grid_box img {
	min-height: auto;
}

div.mep_event_list div.mage_grid_box>div {
	width: 100%;
}

/*******************************/
.mep_event_grid_item .mep-list-footer-ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 5px 10px;
}

.mep_event_grid_item .mep_list_org_name,
.mep_event_grid_item .mep_list_location_name {
	gap: 10px;
}

.mep_event_grid_item .mep_list_event_date h5,
.mep_event_grid_item .mep_list_event_date p {
	display: block;
}

.mep_event_grid_item.filter_item {
	border: 1px solid #E2E2E2;
	background-color: #FFF;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.mep_list_event_details a.event_details_link {
	display: block;
	min-height: 0 !important;
	margin-bottom: 0 !important;
}

.mep_smart_theme .mep_list_event_details a.event_details_link {
	min-height: 0 !important;
	margin-bottom: 0 !important;
}

.mep_event_grid_item .mep-list-footer {
	padding: 0;
}

.mep_event_grid_item span.mep_waitlist_label.mep-tem3-title-sec {
	max-width: 50%;
	border-radius: 0 0 0 25px;
}

.mage_grid_box.owl-theme.owl-carousel.owl-loaded.owl-drag div.owl-dots {
	width: auto;
}

/***********************************/
div.mep_event_winter_list {
	width: 100%;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	min-height: 160px;
	position: relative;
	padding: 0;
}

div.mep_event_winter_list:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	border: none;
}

.mep_event_winter_list .mep_list_date_wrapper {
	float: left;
	width: 24%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mep_event_winter_list .mep_list_date_wrapper .mep_list_date {
	color: #FFF;
}

.mep_event_winter_list .mep_list_date_wrapper .mep_winter_list_date {
	color: #FFF;
	display: flex;
	flex-direction: column;
}

.mep_event_winter_list .mep_list_date_wrapper .mep_winter_list_dd {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 4px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mep_event_winter_list .mep_list_winter_thumb_wrapper {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 20px;
	overflow: hidden;
	position: relative;
	border: 4px solid white;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
	background: linear-gradient(135deg, #667EEA, #764BA2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2.5rem;
}

.mep_event_winter_list .mep_list_winter_thumb {
	width: 200px;
	height: 200px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	margin: auto;
}

.mep_event_winter_list .mep_list_title {
	margin: 0;
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: bold;
	color: #1A202C;
	line-height: 1.3;
	padding: 0;
}

.mep_event_winter_list .mep_price {
	margin: 0;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	color: #059669;
}

.mep_event_winter_list .mep_list_details_wrapper {
	display: flex;
	justify-content: space-between;
}

.mep_event_winter_list .mep_list_details_col_one i {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

.mep_event_winter_list .mep_list_details_wrapper p {
	color: #64748B;
	margin: 5px 0;
}

.mep_event_winter_list .mep_list_details_wrapper p a {
	color: #64748B;
}

.mep_event_winter_list .mep_list_details_wrapper p i {
	color: var(--color_theme);
}

.mep_event_winter_list .mep_list_details_wrapper .mep-tem3-title-sec {
	margin: 10px 0;
	border-radius: 20px;
	padding: 0 10px;
}

.mep_event_winter_list .mep_list_details_wrapper .mp_event_visible_event_time {
	margin-top: 10px;
	display: block;
}

.mep_event_winter_list .mep_list_details_wrapper ul.mp_event_more_date_list {
	top: 0;
	right: 0;
	left: 80%;
}

/********************************************/
.mep_event_spring_list .mep_list_date_wrapper {
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(var(--color_theme), #FE7541);
	width: 24%;
	padding: 10px;
}

.mep_event_spring_list .mep_list_date_wrapper .mep_list_date {
	color: #FFF;
}

.mep_event_spring_list .mep_more_date_btn.mep-tem3-title-sec.mp_event_hide_event_time {
	display: none;
}

.mep_event_spring_list .mep_more_date_btn {
	margin-left: 0;
	border-radius: 0;
}

.mep_event_spring_list .mep_more_date_btn:before {
	border-radius: 0;
}

.mep_event_spring_list .mp_event_hide_event_time {
	position: absolute;
	z-index: 999999;
	right: 15px;
	top: 5px;
	margin-top: 0;
	height: 38px;
}

.mep_event_spring_list ul.mp_event_more_date_list {
	bottom: 100%;
	height: 100%;
}

.mep_event_spring_list ul.mp_event_more_date_list li {
	padding: 5px;
}

.mep_event_spring_list .mep_more_date_btn {
	background-color: #FFF;
}

.mep_event_spring_list .mep_more_date_btn.mp_event_visible_event_time {
	border-radius: 50px;
}

.mep_event_spring_list .mep_spring_list_date {
	color: #FFF;
}

.mep_event_spring_list {
	width: 100%;
	overflow: visible;
	padding: 0;
	background: #FCFCFC;
}

.mep_event_spring_list .mep_list_spring_thumb {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	margin: auto;
}

.mep_spring_event_time,
.mep_spring_event_location,
.mep_spring_event_date {
	display: flex;
	align-items: start;
	margin-bottom: 10px;
}

div.mep_event_list_item div.spring_area {
	display: -webkit-flex;
	display: flex;
	width: 100%;
	padding: 0;
}

div.spring_area .spring_item_1 {
	background-color: var(--color_theme);
	border-radius: var(--dbr) 0 0 var(--dbr);
	width: 25%;
}

div.spring_area .spring_item_1 h5 {
	margin: 0;
	color: #FFF;
}

div.spring_area .spring_item_2 {
	padding: var(--dmp_xs);
	width: 25%;
}

div.spring_area .spring_item_3 {
	padding: var(--dmp_xs);
	width: 30%;
}

div.spring_area .spring_item_4 {
	padding: var(--dmp_xs);
	width: 20%;
}

div.mep_event_winter_list div.spring_area .spring_item_2 {
	width: 51%;
}

div.spring_area.mep_list_event_details .mep_list_thumb {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	margin: auto;
}

div.mep-event-list-loop div.spring_area .mepev-ribbons {
	position: relative;
}

div.mep-event-list-loop div.spring_area .mepev-ribbons i {
	margin: 0 var(--dmp_xs) 0 0;
}

/***********************************/
.mep_event_minimal_list .mep_list_event_details {
	width: calc(100% - 60px);
	min-height: auto;
}

.mep_event_minimal_list .mep_list_thumb {
	width: 52px;
	position: relative;
	order: 2;
	display: -webkit-flex;
	display: flex;
}

.mep_event_minimal_list .mep-ev-start-date {
	right: 0;
	left: inherit;
	top: 0;
	border-radius: 0 4px 0 0;
}

.mep_event_minimal_list {
	width: 100%;
	padding: 10px;
}

.mep_event_minimal_list:hover {
	background: #F2F2F2;
}

.mep_event_minimal_list h2 {
	color: #000;
	font-weight: bold;
}

.mep_event_minimal_list h3.mep_list_date i {
	background: transparent;
}

.mep_event_minimal_list .mep_more_date_btn {
	padding: 2px 5px;
	margin: 10px 0 0 0;
	width: 233px;
	position: relative;
}

.mep_event_minimal_list ul.mep-more-date-lists {
	margin: 0;
}

.mep_event_minimal_list .mep_more_date_btn {
	width: max-content;
	padding: 0 15px 0 15px !important;
}

div.mep_event_minimal_list {
	display: -webkit-flex;
	display: flex;
}

span.mep_minimal_list_date {
	color: #505050;
	font-weight: normal;
	font-style: normal;
}

/***********************************/
div.mep_event_timeline_list {
	position: relative;
}

.mep_event_timeline_list .mep-list-header {
	padding: 0;
}

.mep_event_timeline_list .mep_list_thumb {
	width: 100%;
	margin-bottom: 15px;
}

.mep_event_timeline_list .mep_minimal_list_location {
	margin: 10px 0;
}

.mep_event_timeline_list .mep_minimal_list_location i {
	padding-right: 10px;
}

.mep_event_timeline_list .mep_list_event_details {
	width: 100%;
	padding: 0;
	margin: 0;
}

.default_theme .mep-default-sidrbar-price-seat,
.mep-default-sidebar-address,
.mep-default-sidrbar-social {
	border-bottom: 1px solid #F0F2F5;
}

.default_theme .mep-default-sidrbar-price-seat .setas-info {
	padding: 14px;
	background-color: transparent;
	border-radius: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.default_theme .mep-default-sidrbar-price-seat .setas-info .total-seats,
.default_theme .mep-default-sidrbar-price-seat .setas-info .available-seats {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 0;
	padding: 12px 10px;
	border: 1px solid #e6e8ee;
	border-radius: 12px;
	background: #f5f6f8;
}

.default_theme .mep-default-sidrbar-price-seat .setas-info .total-seats > div,
.default_theme .mep-default-sidrbar-price-seat .setas-info .available-seats > div {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	color: #6b6b76;
	letter-spacing: 0.02em;
}

.default_theme .mep-default-sidrbar-price-seat .setas-info .total-seats strong,
.default_theme .mep-default-sidrbar-price-seat .setas-info .available-seats strong {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.1;
	color: #1a1a1f;
	letter-spacing: -0.03em;
}

.default_theme .mep-default-sidrbar-price-seat .setas-info:not(:has(.available-seats)) {
	grid-template-columns: 1fr;
}

.mep-default-sidrbar-price-seat {
	text-align: center;
}

.mep-default-sidrbar-price-seat {
	text-align: center;
	padding: 15px;
}

.mep_event_timeline_list h3.mep_list_date i {
	background: transparent;
}

.mep_event_timeline_list h3.mep_list_date {
	margin-bottom: 10px;
}

.mep_event_timeline_list ul.mep-more-date-lists {
	margin: -5px 0 0 0;
	border-top: 1px dashed #DDD;
}

.mep_event_timeline_list .mep_minimal_list_date,
.mep_event_timeline_list .mep_minimal_list_organizer {
	margin: 10px 0;
}

.mep_event_timeline_list .mep_minimal_list_date i,
.mep_event_timeline_list .mep_minimal_list_organizer i {
	padding-right: 10px;
}

.mep_event_timeline_list .mep-ev-start-date {
	left: var(--dmp_xs);
	top: var(--dmp_xs);
	z-index: 99999;
}

/***********************************/
div.mep_event_native_list {
	display: -webkit-flex;
	display: flex;
	width: 100%;
}

div.mep_event_native_list .mep_list_event_details {
	width: calc(100% - 150px);
	min-height: auto;
}

div.mep_event_native_list .mep_list_thumb {
	width: 150px;
	min-height: auto;
}

div.mep_event_native_list .mep_list_event_details a {
	border-left: 2px solid var(--color_theme);
	padding: 0 0 0 var(--dmp_xs);
}

.mep_event_native_list .mep_list_thumb img,
.owl-carousel .owl-item .mep_event_native_list .mep_list_thumb img {
	border: 3px solid #DDD;
	padding: 1px;
	border-radius: inherit;
	height: auto;
	width: auto;
}

.mep_event_native_list h2 {
	color: #000;
	font-weight: bold;
}

.mep_event_native_list h3.mep_list_date i {
	background: transparent;
}

.mep_event_native_list .mep_more_date_btn {
	padding: 2px 5px;
	width: 233px;
	position: relative;
}

.mep_event_native_list ul.mep-more-date-lists {
	margin: 0;
}

.mep_event_native_list .mep_more_date_btn {
	width: max-content;
	padding: 0 15px 0 15px !important;
}

div.mep_event_native_list .mep-list-header {
	padding-left: 10px;
}

.mep_event_native_list .mep-list-header::before {
	border-left: 2px solid;
}

.mep_city_filter_page {
	margin-top: 78px;
}

.mep-city-list {
	--mep-city-accent: var(--color_theme, #6c5ce7);
	--mep-city-text: #111113;
	--mep-city-muted: #777773;
	--mep-city-border: #e7e7e3;
	--mep-city-bg: #ffffff;
	--mep-city-soft: color-mix(in srgb, var(--mep-city-accent) 12%, #fff);
	--mep-city-surface: #f6f6f3;
	display: block;
	width: 100%;
}

.mep-city-list ul,
.mep-city-list .mep-city-list__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mep-city-list[data-count="1"] .mep-city-list__grid,
.mep-city-list[data-count="2"] .mep-city-list__grid,
.mep-city-list[data-count="3"] .mep-city-list__grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mep-city-list .mep-city-list__cell {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

.mep-city-list ul li a,
.mep-city-list .mep-city-list__item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--mep-city-border);
	border-radius: 20px;
	background: var(--mep-city-bg);
	color: var(--mep-city-text);
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(11, 11, 13, 0.04);
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.mep-city-list ul li a:hover,
.mep-city-list ul li a:focus-visible,
.mep-city-list .mep-city-list__item:hover,
.mep-city-list .mep-city-list__item:focus-visible {
	border-color: transparent;
	box-shadow: 0 20px 40px rgba(11, 11, 13, 0.1);
	transform: translateY(-4px);
	color: var(--mep-city-text);
	outline: none;
}

.mep-city-list .mep-city-list__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	padding: 28px 20px 20px;
	background:
		radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--mep-city-accent) 22%, transparent), transparent 55%),
		linear-gradient(160deg, var(--mep-city-soft), var(--mep-city-surface));
}

.mep-city-list .mep-city-list__initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: var(--mep-city-bg);
	color: var(--mep-city-accent);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--mep-city-accent) 16%, transparent);
}

.mep-city-list .mep-city-list__pin {
	position: absolute;
	right: 16px;
	top: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--mep-city-accent);
	font-size: 13px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.mep-city-list .mep-city-list__icon,
.mep-city-list .mep-city-list__icon i,
.mep-city-list li i {
	margin: 0;
	color: inherit;
}

.mep-city-list .mep-city-list__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	flex: 1;
	padding: 18px 20px 8px;
}

.mep-city-list .mep-city-list__name {
	display: block;
	font-size: 22px;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--mep-city-text);
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: none;
}

.mep-city-list .mep-city-list__hint {
	display: block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--mep-city-muted);
	line-height: 1.35;
}

.mep-city-list .mep-city-list__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding: 14px 20px 18px;
}

.mep-city-list .mep-city-list__cta-text {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mep-city-accent);
}

.mep-city-list .mep-city-list__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 999px;
	background: var(--mep-city-text);
	color: #fff;
	font-size: 12px;
	opacity: 1;
	transition: transform 0.22s ease, background 0.22s ease;
}

.mep-city-list .mep-city-list__item:hover .mep-city-list__chevron,
.mep-city-list .mep-city-list__item:focus-visible .mep-city-list__chevron {
	opacity: 1;
	transform: translateX(3px);
	background: var(--mep-city-accent);
}

@media only screen and (max-width: 640px) {
	.mep-city-list ul,
	.mep-city-list .mep-city-list__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mep-city-list .mep-city-list__media {
		min-height: 96px;
		padding: 22px 18px 16px;
	}

	.mep-city-list .mep-city-list__initial {
		width: 56px;
		height: 56px;
		font-size: 24px;
		border-radius: 16px;
	}

	.mep-city-list .mep-city-list__name {
		font-size: 20px;
	}

	.mep-city-list .mep-city-list__body {
		padding: 16px 18px 6px;
	}

	.mep-city-list .mep-city-list__cta {
		padding: 12px 18px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mep-city-list ul li a,
	.mep-city-list .mep-city-list__item,
	.mep-city-list .mep-city-list__chevron {
		transition: none;
	}

	.mep-city-list ul li a:hover,
	.mep-city-list .mep-city-list__item:hover {
		transform: none;
	}

	.mep-city-list .mep-city-list__item:hover .mep-city-list__chevron {
		transform: none;
	}
}

.mep-hidden {
	display: none !important;
}

span.mep_warning {
	text-align: center;
	display: block;
	border: 1px solid #005373;
	color: #005373;
	font-weight: bold;
	font-size: 15px;
	padding: 20px 0;
	text-transform: capitalize;
}

.mep-low-stock-warning {
	background: linear-gradient(135deg, #FF6B6B, #EE5A52);
	color: #FFFFFF;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-align: center;
	margin: 3px 0;
	box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
	position: relative;
	overflow: hidden;
	animation: pulse-warning 2s infinite;
	width: 40%;
}

.mep-low-stock-warning::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer 2s infinite;
}

@keyframes pulse-warning {
	0% {
		transform: scale(1);
		box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
	}

	50% {
		transform: scale(1.02);
		box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
	}
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.mep-limited-availability-ribbon {
	background: linear-gradient(135deg, #FFA726, #FF9800);
	color: #FFFFFF;
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	margin: 2px 0;
	box-shadow: 0 1px 3px rgba(255, 167, 38, 0.3);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mep-limited-availability-ribbon::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shimmer-ribbon 3s infinite;
}

@keyframes shimmer-ribbon {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.woocommerce-cart td.product-name dl dt {
	display: block !important;
	float: none !important;
	margin-top: 20px;
}

.button.button-default.woocommerce.button.alt.button.alt.btn-mep-event-cart {
	background: var(--color_theme);
	border: 1px solid var(--color_theme);
	line-height: 1.2;
	font-weight: bold;
	height: auto;
	min-width: auto;
	outline: 0;
	padding: 15px;
	margin: 10px auto;
	display: block;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	max-width: 100%;
	border-radius: 10px;
}

div.slick-list {
	width: 100% !important;
}

.mep-event-countdown-timer .wrapper div span {
	display: block;
	padding: 10px;
}

.mep-event-countdown-timer .wrapper div span span.label {
	border: 0 !important;
}

.mep-event-countdown-timer {
	width: 100%;
	overflow: hidden;
}

.mep-event-countdown-timer .wrapper div {
	width: 24%;
	text-align: center;
	display: inline-block !important;
}

.mep-event-countdown-timer .wrapper {
	min-height: 100px;
	vertical-align: middle;
	margin: 0 10px;
	padding-top: 14px;
}

.mep-event-countdown-timer .wrapper .time {
	display: block;
	font-weight: bold;
	font-size: 24px;
	margin: 0;
	padding: 0;
}

.mep-event-countdown-timer .wrapper div span.label {
	display: block;
	font-weight: bold !important;
	margin-top: 10px;
}

.mep-event-countdown-timer .wrapper div {
	font-size: 40px;
}

.mep-event-countdown-timer .wrapper .label {
	font-size: 18px;
	text-transform: capitalize;
}

/***********************************************************************************************/
button.single_add_to_cart_button {
	background: var(--color_theme);
	border: 1px solid var(--color_theme);
	outline: 0;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0 15px;
	background: var(--color_theme);
	color: #FFFFFF;
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	margin: 0 auto;
	min-width: 250px;
	height: 45px;
}

button.single_add_to_cart_button[disabled]:hover {
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

div.mpwem_related_area div.slick-track {
	margin: 0;
}

.mep_everyday_date_secs {
	background: var(--color_theme);
	color: var(--color_6);
	padding: 5px 10px;
}

.mep_everyday_date_secs ul li {
	min-width: auto !important;
	vertical-align: middle;
}

.mep_everyday_date_secs .mep-date-time-select-area {
	overflow: hidden;
	padding: 8px 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mep_everyday_date_secs .mep-date-time-select-area h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.mep_everyday_date_secs .mep-date-time-select-area .mep-date-time {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

/***********************************************************************************************/
.mep-elementor-event-add-to-cart-section-widget table td {
	border: none;
}

.mep-elementor-event-add-to-cart-section-widget .mep_everyday_date_secs {
	display: block;
	text-align: center;
}

.mep-elementor-event-add-to-cart-section-widget h4.mep-cart-table-title {
	display: none;
}

.mep_sidebar {
	padding: 10px;
}

.mep_sidebar h3 {
	text-align: left;
	border-bottom: 1px solid #DDD;
	padding-bottom: 15px;
}

@media only screen and (min-width: 10px) {
	.my_account_orders.account-orders-table .wbtm-download {
		display: none;
	}

	.mep-user-ticket-list table {
		width: 100%;
		border: 1px solid #DDD;
	}

	.mep-user-ticket-list table tr {
		border-bottom: 1px solid #DDD;
		padding: 10px 0;
	}

	.mep-user-ticket-list table tr td {
		padding: 8px;
	}

	.mep-user-ticket-list table tr th {
		background: #DDD;
		padding: 10px 5px;
		text-align: left;
	}

	/***********************************************************************************************/
}

/***********************************************************************************************/
.default_theme form {
	display: block;
}

.default_theme i {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.default_theme .mep-more-date {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
}

.default_theme .mep-more-date .mep-more-date {
	margin: 2px 5px;
	position: relative;
	padding-left: 14px;
}

.default_theme .mep-more-date .mep-more-date::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50px;
	margin-right: 5px;
	background-color: var(--color_theme);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.default_theme .event-expire-btn {
	border: 0;
	padding: 0;
	overflow: visible;
	display: block;
	margin-top: 12px;
	margin-bottom: 0;
	background: transparent;
}

.default_theme .mep_checkbox_item ._fs_label {
	margin-bottom: 15px;
	display: block;
}

.default_theme .groupRadioCheck {
	margin-top: 5px;
}

/***********************************************************************************************/
/* Taxonomy filter (category / organizer / tag) — modern pill bar */
.mep-events-cats-list {
	--mep-tax-accent: var(--color_theme, #2563eb);
	--mep-tax-text: #1a1a1f;
	--mep-tax-muted: #6b6b76;
	--mep-tax-border: #e6e8ee;
	--mep-tax-bg: #ffffff;
	--mep-tax-soft: color-mix(in srgb, var(--mep-tax-accent) 8%, #fff);
	display: block;
	width: 100%;
	margin: 0 0 22px;
	padding: 16px 18px;
	box-sizing: border-box;
	border: 1px solid var(--mep-tax-border);
	border-radius: 16px;
	background: linear-gradient(180deg, color-mix(in srgb, var(--mep-tax-accent) 5%, #fff), #fff);
	box-shadow: 0 2px 8px rgba(26, 26, 31, 0.04);
}

.mep-event-cat-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

button.mep-cat-control,
.pagination-sec a {
	background: var(--color_theme);
	color: var(--color_7);
}

button.mep-cat-control {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 10px 16px;
	border: 1px solid var(--mep-tax-border);
	border-radius: 999px;
	background: var(--mep-tax-bg);
	color: var(--mep-tax-text);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	outline: none;
	box-shadow: 0 1px 2px rgba(26, 26, 31, 0.04);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

button.mep-cat-control .mep-cat-control__text {
	display: inline-block;
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

button.mep-cat-control:hover,
button.mep-cat-control:focus-visible {
	border-color: color-mix(in srgb, var(--mep-tax-accent) 40%, var(--mep-tax-border));
	background: color-mix(in srgb, var(--mep-tax-accent) 6%, #fff);
	color: var(--mep-tax-text);
	box-shadow: 0 6px 16px color-mix(in srgb, var(--mep-tax-accent) 14%, transparent);
	transform: translateY(-1px);
	outline: none;
}

button.mep-cat-control.mixitup-control-active,
button.mep-cat-control.mixitup-control-active:hover,
button.mep-cat-control.mixitup-control-active:focus-visible {
	border-color: transparent;
	background: var(--mep-tax-accent);
	color: #fff;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--mep-tax-accent) 28%, transparent);
	transform: translateY(-1px);
}

.mep-events-cats-list--org {
	background: linear-gradient(180deg, color-mix(in srgb, var(--mep-tax-accent) 7%, #fff), #fff);
}

.mep-events-cats-list--org .mep-event-cat-controls {
	gap: 10px;
}

@media only screen and (max-width: 640px) {
	.mep-events-cats-list {
		padding: 14px;
		margin-bottom: 16px;
		border-radius: 14px;
	}

	.mep-event-cat-controls {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	button.mep-cat-control {
		flex: 0 0 auto;
		padding: 9px 14px;
		font-size: 13px;
	}

	button.mep-cat-control .mep-cat-control__text {
		max-width: 160px;
	}
}

@media (prefers-reduced-motion: reduce) {
	button.mep-cat-control {
		transition: none;
	}

	button.mep-cat-control:hover,
	button.mep-cat-control.mixitup-control-active {
		transform: none;
	}
}

.mep_more_date_btn:before {
	background: var(--color_theme);
	border-color: var(--color_theme);
}

.mep-tem3-title-sec,
.ex-sec-title {
	background: var(--color_theme);
	color: var(--color_7);
}

.button.button-default.woocommerce.button.alt.button.alt.btn-mep-event-cart {
	background: var(--color_theme);
	border-color: var(--color_theme);
}

/*****************************************************/
.mep-vr-vs-content {
	color: #084298;
	background-color: #CFE2FF;
	border-color: #B6D4FE;
	border-radius: 0.25rem;
	padding: 8px;
}

.mep-vr-vs-content h3 {
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px dashed #084298;
	padding: 0 0 5px 0;
	margin: 0 0 10px 0;
}

.mep_ticket_details p {
	font-size: 12px;
	margin: 5px 0 !important;
	padding: 5px 0;
	display: block;
	line-height: 20px !important;
}

tr.ex-sec-title.mep_ticket_type_title th {
	font-weight: bold;
	display: table-cell;
	padding: 15px 15px 5px;
}

/********************************/
span.tkt-qty,
span.tkt-pric,
label.mep-show {
	display: block;
}

div.mep_flex,
.mep_event_list .mep_event_list_sec div.mep_event_list_item,
div.mep_event_list div.mage_grid_box {
	display: -webkit-flex;
	display: flex;
	gap: 18px;
}

.mep_event_list div.evl-cc {
	-webkit-align-items: center;
	align-items: center;
}

.mep-default-title h2,
.section-heading h2 {
	font-size: 25px;
	margin: 0 0 15px 0;
	color: #3A3A3A;
	font-weight: bold;
}

h4.mep-cart-table-title {
	margin: 10px 0;
	font-size: 22px;
	font-weight: 600;
}

h3.ex-sec-title {
	font-size: 14px;
	color: var(--color_7);
	background: var(--color_theme);
	padding: 15px;
}

.mep-event-details p {
	font-size: 16px;
	margin: 0;
	font-weight: 400;
	line-height: 1.5;
}

label.mep-show {
	line-height: 1.4;
}

[name="option_qty[]"].mage_error {
	background-color: red;
	color: #FFF;
}

.evl-cc {
	margin: 0 0 0 10px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: transparent;
	color: #000;
	text-decoration: none;
}

.mep-wailist-form input {
	display: block;
	overflow: hidden;
	margin: 20px auto !important;
	width: 100%;
	padding: 10px !important;
	background: #FFF !important;
}

.pagination-sec a {
	display: inline-block;
	background: #81D742;
	color: #FFF;
	padding: 10px 15px;
}

.pagination-sec span.page-numbers.current {
	padding: 15px 20px;
	background: #DDD;
}

span#hide_event_schdule {
	position: relative;
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.mep-event-list-loop {
	position: relative;
}

.mep_view_all_date {
	overflow: scroll !important;
}

.ui-accordion .ui-accordion-header {
	background-image: none;
	margin: 10px 0 0 0;
}

.ui-accordion .ui-accordion-header.ui-state-active {
	background-image: none;
	background-color: #1D4A68;
	color: #FFF;
	font-size: 18px;
}

.evl-cc {
	margin-left: 0;
}

.mep_more_date_btn {
	border: 1px solid var(--color_theme);
	color: var(--color_theme);
	border-radius: 20px;
	padding: 0 8px;
	transform: perspective(1px) translateZ(0);
	position: relative;
	font-size: 14px;
	cursor: pointer;
}

.mep_re_datelist_label {
	width: auto !important;
	font-weight: 500;
}

h3.ex-sec-title {
	color: #FFFFFF;
}

.tkt-pric,
.tkt-qty {
	margin-bottom: 10px;
}

#mep_everyday_datepicker,
#mep-event-review-form--title {
	display: block;
	padding: 0 15px 0 38px;
	font-size: 14px;
	line-height: 1.5;
	color: #495057;
	background-color: #F9F9F9;
	background-clip: padding-box;
	border: 0px solid #CED4DA !important;
	border-radius: 5px;
	min-width: 100px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	max-width: 225px;
	min-height: 100%;
	height: 30px;
	margin: 5px 0;
}

span.mep-cart-btn-icon {
	display: inline-block;
	margin-right: 10px;
}

span.mep_date_scdl_start_datetime {
	display: inline-flex;
	font-size: 13px;
}

span.mep_date_scdl_start_datetime {
	color: #333;
	font-size: 14px;
	font-weight: bold;
}

span.mep-cal-icon {
	position: absolute;
	left: -100px;
	z-index: 9;
	top: 12px;
}

thead.ex-sec-title.mep_ticket_type_title tr th {
	padding: 15px 15px 3px;
}

span.mep-cal-icon i {
	color: #000;
}

span#mep_everyday_event_time_list select {
	margin-top: 0;
	display: block;
	border-radius: 5px;
	vertical-align: top;
	border: none;
	height: 30px;
	padding: 0 7px;
	font-size: 14px;
	color: #495057;
}

span#mep_everyday_event_time_list {
	padding: 0;
}

span.mep_recurring_datepicker_section {
	position: relative;
}

span.mep-datepicker-input-box {
	position: relative;
}

.mep-event-review-list-wrapper,
.mep_reviews_panel {
	padding: 0;
	margin: 28px 0 12px;
}

.mep_reviews_head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px 24px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.mep_reviews_eyebrow {
	display: inline-block;
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a8a96;
}

.mep_reviews_title {
	margin: 0 0 8px !important;
	font-size: 1.6rem !important;
	font-weight: 700 !important;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #111113 !important;
}

.mep_reviews_meta,
.mep_reviews_count {
	color: #6b6b76;
	font-size: 0.92rem;
	font-weight: 500;
}

.mep-event-review-list-wrapper #give-review-btn {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 12px 20px;
	border: 0;
	border-radius: 999px;
	background: var(--color_theme, #111113);
	color: #fff;
	font-weight: 700;
	font-size: 0.94rem;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(17, 17, 19, 0.12);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.mep-event-review-list-wrapper #give-review-btn:hover {
	color: #fff;
	text-decoration: none;
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.mep_reviews_empty {
    display: none;
}

.mep_reviews_meta--empty {
    margin: 0;
}

.mep_reviews_panel--empty {
    margin: 20px 0 8px;
    padding: 16px 18px;
    border: 1px solid #ececf0;
    border-radius: 16px;
    background: #fafafb;
}

.mep_reviews_panel--empty .mep_reviews_head {
    margin: 0;
    align-items: center;
    gap: 12px 20px;
}

.mep_reviews_panel--empty .mep_reviews_title {
    margin: 0 0 4px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.mep_reviews_panel--empty .mep_reviews_meta,
.mep_reviews_panel--empty .mep_reviews_meta--empty {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 450;
    line-height: 1.45;
    color: #8a8a96;
}

.mep_reviews_panel--empty #give-review-btn {
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 650;
    box-shadow: none;
}

.mep_reviews_panel--empty #give-review-btn:hover {
    transform: none;
    box-shadow: none;
}

.mep-event-review-form .label {
	font-weight: 600;
	margin-bottom: 10px;
	border-bottom: 1px solid #D3D3D3;
	padding-bottom: 5px;
}

.mep-event-review-form input[type=submit],
.mep-event-review-form button[type=submit] {
	font-weight: 700;
	font-size: 15px;
	border-radius: 999px;
	line-height: 1.2;
	min-height: 44px;
	padding: 12px 20px;
	cursor: pointer;
	background: var(--color_theme);
	border: 0;
	color: #fff;
}

.woocommerce-Price-amount {
	font-weight: 600;
}

span.mep_waitlist_label.mep-tem3-title-sec {
	right: 0;
	top: 0;
}

.timeline .mep_more_date_btn {
	margin-top: 0;
}

span.mep-more-date i,
span.mep-more-time i {
	min-width: 25px;
}

.wp-core-ui .quicktags-toolbar input.button.button-small {
	width: max-content;
}

table.table.table-bordered.mep_event_add_cart_table {
	background: var(--color_6);
}

.mep_events-template-default table.table.table-bordered.mep_event_add_cart_table {
	background: hsla(0, 0%, 50.2%, 0.0705882353);
}

.mep-elementor-event-list-widget .row {
	width: 100%;
}

.mep-elementor-event-list-widget .pagination-sec {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

tr.mep_virtual_event_info_sec {
	display: none;
}

.impe-new-nput-group-field::-webkit-inner-spin-button,
.impe-new-nput-group-field ::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
}

#owl-demo .item {
	background: #FFFFFF;
	margin: 10px;
	color: #FFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: Left;
}

.groupRadioCheck [data-radio-check].mpActive {
	border-color: var(--color_theme);
	background-color: var(--color_theme);
	color: var(--color_7);
}

.groupRadioCheck [data-radio-check]:hover {
	border-color: var(--color_theme);
	background-color: var(--color_theme);
}

div.mpwem_style [data-bg-image] {
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0 auto;
}


.mpwem-expired-card {
	--mep-ex-ink: #111827;
	--mep-ex-muted: #6b7280;
	--mep-ex-line: #e5e7eb;
	--mep-ex-bg: #fafafa;
	--mep-ex-accent: #0f766e;
	--mep-ex-accent-soft: #ecfdf5;
	margin: 16px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--mep-ex-ink);
	text-align: left;
}

.mpwem-expired-card.is-expired {
	--mep-ex-accent: #9f1239;
	--mep-ex-accent-soft: #fff1f2;
	--mep-ex-bg: #fffafa;
}

.mpwem-expired-card.is-closed {
	--mep-ex-accent: #c2410c;
	--mep-ex-accent-soft: #fff7ed;
	--mep-ex-bg: #fffaf5;
}

.mpwem-expired-card__inner {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border: 1px solid var(--mep-ex-line);
	border-radius: 12px;
	background: var(--mep-ex-bg);
}

.mpwem-expired-card__icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0;
	padding: 0;
	border: 1px solid var(--mep-ex-line);
	border-radius: 10px;
	background: #fff;
	color: var(--mep-ex-accent);
	line-height: 0 !important;
	font-size: 0 !important;
	box-shadow: none;
	animation: none;
}

.mpwem-expired-card__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.mpwem-expired-card__icon i,
.mpwem-expired-card__icon i::before {
	display: none !important;
}

.mpwem-expired-card__body {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding-top: 1px;
}

.mpwem-expired-status {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 4px;
	background: var(--mep-ex-accent-soft);
	color: var(--mep-ex-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-transform: uppercase;
}

.mpwem-expired-title {
	margin: 2px 0 0;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.35;
	color: var(--mep-ex-ink);
}

.mpwem-expired-date {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--mep-ex-muted);
}

.mpwem-date-highlight {
	display: inline;
	margin-left: 3px;
	font-weight: 600;
	color: var(--mep-ex-ink);
}

.mpwem-total-sold-badge {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--mep-ex-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	backdrop-filter: none;
}

.mpwem-total-sold-badge__icon,
.mpwem-total-sold-badge__label {
	display: none;
}

.mpwem-total-sold-badge strong,
.mpwem-total-sold-badge__count {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--mep-ex-ink);
	font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
	.mpwem-expired-card__inner {
		gap: 12px;
		padding: 14px;
	}

	.mpwem-expired-card__icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.mpwem-expired-card__icon svg {
		width: 20px;
		height: 20px;
	}

	.mpwem-expired-title {
		font-size: 15px;
	}
}

.default_theme .event-expire-btn,
.mep_smart_theme .event-expire-btn,
.horizon_theme .event-expire-btn,
.mep_virtual_theme .event-expire-btn,
.virtual_theme .event-expire-btn {
	border: 0;
	padding: 0;
	overflow: visible;
	display: block;
	margin: 12px 0 0;
	background: transparent;
}

.smart_theme_metainfo {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
}

.smart_theme_metainfo i {
	color: var(--color_theme);
}

/* ========== Smart Theme — Title + Meta (over slider bottom) ========== */
.mep_smart_theme .smart_theme_hero {
	--smart-hero-h: clamp(220px, 34vw, 380px);
	position: relative;
	margin: 0 0 24px;
	border-radius: 18px;
	overflow: hidden;
	max-height: var(--smart-hero-h);
}

.mep_smart_theme .smart_theme_hero .mpwem_slider_area {
	position: relative;
	margin: 0 !important;
	height: var(--smart-hero-h);
	min-height: var(--smart-hero-h);
	max-height: var(--smart-hero-h);
	overflow: hidden;
}

.mep_smart_theme .smart_theme_hero .mpwem_slider_area.is-loading {
	min-height: var(--smart-hero-h);
	max-height: var(--smart-hero-h);
	height: var(--smart-hero-h);
}

/* Feature / gallery image: keep a designed hero height (not full photo height) */
.mep_smart_theme .smart_theme_hero .post_thumb,
.mep_smart_theme .smart_theme_hero .post_thumb.is-style-2,
.mep_smart_theme .smart_theme_hero .mpwem_slider_style2_feature {
	display: block;
	width: 100%;
	height: var(--smart-hero-h) !important;
	min-height: var(--smart-hero-h) !important;
	max-height: var(--smart-hero-h) !important;
	overflow: hidden;
}

.mep_smart_theme .smart_theme_hero .post_thumb img,
.mep_smart_theme .smart_theme_hero .mpwem_slider_style2_feature img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center !important;
}

.mep_smart_theme .smart_theme_hero .mpwem_slider_area > .superSlider,
.mep_smart_theme .smart_theme_hero .mpwem_slider_area > .superSlider > .dFlex,
.mep_smart_theme .smart_theme_hero .sliderAllItem,
.mep_smart_theme .smart_theme_hero .sliderItem,
.mep_smart_theme .smart_theme_hero .sliderShowcase {
	height: var(--smart-hero-h) !important;
	min-height: var(--smart-hero-h) !important;
	max-height: var(--smart-hero-h) !important;
}

/* Keep Style Two popup shell out of hero layout sizing */
.mep_smart_theme .smart_theme_hero .post_thumb.is-style-2 > .superSlider {
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	min-height: 0 !important;
	max-height: none !important;
	overflow: visible !important;
	margin: 0 !important;
	padding: 0 !important;
}

.mep_smart_theme .smart_theme_hero .sliderItem [data-bg-image],
.mep_smart_theme .smart_theme_hero .sliderItem .bg_image_area {
	height: 100% !important;
	min-height: 100% !important;
	max-height: none !important;
	background-size: cover !important;
	background-position: center center !important;
}

/* Hide real slider chrome until placeholder finishes */
.mep_smart_theme .mpwem_slider_area.is-loading .superSlider .iconIndicator,
.mep_smart_theme .mpwem_slider_area.is-loading .superSlider .iconIndicator.prevItem,
.mep_smart_theme .mpwem_slider_area.is-loading .superSlider .iconIndicator.nextItem,
.mep_smart_theme .mpwem_slider_area.is-loading .superSlider .slideIndicator,
.mep_smart_theme .mpwem_slider_area.is-loading .superSlider .sliderShowcase,
.mep_smart_theme .mpwem_slider_area.is-loading .superSlider .sliderAllItem,
.mep_smart_theme .mpwem_slider_area.is-loading .mpwem_slider_style2_controls {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.mep_smart_theme .mpwem_slider_area.is-ready .superSlider .iconIndicator,
.mep_smart_theme .mpwem_slider_area.is-ready .superSlider .sliderAllItem,
.mep_smart_theme .mpwem_slider_area.is-ready .superSlider .sliderShowcase,
.mep_smart_theme .mpwem_slider_area.is-ready .mpwem_slider_style2_controls {
	opacity: 1;
	visibility: visible;
}

/* Style Two: feature image fills the hero; no showcase strip */
.mep_smart_theme .mpwem_slider_area.is-style-2 .superSlider .sliderAllItem {
	width: 100% !important;
	min-width: 100% !important;
}
.mep_smart_theme .mpwem_slider_area.is-style-2 .superSlider .sliderShowcase {
	display: none !important;
}
.mep_smart_theme .smart_theme_hero .mpwem_slider_area.is-style-2 .mpwem_slider_style2_controls {
	z-index: 12;
}

/* Slider skeleton — mirrors main slide + showcase thumbs */
.mep_smart_theme .mpwem_slider_skeleton {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: block;
	background: #ececf0;
	opacity: 1;
	visibility: visible;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mep_smart_theme .mpwem_slider_area.is-ready .mpwem_slider_skeleton,
.mep_smart_theme .mpwem_slider_area:not(.is-loading) .mpwem_slider_skeleton {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.mep_smart_theme .mpwem_slider_skeleton__layout {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 100%;
	min-height: inherit;
	gap: 10px;
	padding: 0;
	box-sizing: border-box;
}

.mep_smart_theme .mpwem_slider_skeleton.is-column .mpwem_slider_skeleton__layout {
	flex-direction: column;
}

.mep_smart_theme .mpwem_slider_skeleton__main {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 100%;
	overflow: hidden;
	background: #e4e4e8;
}

.mep_smart_theme .mpwem_slider_skeleton__media {
	position: absolute;
	inset: 0;
	display: block;
}

.mep_smart_theme .mpwem_slider_skeleton__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 36px;
	height: 36px;
	margin-top: -18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 2px 8px rgba(17, 17, 19, 0.08);
}

.mep_smart_theme .mpwem_slider_skeleton__nav--prev {
	left: 18px;
}

.mep_smart_theme .mpwem_slider_skeleton__nav--next {
	right: 18px;
}

.mep_smart_theme .mpwem_slider_skeleton__showcase {
	display: flex;
	flex-direction: column;
	flex: 0 0 18.65%;
	width: 18.65%;
	min-width: 72px;
	max-width: 140px;
	gap: 10px;
}

.mep_smart_theme .mpwem_slider_skeleton.showcase-left .mpwem_slider_skeleton__showcase {
	order: -1;
}

.mep_smart_theme .mpwem_slider_skeleton.is-column .mpwem_slider_skeleton__showcase {
	flex: 0 0 auto;
	flex-direction: row;
	width: 100%;
	max-width: none;
	min-width: 0;
	height: 72px;
}

.mep_smart_theme .mpwem_slider_skeleton__showcase > span {
	display: block;
	flex: 1 1 0;
	min-height: 0;
	border-radius: 12px;
	overflow: hidden;
}

.mep_smart_theme .mpwem_slider_skeleton.is-column .mpwem_slider_skeleton__showcase > span {
	border-radius: 10px;
}

.mep_smart_theme .mpwem_slider_skeleton.is-single .mpwem_slider_skeleton__showcase {
	display: none;
}

.mep_smart_theme .mpwem_slider_skeleton__shimmer {
	background: linear-gradient(90deg, #e4e4e8 0%, #f3f3f5 45%, #e4e4e8 100%);
	background-size: 200% 100%;
	animation: mpwem-slider-skel-shimmer 1.25s ease-in-out infinite;
}

@keyframes mpwem-slider-skel-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

@media (max-width: 767px) {
	.mep_smart_theme .mpwem_slider_skeleton__showcase {
		display: none;
	}

	.mep_smart_theme .smart_theme_hero {
		--smart-hero-h: clamp(200px, 52vw, 280px);
	}

	.mep_smart_theme .smart_theme_hero .mpwem_slider_area.is-loading {
		min-height: var(--smart-hero-h);
		max-height: var(--smart-hero-h);
		height: var(--smart-hero-h);
	}

	.mep_smart_theme .mpwem_slider_skeleton__nav {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}

	.mep_smart_theme .mpwem_slider_skeleton__nav--prev {
		left: 12px;
	}

	.mep_smart_theme .mpwem_slider_skeleton__nav--next {
		right: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mep_smart_theme .mpwem_slider_skeleton__shimmer {
		animation: none;
		background: #e4e4e8;
	}

	.mep_smart_theme .mpwem_slider_area.is-ready .mpwem_slider_skeleton {
		transition: none;
	}
}

.mep_smart_theme .smart_theme_hero .mpwem_slider_area div.superSlider .sliderAllItem,
.mep_smart_theme .smart_theme_hero .mpwem_slider_area div.superSlider .sliderShowcaseItem {
	border-radius: 0 !important;
}

.mep_smart_theme .smart_theme_header {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	margin: 0 !important;
	padding: 72px 24px 22px;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0) 0%,
		rgba(15, 23, 42, 0.42) 38%,
		rgba(15, 23, 42, 0.78) 100%
	);
	pointer-events: none;
}

.mep_smart_theme .smart_theme_header .mpwem_tile,
.mep_smart_theme .smart_theme_header h1.mpwem_tile,
.mep_smart_theme .smart_theme_header .smart_theme_metainfo,
.mep_smart_theme .smart_theme_header .smart_theme_metainfo a {
	pointer-events: auto;
}

.mep_smart_theme .smart_theme_header .mpwem_tile,
.mep_smart_theme .smart_theme_header h1.mpwem_tile,
.mep_smart_theme h1.mpwem_tile {
	margin: 0 0 12px !important;
	padding: 0 !important;
	font-size: 34px !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.03em;
	color: #fff !important;
	text-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.mep_smart_theme .smart_theme_metainfo {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	margin: 0 !important;
	padding: 0 !important;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer,
.mep_smart_theme .smart_theme_metainfo .mpwem_location,
.mep_smart_theme .smart_theme_metainfo .mpwem_time {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 9px 12px !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 12px !important;
	background: rgba(255, 255, 255, 0.14) !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: none !important;
	color: rgba(255, 255, 255, 0.92) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	min-width: 0;
	max-width: 100%;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer {
	flex-wrap: wrap;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer,
.mep_smart_theme .smart_theme_metainfo .mpwem_organizer a {
	color: #fff !important;
	font-weight: 600 !important;
	text-decoration: none !important;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer a:hover {
	color: #fff !important;
	text-decoration: underline !important;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer h5 {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78) !important;
	white-space: nowrap;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer h5 .mi,
.mep_smart_theme .smart_theme_metainfo .mpwem_location > i,
.mep_smart_theme .smart_theme_metainfo .mpwem_time > i {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	margin: 0 !important;
	border-radius: 9px !important;
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	font-size: 13px !important;
	flex-shrink: 0;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_organizer_item {
	min-width: 0;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_location > div,
.mep_smart_theme .smart_theme_metainfo .mpwem_time {
	min-width: 0;
}

.mep_smart_theme .smart_theme_metainfo .mpwem_location > div {
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 640px) {
	.mep_smart_theme .smart_theme_hero {
		--smart-hero-h: clamp(200px, 52vw, 280px);
		border-radius: 14px;
		margin-bottom: 18px;
	}

	.mep_smart_theme .smart_theme_header {
		padding: 48px 14px 14px;
	}

	.mep_smart_theme .smart_theme_header .mpwem_tile,
	.mep_smart_theme .smart_theme_header h1.mpwem_tile,
	.mep_smart_theme h1.mpwem_tile {
		font-size: 24px !important;
		margin-bottom: 10px !important;
	}

	.mep_smart_theme .smart_theme_metainfo {
		flex-direction: column;
		gap: 8px;
	}

	.mep_smart_theme .smart_theme_metainfo .mpwem_organizer,
	.mep_smart_theme .smart_theme_metainfo .mpwem_location,
	.mep_smart_theme .smart_theme_metainfo .mpwem_time {
		width: 100%;
	}
}

/* ========== Smart Theme — typography + spacing polish ========== */
.mep_smart_theme {
	font-size: 16px;
	line-height: 1.6;
	color: #111113;
	letter-spacing: normal;
}

.mep-events-wrapper:has(.mep_smart_theme),
.mpwem_wrapper:has(.mep_smart_theme),
.mpwem_style:has(.mep_smart_theme) {
	font-size: 16px;
	line-height: 1.6;
}

.mep_smart_theme a:hover {
	opacity: 1;
}

.mep_smart_theme .mpwem_content_area {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	margin: 28px 0 0;
	flex-direction: row;
}

.mep_smart_theme .mpwem_left_content {
	flex: 1 1 0;
	min-width: 0;
	max-width: none;
	width: auto;
	margin-right: 0;
}

.mep_smart_theme .mpwem_right_content {
	flex: 0 0 320px;
	max-width: 340px;
	width: 320px;
	min-width: 280px;
}

.mep_smart_theme .mpwem_left_content > * + *,
.mep_smart_theme .mpwem_right_content > * + * {
	margin-top: 56px;
}

.mep_smart_theme .mpwem_left_content h2,
.mep_smart_theme .mpwem_right_content h2,
.mep_smart_theme .mpwem_details > h2,
.mep_smart_theme .faq_area > h2,
.mep_smart_theme .mpwem_timeline_area .timeline_section_header h2,
.mep_smart_theme .mpwem_registration_area .section-title,
.mep_smart_theme #mpwem_map_area .map_title,
.mep_smart_theme .mpwem_related_area .related_title h3 {
	margin: 0 0 14px !important;
	padding: 0 !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: -0.02em;
	color: #111113 !important;
	background: transparent !important;
	border: 0 !important;
	text-transform: none;
}

.mep_smart_theme .mpwem_details {
	margin: 0;
}

.mep_smart_theme .mpwem_details_content,
.mep_smart_theme .mpwem_details_content.mp_wp_editor {
	font-size: 1rem;
	line-height: 1.7;
	color: #3a3a40;
	text-align: justify;
}

.mep_smart_theme .mpwem_details_content p,
.mep_smart_theme .mpwem_details_content ul,
.mep_smart_theme .mpwem_details_content ol {
	margin: 0 0 1em !important;
	padding: 0;
	margin-left: 0 !important;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	text-align: justify;
}

.mep_smart_theme .mpwem_details_content ul,
.mep_smart_theme .mpwem_details_content ol {
	padding-left: 1.25em;
}

.mep_smart_theme .mpwem_details_content p:last-child,
.mep_smart_theme .mpwem_details_content ul:last-child,
.mep_smart_theme .mpwem_details_content ol:last-child {
	margin-bottom: 0 !important;
}

/* Description Read More */
.mpwem_details--has-readmore {
	display: flex;
	flex-direction: column;
}

.mpwem_details--has-readmore .mpwem_details_content.is-collapsed {
	position: relative;
}

.mpwem_details_readmore {
	display: inline-flex;
	align-self: flex-end;
	align-items: center;
	margin: 12px 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #111113;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.01em;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(17, 17, 19, 0.35);
	transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.mpwem_details_readmore:hover,
.mpwem_details_readmore:focus {
	background: transparent;
	color: var(--color_theme, #2563eb);
	text-decoration: underline;
	text-decoration-color: currentColor;
	outline: none;
}

.mpwem_details_readmore .mpwem_details_readmore__less {
	display: none;
}

.mpwem_details--has-readmore.is-expanded .mpwem_details_readmore .mpwem_details_readmore__more {
	display: none;
}

.mpwem_details--has-readmore.is-expanded .mpwem_details_readmore .mpwem_details_readmore__less {
	display: inline;
}

.mep_smart_theme .mpwem_details_readmore {
	margin-top: 14px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #111113;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(17, 17, 19, 0.35);
}

.mep_smart_theme .mpwem_details_readmore:hover,
.mep_smart_theme .mpwem_details_readmore:focus {
	background: transparent;
	border: 0;
	color: #111113;
	text-decoration-color: #111113;
	opacity: 0.72;
}

.mep_smart_theme .mpwem_registration_area {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
}

.mep_smart_theme .mpwem_registration_area .section-title {
	font-size: 1.5rem !important;
	margin: 0 0 18px !important;
}

div.mep_smart_theme .mpwem_sidebar_content {
	overflow: hidden;
	border: 1px solid #e8e8ec;
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
	background: #fff;
}

.mep_smart_theme .mpwem_sidebar_content + .mpwem_sidebar_content,
.mep_smart_theme .mpwem_sidebar_content._mt {
	margin-top: 16px !important;
}

/* Consistent section gaps: tickets, FAQ, timeline, map, related, reviews */
.mep_smart_theme .mpwem_registration_area,
.mep_smart_theme .faq_area,
.mep_smart_theme .mpwem_timeline_area,
.mep_smart_theme #mpwem_map_area,
.mep_smart_theme .mpwem_related_area,
.mep_smart_theme .mep_reviews_panel,
.mep_smart_theme .mep-event-review-list-wrapper {
	margin-top: 56px !important;
	margin-bottom: 0;
}

.mep_smart_theme .mpwem_details + .mpwem_registration_area,
.mep_smart_theme .mpwem_registration_area + .faq_area,
.mep_smart_theme .faq_area + .mpwem_timeline_area,
.mep_smart_theme .mpwem_registration_area + .mpwem_timeline_area,
.mep_smart_theme .mpwem_details + .faq_area,
.mep_smart_theme .mpwem_content_area + #mpwem_map_area,
.mep_smart_theme #mpwem_map_area + .mpwem_related_area,
.mep_smart_theme .mpwem_content_area + .mpwem_related_area,
.mep_smart_theme .mpwem_related_area + .mep_reviews_panel,
.mep_smart_theme .mpwem_related_area + .mep-event-review-list-wrapper,
.mep_smart_theme #mpwem_map_area + .mep_reviews_panel,
.mep_smart_theme #mpwem_map_area + .mep-event-review-list-wrapper {
	margin-top: 56px !important;
}

.mep_smart_theme .mep_reviews_panel--empty {
	margin-top: 56px !important;
}

@media (max-width: 1024px) {
	.mep_smart_theme .mpwem_content_area {
		flex-direction: column;
		gap: 24px;
		margin-top: 22px;
	}

	.mep_smart_theme .mpwem_left_content,
	.mep_smart_theme .mpwem_right_content {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}

	.mep_smart_theme .mpwem_left_content h2,
	.mep_smart_theme .mpwem_right_content h2,
	.mep_smart_theme .mpwem_details > h2,
	.mep_smart_theme .faq_area > h2,
	.mep_smart_theme .mpwem_registration_area .section-title {
		font-size: 1.35rem !important;
	}

	.mep_smart_theme .mpwem_left_content > * + *,
	.mep_smart_theme .mpwem_right_content > * + *,
	.mep_smart_theme .mpwem_registration_area,
	.mep_smart_theme .faq_area,
	.mep_smart_theme .mpwem_timeline_area,
	.mep_smart_theme #mpwem_map_area,
	.mep_smart_theme .mpwem_related_area,
	.mep_smart_theme .mep_reviews_panel,
	.mep_smart_theme .mep-event-review-list-wrapper,
	.mep_smart_theme .mep_reviews_panel--empty {
		margin-top: 44px !important;
	}
}

@media (max-width: 640px) {
	.mep_smart_theme {
		font-size: 15px;
	}

	.mep_smart_theme .mpwem_content_area {
		gap: 20px;
		margin-top: 18px;
	}

	.mep_smart_theme .mpwem_left_content > * + *,
	.mep_smart_theme .mpwem_right_content > * + *,
	.mep_smart_theme .mpwem_registration_area,
	.mep_smart_theme .faq_area,
	.mep_smart_theme .mpwem_timeline_area,
	.mep_smart_theme #mpwem_map_area,
	.mep_smart_theme .mpwem_related_area,
	.mep_smart_theme .mep_reviews_panel,
	.mep_smart_theme .mep-event-review-list-wrapper,
	.mep_smart_theme .mep_reviews_panel--empty {
		margin-top: 40px !important;
	}
}



/***************************************************************************Responsive*****************************************************************/
@media only screen and (max-width: 1199px) {
	.mep-default-content {
		width: calc(100% - 275px);
	}

	.mep-default-sidebar {
		width: 275px;
	}

	div.date_time_location_short .short_item {
		max-width: calc(50% - 8px);
	}
}

@media only screen and (max-width: 1024px) {

	.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data,
	.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data {
		flex-direction: row;
		align-items: start;
		flex-wrap: wrap;
		gap: 10px;
	}

	.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-price,
	.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-price {
		text-align: left;
		flex: 0 0 100%;
	}

	.mep_event_winter_list .mep_list_date_wrapper,
	div.spring_area .spring_item_1 {
		display: none;
	}

	div.spring_area .spring_item_2 {
		width: 30%;
	}

	div.spring_area .spring_item_3 {
		width: 45%;
	}

	div.spring_area .spring_item_4 {
		width: 25%;
	}

	div.mep_event_winter_list div.spring_area .spring_item_2 {
		width: 75%;
	}

	.mpwem_registration_area .date-time-area {
		flex-direction: column;
		justify-content: center;
		align-items: end;
	}
}

@media only screen and (max-width: 991px) {
	.mep-default-content {
		width: calc(100% - 250px);
	}

	.mep-default-sidebar {
		width: 250px;
	}

	.mep-list-footer ul li i {
		width: 20px;
		height: 20px;
		font-size: 11px;
	}

	.mep-events-wrapper p#mep_btn_notice {
		font-size: 14px;
	}

	.mep-events-wrapper table td {
		font-size: 14px;
		padding: 5px;
	}

	button.single_add_to_cart_button {
		min-width: 200px;
		height: 40px;
		font-size: 14px !important;
	}

	.ui-accordion .ui-accordion-content {
		font-size: 12px;
	}

	h2.mep_list_title {
		font-size: 15px !important;
	}

	h3.mep_list_date,
	.mep-list-footer ul li h6 {
		font-size: 13px !important;
	}

	.mep-list-footer ul li h5 {
		font-size: 12px !important;
	}

	div.item_hover_effect a {
		font-size: 16px;
		padding: 10px 20px;
	}

	div.column_style {
		min-width: calc(33.333333% - 14px) !important;
	}

	h2.mep_list_title {
		margin-top: 10px;
	}
}

@media only screen and (max-width: 767px) {

	div.mep_event_native_list .mep_list_event_details,
	div.mep_event_native_list .mep_list_thumb {
		width: 100%;
	}

	.mpwem_registration_area .date-time-area>label::after {
		top: 78%;
	}

	/********************/
	div.default_theme .content_area {
		display: block;
	}

	div.mep_flex.default_theme {
		display: block;
	}

	.mep-default-content {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.mep_event_list .mep_event_list_sec div.mep_event_list_item {
		display: block;
	}

	.mep-default-sidebar {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.mep_event_grid_item .mep_list_thumb img {
		height: auto;
	}

	.mep-events-wrapper {
		margin: 15px auto;
	}

	.mep-default-title h2,
	.section-heading h2,
	h4.mep-cart-table-title,
	h3.ex-sec-title {
		font-size: 20px;
	}

	.mep_event_list .mep_event_list_sec div.mep_event_list_item .mep_list_event_details {
		margin: 0;
	}

	.mep_event_list .mep_event_list_sec div.mep_event_list_item img {
		top: -5px;
	}

	span.mep_minimal_list_location {
		margin-left: 0;
		display: block;
	}

	div.column_style {
		min-width: calc(50% - 14px) !important;
	}

	div.two_column {
		width: calc(50% - 15px);
		margin: 0 15px 15px 0;
	}

	div.three_column {
		width: calc(50% - 15px);
		margin: 0 15px 15px 0;
	}

	div.four_column {
		width: calc(50% - 15px);
		margin: 0 15px 15px 0;
	}

	.mep_event_list .mep_event_list_sec .mep_event_list_item.mep_event_spring_list .mep_list_details_col_one {
		margin-bottom: 20px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.mep_event_list .mep_event_list_sec .mep_event_list_item.mep_event_spring_list .mep_list_details_col_two {
		margin-top: 20px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.mep_event_winter_list .mep_list_winter_thumb_wrapper {
		margin: 0;
		width: 100%;
		height: 200px;
		border-radius: 0;
	}

	.mep_event_winter_list .mep_list_winter_thumb {
		width: auto;
		height: 200px;
		border-radius: 0;
		object-fit: cover;
	}

	.mep_event_spring_list .mep_list_date_wrapper,
	.mep_event_spring_list .mep_list_event_details,
	.mep_event_winter_list .mep_list_event_details,
	.mep_event_spring_list .mep_list_spring_thumb_wrapper {
		display: flex;
		width: auto;
		flex-flow: column;
		min-height: auto;
	}

	.mep_event_spring_list .mep_list_date_wrapper {
		height: 200px;
	}

	.mep_event_spring_list .mep_list_event_details {
		margin-top: 20px;
	}

	.mep_event_spring_list h4 {
		font-size: 20px;
	}

	.mep_event_spring_list .mep_list_spring_thumb {
		width: 100%;
		height: 200px;
		border-radius: 0;
	}

	.mep_event_spring_list {
		display: flex !important;
		flex-flow: column;
	}

	.mep_event_spring_list .mep_list_spring_thumb_wrapper {
		order: 1;
	}

	.mep_event_spring_list .mep_list_event_details.mep_list_details_col_one {
		order: 3;
		margin-bottom: 20px;
	}

	.mep_event_spring_list .mep_list_event_details.mep_list_details_col_two {
		order: 2;
	}

	.mep_event_spring_list .mep_list_date_wrapper {
		display: none;
	}

	.mep_event_list button.owl-next {
		right: 0;
	}

	.mep_event_list button.owl-prev {
		left: 0;
	}

	.mep_event_spring_list .mep_list_date_wrapper {
		float: left;
		width: 24%;
		display: flex;
		justify-content: center;
		flex-direction: column;
		padding: 10px;
	}

	.mep_event_spring_list .mep_list_spring_thumb_wrapper {
		float: left;
		width: 24%;
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		padding: 20px;
	}

	.mep_event_spring_list .mep_list_date_wrapper {
		height: 100%;
	}

	.mep_event_list_item .mep_list_thumb {
		border-radius: 5px 5px 0 0;
	}

	.mep_event_list_item .mep_list_location_name,
	.mep_event_list_item .mep_list_event_date {
		align-items: start;
	}

	.mep-low-stock-warning,
	.mep-limited-availability-ribbon {
		font-size: 10px;
		padding: 4px 8px;
	}

	.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data {
		padding: 8px 0 !important;
		gap: 6px;
	}

	div.date_time_location_short .short_item {
		max-width: 100%;
	}

	div.spring_area .spring_item_2 {
		width: 100%;
		order: 3;
	}

	div.spring_area .spring_item_3 {
		width: 100%;
		order: 2;
	}

	div.spring_area .spring_item_4 {
		width: 100%;
		order: 1;
	}

	div.mep-event-list-loop div.spring_area .mepev-ribbons {
		position: absolute;
	}

	div.spring_area .spring_item_4 {
		width: 100%;
	}

	div.mep_event_winter_list div.spring_area .spring_item_2 {
		width: 100%;
	}

	/* Mobile responsive for Ticket Options section */
	.mpwem_registration_area .date-time-header {
		padding: 15px 20px !important;
		flex-direction: column !important;
		gap: 15px !important;
		align-items: stretch !important;
	}

	.mpwem_registration_area .date-time-header .ticket-title {
		font-size: 17px !important;
		text-align: center !important;
		width: 100% !important;
	}

	.mpwem_registration_area .date-time-area {
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 12px !important;
		width: 100% !important;
		flex-wrap: wrap !important;
	}

	.mpwem_registration_area .date-time-area label {
		flex-direction: row !important;
		align-items: center !important;
		gap: 8px !important;
		width: calc(70% - 6px) !important;
		position: relative !important;
		flex: 0 0 calc(70% - 6px) !important;
	}

	.mpwem_registration_area .date-time-area label span {
		width: auto !important;
		text-align: left !important;
		font-size: 15px !important;
		display: inline-block !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}

	.mpwem_registration_area .date-time-area label i {
		position: absolute !important;
		right: 12px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		pointer-events: none !important;
	}

	.mpwem_registration_area .date-time-area .formControl {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		padding-right: 40px !important;
		flex: 1 !important;
	}

	.mpwem_registration_area input#mpwem_date_time {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		padding-right: 40px !important;
		flex: 1 !important;
	}

	.mpwem_registration_area .date-time-area select.formControl {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		padding-right: 40px !important;
		flex: 1 !important;
	}

	.mpwem_registration_area .mpwem_time_area {
		width: calc(30% - 6px) !important;
		flex: 0 0 calc(30% - 6px) !important;
	}

	.mpwem_registration_area .mpwem_time_area label {
		width: 100% !important;
		flex-direction: row !important;
		align-items: center !important;
		position: relative !important;
	}

	.mpwem_registration_area .mpwem_time_area label span {
		width: auto !important;
		display: inline-block !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}

	.mpwem_registration_area .mpwem_time_area label i {
		position: absolute !important;
		right: 12px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		pointer-events: none !important;
	}

	.mpwem_registration_area .mpwem_time_area select.formControl {
		width: 100% !important;
		padding-right: 40px !important;
		flex: 1 !important;
	}

	.mep_smart_theme .mpwem_content_area {
		margin: 40px 0 0 0;
		flex-direction: column;
		gap: 24px;
	}

	.mep_smart_theme .mpwem_left_content {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}

	.mep_smart_theme .mpwem_right_content {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		min-width: 0;
	}

	.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
	.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info {
		flex: 0 0 100%;
	}

	/* Timeline — tablet/mobile: tag expands, connector hidden, time stays right */
	div.mpwem_timeline_area .timeline_body {
		padding: 12px;
	}

	div.timeline_item {
		padding: 0 0 14px 42px;
	}

	div.timeline_item .timeline_tag {
		flex: 1;
	}

	div.timeline_item .tl_title {
		max-width: 100%;
	}

	div.timeline_item .timeline_connector {
		display: none;
	}
}

@media only screen and (max-width: 650px) {
	.mep_speaker_thumbnail {
		padding-top: 50px;
	}

	.mep_speaker_name {
		padding: 50px 0;
	}

	.mep_speaker_name {
		padding: 20px 0;
	}

	.mep_event_native_list .mep-list-header {
		padding: 15px;
	}

	span.mep_minimal_list_date,
	span.mep_minimal_list_location {
		line-height: 25px;
	}

	.mep_list_event_details p {
		font-size: 13px;
	}

	.mpwem_style.pagination_area button[class*=defaultButton_xs] {
		width: 40px;
	}

	.mpwem_style.pagination_area .ellipse_left,
	.mpwem_style.pagination_area .ellipse_right {
		background-color: #DDD;
	}

	.mep-event-review-form input {
		padding: 8px;
	}

	span.mep-more-date i,
	span.mep-more-time i {
		min-width: 20px;
	}

	.mep_everyday_date_secs ul li {
		margin-bottom: 10px;
	}

	.mep-event-review-list-wrapper {
		margin: 0;
	}

	.mep_list_thumb,
	.mep_list_event_details {
		width: 100%;
		min-height: 100px;
	}

	div.one_column {
		-webkit-flex-direction: column;
		flex-direction: column;
	}

	/* Mobile responsive for Ticket Options section - 650px */
	.mpwem_registration_area .date-time-header {
		padding: 12px 15px !important;
		flex-direction: column !important;
		gap: 10px !important;
	}

	.mpwem_registration_area .date-time-header .ticket-title {
		font-size: 16px !important;
		text-align: center !important;
		width: 100% !important;
	}

	.mpwem_registration_area .date-time-area {
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 10px !important;
		width: 100% !important;
		flex-wrap: wrap !important;
	}

	.mpwem_registration_area .date-time-area label {
		flex-direction: row !important;
		align-items: center !important;
		gap: 6px !important;
		width: calc(70% - 5px) !important;
		position: relative !important;
		flex: 0 0 calc(70% - 5px) !important;
	}

	.mpwem_registration_area .date-time-area label span {
		font-size: 14px !important;
		width: auto !important;
		text-align: left !important;
		display: inline-block !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}

	.mpwem_registration_area .date-time-area label i {
		position: absolute !important;
		right: 10px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		pointer-events: none !important;
		font-size: 14px !important;
	}

	.mpwem_registration_area .date-time-area .formControl {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		padding: 10px 35px 10px 12px !important;
		flex: 1 !important;
	}

	.mpwem_registration_area input#mpwem_date_time {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		padding: 10px 35px 10px 12px !important;
		flex: 1 !important;
	}

	.mpwem_registration_area .date-time-area select.formControl {
		width: 100% !important;
		padding: 10px 35px 10px 12px !important;
		flex: 1 !important;
	}

	.mpwem_registration_area .mpwem_time_area {
		width: calc(30% - 5px) !important;
		flex: 0 0 calc(30% - 5px) !important;
	}

	.mpwem_registration_area .mpwem_time_area label {
		flex-direction: row !important;
		align-items: center !important;
	}

	.mpwem_registration_area .mpwem_time_area label span {
		width: auto !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}

	.mpwem_registration_area .mpwem_time_area label i {
		position: absolute !important;
		right: 10px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		font-size: 14px !important;
	}

	.mpwem_registration_area .mpwem_time_area select.formControl {
		padding: 10px 35px 10px 12px !important;
		flex: 1 !important;
	}
}

@media only screen and (max-width: 500px) {
	.mep-events-wrapper p#mep_btn_notice {
		font-size: 12px;
	}

	.mep-events-wrapper table td {
		font-size: 12px;
	}

	.mep-default-title h2,
	.section-heading h2,
	h4.mep-cart-table-title,
	h3.ex-sec-title {
		font-size: 18px;
	}

	button.single_add_to_cart_button {
		font-size: 12px !important;
	}

	.ui-accordion .ui-accordion-content {
		font-size: 12px;
	}

	button.single_add_to_cart_button {
		width: 100%;
		min-height: 40px;
		height: auto;
		min-width: auto;
	}

	.mep_event_native_list .mep_more_date_btn {
		width: 100%;
		position: relative;
	}

	.mep_event_minimal_list .mep-ev-start-date {
		top: -5px;
	}

	div.two_column,
	div.three_column,
	div.four_column {
		width: 100%;
		margin: 0 0 15px 0;
	}

	div.column_style {
		min-width: calc(100% - 14px) !important;
	}

	/* Mobile responsive for Ticket Options section - 500px */
	.mpwem_registration_area .date-time-header {
		padding: 10px 12px !important;
	}

	.mpwem_registration_area .date-time-header .ticket-title {
		font-size: 15px !important;
	}

	.mpwem_registration_area .date-time-area {
		gap: 8px !important;
	}

	.mpwem_registration_area .date-time-area label {
		width: calc(70% - 4px) !important;
		flex: 0 0 calc(70% - 4px) !important;
		gap: 4px !important;
	}

	.mpwem_registration_area .date-time-area label span {
		font-size: 13px !important;
	}

	.mpwem_registration_area .date-time-area label i {
		font-size: 13px !important;
		right: 8px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
	}

	.mpwem_registration_area .date-time-area .formControl {
		padding: 8px 32px 8px 8px !important;
		font-size: 13px !important;
	}

	.mpwem_registration_area input#mpwem_date_time {
		padding: 8px 32px 8px 8px !important;
		font-size: 13px !important;
	}

	.mpwem_registration_area .date-time-area select.formControl {
		padding: 8px 32px 8px 8px !important;
		font-size: 13px !important;
	}

	.mpwem_registration_area .mpwem_time_area {
		width: calc(30% - 4px) !important;
		flex: 0 0 calc(30% - 4px) !important;
	}

	.mpwem_registration_area .mpwem_time_area label {
		gap: 4px !important;
	}

	.mpwem_registration_area .mpwem_time_area label span {
		font-size: 13px !important;
	}

	.mpwem_registration_area .mpwem_time_area label i {
		right: 8px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		font-size: 13px !important;
	}

	.mpwem_registration_area .mpwem_time_area select.formControl {
		padding: 8px 32px 8px 8px !important;
		font-size: 13px !important;
	}

	.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-header,
	.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-header {
		padding: 15px 18px;
		font-size: 16px;
	}

	.mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-name,
	.mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-name {
		font-size: 15px;
	}
}

/* Timeline — small phones: stack tag and time vertically */
@media only screen and (max-width: 420px) {
	div.mpwem_timeline_area .timeline_body {
		padding: 10px;
	}

	div.timeline_item {
		padding: 0 0 12px 36px;
	}

	div.timeline_item .timeline_counter {
		width: 26px;
		height: 26px;
		font-size: 11px;
		top: 3px;
	}

	div.timeline_item .timeline_header {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	div.timeline_item .timeline_tag {
		clip-path: none;
		border-radius: 6px;
		padding: 7px 13px;
	}

	div.timeline_item .tl_title {
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	div.mpwem_timeline_area .timeline_time {
		font-size: 11px;
		padding: 4px 9px;
	}
}

/********************************************************************************************************************************************/
/* Fix mobile layout for ticket date/time selectors */
@media only screen and (max-width: 767px) {
	.mpwem_registration_area .date-time-area {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
	}

	.mpwem_registration_area .date-time-area>label,
	.mpwem_registration_area .date-time-area>.mpwem_time_area {
		width: 100% !important;
		flex: 0 0 100% !important;
	}

	.mpwem_registration_area .date-time-area>label,
	.mpwem_registration_area .date-time-area .mpwem_time_area label {
		flex-wrap: wrap !important;
		gap: 6px !important;
		width: 100% !important;
	}

	.mpwem_registration_area .date-time-area>label .formControl,
	.mpwem_registration_area .date-time-area>label input#mpwem_date_time,
	.mpwem_registration_area .date-time-area .mpwem_time_area select.formControl {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}

	.mpwem_registration_area .date-time-area .mpwem_time_area .select2,
	.mpwem_registration_area .date-time-area .mpwem_time_area .select2-container,
	.mpwem_registration_area .date-time-area .mpwem_time_area span.select2-container.select2,
	.mpwem_registration_area .date-time-area .mpwem_time_area span.select2-container.select2 span.select2-selection {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 100% !important;
	}

	.mpwem_registration_area .date-time-area>label i,
	.mpwem_registration_area .date-time-area .mpwem_time_area label i {
		position: static !important;
		transform: none !important;
	}
}

/* Dark theme compatibility */
@media (prefers-color-scheme: dark) {
	.mep-low-stock-warning {
		background: linear-gradient(135deg, #D32F2F, #C62828);
		box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
	}

	.mep-limited-availability-ribbon {
		background: linear-gradient(135deg, #F57C00, #EF6C00);
		box-shadow: 0 1px 3px rgba(245, 124, 0, 0.3);
	}
}

/* High contrast mode */
@media (prefers-contrast) {

	.mep-low-stock-warning,
	.mep-limited-availability-ribbon {
		border: 2px solid #FFFFFF;
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

	.mep-low-stock-warning,
	.mep-limited-availability-ribbon {
		animation: none;
	}

	.mep-low-stock-warning::before,
	.mep-limited-availability-ribbon::before {
		animation: none;
	}
}

.mpwem_registration_area .date-time-area .formControl {
	min-width: min(75px, 100%);
	z-index: 1;
}

.mpwem_registration_area .date-time-area>label::after {
	z-index: 0;
}

.woocommerce-order-details ul.wc-item-meta li>p {
	padding: 0px !important;
}

.mpwem_registration_area .date-time-area label {
	width: max-content;
}

.mpTabs.kera_ticket_area {
	margin-top: 20px;
}

.mpTabs.kera_ticket_area .mpwem_ticket_type {
	padding: 15px;
}

div.mpwem_style .kera_ticket_area [data-tabs-target].active {
	background-color: #fff !important;

}


div.category-item {
	display: flex;
	flex-direction: column;
}

div.category-item div.category-title {
	text-align: center;
	padding: 10px;
	border-radius: 10px 10px 0 0;
	color: white;
	font-size: 20px;
	margin: 0;

}

div.mpwem_style .kera_ticket_area [data-tabs-target] {

	margin: 0 15px 0 0;
	border-radius: 10px;
	border: 1px solid var(--color_theme);
	align-items: inherit !important;
}

div.mpwem_style .kera_ticket_area [data-tabs-target].active div.category-item div.category-title {
	background-color: var(--color_theme);
	color: var(--color_theme_alter);

}

div.mpwem_style .kera_ticket_area [data-tabs-target] div.category-item div.category-content {
	padding: 20px;
}

div.mpwem_style .kera_ticket_area [data-tabs-target] div.category-item div.category-title {
	background-color: #ab93b1;
	color: #fff;

}

button.mep_event_list_all {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
}

button.mep_event_list_all:hover {
	border-bottom: 2px solid #1e0a3c;
	cursor: pointer;
}


button.mep_event_list_all.active {
	color: #3659e3;
	border-bottom-color: #3659e3;
}

div.mep_event_list_doc_area {
	margin: 20px 0;
	display: flex;
	justify-content: space-between;
}

div.mep_event_list_doc {
	display: flex;
	gap: 24px;
}

button.mep_event_list_today {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
}

button.mep_event_list_today:hover {
	border-bottom: 2px solid #1e0a3c;
	cursor: pointer;
}

button.mep_event_list_today.active {
	color: #3659e3;
	border-bottom-color: #3659e3;
}

button.mep_event_list_grid {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;

	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
	align-items: center;
	gap: 10px;
	margin-right: 10px;
}

button.mep_event_list_grid:hover {
	border-color: #3659e3;
	cursor: pointer;
}

button.mep_event_list_grid.active {
	color: #3659e3;
	border-color: #3659e3;
}

button.mep_event_list_list {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;

	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
	align-items: center;
	gap: 10px;
}

button.mep_event_list_list:hover {
	border-color: #3659e3;
	cursor: pointer;
}

button.mep_event_list_list.active {
	color: #3659e3;
	border-color: #3659e3;
}

button.mep_event_list_this_week {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
}

button.mep_event_list_this_week:hover {
	border-bottom: 2px solid #1e0a3c;
	cursor: pointer;
}

button.mep_event_list_this_week.active {
	color: #3659e3;
	border-bottom-color: #3659e3;
}

button.mep_event_list_this_month {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
}

button.mep_event_list_this_month:hover {
	border-bottom: 2px solid #1e0a3c;
	cursor: pointer;
}

button.mep_event_list_this_month.active {
	color: #3659e3;
	border-bottom-color: #3659e3;
}

button.mep_event_list_filter_toggle {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
	align-items: center;
	gap: 10px;
	margin-right: 10px;
}

button.mep_event_list_filter_toggle:hover {
	border-color: #3659e3;
	cursor: pointer;
}

button.mep_event_list_filter_toggle.active {
	color: #3659e3;
	border-color: #3659e3;
}

button.mep_event_list_calender {
	all: unset;
	font-size: .875rem;
	line-height: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	color: #6f7287;
	align-items: center;
	gap: 10px;
}

button.mep_event_list_calender:hover {
	border-bottom: 2px solid #1e0a3c;
	cursor: pointer;
}

button.mep_event_list_calender.active {
	color: #3659e3;
	border-bottom-color: #3659e3;
}

.mep_event_filter_panel {
	display: none;
	background: #fff;
	border: 1px solid #E2E2E2;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 0 20px 20px 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#mage-container.mage .mep_filter_grid,
.mep_filter_grid {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: flex-end !important;
	gap: 12px;
}

#mage-container.mage .mep_filter_grid>label,
.mep_filter_grid>label {
	display: flex !important;
	flex-direction: column !important;
	gap: 6px;
	font-size: .7rem;
	font-weight: 600;
	color: #1e0a3c;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	flex: 1 1 0 !important;
	min-width: 0;
	position: static;
}

#mage-container.mage .mep_filter_grid>label>input.formControl,
#mage-container.mage .mep_filter_grid>label>select.formControl,
.mep_filter_grid>label>input.formControl,
.mep_filter_grid>label>select.formControl {
	display: block !important;
	padding: 10px 12px !important;
	border: 1px solid #D2D2D2 !important;
	border-radius: 8px !important;
	font-size: .875rem !important;
	color: #434652 !important;
	background: #fff !important;
	width: 100% !important;
	box-sizing: border-box !important;
	height: 42px !important;
	box-shadow: none !important;
	margin: 0 !important;
	min-width: 0 !important;
	max-width: 100% !important;
}

.mep_filter_grid>label>input.formControl:focus,
.mep_filter_grid>label>select.formControl:focus {
	outline: none;
	border-color: #3659e3;
}

.mep_filter_actions {
	display: flex;
	align-items: flex-end;
	flex: 0 0 auto;
	padding-bottom: 0;
}

.mep_event_filter_clear {
	all: unset;
	cursor: pointer;
	font-size: .875rem;
	font-weight: 600;
	background-color: #3659e3;
	color: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	transition: background 150ms ease;
	white-space: nowrap;
	height: auto;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mep_event_filter_clear:hover {
	background-color: #3659e3;
	color: #fff;
}

.mep_event_filter_clear:before {
	content: "\00d7";
	font-size: 1.2rem;
	line-height: 1;
}

.loader-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(2px);
	/* ব্যাকগ্রাউন্ড ব্লার ইফেক্ট */
	display: none;
	/* শুরুতে হাইড */
	justify-content: center;
	align-items: center;
	z-index: 99999;
	transition: opacity 0.7s ease;
	margin: 0 !important;
	max-width: 100vw !important;
}

/* স্পিনারের স্টাইল */
.modern-spinner {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modern-spinner span {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 4px solid transparent;
	border-top-color: #6366f1;
	/* Indigo Color */
	animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

/* ৪টি লেয়ারের আলাদা ডিলে যাতে দেখতে সুন্দর লাগে */
.modern-spinner span:nth-child(1) {
	animation-delay: -0.45s;
}

.modern-spinner span:nth-child(2) {
	animation-delay: -0.3s;
}

.modern-spinner span:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* শো করার জন্য ক্লাস */
.loader-overlay.active {
	display: flex;
}

div.mep_event_filter_panel {
	position: relative;
}

button.mep_event_filter_close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 5px;
	background-color: transparent;
	color: #bbb;
	box-shadow: none;
}

div.no_event_found {
	display: none;
}

div.list_calender {
	display: contents;
	margin: 0;
	padding: 0;
	border: none;
}

div.list_calender .mpwem_calender_area {
	border: none;
	padding: 0;
	position: relative;
}

div.list_calender .mpwem_calender_area [data-collapse].mActive {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 111111;
}

.es-top-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	animation: fadeDown 0.6s ease both;
}

.es-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e63946;
	animation: blink 1s ease-in-out infinite;
}

.es-tag {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	color: #e63946;
}


div.mpwem_registration_area.kera_class {
	background-color: #f7f9fb;
	padding: 15px;
}

div.mpwem_registration_area.kera_class .date-time-header {
	background-color: transparent;
	border: none;
	box-shadow: none;
	color: #222;
	padding: 0 0 10px 0 !important;
}

div.mpwem_registration_area.kera_class .ticket-title {
	color: #222;
	font-size: 20px !important;
	text-align: left !important;
	font-weight: 600;
}

div.mpwem_registration_area.kera_class .tabsContent {
	padding: 0 !important;
}

div.mpwem_registration_area.kera_class .tabsContent .tabsItem {}

div.mpwem_registration_area.kera_class .tabsContent .data-label {
	padding: 15px;
	border-bottom: 1px solid #ddd;
	background: linear-gradient(135deg, var(--color_theme), var(--color_theme));
	color: #fff;
	font-weight: 600;
}

div.mpwem_registration_area.kera_class .tabsContent .mpwem_ticket_type {
	box-shadow: none;
}

div.mpwem_style .kera_ticket_area [data-tabs-target].active div.category-item div.category-title {
	background: linear-gradient(135deg, var(--color_theme), var(--color_theme));
}

div.mpwem_style .kera_ticket_area [data-tabs-target].active {
	border: 2px solid var(--color_theme);
}

div.mpwem_style .kera_ticket_area [data-tabs-target] {
	padding: 0;
}

.mep-events-wrapper div.xtra-item-left {
	display: flex;
	color: #4a90e2;
}

.mep-events-wrapper div.xtra-item-left i {
	margin-right: 10px;
}

div.mpwem_registration_area.kera_class .price_content {
	display: flex;
	align-items: center;
}

div.mpwem_registration_area.kera_class .price_content h6 {
	color: #4a90e2;
	margin-right: 20px;

}

div.mpwem_registration_area.kera_class .mep_ticket_item p {

	margin-bottom: 10px;

}

div.mpwem_registration_area.kera_class .mep_ticket_item h6 {

	font-size: 16px;
	font-weight: normal;

}

div.mpwem_registration_area.kera_class .mep_ticket_item .ticket-price {

	font-size: 18px;
	font-weight: 600;
	color: #2B3A55;
	text-align: right;
	flex: 0 0 20%;

}

div.mpwem_registration_area.kera_class .mep_ticket_item .ticket-data {

	display: flex;
	justify-content: space-between;
	align-items: center;


}

div.mpwem_registration_area.kera_class .mep_ticket_item .ticket-info {

	flex: 0 0 48%;


}

div.mpwem_registration_area.kera_class .mep_ticket_item .qtyIncDec {
	max-width: 120px;
	border: 2px solid #ddd;
	border-radius: 10px;

}

div.mpwem_registration_area.kera_class .mep_ticket_item .qtyIncDec .decQty {

	border-right: 2px solid #ddd;
	border-radius: 10px 0 0 10px;
	background-color: #fff;
	color: #4a90e2;
}

div.mpwem_registration_area.kera_class .mep_ticket_item .qtyIncDec .incQty {

	border-left: 2px solid #ddd;
	border-radius: 0 10px 10px 0;
	background-color: #fff;
	color: #4a90e2;
}

div.mpwem_registration_area.kera_class .mep_ticket_item .qtyIncDec .inputIncDec {
	margin: 0;
	border-radius: 0;
	width: 100%;
	background-color: #fff;
}

/* Ticket mode badges (shown on hybrid events) */
.mep-ticket-mode-badge {
	display: inline-block;
	vertical-align: middle;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	padding: 3px 8px;
	border-radius: 20px;
	margin-left: 6px;
	white-space: nowrap;
	letter-spacing: 0.02em;
}

.mep-ticket-mode-badge--inperson {
	background-color: #ecfdf5;
	color: #059669;
	border: 1px solid #6ee7b7;
}

.mep-ticket-mode-badge--online {
	background-color: #eff6ff;
	color: #2563eb;
	border: 1px solid #bfdbfe;
}

/* ===== RSVP Registration Form (frontend) ===== */
.mpwem_booking_panel.mep-rsvp-container {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin-bottom: 20px;
}

.mep-rsvp-container h3 {
	background: var(--color_theme, #0073aa);
	color: var(--color_7, #ffffff);
	margin: 0;
	padding: 18px 24px;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.4;
}

#mep-rsvp-form {
	padding: 20px 24px 24px;
}

.mep-rsvp-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}

.mep-rsvp-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mep-rsvp-field label {
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin: 0;
}

.mep-rsvp-field label span {
	color: #e53e3e;
	margin-left: 2px;
}

.mep-rsvp-field input[type="text"],
.mep-rsvp-field input[type="email"],
.mep-rsvp-field input[type="number"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	color: #1f2937;
	background: #f9fafb;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
	outline: none;
}

.mep-rsvp-field input[type="text"]:focus,
.mep-rsvp-field input[type="email"]:focus,
.mep-rsvp-field input[type="number"]:focus {
	border-color: var(--color_theme, #0073aa);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.12);
}

.mep-rsvp-message {
	display: none;
	font-size: 14px;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 16px;
	line-height: 1.5;
}

.mep-rsvp-message.success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.mep-rsvp-message.error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

#mep-rsvp-form .mep-rsvp-submit-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	position: relative !important;
	overflow: hidden !important;
	width: auto !important;
	min-width: 180px !important;
	padding: 13px 38px !important;
	background: var(--color_theme, #0073aa) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 50px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2) !important;
	transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
	text-decoration: none !important;
	line-height: 1 !important;
}

#mep-rsvp-form .mep-rsvp-submit-btn::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

#mep-rsvp-form .mep-rsvp-submit-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	transition: background 0.22s ease;
	border-radius: inherit;
}

#mep-rsvp-form .mep-rsvp-submit-btn:hover {
	transform: translateY(-2px) scale(1.04) !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
	filter: brightness(1.1) !important;
}

#mep-rsvp-form .mep-rsvp-submit-btn:hover::after {
	background: rgba(255, 255, 255, 0.12);
}

#mep-rsvp-form .mep-rsvp-submit-btn:active {
	transform: translateY(0) scale(0.97) !important;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18) !important;
	filter: brightness(0.95) !important;
}

#mep-rsvp-form .mep-rsvp-submit-btn:focus-visible {
	outline: 3px solid var(--color_theme, #0073aa) !important;
	outline-offset: 3px !important;
}

#mep-rsvp-form .mep-rsvp-submit-btn:disabled {
	opacity: 0.55 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
	filter: none !important;
}

@media (max-width: 600px) {
	.mep-rsvp-fields {
		grid-template-columns: 1fr;
	}
}

/***************************************************************************
 Default Theme — full template responsiveness
***************************************************************************/
.default_theme:not(.mep_smart_theme):not(.virtual_theme) {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) *,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) *::before,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) *::after {
	box-sizing: border-box;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_details_content img,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mp_wp_editor img,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) video,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) canvas {
	max-width: 100%;
	height: auto;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) iframe,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) embed,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) object {
	max-width: 100%;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) table {
	width: 100%;
	max-width: 100%;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_details_content,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mp_wp_editor {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_details_content img,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mp_wp_editor img {
	height: auto;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_details_content iframe,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mp_wp_editor iframe {
	width: 100%;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .post_thumb {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data {
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	min-width: 0;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info {
	flex: 1 1 180px;
	min-width: 0;
	max-width: 100%;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-price,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-price {
	flex: 0 1 auto;
	min-width: 0;
	text-align: left;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .qtyIncDec {
	flex: 0 0 auto;
	max-width: 100%;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area .mpwem_summery {
	flex-wrap: wrap;
	gap: 12px;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area button[type=submit],
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area [class*="_min_150"],
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area [class*="_min_200"] {
	min-width: 0;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_related_area .mpwem-price-area,
.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_related_area .mep_event_card__footer {
	flex-wrap: wrap;
}

.default_theme:not(.mep_smart_theme):not(.virtual_theme) .df-sidebar-part {
	max-width: 100%;
}

@media only screen and (max-width: 1199px) {
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-sidebar {
		flex-basis: 280px;
		width: 280px;
	}
}

@media only screen and (max-width: 1024px) {
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .content_area {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 24px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-content,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-sidebar {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider > .dFlex {
		flex-direction: column !important;
		flex-wrap: nowrap;
		width: 100%;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .sliderAllItem {
		width: 100% !important;
		min-width: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .sliderShowcase.left,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .sliderShowcase.right {
		width: 100% !important;
		min-width: 0 !important;
		flex-direction: row !important;
		flex-wrap: nowrap;
		overflow-x: auto;
		margin: 10px 0 0 !important;
		gap: 8px;
		-webkit-overflow-scrolling: touch;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .sliderShowcaseItem {
		flex: 0 0 72px;
		width: 72px;
		height: 72px;
		max-width: 72px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .iconIndicator {
		font-size: 22px;
		top: calc(50% - 12px);
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .iconIndicator.prevItem {
		left: 10px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .iconIndicator.nextItem {
		right: 10px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .date-time-header {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .date-time-area {
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		width: 100% !important;
		gap: 10px !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .date-time-area label,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_time_area,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_time_area label {
		width: 100% !important;
		max-width: 100% !important;
		flex: 1 1 auto !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area input#mpwem_date_time,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .date-time-area .formControl {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_related_area .related_title {
		align-items: flex-start;
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 767px) {
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .content_area {
		gap: 20px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .section-title {
		font-size: 20px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .date-time-header {
		padding: 14px 16px !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .date-time-header .ticket-title {
		width: 100% !important;
		text-align: left !important;
		font-size: 16px !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-header,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-header {
		padding: 14px 16px;
		font-size: 16px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service {
		--mep-tix-radius: 14px;
		--mep-tix-border: #e6e8ee;
		--mep-tix-text: #1a1a1f;
		--mep-tix-muted: #6b6b76;
		--mep-tix-soft: #f5f6f8;
		--mep-tix-accent: var(--color_theme, #2563eb);
		overflow: visible;
		background: transparent;
		box-shadow: none;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body {
		display: flex !important;
		flex-direction: column;
		gap: 12px;
		padding: 12px 0 4px !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .mep_ticket_item,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .mep_ticket_item {
		margin: 0 !important;
		padding: 0 !important;
		border: 1px solid var(--mep-tix-border) !important;
		border-radius: var(--mep-tix-radius);
		background: #fff;
		box-shadow: 0 2px 10px rgba(26, 26, 31, 0.05);
		overflow: hidden;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"info info"
			"price qty";
		align-items: center;
		gap: 10px 12px;
		padding: 14px 14px 12px !important;
		margin: 0 !important;
		border-bottom: 0 !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .ticket-info,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .ticket-info,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item .ticket-data .ticket-info {
		grid-area: info;
		flex: none !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .ticket-name,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .ticket-name,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-name {
		margin: 0 0 4px !important;
		font-size: 16px !important;
		font-weight: 700 !important;
		line-height: 1.3 !important;
		color: var(--mep-tix-text) !important;
		letter-spacing: -0.02em;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .ticket-description,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .ticket-description,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-description {
		margin: 0 0 8px !important;
		font-size: 13px !important;
		line-height: 1.45 !important;
		color: var(--mep-tix-muted) !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .ticket-remaining,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .ticket-remaining,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info .ticket-remaining {
		margin: 0 !important;
		padding: 4px 8px !important;
		font-size: 11px !important;
		font-weight: 700 !important;
		line-height: 1.2 !important;
		border-radius: 999px !important;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .ticket-price,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .ticket-price,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-price {
		grid-area: price;
		flex: none !important;
		width: auto !important;
		max-width: 100%;
		align-self: center;
		text-align: left !important;
		font-size: 18px !important;
		font-weight: 800 !important;
		line-height: 1.2 !important;
		color: var(--mep-tix-accent) !important;
		letter-spacing: -0.03em;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .ticket-price .mep-limited-availability-ribbon {
		width: auto;
		margin: 0 0 4px !important;
		margin-left: 0;
		text-align: left;
		display: inline-block;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .quantity-control,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .quantity-control {
		grid-area: qty;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		min-width: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .qtyIncDec,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .qtyIncDec,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .qtyIncDec {
		display: inline-flex !important;
		align-items: center;
		justify-content: space-between;
		width: 132px;
		max-width: 132px;
		min-height: 44px;
		margin: 0;
		padding: 4px;
		border: 1px solid var(--mep-tix-border);
		border-radius: 12px;
		background: var(--mep-tix-soft);
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .qtyIncDec .decQty,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .qtyIncDec .incQty,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .qtyIncDec .decQty,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .qtyIncDec .incQty,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .qtyIncDec .decQty,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .qtyIncDec .incQty {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px;
		padding: 0 !important;
		border-radius: 10px !important;
		background: #fff !important;
		color: var(--mep-tix-accent) !important;
		box-shadow: 0 1px 2px rgba(26, 26, 31, 0.06);
		flex: 0 0 36px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .qtyIncDec label,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .qtyIncDec label,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .qtyIncDec label {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 1 1 auto;
		margin: 0;
		min-width: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .inputIncDec,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .inputIncDec,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .inputIncDec {
		width: 36px !important;
		min-width: 0;
		height: 36px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		font-size: 16px !important;
		font-weight: 700 !important;
		color: var(--mep-tix-text) !important;
		text-align: center;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area .mpwem_summery {
		flex-direction: column;
		align-items: stretch;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area .total {
		width: 100%;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area button[type=submit],
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area .mpwem_book_now,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area [class*="_min_150"],
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_form_submit_area [class*="_min_200"] {
		width: 100%;
		min-width: 0 !important;
		max-width: 100%;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .mpwem_booking_panel .mep_attendee_info .mep_form_item .mp_form_item label {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-events-wrapper table,
	.mpwem_style.mep-events-wrapper .default_theme:not(.mep_smart_theme):not(.virtual_theme) table {
		table-layout: auto;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpPopup .popupMainArea {
		width: calc(100% - 24px) !important;
		max-width: calc(100% - 24px) !important;
		margin: 12px auto;
		max-height: calc(100vh - 24px);
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpPopup .popup_close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_related_area .mep_event_card__book {
		margin-left: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) [class*="_min_150"],
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) [class*="_min_200"],
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) [class*="_min_250"] {
		min-width: 0 !important;
		max-width: 100%;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_calender_area > button,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_location_sidebar button {
		white-space: normal;
	}
}

@media only screen and (max-width: 640px) {
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-sidebar-tags {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_organizer {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_organizer h5 {
		flex-wrap: wrap;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_organizer_item {
		padding-left: 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mep-default-sidrbar-price-seat {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .event_speaker_list_area {
		padding: 14px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_slider_area .superSlider .sliderShowcaseItem {
		flex-basis: 56px;
		width: 56px;
		height: 56px;
		max-width: 56px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area_show_msg {
		margin: 20px 0;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area_show_msg ._margin_zero_text_center {
		padding: 20px 16px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_details > h2,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_details > h2._mb {
		font-size: 1.25rem !important;
	}
}

@media only screen and (max-width: 480px) {
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .date_time_location_short .short_item {
		padding: 12px 14px;
		gap: 10px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .ticket-data,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ex_service .ticket-data {
		padding: 12px !important;
		gap: 8px 10px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_registration_area .qtyIncDec,
	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .mpwem_ticket_type .qtyIncDec {
		width: 124px;
		max-width: 124px;
	}

	.default_theme:not(.mep_smart_theme):not(.virtual_theme) .share_widgets .share_widgets_list a {
		width: 40px;
		height: 40px;
	}
}
/**
 * Modern event list (grid + list) — scoped to .list_with_filter_section.mep_event_list
 * Keeps MixItUp / filter / pagination classes intact.
 */

.list_with_filter_section.mep_event_list {
	--mep-card-radius: 16px;
	--mep-card-border: #e8e8ec;
	--mep-card-bg: #ffffff;
	--mep-card-text: #111113;
	--mep-card-muted: #6b6b76;
	--mep-card-soft: #f4f4f6;
	--mep-card-shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
	--mep-card-shadow-hover: 0 16px 40px rgba(17, 17, 19, 0.1);
	max-width: 1240px;
	margin: 0 auto;
}

/* Inner surface: passthrough so existing card chrome on .filter_item still works */
.list_with_filter_section.mep_event_list .mep_event_card__surface {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	height: 100%;
	background: transparent;
	border: 0;
	border-radius: inherit;
	overflow: visible;
}

.list_with_filter_section.mep_event_list .mep_list_thumb_img {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	object-fit: cover;
	object-position: center;
}

.list_with_filter_section.mep_event_list .mep_list_thumb:has(.mep_list_thumb_img) > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_list_thumb:has(.mep_list_thumb_img) > div[data-href] {
	background-image: none !important;
	background-color: transparent !important;
	z-index: 2;
}

/* ── Grid shell ─────────────────────────────────────────────────── */

.list_with_filter_section.mep_event_list div.mage_grid_box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: stretch;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_card,
.list_with_filter_section.mep_event_list .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .filter_item.mep_event_list_item {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--mep-card-bg);
	border: 1px solid var(--mep-card-border);
	border-radius: var(--mep-card-radius);
	/* Keep visible so Add To Calendar / View More Dates popups are not clipped. */
	overflow: visible;
	box-shadow: var(--mep-card-shadow);
	margin: 0 !important;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	z-index: 1;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_card:hover,
.list_with_filter_section.mep_event_list .filter_item.mep_event_card:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--mep-card-shadow-hover);
	border-color: transparent;
	z-index: 5;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_card:has(.mActive),
.list_with_filter_section.mep_event_list .filter_item.mep_event_grid_item:has(.mActive),
.list_with_filter_section.mep_event_list .filter_item.mep_event_list_item:has(.mActive) {
	z-index: 100;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .filter_item.mep_event_card:hover,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_card:focus-within {
		transform: none;
	}
}

/* Compensate for inline width calc that assumed 14px gutter only.
 * Skip Owl Carousel slides — those must fill the owl-item. */
.list_with_filter_section.mep_event_list [data-column="2"] > .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .mage_grid_box:not(.owl-carousel) > .filter_item.mep_event_grid_item[style*="50%"] {
	width: calc(50% - 10px) !important;
}

.list_with_filter_section.mep_event_list [data-column="3"] > .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .mage_grid_box:not(.owl-carousel) > .filter_item.mep_event_grid_item[style*="33."] {
	width: calc(33.333% - 14px) !important;
}

.list_with_filter_section.mep_event_list [data-column="4"] > .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .mage_grid_box:not(.owl-carousel) > .filter_item.mep_event_grid_item[style*="25%"] {
	width: calc(25% - 15px) !important;
}

/* When data-column is on the list sec wrapper, only size direct grid children */
.list_with_filter_section.mep_event_list .mep_event_list_sec[data-column="2"] > .mage_grid_box:not(.owl-carousel) > .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .mep_event_list_sec[data-column="2"] > .filter_item.mep_event_grid_item {
	width: calc(50% - 10px) !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_sec[data-column="3"] > .mage_grid_box:not(.owl-carousel) > .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .mep_event_list_sec[data-column="3"] > .filter_item.mep_event_grid_item {
	width: calc(33.333% - 14px) !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_sec[data-column="4"] > .mage_grid_box:not(.owl-carousel) > .filter_item.mep_event_grid_item,
.list_with_filter_section.mep_event_list .mep_event_list_sec[data-column="4"] > .filter_item.mep_event_grid_item {
	width: calc(25% - 15px) !important;
}

/* ── Media / thumbnail ──────────────────────────────────────────── */

.list_with_filter_section.mep_event_list .mep_event_card__media {
	position: relative;
	flex-shrink: 0;
	border-radius: var(--mep-card-radius) var(--mep-card-radius) 0 0;
	overflow: hidden;
}

.list_with_filter_section.mep_event_list .mep_event_grid_item .mep_list_thumb {
	width: 100%;
	height: 210px;
	min-height: 210px;
	border-radius: 0;
	overflow: hidden;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_card__body,
.list_with_filter_section.mep_event_list .mpwem-price-area,
.list_with_filter_section.mep_event_list .mpwem_status_area,
.list_with_filter_section.mep_event_list .mpwem_list_date_list,
.list_with_filter_section.mep_event_list .mpwem_get_status_calender {
	overflow: visible;
}

.list_with_filter_section.mep_event_list .mep_event_grid_item .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_grid_item .mep_list_thumb > div[style*="background-image"] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	transition: transform 500ms ease;
	cursor: pointer;
}

.list_with_filter_section.mep_event_list .mep_event_grid_item:hover .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_grid_item:hover .mep_list_thumb > div[style*="background-image"] {
	transform: scale(1.04);
}

.list_with_filter_section.mep_event_list .mep_event_card__category {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 13;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 8px;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mep-card-text);
	line-height: 1.2;
	max-width: min(46%, 140px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Date badge */
.list_with_filter_section.mep_event_list .mep-ev-start-date {
	top: 14px;
	left: 14px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--mep-card-text);
	box-shadow: 0 4px 16px rgba(17, 17, 19, 0.08);
	min-width: 52px;
}

.list_with_filter_section.mep_event_list .mep-ev-start-date .mep-month {
	background: transparent;
	color: var(--mep-card-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	border-radius: 0;
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep-ev-start-date .mep-day {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--mep-card-text);
}

/*
 * Ribbons sit bottom-right on the image so they never collide with
 * the date badge (top-left) or category chip (top-right).
 */
.list_with_filter_section.mep_event_list .mepev-ribbons,
.list_with_filter_section.mep_event_list .mep_list_thumb .mepev-ribbons,
.list_with_filter_section.mep_event_list div.mep-event-list-loop .mepev-ribbons {
	position: absolute;
	top: auto !important;
	left: auto !important;
	right: 14px !important;
	bottom: 14px !important;
	z-index: 12;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	max-width: calc(100% - 28px);
	pointer-events: none;
}

.list_with_filter_section.mep_event_list .mepev-ribbon,
.list_with_filter_section.mep_event_list div.mep-event-list-loop .mepev-ribbons .mepev-ribbon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	pointer-events: auto;
	padding: 5px 10px;
	border-radius: 8px;
	border: 0;
	background: rgba(17, 17, 19, 0.82);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	white-space: nowrap;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.list_with_filter_section.mep_event_list .mepev-ribbon.multidate,
.list_with_filter_section.mep_event_list .mepev-ribbon.recurring {
	background: rgba(37, 99, 235, 0.9);
	color: #fff;
}

.list_with_filter_section.mep_event_list .mepev-ribbon.hybrid,
.list_with_filter_section.mep_event_list .mepev-ribbon.online {
	background: rgba(124, 58, 237, 0.9);
	color: #fff;
}

.list_with_filter_section.mep_event_list .mepev-ribbon.sold-out {
	background: rgba(220, 38, 38, 0.92);
	color: #fff;
}

.list_with_filter_section.mep_event_list .mepev-ribbon.limited-availability {
	background: rgba(217, 119, 6, 0.92);
	color: #fff;
}

/* ── Body ───────────────────────────────────────────────────────── */

.list_with_filter_section.mep_event_list .mep_event_grid_item .mep_list_event_details,
.list_with_filter_section.mep_event_list .mep_event_card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
	min-height: 0;
	padding: 18px 20px 20px;
	box-sizing: border-box;
}

.list_with_filter_section.mep_event_list .event_details_link,
.list_with_filter_section.mep_event_list .mep_list_event_details a.event_details_link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none !important;
	color: inherit;
	flex: 1;
	min-height: 0 !important;
	margin-bottom: 0 !important;
}

.list_with_filter_section.mep_event_list a {
	text-decoration: none;
}

.list_with_filter_section.mep_event_list div.mep_list_event_details .mep_list_title,
.list_with_filter_section.mep_event_list h2.mep_list_title {
	margin: 0 0 4px;
	padding: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mep-card-text);
	text-transform: none;
}

.list_with_filter_section.mep_event_list .filter_item:hover h2.mep_list_title {
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .list_content {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .list_content span[class*="mi"],
.list_with_filter_section.mep_event_list .list_content span[class*="fa"] {
	flex-shrink: 0;
	margin-top: 2px;
	opacity: 0.75;
}

.list_with_filter_section.mep_event_list .list_content.upcomming_organizer {
	display: none;
}

.list_with_filter_section.mep_event_list .list_content.upcomming_location {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 4px;
}

.list_with_filter_section.mep_event_list .list_content.upcomming_date_only_only {
	color: var(--mep-card-text);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.02em;
}

/* ── Footer / price / actions ───────────────────────────────────── */

.list_with_filter_section.mep_event_list .mpwem-price-area,
.list_with_filter_section.mep_event_list .mep_event_card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--mep-card-border);
	flex-wrap: wrap;
}

.list_with_filter_section.mep_event_list .list_price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.list_with_filter_section.mep_event_list div.mpwem-price-area .list_price_label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-card-muted);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list div.mpwem-price-area .list_price_value,
.list_with_filter_section.mep_event_list div.mpwem-price-area .list_price_value .amount {
	font-size: 16px;
	font-weight: 800;
	color: var(--mep-card-text);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_card__book {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
	background: var(--mep-card-text);
	color: #fff;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none !important;
	transition: opacity 150ms ease;
	flex-shrink: 0;
}

.list_with_filter_section.mep_event_list .mep_event_card__book:hover {
	opacity: 0.88;
	color: #fff;
}

.list_with_filter_section.mep_event_list .mep_event_card__book span {
	transition: transform 150ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_card__book:hover span {
	transform: translateX(3px);
}

/* Status chips / calendar / more dates — compact secondary actions */
.list_with_filter_section.mep_event_list .mpwem_status_area,
.list_with_filter_section.mep_event_list .mpwem_list_date_list {
	order: 3;
	width: 100%;
	margin: 0;
}

.list_with_filter_section.mep_event_list button.mpwem_get_date_list,
.list_with_filter_section.mep_event_list .mpwem_get_status_calender .mpwem_get_date_list {
	min-width: 0;
	width: 100%;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
	background: var(--mep-card-soft);
	color: var(--mep-card-text);
	border: 1px solid var(--mep-card-border);
}

.list_with_filter_section.mep_event_list div.mpwem-price-area .mpwem_get_status,
.list_with_filter_section.mep_event_list .mpwem_get_status {
	min-width: 0;
	width: 100%;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
	background: var(--mep-card-soft);
	color: var(--mep-card-text);
	border: 1px solid transparent;
}

/* Dropdown shell: only this wrapper is absolute. Inner .list_date_list must
   stay in normal flow — base mpwem_style makes it absolute, which collapsed
   this shell to 0 height and hid the dates under neighboring card images. */
.list_with_filter_section.mep_event_list .mpwem_list_date_list,
.list_with_filter_section.mep_event_list .mpwem_get_status_calender {
	position: relative;
	z-index: 2;
}

/* Style the open panel only. Do not force display — collapse JS toggles
   visibility for "Hide Date Lists" / "Hide Calender" via .mActive + slideUp. */
.list_with_filter_section.mep_event_list .calendar-list-area.mActive,
.list_with_filter_section.mep_event_list .date_list_area.mActive {
	position: absolute !important;
	left: 0;
	right: 0;
	top: calc(100% + 8px) !important;
	bottom: auto !important;
	z-index: 1200 !important;
	max-height: 280px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	padding: 10px;
	border: 1px solid var(--mep-card-border);
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(17, 17, 19, 0.14);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.list_with_filter_section.mep_event_list .date_list_area .list_date_list,
.list_with_filter_section.mep_event_list div.mpwem_list_date_list .list_date_list {
	position: static !important;
	left: auto !important;
	top: auto !important;
	width: 100% !important;
	max-width: 100% !important;
	max-height: none !important;
	overflow: visible !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	z-index: auto !important;
}

.list_with_filter_section.mep_event_list .date_list_area .date_item {
	background: var(--mep-card-soft);
	border-radius: 8px;
	padding: 10px 12px;
	margin: 0 0 6px;
}

.list_with_filter_section.mep_event_list .date_list_area .date_item:last-child {
	margin-bottom: 0;
}

.list_with_filter_section.mep_event_list .date_list_area .date_item a {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--mep-card-text);
	text-decoration: none;
	line-height: 1.35;
}

.list_with_filter_section.mep_event_list .date_list_area .date_item:hover {
	background: #ebebef;
}

.list_with_filter_section.mep_event_list .date_list_area.open_list:before,
.list_with_filter_section.mep_event_list .date_list_area.mActive:before {
	display: none;
}

.list_with_filter_section.mep_event_list .calendar-list-area .list_calender {
	border-radius: 8px;
	font-size: 13px;
}

.list_with_filter_section.mep_event_list div.mage_grid_box,
.list_with_filter_section.mep_event_list .all_filter_item,
.list_with_filter_section.mep_event_list {
	overflow: visible !important;
}

/* Media stays clipped; never compete with open dropdowns. */
.list_with_filter_section.mep_event_list .mep_event_card__media,
.list_with_filter_section.mep_event_list .mep_list_thumb {
	z-index: 1;
}

.list_with_filter_section.mep_event_list .mep-ev-start-date {
	z-index: 13;
}

/* Hide Book Now hover overlay if enabled — card already has Book CTA */
.list_with_filter_section.mep_event_list .item_hover_effect {
	display: none !important;
}

/* ── List style (horizontal) ────────────────────────────────────── */

.list_with_filter_section.mep_event_list .filter_item.mep_event_list_item {
	flex-direction: column;
	width: 100% !important;
	align-items: stretch;
}

.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__surface {
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	min-height: 180px;
}

.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__media {
	width: 240px;
	flex-shrink: 0;
	align-self: stretch;
	border-radius: var(--mep-card-radius) 0 0 var(--mep-card-radius);
	overflow: hidden;
}

.list_with_filter_section.mep_event_list .mep_event_list_item .mep_list_thumb {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 180px;
	border-radius: 0;
	overflow: hidden;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_list_item .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_list_item .mep_list_thumb > div[style*="background-image"] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_item .mep_list_event_details,
.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__body {
	flex: 1 1 auto;
	width: auto;
	min-width: 0;
	padding: 20px 24px;
	justify-content: center;
}

.list_with_filter_section.mep_event_list .mep_event_list_item .list_content.upcomming_organizer {
	display: flex;
}

.list_with_filter_section.mep_event_list .mep-event-excerpt {
	font-size: 14px;
	line-height: 1.55;
	color: var(--mep-card-muted);
	margin: 4px 0 8px;
}

/* ── Filters / search chrome ────────────────────────────────────── */

/* ── New Style toolbar: date range + filter / layout ─────────────── */
.list_with_filter_section.mep_event_list .mep_event_list_doc_area {
	--mep-doc-radius: 14px;
	--mep-doc-border: #e8e8ec;
	--mep-doc-bg: #fff;
	--mep-doc-soft: #f4f4f6;
	--mep-doc-text: #111113;
	--mep-doc-muted: #6b6b76;
	--mep-doc-accent: var(--color_theme, #2563eb);
	--mep-doc-accent-text: var(--color_theme_alter, #fff);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 0 22px;
	padding: 10px;
	border: 1px solid var(--mep-doc-border);
	border-radius: 18px;
	background:
		radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 250, 0.94) 50%, rgba(244, 244, 246, 0.98) 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 8px 24px rgba(17, 17, 19, 0.04);
	box-sizing: border-box;
}

.list_with_filter_section.mep_event_list .mep_event_list_doc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.list_with_filter_section.mep_event_list .mep_event_list_doc--range {
	padding: 4px;
	border-radius: var(--mep-doc-radius);
	background: var(--mep-doc-soft);
	border: 1px solid rgba(17, 17, 19, 0.04);
}

.list_with_filter_section.mep_event_list .mep_event_list_doc--tools {
	gap: 10px;
	margin-left: auto;
}

.list_with_filter_section.mep_event_list .mep_event_list_view_switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border-radius: var(--mep-doc-radius);
	background: var(--mep-doc-soft);
	border: 1px solid rgba(17, 17, 19, 0.04);
}

.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_all,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_today,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_this_week,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_this_month,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_filter_toggle,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_grid,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_list,
.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_calender {
	all: unset;
	box-sizing: border-box;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 14px !important;
	margin: 0 !important;
	border: 1px solid transparent !important;
	border-radius: 10px !important;
	background: transparent !important;
	color: var(--mep-doc-muted) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	letter-spacing: -0.01em;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.list_with_filter_section.mep_event_list .mep_event_list_doc_area button i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	font-size: 13px;
	line-height: 1;
	color: inherit !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_doc_area button span {
	color: inherit !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_doc--range button:hover {
	color: var(--mep-doc-text) !important;
	background: rgba(255, 255, 255, 0.9) !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_doc--range button.active {
	color: var(--mep-doc-accent-text) !important;
	background: var(--mep-doc-accent) !important;
	border-color: var(--mep-doc-accent) !important;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--mep-doc-accent) 28%, transparent);
}

.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_filter_toggle {
	padding: 8px 16px !important;
	border: 1px solid var(--mep-doc-border) !important;
	background: var(--mep-doc-bg) !important;
	color: var(--mep-doc-text) !important;
	box-shadow: 0 2px 8px rgba(17, 17, 19, 0.04);
}

.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_filter_toggle:hover {
	border-color: color-mix(in srgb, var(--mep-doc-accent) 35%, var(--mep-doc-border)) !important;
	color: var(--mep-doc-accent) !important;
	transform: translateY(-1px);
}

.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_filter_toggle.active {
	background: color-mix(in srgb, var(--mep-doc-accent) 10%, #fff) !important;
	border-color: color-mix(in srgb, var(--mep-doc-accent) 35%, var(--mep-doc-border)) !important;
	color: var(--mep-doc-accent) !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_view_switch button:hover {
	color: var(--mep-doc-text) !important;
	background: rgba(255, 255, 255, 0.95) !important;
}

.list_with_filter_section.mep_event_list .mep_event_list_view_switch button.active {
	color: var(--mep-doc-accent-text) !important;
	background: var(--mep-doc-accent) !important;
	border-color: var(--mep-doc-accent) !important;
	box-shadow: 0 8px 18px color-mix(in srgb, var(--mep-doc-accent) 28%, transparent);
}

@media (max-width: 900px) {
	.list_with_filter_section.mep_event_list .mep_event_list_doc_area {
		padding: 10px;
		gap: 12px;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_doc--tools {
		width: 100%;
		margin-left: 0;
		justify-content: space-between;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_view_switch {
		flex: 1 1 auto;
		justify-content: stretch;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_view_switch button {
		flex: 1 1 0;
	}
}

@media (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mep_event_list_doc--range {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_grid span,
	.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_list span,
	.list_with_filter_section.mep_event_list .mep_event_list_doc_area button.mep_event_list_calender span {
		display: none;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_view_switch button {
		min-width: 42px;
		padding: 8px 10px !important;
	}
}

.list_with_filter_section.mep_event_list .search_sort_code_area {
	margin: 0 0 22px;
	border: none;
	padding: 0;
	background: transparent;
}

.list_with_filter_section.mep_event_list .search_sort_code,
.list_with_filter_section.mep_event_list .sort_code_search_box,
.list_with_filter_section.mep_event_list .sort_code_search_box.mep_filter_bar {
	display: block;
	border: none;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.list_with_filter_section.mep_event_list .mep_filter_bar {
	position: relative;
	border: 1px solid rgba(17, 17, 19, 0.06);
	border-radius: 22px;
	background:
		radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 250, 0.92) 45%, rgba(244, 244, 246, 0.96) 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 10px 30px rgba(17, 17, 19, 0.05);
	padding: 18px 18px 16px;
	overflow: visible;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.list_with_filter_section.mep_event_list .filter_input_area,
.list_with_filter_section.mep_event_list .mep_filter_bar__fields,
.list_with_filter_section.mep_event_list .flexEqual.filter_input_area {
	display: grid !important;
	grid-template-columns: minmax(240px, 1.55fr) repeat(auto-fit, minmax(148px, 1fr));
	gap: 14px 12px;
	align-items: end;
	width: 100%;
	height: auto;
	margin: 0;
	border: none !important;
	background: transparent;
}

.list_with_filter_section.mep_event_list .filter_input_area > *,
.list_with_filter_section.mep_event_list .mep_filter_bar__fields > * {
	flex: none !important;
	border: none !important;
	border-right: none !important;
	min-width: 0;
}

.list_with_filter_section.mep_event_list .mep_filter_field {
	display: flex !important;
	flex-direction: column;
	gap: 7px;
	margin: 0;
	width: 100%;
}

.list_with_filter_section.mep_event_list .mep_filter_field__label {
	display: block;
	padding-left: 2px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a8a96;
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_filter_field__control {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.list_with_filter_section.mep_event_list .mep_filter_field__icon {
	position: absolute;
	left: 15px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #93939f;
	pointer-events: none;
	font-size: 13px;
	line-height: 1;
	transition: color 160ms ease;
}

.list_with_filter_section.mep_event_list .mep_filter_field:focus-within .mep_filter_field__icon {
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_filter_field--search .formControl,
.list_with_filter_section.mep_event_list .mep_filter_field--date .formControl {
	padding-left: 42px !important;
}

.list_with_filter_section.mep_event_list .mep_filter_field__control--select::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #93939f;
	border-bottom: 1.5px solid #93939f;
	transform: translateY(-62%) rotate(45deg);
	pointer-events: none;
	z-index: 2;
	transition: border-color 160ms ease;
}

.list_with_filter_section.mep_event_list .mep_filter_field:focus-within .mep_filter_field__control--select::after {
	border-color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_filter_field__control--select .formControl {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 38px !important;
	cursor: pointer;
}

.list_with_filter_section.mep_event_list .search_sort_code_area .formControl,
.list_with_filter_section.mep_event_list .mep_filter_bar .formControl {
	display: block !important;
	width: 100% !important;
	height: 48px !important;
	min-height: 48px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 1px solid transparent !important;
	border-radius: 14px !important;
	background: rgba(255, 255, 255, 0.88) !important;
	box-shadow:
		0 0 0 1px rgba(17, 17, 19, 0.06),
		0 1px 2px rgba(17, 17, 19, 0.03) !important;
	color: var(--mep-card-text) !important;
	font-size: 14px !important;
	font-weight: 500;
	line-height: 1.3 !important;
	transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.list_with_filter_section.mep_event_list .mep_filter_field--search .formControl {
	padding-left: 42px !important;
	background: #fff !important;
	box-shadow:
		0 0 0 1px rgba(17, 17, 19, 0.07),
		0 8px 18px rgba(17, 17, 19, 0.05) !important;
	font-weight: 550;
}

.list_with_filter_section.mep_event_list .mep_filter_field--date .formControl {
	padding-left: 42px !important;
}

.list_with_filter_section.mep_event_list .search_sort_code_area .formControl::placeholder {
	color: #9c9ca8;
	font-weight: 400;
}

.list_with_filter_section.mep_event_list .search_sort_code_area .formControl:hover {
	background: #fff !important;
	box-shadow:
		0 0 0 1px rgba(17, 17, 19, 0.1),
		0 4px 12px rgba(17, 17, 19, 0.04) !important;
}

.list_with_filter_section.mep_event_list .search_sort_code_area .formControl:focus {
	outline: none;
	background: #fff !important;
	border-color: transparent !important;
	box-shadow:
		0 0 0 1.5px rgba(17, 17, 19, 0.22),
		0 0 0 5px rgba(17, 17, 19, 0.06),
		0 8px 20px rgba(17, 17, 19, 0.06) !important;
}

.list_with_filter_section.mep_event_list .search_sort_code_counts,
.list_with_filter_section.mep_event_list .mep_filter_counts {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 12px 4px 0;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--mep-card-soft);
	font-size: 12px;
	color: var(--mep-card-muted);
	text-align: left;
	line-height: 1.3;
}

.list_with_filter_section.mep_event_list .search_sort_code_counts strong {
	color: var(--mep-card-text);
	font-weight: 700;
}

.list_with_filter_section.mep_event_list [class*="defaultButton"] {
	border-radius: 999px;
	font-weight: 600;
}

@media (max-width: 900px) {
	.list_with_filter_section.mep_event_list .filter_input_area,
	.list_with_filter_section.mep_event_list .mep_filter_bar__fields,
	.list_with_filter_section.mep_event_list .flexEqual.filter_input_area {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.list_with_filter_section.mep_event_list .mep_filter_field--search {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.list_with_filter_section.mep_event_list .mep_filter_bar {
		padding: 14px;
		border-radius: 18px;
	}

	.list_with_filter_section.mep_event_list .filter_input_area,
	.list_with_filter_section.mep_event_list .mep_filter_bar__fields,
	.list_with_filter_section.mep_event_list .flexEqual.filter_input_area {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.list_with_filter_section.mep_event_list .search_sort_code_area .formControl,
	.list_with_filter_section.mep_event_list .mep_filter_bar .formControl {
		height: 46px !important;
		min-height: 46px !important;
	}
}

/* ── Pagination ─────────────────────────────────────────────────── */

.list_with_filter_section.mep_event_list .pagination_area {
	margin-top: 28px;
}

.list_with_filter_section.mep_event_list .pagination_area .allCenter {
	align-items: center;
}

.list_with_filter_section.mep_event_list .pagination_area button.pagination_load_more,
.list_with_filter_section.mep_event_list .pagination_area [class*="Button"] {
	min-width: 160px;
	min-height: 44px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	padding: 0 22px;
	border: none;
	background: var(--mep-card-text);
	color: #fff;
}

.list_with_filter_section.mep_event_list .pagination_area button.pagination_load_more:hover {
	opacity: 0.88;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 1000px) {
	.list_with_filter_section.mep_event_list [data-column="3"] .filter_item.mep_event_grid_item,
	.list_with_filter_section.mep_event_list [data-column="4"] .filter_item.mep_event_grid_item,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_grid_item[style*="33."],
	.list_with_filter_section.mep_event_list .filter_item.mep_event_grid_item[style*="25%"] {
		width: calc(50% - 10px) !important;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__media {
		width: 180px;
	}
}

@media (max-width: 640px) {
	.list_with_filter_section.mep_event_list div.mage_grid_box {
		gap: 14px;
	}

	.list_with_filter_section.mep_event_list .filter_item.mep_event_grid_item,
	.list_with_filter_section.mep_event_list [data-column] .filter_item.mep_event_grid_item,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_grid_item[style*="%"] {
		width: 100% !important;
	}

	.list_with_filter_section.mep_event_list .filter_item.mep_event_list_item {
		flex-direction: column;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__surface {
		flex-direction: column;
		min-height: 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__media {
		width: 100%;
		border-radius: var(--mep-card-radius) var(--mep-card-radius) 0 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_item .mep_list_thumb {
		height: 200px;
		min-height: 200px;
	}

	.list_with_filter_section.mep_event_list .mep_event_list_item .mep_list_event_details,
	.list_with_filter_section.mep_event_list .mep_event_list_item .mep_event_card__body {
		width: 100%;
		padding: 18px 20px 20px;
	}

	.list_with_filter_section.mep_event_list .mep_event_grid_item .mep_list_thumb {
		height: 190px;
		min-height: 190px;
	}
}

/* ── Loading skeleton (shown before mixitup/pagination reveals the grid) ─ */

.list_with_filter_section.mep_event_list.mep-list-is-loading .pagination_area,
.list_with_filter_section.mep_event_list:not(.mep-list-is-ready) .pagination_area {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
}

.list_with_filter_section.mep_event_list.mep-list-is-loading > .spinner_loading {
	display: none !important;
}

.list_with_filter_section.mep_event_list.mep-list-is-ready .mep_event_list_skeleton {
	display: none !important;
}

/* Mirror real .mep_event_card grid/list layouts. */
.mep_event_list_skeleton {
	margin: 8px 0 24px;
}

.mep_event_list_skeleton--grid .mep_event_list_skeleton__grid {
	display: grid;
	grid-template-columns: repeat(var(--mep-skel-cols, 3), minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.mep_event_list_skeleton--grid .mep_event_list_skeleton__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	background: var(--mep-card-bg, #fff);
	border: 1px solid var(--mep-card-border, #e8e8ec);
	border-radius: var(--mep-card-radius, 16px);
	overflow: hidden;
	box-shadow: var(--mep-card-shadow, 0 1px 2px rgba(17, 17, 19, 0.04));
}

.mep_event_list_skeleton__media {
	position: relative;
	flex-shrink: 0;
	border-radius: var(--mep-card-radius, 16px) var(--mep-card-radius, 16px) 0 0;
	overflow: hidden;
}

.mep_event_list_skeleton--grid .mep_event_list_skeleton__thumb {
	display: block;
	width: 100%;
	height: 210px;
}

.mep_event_list_skeleton__date {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-width: 52px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 16px rgba(17, 17, 19, 0.08);
}

.mep_event_list_skeleton__date-month {
	display: block;
	width: 28px;
	height: 8px;
	border-radius: 999px;
}

.mep_event_list_skeleton__date-day {
	display: block;
	width: 22px;
	height: 16px;
	border-radius: 6px;
}

.mep_event_list_skeleton__category {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: block;
	width: 72px;
	height: 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.95) !important;
	box-shadow: 0 2px 8px rgba(17, 17, 19, 0.06);
}

.mep_event_list_skeleton__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	box-sizing: border-box;
}

.mep_event_list_skeleton__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.mep_event_list_skeleton__line {
	display: block;
	border-radius: 999px;
}

.mep_event_list_skeleton__line--date {
	width: 48%;
	height: 11px;
}

.mep_event_list_skeleton__line--title {
	width: 88%;
	height: 17px;
	border-radius: 8px;
	margin-top: 2px;
}

.mep_event_list_skeleton__line--loc {
	width: 62%;
	height: 12px;
}

.mep_event_list_skeleton__line--excerpt {
	width: 96%;
	height: 12px;
	margin-top: 2px;
}

.mep_event_list_skeleton__line--excerpt-2 {
	width: 78%;
	height: 12px;
}

.mep_event_list_skeleton__line--org {
	width: 54%;
	height: 12px;
}

.mep_event_list_skeleton__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--mep-card-border, #e8e8ec);
}

.mep_event_list_skeleton__price {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.mep_event_list_skeleton__line--price-label {
	width: 64px;
	height: 9px;
}

.mep_event_list_skeleton__line--price-value {
	width: 72px;
	height: 16px;
	border-radius: 6px;
}

.mep_event_list_skeleton__book {
	display: block;
	width: 84px;
	height: 32px;
	border-radius: 999px;
	flex-shrink: 0;
	margin-left: auto;
}

.mep_event_list_skeleton__shimmer {
	background: linear-gradient(90deg, #ececf0 0%, #f6f6f8 45%, #ececf0 100%);
	background-size: 200% 100%;
	animation: mep-skel-shimmer 1.25s ease-in-out infinite;
}

.mep_event_list_skeleton__status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 18px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--mep-card-muted, #6b6b76);
}

.mep_event_list_skeleton__spinner {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #d8d8de;
	border-top-color: var(--color_theme, #111113);
	animation: mep-skel-spin 0.7s linear infinite;
}

/* List style — horizontal card matching .mep_event_list_item */
.mep_event_list_skeleton--list .mep_event_list_skeleton__grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mep_event_list_skeleton--list .mep_event_list_skeleton__card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	background: var(--mep-card-bg, #fff);
	border: 1px solid var(--mep-card-border, #e8e8ec);
	border-radius: var(--mep-card-radius, 16px);
	overflow: hidden;
	box-shadow: var(--mep-card-shadow, 0 1px 2px rgba(17, 17, 19, 0.04));
}

.mep_event_list_skeleton--list .mep_event_list_skeleton__media {
	width: 240px;
	border-radius: 0;
}

.mep_event_list_skeleton--list .mep_event_list_skeleton__thumb {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 180px;
}

.mep_event_list_skeleton--list .mep_event_list_skeleton__body {
	padding: 20px 24px;
	justify-content: center;
}

.mep_event_list_skeleton--list .mep_event_list_skeleton__line--title {
	width: 70%;
	height: 20px;
}

@keyframes mep-skel-shimmer {
	0% {
		background-position: 100% 0;
	}
	100% {
		background-position: -100% 0;
	}
}

@keyframes mep-skel-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1000px) {
	.mep_event_list_skeleton--grid .mep_event_list_skeleton__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mep_event_list_skeleton--list .mep_event_list_skeleton__media {
		width: 180px;
	}
}

@media (max-width: 640px) {
	.mep_event_list_skeleton--grid .mep_event_list_skeleton__grid {
		grid-template-columns: 1fr;
	}

	.mep_event_list_skeleton--grid .mep_event_list_skeleton__thumb {
		height: 190px;
	}

	.mep_event_list_skeleton--list .mep_event_list_skeleton__card {
		flex-direction: column;
	}

	.mep_event_list_skeleton--list .mep_event_list_skeleton__media {
		width: 100%;
	}

	.mep_event_list_skeleton--list .mep_event_list_skeleton__thumb {
		height: 200px;
		min-height: 200px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mep_event_list_skeleton__shimmer,
	.mep_event_list_skeleton__spinner {
		animation: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Title list — modern compact event rows
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .mage_grid_box:has(.mep_event_title_list_item) {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.list_with_filter_section.mep_event_list .mep_event_title_list_item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: visible;
	border: 1px solid var(--mep-card-border);
	border-radius: 14px;
	background: var(--mep-card-bg);
	box-shadow: var(--mep-card-shadow);
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_title_list_item:hover,
.list_with_filter_section.mep_event_list .mep_event_title_list_item:focus-within {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--color_theme, #2563eb) 28%, var(--mep-card-border));
	box-shadow: var(--mep-card-shadow-hover);
}

.list_with_filter_section.mep_event_list .mep_event_title_list_item .mep_title_list_link,
.list_with_filter_section.mep_event_list .mep_event_title_list_item a.mep_title_list_link {
	display: flex !important;
	align-items: center;
	gap: 14px;
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px !important;
	margin: 0;
	border: 0 !important;
	border-bottom: 0 !important;
	border-radius: 14px;
	background: transparent;
	color: var(--mep-card-text) !important;
	text-decoration: none !important;
	font-size: 16px;
	line-height: 1.3;
	transition: background 200ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_title_list_item .mep_title_list_link:hover,
.list_with_filter_section.mep_event_list .mep_event_title_list_item .mep_title_list_link:focus-visible {
	background: color-mix(in srgb, var(--color_theme, #2563eb) 4%, #fff);
	outline: none;
}

.list_with_filter_section.mep_event_list .mep_title_list_date {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 52px;
	min-width: 52px;
	padding: 8px 6px;
	border-radius: 12px;
	border: 1px solid color-mix(in srgb, var(--color_theme, #2563eb) 22%, var(--mep-card-border));
	background: color-mix(in srgb, var(--color_theme, #2563eb) 10%, #fff);
	text-align: center;
}

.list_with_filter_section.mep_event_list .mep_title_list_month {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color_theme, #2563eb);
	line-height: 1.1;
}

.list_with_filter_section.mep_event_list .mep_title_list_day {
	display: block;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_title_list_body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.list_with_filter_section.mep_event_list .mep_title_list_name {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--mep-card-text);
	word-break: break-word;
}

.list_with_filter_section.mep_event_list .mep_event_title_list_item:hover .mep_title_list_name {
	color: var(--color_theme, #2563eb);
}

.list_with_filter_section.mep_event_list .mep_title_list_meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
}

.list_with_filter_section.mep_event_list .mep_title_list_category {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--mep-card-soft);
	color: var(--mep-card-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_title_list_organizer {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--mep-card-muted);
	line-height: 1.3;
}

.list_with_filter_section.mep_event_list .mep_title_list_organizer i {
	color: var(--color_theme, #2563eb);
	font-size: 12px;
}

.list_with_filter_section.mep_event_list .mep_title_list_arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 8%, #fff);
	color: var(--color_theme, #2563eb);
	font-size: 12px;
	opacity: 0.75;
	transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_title_list_item:hover .mep_title_list_arrow {
	opacity: 1;
	transform: translateX(2px);
	background: color-mix(in srgb, var(--color_theme, #2563eb) 14%, #fff);
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mep_event_title_list_item .mep_title_list_link,
	.list_with_filter_section.mep_event_list .mep_event_title_list_item a.mep_title_list_link {
		padding: 12px 14px !important;
		gap: 12px;
	}

	.list_with_filter_section.mep_event_list .mep_title_list_date {
		width: 46px;
		min-width: 46px;
		padding: 7px 4px;
	}

	.list_with_filter_section.mep_event_list .mep_title_list_day {
		font-size: 18px;
	}

	.list_with_filter_section.mep_event_list .mep_title_list_name {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .mep_event_title_list_item:hover,
	.list_with_filter_section.mep_event_list .mep_event_title_list_item:focus-within {
		transform: none;
	}

	.list_with_filter_section.mep_event_list .mep_event_title_list_item:hover .mep_title_list_arrow {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Spring list — modern horizontal event row
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .filter_item.mep_event_spring_list {
	width: 100% !important;
	max-width: 100%;
	margin: 0 0 14px !important;
	padding: 0;
	border: 1px solid var(--mep-card-border);
	border-radius: var(--mep-card-radius);
	background: var(--mep-card-bg);
	box-shadow: var(--mep-card-shadow);
	overflow: visible;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_spring_list:hover,
.list_with_filter_section.mep_event_list .filter_item.mep_event_spring_list:focus-within {
	transform: translateY(-2px);
	box-shadow: var(--mep-card-shadow-hover);
	border-color: transparent;
	z-index: 5;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_spring_list:has(.mActive) {
	z-index: 100;
	transform: none;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_area,
.list_with_filter_section.mep_event_list div.mep_event_list_item.mep_event_spring_list div.spring_area {
	display: grid;
	grid-template-columns: 148px 72px minmax(0, 1fr) auto;
	grid-template-areas: "thumb date main actions";
	align-items: stretch;
	gap: 0;
	width: 100%;
	min-height: 148px;
	padding: 0;
	margin: 0;
	background: transparent;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 {
	grid-area: thumb;
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border-radius: var(--mep-card-radius) 0 0 var(--mep-card-radius);
	text-decoration: none;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mep_list_thumb,
.list_with_filter_section.mep_event_list div.spring_area.mep_list_event_details .spring_item_4 .mep_list_thumb {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 148px;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mep_list_thumb_img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mep_list_thumb > div[style*="background-image"] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	z-index: 2;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list:hover .spring_item_4 .mep_list_thumb_img {
	transform: scale(1.04);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mep_event_card__category {
	top: 10px;
	left: 10px;
	right: auto;
	max-width: calc(100% - 20px);
	font-size: 10px;
	padding: 4px 8px;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mepev-ribbons,
.list_with_filter_section.mep_event_list div.mep-event-list-loop.mep_event_spring_list div.spring_area .mepev-ribbons {
	position: absolute !important;
	top: auto !important;
	left: auto !important;
	right: 8px !important;
	bottom: 8px !important;
	z-index: 12;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_1,
.list_with_filter_section.mep_event_list div.spring_area .spring_item_1 {
	grid-area: date;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: auto;
	min-width: 72px;
	margin: 16px 0 16px 16px;
	padding: 12px 8px;
	border-radius: 14px;
	background: color-mix(in srgb, var(--color_theme, #2563eb) 10%, #fff);
	border: 1px solid color-mix(in srgb, var(--color_theme, #2563eb) 22%, #e6e8ee);
	color: var(--mep-card-text);
	box-shadow: none;
	text-align: center;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_1 h5,
.list_with_filter_section.mep_event_list div.spring_area .spring_item_1 h5 {
	display: none;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_date_month {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color_theme, #2563eb);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_date_day {
	display: block;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_date_year {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--mep-card-muted);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_main {
	grid-area: main;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	margin-left: 20px;
	padding: 18px 16px;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_3,
.list_with_filter_section.mep_event_list div.spring_area .spring_item_3 {
	display: block;
	width: auto;
	padding: 0;
	text-decoration: none;
	color: inherit;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .mep_list_title,
.list_with_filter_section.mep_event_list .mep_event_spring_list h5.mep_list_title {
	margin: 0 0 4px;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_3:hover .mep_list_title {
	color: var(--color_theme, #2563eb);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2,
.list_with_filter_section.mep_event_list div.spring_area .spring_item_2 {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: auto;
	padding: 0;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	text-decoration: none;
	color: inherit;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .list_content {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .list_content .mi,
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .list_content i,
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .list_content span.mi,
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .list_content span.far,
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .list_content span.fas {
	color: var(--color_theme, #2563eb);
	font-size: 12px;
	flex-shrink: 0;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .mpwem_status_area,
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 .mpwem_list_date_list {
	width: auto;
	order: 0;
	margin-top: 4px;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_2 button.mpwem_get_date_list {
	width: auto;
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	font-size: 11px;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions {
	grid-area: actions;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 12px;
	padding: 18px 20px 18px 8px;
	min-width: 140px;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions .list_price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	text-align: right;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions .list_price_label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions .list_price_value,
.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions .list_price_value .amount {
	font-size: 18px;
	font-weight: 800;
	color: var(--mep-card-text);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions .mep_event_card__book {
	margin-left: 0;
}

@media only screen and (max-width: 900px) {
	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_area,
	.list_with_filter_section.mep_event_list div.mep_event_list_item.mep_event_spring_list div.spring_area {
		grid-template-columns: 120px 64px minmax(0, 1fr);
		grid-template-areas:
			"thumb date main"
			"thumb date actions";
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions {
		align-items: flex-start;
		padding: 0 16px 16px;
		min-width: 0;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions .list_price {
		align-items: flex-start;
		text-align: left;
	}
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_area,
	.list_with_filter_section.mep_event_list div.mep_event_list_item.mep_event_spring_list div.spring_area {
		grid-template-columns: 64px minmax(0, 1fr);
		grid-template-areas:
			"thumb thumb"
			"date main"
			"actions actions";
		min-height: 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 {
		border-radius: var(--mep-card-radius) var(--mep-card-radius) 0 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_4 .mep_list_thumb,
	.list_with_filter_section.mep_event_list div.spring_area.mep_list_event_details .spring_item_4 .mep_list_thumb {
		min-height: 180px;
		height: 180px;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_1,
	.list_with_filter_section.mep_event_list div.spring_area .spring_item_1 {
		margin: 14px 0 14px 14px;
		min-width: 64px;
		padding: 10px 6px;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_date_day {
		font-size: 22px;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_main {
		padding: 14px 14px 8px 12px;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .mep_list_title,
	.list_with_filter_section.mep_event_list .mep_event_spring_list h5.mep_list_title {
		font-size: 16px;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list .spring_item_actions {
		padding: 8px 14px 16px;
		border-top: 1px solid var(--mep-card-border);
		margin: 0 14px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .filter_item.mep_event_spring_list:hover,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_spring_list:focus-within {
		transform: none;
	}

	.list_with_filter_section.mep_event_list .mep_event_spring_list:hover .spring_item_4 .mep_list_thumb_img {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Owl Carousel — modern rail for pagination="carousal"
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .mep_event_list_sec {
	position: relative;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel {
	display: block;
	width: 100%;
	margin: 0;
	padding: 8px 4px 28px;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-stage-outer {
	overflow: hidden;
	padding: 8px 2px 16px;
	margin: -8px -2px -4px;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-stage {
	display: flex;
	align-items: stretch;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-item {
	display: flex;
	float: none;
	height: auto;
	background: transparent;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-item > .filter_item,
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-item .filter_item.mep_event_card,
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-item .filter_item.mep_event_grid_item {
	width: 100% !important;
	max-width: 100%;
	height: auto;
	min-height: 100%;
	margin: 0 !important;
	flex: 1 1 auto;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .mep_event_card__surface {
	height: 100%;
}

/* Nav arrows */
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav {
	position: static;
	margin: 0;
	pointer-events: none;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev,
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next,
.list_with_filter_section.mep_event_list button.owl-prev,
.list_with_filter_section.mep_event_list button.owl-next {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	z-index: 20;
	pointer-events: auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid #e6e8ee;
	border-radius: 999px;
	background: #fff;
	color: #1a1a1f;
	box-shadow: 0 8px 24px rgba(17, 17, 19, 0.1);
	font-size: 22px !important;
	line-height: 1;
	cursor: pointer;
	outline: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev,
.list_with_filter_section.mep_event_list button.owl-prev {
	left: -8px;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next,
.list_with_filter_section.mep_event_list button.owl-next {
	right: -8px;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev:hover,
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next:hover,
.list_with_filter_section.mep_event_list button.owl-prev:hover,
.list_with_filter_section.mep_event_list button.owl-next:hover {
	background: var(--color_theme, #2563eb);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--color_theme, #2563eb) 28%, transparent);
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev span,
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next span {
	display: block;
	line-height: 1;
	font-size: inherit;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* Dots */
.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-dots,
.list_with_filter_section.mep_event_list .owl-dots {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 8px 0 0;
	padding: 0;
	position: static;
	text-align: center;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-dots button.owl-dot,
.list_with_filter_section.mep_event_list .owl-dots button.owl-dot,
.list_with_filter_section.mep_event_list .owl-dots button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent !important;
	outline: none;
	cursor: pointer;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-dots button.owl-dot span,
.list_with_filter_section.mep_event_list .owl-dots button.owl-dot span,
.list_with_filter_section.mep_event_list .owl-dots button span {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0;
	border-radius: 999px;
	background: #d4d4d8;
	transition: width 0.2s ease, background 0.2s ease;
}

.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-dots button.owl-dot.active span,
.list_with_filter_section.mep_event_list .owl-dots button.owl-dot.active span,
.list_with_filter_section.mep_event_list .owl-dots button.active span,
.list_with_filter_section.mep_event_list .owl-dots button.active::before {
	width: 22px;
	background: var(--color_theme, #2563eb);
	content: none;
}

.list_with_filter_section.mep_event_list .owl-dots button::before,
.list_with_filter_section.mep_event_list .owl-dots button.active::before {
	display: none !important;
	content: none !important;
}

/* Fallback grid when Owl fails to load */
.list_with_filter_section.mep_event_list .mage_grid_box.mep-carousel-fallback {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.list_with_filter_section.mep_event_list .mage_grid_box.mep-carousel-fallback > .filter_item {
	width: 100% !important;
}

/* Undo legacy “everything is display:block” inside modern list cards */
.list_with_filter_section.mep_event_list .mep_event_card__surface,
.list_with_filter_section.mep_event_list .mep_event_card__body,
.list_with_filter_section.mep_event_list .mep_event_card__footer,
.list_with_filter_section.mep_event_list .mpwem-price-area,
.list_with_filter_section.mep_event_list .list_content,
.list_with_filter_section.mep_event_list .event_details_link {
	display: flex;
}

.list_with_filter_section.mep_event_list .mep_event_card__surface,
.list_with_filter_section.mep_event_list .mep_event_card__body,
.list_with_filter_section.mep_event_list .event_details_link {
	flex-direction: column;
}

.list_with_filter_section.mep_event_list .event_details_link {
	flex: 1 1 auto;
	gap: 6px;
	min-height: 0;
}

.list_with_filter_section.mep_event_list .list_content {
	align-items: flex-start;
	gap: 8px;
}

@media only screen and (max-width: 1100px) {
	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev,
	.list_with_filter_section.mep_event_list button.owl-prev {
		left: 4px;
	}

	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next,
	.list_with_filter_section.mep_event_list button.owl-next {
		right: 4px;
	}
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel {
		padding: 4px 0 20px;
	}

	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev,
	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next,
	.list_with_filter_section.mep_event_list button.owl-prev,
	.list_with_filter_section.mep_event_list button.owl-next {
		width: 38px;
		height: 38px;
		font-size: 18px !important;
		top: 36%;
	}

	.list_with_filter_section.mep_event_list .mep_event_grid_item .mep_list_thumb {
		height: 190px;
		min-height: 190px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-prev,
	.list_with_filter_section.mep_event_list .mage_grid_box.owl-carousel .owl-nav button.owl-next {
		transition: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Timeline style — modern horizontal / vertical event timeline
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .timeline {
	--mep-tl-accent: var(--color_theme, #6c5ce7);
	--mep-tl-line: #e7e7e3;
	--mep-tl-dot: #fff;
	margin: 8px 0 24px;
	padding: 0;
}

.list_with_filter_section.mep_event_list .timeline--horizontal {
	padding: 0 52px;
}

.list_with_filter_section.mep_event_list .timeline--horizontal .timeline-divider {
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--mep-tl-line) 8%, var(--mep-tl-line) 92%, transparent);
	border-radius: 999px;
	left: 52px;
	right: 52px;
}

.list_with_filter_section.mep_event_list .timeline--horizontal .timeline__item:after {
	width: 16px;
	height: 16px;
	border: 3px solid var(--mep-tl-accent);
	background: var(--mep-tl-dot);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--mep-tl-accent) 14%, transparent);
}

.list_with_filter_section.mep_event_list .timeline:not(.timeline--horizontal):before {
	width: 3px;
	margin-left: -1.5px;
	background: linear-gradient(180deg, transparent, var(--mep-tl-line) 8%, var(--mep-tl-line) 92%, transparent);
	border-radius: 999px;
}

.list_with_filter_section.mep_event_list .timeline:not(.timeline--horizontal) .timeline__item:after {
	width: 16px;
	height: 16px;
	border: 3px solid var(--mep-tl-accent);
	background: var(--mep-tl-dot);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--mep-tl-accent) 14%, transparent);
}

.list_with_filter_section.mep_event_list .timeline .timeline__content {
	padding: 0;
	border: 1px solid var(--mep-card-border);
	border-radius: 16px;
	background: var(--mep-card-bg);
	color: var(--mep-card-text);
	box-shadow: var(--mep-card-shadow);
	overflow: visible;
	transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.list_with_filter_section.mep_event_list .timeline .timeline__content:hover,
.list_with_filter_section.mep_event_list .timeline .timeline__content:focus-within {
	border-color: transparent;
	box-shadow: var(--mep-card-shadow-hover);
	transform: translateY(-3px);
}

.list_with_filter_section.mep_event_list .timeline .timeline__content:before,
.list_with_filter_section.mep_event_list .timeline .timeline__content:after {
	display: none;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: visible;
	border-radius: 16px;
	background: var(--mep-card-bg);
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__media {
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 16px 16px 0 0;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_thumb {
	position: relative;
	width: 100%;
	height: 150px;
	min-height: 150px;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_thumb_img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.list_with_filter_section.mep_event_list .timeline__item:hover .mep_event_timeline_list .mep_list_thumb_img {
	transform: scale(1.04);
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_thumb > div[style*="background-image"] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	z-index: 2;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep-ev-start-date {
	top: 12px;
	left: 12px;
	z-index: 13;
	padding: 7px 9px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--mep-card-text);
	box-shadow: 0 4px 16px rgba(17, 17, 19, 0.08);
	min-width: 48px;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep-ev-start-date .mep-month {
	background: transparent;
	color: var(--mep-card-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep-ev-start-date .mep-day {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_event_card__category {
	top: 12px;
	right: 12px;
	left: auto;
	max-width: 46%;
	font-size: 10px;
	padding: 4px 8px;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mepev-ribbons {
	position: absolute;
	top: auto !important;
	left: auto !important;
	right: 10px !important;
	bottom: 10px !important;
	z-index: 12;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__body,
.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_event_details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	padding: 14px 14px 16px;
	margin: 0;
	box-sizing: border-box;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none !important;
	color: inherit;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_title,
.list_with_filter_section.mep_event_list .mep_event_timeline_list h5.mep_list_title {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mep-card-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__link:hover .mep_list_title {
	color: var(--mep-tl-accent);
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .list_content {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .list_content.upcomming_date_only_only {
	color: var(--mep-card-text);
	font-weight: 600;
	font-size: 12px;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list .list_content .mi,
.list_with_filter_section.mep_event_list .mep_event_timeline_list .list_content i {
	color: var(--mep-tl-accent);
	font-size: 11px;
	flex-shrink: 0;
	margin-top: 2px;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 4px;
	padding-top: 12px;
	border-top: 1px solid var(--mep-card-border);
	flex-wrap: wrap;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__footer .mpwem_status_area,
.list_with_filter_section.mep_event_list .mep_event_timeline_list__footer .mpwem_list_date_list {
	order: 0;
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__footer button.mpwem_get_date_list {
	width: auto;
	max-width: 100%;
	padding: 6px 10px;
	font-size: 11px;
}

.list_with_filter_section.mep_event_list .mep_event_timeline_list__footer .mep_event_card__book {
	margin-left: auto;
	padding: 7px 14px;
	font-size: 12px;
}

/* Nav buttons */
.list_with_filter_section.mep_event_list .timeline-nav-button {
	width: 44px;
	height: 44px;
	border: 1px solid var(--mep-card-border);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(17, 17, 19, 0.1);
	text-indent: 0;
	font-size: 0;
	color: transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.list_with_filter_section.mep_event_list .timeline-nav-button:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	left: 50%;
	top: 50%;
	border-right: 2px solid #111113;
	border-bottom: 2px solid #111113;
	background: none;
	transform: translate(-60%, -50%) rotate(-45deg);
}

.list_with_filter_section.mep_event_list .timeline-nav-button--prev:before {
	transform: translate(-30%, -50%) rotate(135deg);
}

.list_with_filter_section.mep_event_list .timeline-nav-button--next:before {
	transform: translate(-70%, -50%) rotate(-45deg);
}

.list_with_filter_section.mep_event_list .timeline-nav-button:hover:not(:disabled) {
	background: var(--mep-tl-accent);
	border-color: transparent;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--mep-tl-accent) 28%, transparent);
}

.list_with_filter_section.mep_event_list .timeline-nav-button:hover:not(:disabled):before {
	border-color: #fff;
}

.list_with_filter_section.mep_event_list .timeline-nav-button:disabled {
	opacity: 0.35;
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .timeline--horizontal {
		padding: 0 44px;
	}

	.list_with_filter_section.mep_event_list .mep_event_timeline_list .mep_list_thumb {
		height: 140px;
		min-height: 140px;
	}

	.list_with_filter_section.mep_event_list .timeline-nav-button {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .timeline .timeline__content:hover,
	.list_with_filter_section.mep_event_list .timeline .timeline__content:focus-within {
		transform: none;
	}

	.list_with_filter_section.mep_event_list .timeline__item:hover .mep_event_timeline_list .mep_list_thumb_img {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Native list — modern horizontal event rows
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .filter_item.mep_event_native_list,
.list_with_filter_section.mep_event_list div.mep_event_native_list {
	display: block;
	width: 100% !important;
	max-width: 100%;
	margin: 0 0 14px !important;
	padding: 0;
	border: 1px solid var(--mep-card-border);
	border-radius: var(--mep-card-radius);
	background: var(--mep-card-bg);
	box-shadow: var(--mep-card-shadow);
	overflow: visible;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_native_list:hover,
.list_with_filter_section.mep_event_list .filter_item.mep_event_native_list:focus-within {
	transform: translateY(-2px);
	box-shadow: var(--mep-card-shadow-hover);
	border-color: transparent;
	z-index: 5;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_native_list:has(.mActive) {
	z-index: 100;
	transform: none;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__surface {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	align-items: stretch;
	width: 100%;
	min-height: 168px;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--mep-card-radius) 0 0 var(--mep-card-radius);
	text-decoration: none;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_thumb,
.list_with_filter_section.mep_event_list div.mep_event_native_list .mep_list_thumb {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 168px;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_thumb_img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	border: 0 !important;
	padding: 0 !important;
	border-radius: 0 !important;
	transition: transform 500ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_native_list:hover .mep_list_thumb_img {
	transform: scale(1.04);
}

.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_thumb > div[style*="background-image"] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	z-index: 2;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__date {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 13;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 52px;
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(17, 17, 19, 0.08);
	text-align: center;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__month {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-card-muted);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__day {
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_native_list .mep_event_card__category {
	top: 14px;
	right: 14px;
	left: auto;
}

.list_with_filter_section.mep_event_list .mep_event_native_list .mepev-ribbons {
	position: absolute;
	top: auto !important;
	left: auto !important;
	right: 12px !important;
	bottom: 12px !important;
	z-index: 12;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__body,
.list_with_filter_section.mep_event_list div.mep_event_native_list .mep_list_event_details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	width: auto;
	min-width: 0;
	padding: 20px 22px;
	margin: 0;
	box-sizing: border-box;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__link,
.list_with_filter_section.mep_event_list div.mep_event_native_list .mep_list_event_details a.mep_event_native_list__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
	border: 0;
	border-left: 0;
	text-decoration: none !important;
	color: inherit;
}

.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_title,
.list_with_filter_section.mep_event_list .mep_event_native_list h5.mep_list_title {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_native_list__link:hover .mep_list_title {
	color: var(--color_theme, #6c5ce7);
}

.list_with_filter_section.mep_event_list .mep_event_native_list .list_content {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_native_list .list_content.upcomming_date_only_only {
	color: var(--mep-card-text);
	font-weight: 600;
	font-size: 13px;
}

.list_with_filter_section.mep_event_list .mep_event_native_list .list_content .mi,
.list_with_filter_section.mep_event_list .mep_event_native_list .list_content i {
	color: var(--color_theme, #6c5ce7);
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 4px;
	padding-top: 14px;
	border-top: 1px solid var(--mep-card-border);
	flex-wrap: wrap;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer .mpwem_status_area,
.list_with_filter_section.mep_event_list .mep_event_native_list__footer .mpwem_list_date_list {
	order: 0;
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer button.mpwem_get_date_list {
	width: auto;
	padding: 7px 11px;
	font-size: 12px;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer .list_price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	margin-right: auto;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer .list_price_label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer .list_price_value,
.list_with_filter_section.mep_event_list .mep_event_native_list__footer .list_price_value .amount {
	font-size: 18px;
	font-weight: 800;
	color: var(--mep-card-text);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_native_list__footer .mep_event_card__book {
	margin-left: 0;
}

@media only screen and (max-width: 800px) {
	.list_with_filter_section.mep_event_list .mep_event_native_list__surface {
		grid-template-columns: 160px minmax(0, 1fr);
		min-height: 148px;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_thumb,
	.list_with_filter_section.mep_event_list div.mep_event_native_list .mep_list_thumb {
		min-height: 148px;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list__body,
	.list_with_filter_section.mep_event_list div.mep_event_native_list .mep_list_event_details {
		padding: 16px;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_title,
	.list_with_filter_section.mep_event_list .mep_event_native_list h5.mep_list_title {
		font-size: 17px;
	}
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mep_event_native_list__surface {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list__media {
		border-radius: var(--mep-card-radius) var(--mep-card-radius) 0 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list .mep_list_thumb,
	.list_with_filter_section.mep_event_list div.mep_event_native_list .mep_list_thumb {
		min-height: 200px;
		height: 200px;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list__footer {
		justify-content: space-between;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list__footer .list_price {
		align-items: flex-start;
		margin-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .filter_item.mep_event_native_list:hover,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_native_list:focus-within {
		transform: none;
	}

	.list_with_filter_section.mep_event_list .mep_event_native_list:hover .mep_list_thumb_img {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Minimal list — modern compact text rows
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .filter_item.mep_event_minimal_list,
.list_with_filter_section.mep_event_list div.mep_event_minimal_list {
	display: block;
	width: 100% !important;
	max-width: 100%;
	margin: 0 0 10px !important;
	padding: 0;
	border: 1px solid var(--mep-card-border);
	border-radius: 14px;
	background: var(--mep-card-bg);
	box-shadow: var(--mep-card-shadow);
	overflow: visible;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_minimal_list:hover,
.list_with_filter_section.mep_event_list .filter_item.mep_event_minimal_list:focus-within {
	transform: translateY(-1px);
	border-color: color-mix(in srgb, var(--color_theme, #6c5ce7) 28%, var(--mep-card-border));
	box-shadow: var(--mep-card-shadow-hover);
	background: #fff;
	z-index: 5;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_minimal_list:has(.mActive) {
	z-index: 100;
	transform: none;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__surface {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__date,
.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep-ev-start-date {
	position: static;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	width: 64px;
	min-width: 64px;
	min-height: 64px;
	margin: 0;
	padding: 8px 6px;
	border-radius: 14px;
	border: 1px solid color-mix(in srgb, var(--color_theme, #6c5ce7) 22%, var(--mep-card-border));
	background: color-mix(in srgb, var(--color_theme, #6c5ce7) 10%, #fff);
	box-shadow: none;
	text-align: center;
	left: auto;
	top: auto;
	right: auto;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__month,
.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep-ev-start-date .mep-month {
	display: block;
	background: transparent;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color_theme, #6c5ce7);
	line-height: 1.2;
	border-radius: 0;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__day,
.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep-ev-start-date .mep-day {
	display: block;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__year {
	display: block;
	font-size: 10px;
	font-weight: 600;
	color: var(--mep-card-muted);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__body,
.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep_list_event_details {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: auto;
	min-width: 0;
	min-height: 0;
	padding: 0;
	margin: 0;
	flex: 1;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
	flex: 1;
	text-decoration: none !important;
	color: inherit;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__category {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--mep-card-soft);
	color: var(--mep-card-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.3;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep_list_title,
.list_with_filter_section.mep_event_list .mep_event_minimal_list h5.mep_list_title {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__link:hover .mep_list_title {
	color: var(--color_theme, #6c5ce7);
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list .list_content {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list .list_content.upcomming_date_only_only {
	color: var(--mep-card-text);
	font-weight: 600;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list .list_content .mi,
.list_with_filter_section.mep_event_list .mep_event_minimal_list .list_content i {
	color: var(--color_theme, #6c5ce7);
	font-size: 11px;
	flex-shrink: 0;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-shrink: 0;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__actions .mpwem_status_area,
.list_with_filter_section.mep_event_list .mep_event_minimal_list__actions .mpwem_list_date_list {
	order: 0;
	width: auto;
	margin: 0;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__actions button.mpwem_get_date_list {
	width: auto;
	padding: 6px 10px;
	font-size: 11px;
}

.list_with_filter_section.mep_event_list .mep_event_minimal_list__actions .mep_event_card__book {
	margin-left: 0;
	padding: 7px 14px;
	font-size: 12px;
}

@media only screen and (max-width: 800px) {
	.list_with_filter_section.mep_event_list .mep_event_minimal_list__body,
	.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep_list_event_details {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.list_with_filter_section.mep_event_list .mep_event_minimal_list__actions {
		justify-content: space-between;
		width: 100%;
	}
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mep_event_minimal_list__surface {
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 12px;
		padding: 12px;
	}

	.list_with_filter_section.mep_event_list .mep_event_minimal_list__date,
	.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep-ev-start-date {
		width: 56px;
		min-width: 56px;
		min-height: 56px;
		padding: 6px 4px;
	}

	.list_with_filter_section.mep_event_list .mep_event_minimal_list__day,
	.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep-ev-start-date .mep-day {
		font-size: 18px;
	}

	.list_with_filter_section.mep_event_list .mep_event_minimal_list .mep_list_title,
	.list_with_filter_section.mep_event_list .mep_event_minimal_list h5.mep_list_title {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .filter_item.mep_event_minimal_list:hover,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_minimal_list:focus-within {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
 * Winter list — modern date-led horizontal event rows
 * ═══════════════════════════════════════════════════════════════════ */

.list_with_filter_section.mep_event_list .filter_item.mep_event_winter_list,
.list_with_filter_section.mep_event_list div.mep_event_winter_list {
	display: block;
	width: 100% !important;
	max-width: 100%;
	margin: 0 0 14px !important;
	padding: 0;
	border: 1px solid var(--mep-card-border);
	border-radius: var(--mep-card-radius);
	background: var(--mep-card-bg);
	box-shadow: var(--mep-card-shadow);
	overflow: visible;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_winter_list:hover,
.list_with_filter_section.mep_event_list .filter_item.mep_event_winter_list:focus-within {
	transform: translateY(-2px);
	box-shadow: var(--mep-card-shadow-hover);
	border-color: transparent;
	z-index: 5;
}

.list_with_filter_section.mep_event_list .filter_item.mep_event_winter_list:has(.mActive) {
	z-index: 100;
	transform: none;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__surface,
.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_area,
.list_with_filter_section.mep_event_list div.mep_event_list_item.mep_event_winter_list div.spring_area {
	display: grid;
	grid-template-columns: 88px 160px minmax(0, 1fr);
	grid-template-areas: "date media main";
	align-items: stretch;
	gap: 0;
	width: 100%;
	min-height: 148px;
	padding: 0;
	margin: 0;
	background: transparent;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_date_wrapper {
	grid-area: date;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	margin: 0;
	padding: 16px 10px;
	border-radius: var(--mep-card-radius) 0 0 var(--mep-card-radius);
	background: linear-gradient(180deg, color-mix(in srgb, var(--color_theme, #6c5ce7) 12%, #fff), color-mix(in srgb, var(--color_theme, #6c5ce7) 6%, #f6f6f3));
	border-right: 1px solid color-mix(in srgb, var(--color_theme, #6c5ce7) 14%, var(--mep-card-border));
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_winter_list_date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	text-align: center;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_winter_list_dd {
	display: block;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_winter_list_mm_yy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color_theme, #6c5ce7);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_winter_list_yy {
	font-weight: 600;
	color: var(--mep-card-muted);
	letter-spacing: 0.04em;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_item_4,
.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__media {
	grid-area: media;
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	text-decoration: none;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_item_4 .mep_list_thumb,
.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_thumb {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 148px;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	background: var(--mep-card-soft);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_thumb_img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list:hover .mep_list_thumb_img {
	transform: scale(1.04);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_thumb > [data-bg-image],
.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_thumb > div[style*="background-image"] {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	z-index: 2;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_card__category {
	top: 10px;
	left: 10px;
	right: auto;
	max-width: calc(100% - 20px);
	font-size: 10px;
	padding: 4px 8px;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mepev-ribbons {
	position: absolute;
	top: auto !important;
	left: auto !important;
	right: 8px !important;
	bottom: 8px !important;
	z-index: 12;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_item_2,
.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__main,
.list_with_filter_section.mep_event_list div.mep_event_winter_list div.spring_area .spring_item_2 {
	grid-area: main;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	width: auto;
	min-width: 0;
	padding: 18px 20px;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__link {
	display: flex;
	flex-direction: column;
	gap: 7px;
	text-decoration: none !important;
	color: inherit;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_title,
.list_with_filter_section.mep_event_list .mep_event_winter_list h5.mep_list_title {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mep-card-text);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__link:hover .mep_list_title {
	color: var(--color_theme, #6c5ce7);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .list_content {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list .list_content .mi,
.list_with_filter_section.mep_event_list .mep_event_winter_list .list_content i,
.list_with_filter_section.mep_event_list .mep_event_winter_list .list_content span.far,
.list_with_filter_section.mep_event_list .mep_event_winter_list .list_content span.fas {
	color: var(--color_theme, #6c5ce7);
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 2px;
	padding: 0;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 2px;
	padding-top: 12px;
	border-top: 1px solid var(--mep-card-border);
	flex-wrap: wrap;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .mpwem_status_area,
.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .mpwem_list_date_list {
	order: 0;
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer button.mpwem_get_date_list {
	width: auto;
	padding: 6px 10px;
	font-size: 11px;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .list_price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	margin-right: auto;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .list_price_label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mep-card-muted);
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .list_price_value,
.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .list_price_value .amount {
	font-size: 17px;
	font-weight: 800;
	color: var(--mep-card-text);
	line-height: 1.2;
}

.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .mep_event_card__book {
	margin-left: 0;
}

@media only screen and (max-width: 900px) {
	.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__surface,
	.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_area,
	.list_with_filter_section.mep_event_list div.mep_event_list_item.mep_event_winter_list div.spring_area {
		grid-template-columns: 72px 130px minmax(0, 1fr);
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_winter_list_dd {
		font-size: 28px;
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_item_2,
	.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__main {
		padding: 16px;
	}
}

@media only screen and (max-width: 640px) {
	.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_event_winter_list__surface,
	.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_area,
	.list_with_filter_section.mep_event_list div.mep_event_list_item.mep_event_winter_list div.spring_area {
		grid-template-columns: 72px minmax(0, 1fr);
		grid-template-areas:
			"date media"
			"main main";
		min-height: 0;
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_date_wrapper {
		border-radius: var(--mep-card-radius) 0 0 0;
		border-right: 0;
		border-bottom: 1px solid color-mix(in srgb, var(--color_theme, #6c5ce7) 14%, var(--mep-card-border));
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list .spring_item_4 .mep_list_thumb,
	.list_with_filter_section.mep_event_list .mep_event_winter_list .mep_list_thumb {
		min-height: 120px;
		height: 120px;
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list__footer {
		justify-content: space-between;
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list__footer .list_price {
		align-items: flex-start;
		margin-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.list_with_filter_section.mep_event_list .filter_item.mep_event_winter_list:hover,
	.list_with_filter_section.mep_event_list .filter_item.mep_event_winter_list:focus-within {
		transform: none;
	}

	.list_with_filter_section.mep_event_list .mep_event_winter_list:hover .mep_list_thumb_img {
		transform: none;
	}
}
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:99999;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:99999;position:fixed;outline:0!important;backface-visibility:hidden;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container::before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container::before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close.ekit-popup-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close.ekit-popup-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close.ekit-popup-close{overflow:visible;cursor:pointer;background:0 0;border:0;-moz-appearance:none;appearance:none;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none;-ms-touch-action:manipulation;touch-action:manipulation}button.mfp-arrow:focus-visible,button.mfp-close.ekit-popup-close:focus-visible{outline:-webkit-focus-ring-color auto 1px}button::-moz-focus-inner{padding:0;border:0}.mfp-close.ekit-popup-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close.ekit-popup-close:focus,.mfp-close.ekit-popup-close:hover{opacity:1}.mfp-close.ekit-popup-close:active{top:1px}.mfp-close-btn-in .mfp-closeekit-popup-close{color:#333}.mfp-iframe-holder .mfp-close.ekit-popup-close,.mfp-image-holder .mfp-close.ekit-popup-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow::after,.mfp-arrow::before{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow::after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow::before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left::after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left::before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right::after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right::before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close.ekit-popup-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure::after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure::after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close.ekit-popup-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-fade.mfp-bg{opacity:0;-webkit-transition:all .15s ease-out;transition:all .15s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;-webkit-transition:all .15s ease-out;transition:all .15s ease-out}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-zoom-in .mfp-with-anim{opacity:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:scale(.8);transform:scale(.8)}.mfp-zoom-in.mfp-bg{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-zoom-in.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-in.mfp-removing .mfp-with-anim{-webkit-transform:scale(.8);transform:scale(.8);opacity:0}.mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}.twentytwenty-horizontal .twentytwenty-handle::after,.twentytwenty-horizontal .twentytwenty-handle::before,.twentytwenty-vertical .twentytwenty-handle::after,.twentytwenty-vertical .twentytwenty-handle::before{content:" ";display:block;background:#fff;position:absolute;z-index:30;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle::after,.twentytwenty-horizontal .twentytwenty-handle::before{width:3px;height:9999px;left:50%;margin-left:-1.5px}.twentytwenty-vertical .twentytwenty-handle::after,.twentytwenty-vertical .twentytwenty-handle::before{width:9999px;height:3px;top:50%;margin-top:-1.5px}.twentytwenty-after-label,.twentytwenty-before-label,.twentytwenty-overlay{position:absolute;top:0;width:100%;height:100%}.twentytwenty-after-label,.twentytwenty-before-label,.twentytwenty-overlay{-webkit-transition-duration:.5s;transition-duration:.5s}.twentytwenty-after-label,.twentytwenty-before-label{-webkit-transition-property:opacity;transition-property:opacity}.twentytwenty-after-label::before,.twentytwenty-before-label::before{color:#fff;font-size:13px;letter-spacing:.1em}.twentytwenty-after-label::before,.twentytwenty-before-label::before{position:absolute;background:rgba(255,255,255,.2);line-height:38px;padding:0 20px;border-radius:2px}.twentytwenty-horizontal .twentytwenty-after-label::before,.twentytwenty-horizontal .twentytwenty-before-label::before{top:50%;margin-top:-19px}.twentytwenty-vertical .twentytwenty-after-label::before,.twentytwenty-vertical .twentytwenty-before-label::before{left:50%;margin-left:-45px;text-align:center;width:auto;display:inline-block}.twentytwenty-down-arrow,.twentytwenty-left-arrow,.twentytwenty-right-arrow,.twentytwenty-up-arrow{width:0;height:0;border:6px inset transparent;position:absolute}.twentytwenty-handle .twentytwenty-left-arrow,.twentytwenty-handle .twentytwenty-right-arrow{top:50%;margin-top:-6px}.twentytwenty-handle .twentytwenty-down-arrow,.twentytwenty-handle .twentytwenty-up-arrow{left:50%;margin-left:-6px}.twentytwenty-container{-webkit-box-sizing:content-box;box-sizing:content-box;z-index:0;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none}.twentytwenty-container img{max-width:100%;position:absolute;top:0;display:block}.twentytwenty-container.active .twentytwenty-overlay,.twentytwenty-container.active :hover.twentytwenty-overlay{background:rgba(0,0,0,0)}.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label,.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label{opacity:0}.twentytwenty-container *{-webkit-box-sizing:content-box;box-sizing:content-box}.twentytwenty-before-label{opacity:0}.twentytwenty-before-label::before{content:attr(data-content)}.twentytwenty-after-label{opacity:0}.twentytwenty-after-label::before{content:attr(data-content)}.twentytwenty-horizontal .twentytwenty-before-label::before{left:10px}.twentytwenty-horizontal .twentytwenty-after-label::before{right:10px}.twentytwenty-vertical .twentytwenty-before-label::before{top:10px}.twentytwenty-vertical .twentytwenty-after-label::before{bottom:10px}.twentytwenty-overlay{-webkit-transition-property:background;transition-property:background;background:rgba(0,0,0,0);z-index:25}.twentytwenty-overlay:hover{background:rgba(0,0,0,.5)}.twentytwenty-overlay:hover .twentytwenty-after-label{opacity:1}.twentytwenty-overlay:hover .twentytwenty-before-label{opacity:1}.twentytwenty-before{z-index:20}.twentytwenty-after{z-index:10}div.twentytwenty-handle{height:38px;width:38px;position:absolute;left:50%;top:50%;margin-left:-22px;margin-top:-22px;border:3px solid #fff;border-radius:1000px;-webkit-box-shadow:0 0 12px rgba(51,51,51,.5);box-shadow:0 0 12px rgba(51,51,51,.5);z-index:40;cursor:pointer}.twentytwenty-handle:focus-visible{outline:-webkit-focus-ring-color auto 1px}.twentytwenty-horizontal .twentytwenty-handle::before{bottom:50%;margin-bottom:22px;-webkit-box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:0 3px 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-horizontal .twentytwenty-handle::after{top:50%;margin-top:22px;-webkit-box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:0 -3px 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle::before{left:50%;margin-left:22px;-webkit-box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:3px 0 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-vertical .twentytwenty-handle::after{right:50%;margin-right:22px;-webkit-box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5);box-shadow:-3px 0 0 #fff,0 0 12px rgba(51,51,51,.5)}.twentytwenty-handle>.twentytwenty-left-arrow{border-right:6px solid #fff;left:50%;margin-left:-17px}.twentytwenty-handle>.twentytwenty-right-arrow{border-left:6px solid #fff;right:50%;margin-right:-17px}.twentytwenty-handle>.twentytwenty-up-arrow{border-bottom:6px solid #fff;top:50%;margin-top:-17px}.twentytwenty-handle>.twentytwenty-down-arrow{border-top:6px solid #fff;bottom:50%;margin-bottom:-17px}table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable tfoot th,table.dataTable thead th{font-weight:700}table.dataTable thead td,table.dataTable thead th{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead td:active,table.dataTable thead th:active{outline:0}table.dataTable tfoot td,table.dataTable tfoot th{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .dt-ordering-asc,table.dataTable thead .dt-ordering-asc-disabled,table.dataTable thead .dt-ordering-desc,table.dataTable thead .dt-ordering-desc-disabled,table.dataTable thead th{cursor:pointer;background-repeat:no-repeat;background-position:center right}table.dataTable thead .dt-orderable-asc,table.dataTable thead .dt-orderable-desc{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png)}table.dataTable thead .dt-ordering-asc{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png)}table.dataTable thead .dt-ordering-desc{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png)}table.dataTable thead .dt-ordering-asc-disabled{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png)}table.dataTable tbody tr{background-color:#fff}table.dataTable tbody tr.selected{background-color:#b0bed9}table.dataTable tbody td,table.dataTable tbody th{padding:8px 10px}.ekit_table.display table.dataTable tbody td,.ekit_table.display table.dataTable tbody th,table.dataTable.row-border tbody td,table.dataTable.row-border tbody th{border-top:1px solid #ddd}.ekit_table.display table.dataTable tbody tr:first-child td,.ekit_table.display table.dataTable tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.row-border tbody tr:first-child th{border-top:none}table.dataTable.cell-border tbody td,table.dataTable.cell-border tbody th{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr td:first-child,table.dataTable.cell-border tbody tr th:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child td,table.dataTable.cell-border tbody tr:first-child th{border-top:none}.ekit_table.display table.dataTable tbody tr.odd,table.dataTable.stripe tbody tr.odd{background-color:#f9f9f9}.ekit_table.display table.dataTable tbody tr.odd.selected,table.dataTable.stripe tbody tr.odd.selected{background-color:#acbad4}.ekit_table.display table.dataTable tbody tr:hover,table.dataTable.hover tbody tr:hover{background-color:#f6f6f6}.ekit_table.display table.dataTable tbody tr:hover.selected,table.dataTable.hover tbody tr:hover.selected{background-color:#aab7d1}.ekit_table.display table.dataTable tbody tr>.sorting_1,.ekit_table.display table.dataTable tbody tr>.sorting_2,.ekit_table.display table.dataTable tbody tr>.sorting_3,table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3{background-color:#fafafa}.ekit_table.display table.dataTable tbody tr.selected>.sorting_1,.ekit_table.display table.dataTable tbody tr.selected>.sorting_2,.ekit_table.display table.dataTable tbody tr.selected>.sorting_3,table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3{background-color:#acbad5}.ekit_table.display table.dataTable tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}.ekit_table.display table.dataTable tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}.ekit_table.display table.dataTable tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:#f5f5f5}.ekit_table.display table.dataTable tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}.ekit_table.display table.dataTable tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}.ekit_table.display table.dataTable tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}.ekit_table.display table.dataTable tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}.ekit_table.display table.dataTable tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}.ekit_table.display table.dataTable tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}.ekit_table.display table.dataTable tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}.ekit_table.display table.dataTable tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}.ekit_table.display table.dataTable tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}.ekit_table.display table.dataTable tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}.ekit_table.display table.dataTable tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}.ekit_table.display table.dataTable tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}.ekit_table.display table.dataTable tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}.ekit_table.display table.dataTable tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}.ekit_table.display table.dataTable tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap td,table.dataTable.nowrap th{white-space:nowrap}table.dataTable.compact thead td,table.dataTable.compact thead th{padding:4px 17px 4px 4px}table.dataTable.compact tfoot td,table.dataTable.compact tfoot th{padding:4px}table.dataTable.compact tbody td,table.dataTable.compact tbody th{padding:4px}table.dataTable td.dt-left,table.dataTable th.dt-left{text-align:left}table.dataTable td.dataTables_empty,table.dataTable td.dt-center,table.dataTable th.dt-center{text-align:center}table.dataTable td.dt-right,table.dataTable th.dt-right{text-align:right}table.dataTable td.dt-justify,table.dataTable th.dt-justify{text-align:justify}table.dataTable td.dt-nowrap,table.dataTable th.dt-nowrap{white-space:nowrap}table.dataTable tfoot td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable thead th.dt-head-left{text-align:left}table.dataTable tfoot td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable thead th.dt-head-center{text-align:center}table.dataTable tfoot td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable thead th.dt-head-right{text-align:right}table.dataTable tfoot td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable thead th.dt-head-justify{text-align:justify}table.dataTable tfoot td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable thead th.dt-head-nowrap{white-space:nowrap}table.dataTable tbody td.dt-body-left,table.dataTable tbody th.dt-body-left{text-align:left}table.dataTable tbody td.dt-body-center,table.dataTable tbody th.dt-body-center{text-align:center}table.dataTable tbody td.dt-body-right,table.dataTable tbody th.dt-body-right{text-align:right}table.dataTable tbody td.dt-body-justify,table.dataTable tbody th.dt-body-justify{text-align:justify}table.dataTable tbody td.dt-body-nowrap,table.dataTable tbody th.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}.dt-container{position:relative;clear:both;zoom:1}.dt-container>.dt-buttons{position:relative;float:left;margin-bottom:20px}.dt-container>.dt-search{float:right;text-align:right;margin-bottom:20px}.dt-container>.dt-info{clear:both;float:left;margin-top:20px}.dt-container>.dt-paging{float:right;text-align:right;margin-top:20px}.dt-search input input{margin-left:.5em}.dt-container .dt-paging button{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;min-width:1.5em;padding:.5em 1em;margin-left:2px;text-align:center;text-decoration:none!important;cursor:pointer;color:#333;border:1px solid transparent;border-radius:2px}.dt-container .dt-paging button.current,.dt-container .dt-paging button.current:hover{color:#333;border:1px solid #979797;background-color:#fff;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#dcdcdc));background:linear-gradient(to bottom,#fff 0,#dcdcdc 100%)}.dt-container .dt-paging button.disabled,.dt-container .dt-paging button.disabled:active,.dt-container .dt-paging button.disabled:hover{cursor:default;color:#666;border:1px solid transparent;background:0 0;-webkit-box-shadow:none;box-shadow:none}.dt-container .dt-paging button:hover{color:#fff;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear,left top,left bottom,from(#585858),to(#111));background:linear-gradient(to bottom,#585858 0,#111 100%)}.dt-container .dt-paging button:active{outline:0;background-color:#2b2b2b;background:-webkit-gradient(linear,left top,left bottom,from(#2b2b2b),to(#0c0c0c));background:linear-gradient(to bottom,#2b2b2b 0,#0c0c0c 100%);-webkit-box-shadow:inset 0 0 3px #111;box-shadow:inset 0 0 3px #111}.dt-container .dt-paging .ellipsis{padding:0 1em}.dt-container .dt-paging .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:#fff;background:-webkit-gradient(linear,left top,right top,from(rgba(255,255,255,0)),color-stop(25%,rgba(255,255,255,.9)),color-stop(75%,rgba(255,255,255,.9)),to(rgba(255,255,255,0)));background:linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.9) 25%,rgba(255,255,255,.9) 75%,rgba(255,255,255,0) 100%)}.dt-container .dataTables_processing,.dt-container .dt-info,.dt-container .dt-length,.dt-container .dt-paging,.dt-container .dt-search{color:#333}.dt-container .dataTables_scroll{clear:both}.dt-container .dataTables_scroll div.dataTables_scrollBody{-webkit-overflow-scrolling:touch}.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th{vertical-align:middle}.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dt-container .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing{height:0;overflow:hidden;margin:0!important;padding:0!important}.dt-container.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dt-container.no-footer div.dataTables_scrollBody>table,.dt-container.no-footer div.dataTables_scrollHead table.dataTable{border-bottom:none}.dt-container::after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width:767px){.dt-container .dt-info,.dt-container .dt-paging{float:none;text-align:center}.dt-container .dt-paging{margin-top:.5em}}@media screen and (max-width:640px){.ekit-wid-con .ekit_table .dt-container .dt-layout-row{text-align:center}.ekit-wid-con .ekit_table .dt-container .dt-layout-row:not(.dt-layout-table){-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset;gap:20px}.ekit-wid-con .ekit_table .dt-container .dt-layout-row:not(.dt-layout-table) .dt-search .dt-input{width:100%}.ekit-wid-con .ekit_table .dt-container>.dt-buttons,.ekit-wid-con .ekit_table .dt-container>.dt-info,.ekit-wid-con .ekit_table .dt-container>.dt-paging,.ekit-wid-con .ekit_table .dt-container>.dt-search{float:none;text-align:center}}@keyframes dtb-spinner{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dtb-spinner{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:#fff;border:2px solid #111;-webkit-box-shadow:3px 3px 8px rgba(0,0,0,.3);box-shadow:3px 3px 8px rgba(0,0,0,.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:.5em;margin:0;font-weight:400;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}div.dt-button-collection-title{text-align:center;padding:.3em 0 .5em;font-size:.9em}div.dt-button-collection-title:empty{display:none}a.dt-button,button.dt-button,div.dt-button{position:relative;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;margin-right:.333em;margin-bottom:.333em;padding:.5em 1em;border:1px solid #999;border-radius:2px;cursor:pointer;font-size:.88em;line-height:1.6em;color:#000;white-space:nowrap;overflow:hidden;background-color:#e9e9e9;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e9e9e9));background-image:linear-gradient(to bottom,#fff 0,#e9e9e9 100%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;outline:0}a.dt-button.disabled,button.dt-button.disabled,div.dt-button.disabled{color:#999;border:1px solid #d0d0d0;cursor:default;background-color:#f9f9f9;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f9f9f9));background-image:linear-gradient(to bottom,#fff 0,#f9f9f9 100%)}a.dt-button.active:not(.disabled),a.dt-button:active:not(.disabled),button.dt-button.active:not(.disabled),button.dt-button:active:not(.disabled),div.dt-button.active:not(.disabled),div.dt-button:active:not(.disabled){background-color:#e2e2e2;background-image:-webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#e2e2e2));background-image:linear-gradient(to bottom,#f3f3f3 0,#e2e2e2 100%);-webkit-box-shadow:inset 1px 1px 3px #999;box-shadow:inset 1px 1px 3px #999}a.dt-button.active:not(.disabled):hover:not(.disabled),a.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button.active:not(.disabled):hover:not(.disabled),button.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button.active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled){-webkit-box-shadow:inset 1px 1px 3px #999;box-shadow:inset 1px 1px 3px #999;background-color:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#eaeaea),to(#ccc));background-image:linear-gradient(to bottom,#eaeaea 0,#ccc 100%)}a.dt-button:hover,button.dt-button:hover,div.dt-button:hover{text-decoration:none}a.dt-button:hover:not(.disabled),button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled){border:1px solid #666;background-color:#e0e0e0;background-image:-webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#e0e0e0));background-image:linear-gradient(to bottom,#f9f9f9 0,#e0e0e0 100%)}a.dt-button:focus:not(.disabled),button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled){border:1px solid #426c9e;text-shadow:0 1px 0 #c4def1;outline:0;background-color:#79ace9;background-image:-webkit-gradient(linear,left top,left bottom,from(#bddef4),to(#79ace9));background-image:linear-gradient(to bottom,#bddef4 0,#79ace9 100%)}.dt-button embed{outline:0}div.dt-buttons{position:relative;float:left}div.dt-buttons.buttons-right{float:right}div.dt-button-collection{position:absolute;top:0;left:0;width:150px;margin-top:3px;padding:8px 8px 4px 8px;border:1px solid #ccc;border:1px solid rgba(0,0,0,.4);background-color:#fff;overflow:hidden;z-index:2002;border-radius:5px;-webkit-box-shadow:3px 3px 5px rgba(0,0,0,.3);box-shadow:3px 3px 5px rgba(0,0,0,.3);-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}div.dt-button-collection a.dt-button,div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button{position:relative;left:0;right:0;width:100%;display:block;float:none;margin-bottom:4px;margin-right:0}div.dt-button-collection a.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled){background-color:#dadada;background-image:-webkit-gradient(linear,left top,left bottom,from(#f0f0f0),to(#dadada));background-image:linear-gradient(to bottom,#f0f0f0 0,#dadada 100%);-webkit-box-shadow:inset 1px 1px 3px #666;box-shadow:inset 1px 1px 3px #666}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-150px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>*{-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-collection .dt-button{border-radius:0}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);background:radial-gradient(ellipse farthest-corner at center,rgba(0,0,0,.3) 0,rgba(0,0,0,.7) 100%);z-index:2001}@media screen and (max-width:640px){div.dt-buttons{float:none!important;text-align:center}}a.dt-button.processing,button.dt-button.processing,div.dt-button.processing{color:rgba(0,0,0,.2)}a.dt-button.processing::after,button.dt-button.processing::after,div.dt-button.processing::after{position:absolute;top:50%;left:50%;width:16px;height:16px;margin:-8px 0 0 -8px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;content:" ";border:2px solid #282828;border-radius:50%;border-left-color:transparent;border-right-color:transparent;animation:dtb-spinner 1.5s infinite linear;-o-animation:dtb-spinner 1.5s infinite linear;-ms-animation:dtb-spinner 1.5s infinite linear;-webkit-animation:dtb-spinner 1.5s infinite linear;-moz-animation:dtb-spinner 1.5s infinite linear}table.DTFC_Cloned tfoot,table.DTFC_Cloned thead{background-color:#fff}div.DTFC_Blocker{background-color:#fff}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none}table.fixedHeader-floating{position:fixed!important;background-color:#fff}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute!important;background-color:#fff}@media print{table.fixedHeader-floating{display:none}}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child::before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty::before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child::before{display:none!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child::before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child::before{content:"-";background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child::before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child::before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control::before,table.dataTable.dtr-column>tbody>tr>th.control::before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control::before,table.dataTable.dtr-column>tbody>tr.parent th.control::before{content:"-";background-color:#d33333}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:0 0!important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700}div.dtr-modal{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;-webkit-box-shadow:0 12px 30px rgba(0,0,0,.6);box-shadow:0 12px 30px rgba(0,0,0,.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width:767px){div.dtr-modal div.dtr-modal-display{width:95%}}table.dataTable tr.dtrg-group td{background-color:#e0e0e0}table.dataTable tr.dtrg-group.dtrg-level-0 td{font-weight:700}table.dataTable tr.dtrg-group.dtrg-level-1 td,table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f0f0f0;padding-top:.25em;padding-bottom:.25em;padding-left:2em;font-size:.9em}table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f3f3f3}.ekit_table .dt-container{padding-top:20px;padding-bottom:20px}.ekit_table table.dataTable.no-footer{border-bottom:1px solid #e6e6e6}.ekit_table .dt-container select:not([multiple]){-webkit-appearance:none;-ms-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border-radius:0;border:solid 1px #bbb;padding:12px 48px 12px 18px}.ekit_table .dt-container select:not([multiple])::after{content:" - Remember this"}.ekit_table .dt-container .dt-search input{border:solid 1px #bbb;padding:12px 48px 12px 18px}.ekit_table table.dataTable thead th{font-size:14px;font-weight:500;letter-spacing:.3px;color:#fff}.ekit_table.display table.dataTable tbody tr td{border-style:solid;border-width:1px 1px 1px 1px;border-color:#f9f9f9}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child::before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty::before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child::before{display:none!important}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child::before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child::before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child::before{content:"-";background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child::before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child::before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control::before,table.dataTable.dtr-column>tbody>tr>th.control::before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444;-webkit-box-sizing:content-box;box-sizing:content-box;text-align:center;text-indent:0!important;font-family:"Courier New",Courier,monospace;line-height:14px;content:"+";background-color:#31b131}table.dataTable.dtr-column>tbody>tr.parent td.control::before,table.dataTable.dtr-column>tbody>tr.parent th.control::before{content:"-";background-color:#d33333}table.dataTable>tbody>tr.child{padding:.5em 1em}table.dataTable>tbody>tr.child:hover{background:0 0!important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details>li{border-bottom:1px solid #efefef;padding:.5em 0}table.dataTable>tbody>tr.child ul.dtr-details>li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details>li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700}div.dtr-modal{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;-webkit-box-shadow:0 12px 30px rgba(0,0,0,.6);box-shadow:0 12px 30px rgba(0,0,0,.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width:767px){div.dtr-modal div.dtr-modal-display{width:95%}}.elementskit-invisible{visibility:hidden}.ekit-wid-con .ekit-post-list-wrapper .elementor-icon-list-item a{background-color:transparent!important}.ekit-wid-con .ekit-post-list-wrapper.elementor-inline-items .elementor-icon-list-item{margin:0}.ekit-wid-con .elementor-inline-items{margin:0!important}.ekit-wid-con .elementor-inline-items .elementor-icon-list-item{display:inline-block}.ekit-wid-con .elementor-inline-items .elementor-icon-list-item::after{display:inline-block}.elementor-widget .ekit-wid-con .elementor-inline-items .elementor-icon-list-item::after{position:absolute}.ekit-wid-con .elementor-inline-items .elementor-icon-list-item:last-child::after{display:none}.elementor-widget-elementskit-page-list:not(.ekit-has-divider-yes) .ekit-wid-con .elementor-inline-items .elementor-icon-list-item::after{display:none}.ekit-wid-con .elementor-inline-items.row .elementor-icon-list-item{margin:0;padding:0;margin-right:0!important;margin-left:0!important;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-wid-con .elementor-inline-items.row .elementor-icon-list-item a{padding:5px 15px}.ekit-wid-con .elementor-icon-list-item>a{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .4s ease;transition:all .4s ease;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ekit-wid-con .elementor-icon-list-item>a.ekit_badge_right{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}.ekit-wid-con .ekit_menu_label{border-radius:3px;padding:2px 5px;display:inline-block;font-size:10px;color:#fff;background-color:#c91765;margin-left:5px}.ekit-wid-con .ekit_menu_subtitle{font-size:11px;font-style:normal;color:#8d96ae;display:block;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-text{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;text-align:center;line-height:inherit}.ekit-wid-con .elementor-icon-list-icon svg{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-icon>i{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-enabled-bg-img .elementor-icon-list-item a{background-size:cover;background-repeat:no-repeat;position:relative;background-position:center center;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-enabled-bg-img .elementor-icon-list-item a::after{content:"";background-color:rgba(34,34,34,.7);position:absolute;left:0;top:0;width:100%;height:100%;display:block;-webkit-transition:all .4s;transition:all .4s}.ekit-enabled-bg-img .elementor-icon-list-item a:hover::after{background-color:rgba(34,34,34,.9)}.ekit-enabled-bg-img .elementor-icon-list-item a .ekit_post_list_content_wraper{z-index:1}.ekit-enabled-bg-img .elementor-icon-list-item a>img{z-index:1}.ekit-wid-con .nav{margin:0;padding:0;list-style:none}.ekit-wid-con .ekit-form form p{margin-bottom:0}.ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]){display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#495057;background-color:#fff;border:1px solid #e7e7e7;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;height:56px;border-radius:0;padding-left:30px;-webkit-box-shadow:none;box-shadow:none}.ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]):hover{border-color:#333}.ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus{border-color:#4d68ff}.ekit-wid-con .ekit-form form input[type=submit]{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:0;-webkit-transition:all .4s ease;transition:all .4s ease;padding:12px 72px;font-size:.9375rem;background-color:#313636;border:0 solid #000;color:#fff;cursor:pointer}.ekit-wid-con .ekit-form form input[type=submit]:hover{background-color:#4d68ff}.ekit-wid-con .ekit-form form select{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#495057;background-color:#fff;border:1px solid #e7e7e7;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;height:56px}.ekit-wid-con .ekit-form form select[multiple]{height:100px}.ekit-wid-con .ekit-form form label{margin-bottom:7px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#313636;font-weight:400}.ekit-wid-con .ekit-form form label span{color:#777;font-size:.8125rem;display:block}.ekit-wid-con .ekit-form form textarea{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;color:#495057;background-color:#fff;border:1px solid #e7e7e7;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;border-radius:0;padding-left:30px;height:176px;resize:none;padding-top:15px;-webkit-box-shadow:none;box-shadow:none}.ekit-wid-con .ekit-form form textarea:hover{border-color:#333}.ekit-wid-con .ekit-form form textarea:focus{border-color:#4d68ff}.ekit-wid-con .ekit-form form .intl-tel-input{width:100%}.ekit-wid-con .ekit-form form .ekit-form-input{margin-bottom:50px}.elementor-widget-elementskit-pricing .elementor-widget-container,.elementor-widget-elementskit-pricing.elementor-element:not(:has(.elementor-widget-container)){overflow:hidden}.elementor-widget-elementskit-timeline .elementor-widget-container,.elementor-widget-elementskit-timeline.elementor-element:not(:has(.elementor-widget-container)){padding-top:35px;padding-left:45px;padding-right:45px;padding-bottom:60px}.elementor-widget-elementskit-business-hours{padding:20px 20px 20px 20px;background-color:#fff;-webkit-box-shadow:0 10px 10px 0 rgba(0,0,0,.1);box-shadow:0 10px 10px 0 rgba(0,0,0,.1)}.elementor-widget-elementskit-dual-button-center .ekit-element-align-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementor-widget-elementskit-dual-button-end .ekit-element-align-wrapper{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementor-widget-elementskit-dual-button-start .ekit-element-align-wrapper{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.ekit_wpForms_container-form-button-full-width .wpforms-submit-container .wpforms-submit{width:100%}.ekit_ninjaForms_container-button-full-width .submit-container input[type=button]{width:100%}.elemenetskit-alert-info{position:relative;padding:.75rem 1.25rem;border:1px solid transparent;border-radius:.25rem;color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.elementor-widget-elementskit-team.animated{-webkit-animation-fill-mode:none;animation-fill-mode:none}@media (max-width:1024px){.ekit-tab-hide{display:none}}@media (max-width:767px){.ekit-mobile-hide{display:none}}.ekit-template-content-footer,.ekit-template-content-header{clear:both}.elementor-edit-area-active .elementor-widget:hover .widgetarea_warper_edit{display:block}.ekit-sticky{z-index:9999}div.elementor .ekit-sticky.elementor-element{-webkit-transition:background-color .3s ease-in;transition:background-color .3s ease-in}.ekit-sticky[data-ekit-sticky]{z-index:1}div.elementor .ekit-sticky--show_on_scroll_up.elementor-element{-webkit-transition:background-color .3s ease-in,opacity .3s,visibility .3s;transition:background-color .3s ease-in,opacity .3s,visibility .3s}.ekit-sticky--effects.ekit-sticky--down.ekit-sticky--show_on_scroll_up{opacity:0;visibility:hidden}.weforms_submit_btn{-webkit-transition:all .4s ease;transition:all .4s ease;cursor:pointer}.wpuf-label>label{margin-bottom:0}ul.wpuf-form li label.wpuf-form-sub-label{margin-bottom:0}.image-source-link{color:#98c3d1}.mfp-bg,.mfp-container{opacity:0;-webkit-backface-visibility:hidden;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-ready .mfp-container{opacity:1}.mfp-ready.mfp-bg{opacity:.8}.mfp-removing .mfp-container,.mfp-removing.mfp-bg{opacity:0}.mfp-move-horizontal .mfp-with-anim{opacity:0;-webkit-transition:all .3s;transition:all .3s;-webkit-transform:translateX(-50px);transform:translateX(-50px)}.mfp-move-horizontal.mfp-bg{opacity:0;-webkit-transition:all .3s;transition:all .3s}.mfp-move-horizontal.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}.mfp-move-horizontal.mfp-ready.mfp-bg{opacity:.8}.mfp-move-horizontal.mfp-removing .mfp-with-anim{-webkit-transform:translateX(50px);transform:translateX(50px);opacity:0}.mfp-move-horizontal.mfp-removing.mfp-bg{opacity:0}.mfp-zoom-out .mfp-with-anim{opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:scale(1.3);transform:scale(1.3)}.mfp-zoom-out.mfp-bg{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-zoom-out.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mfp-zoom-out.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-out.mfp-removing .mfp-with-anim{-webkit-transform:scale(1.3);transform:scale(1.3);opacity:0}.mfp-zoom-out.mfp-removing.mfp-bg{opacity:0}button.mfp-close.ekit-popup-close{border:1px solid #fff;margin:20px;border-radius:50%;-webkit-transition:all .4s ease;transition:all .4s ease}button.mfp-close.ekit-popup-close:hover{background-color:#000;color:#fff;border-color:#000;width:44px}.mfp-iframe-holder .mfp-close.ekit-popup-close{width:44px;text-align:center;padding-right:0;top:0;right:0}.mfp-container.mfp-iframe-holder{position:fixed}.mfp-container.mfp-iframe-holder .mfp-close.ekit-popup-close{position:fixed}.mfp-zoom-in .mfp-with-anim{opacity:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transform:scale(.8);transform:scale(.8)}.mfp-zoom-in.mfp-bg{opacity:0;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}.mfp-zoom-in.mfp-ready .mfp-with-anim{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.mfp-zoom-in.mfp-ready.mfp-bg{opacity:.8}.mfp-zoom-in.mfp-removing .mfp-with-anim{-webkit-transform:scale(.8);transform:scale(.8);opacity:0}.mfp-zoom-in.mfp-removing.mfp-bg{opacity:0}.white-popup-block{background:#ccc;padding:20px;max-width:300px;margin:0 auto;-webkit-animation:open 1s;animation:open 1s}.mfp-removing{-webkit-animation:close 1s;animation:close 1s}.mfp-open .modal-popup-group,.mfp-open .xs-modal-sidebar{-webkit-animation-name:galleryopen;animation-name:galleryopen;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-backface-visibility:hidden;backface-visibility:hidden}.mfp-bg.ekit-promo-popup{background-color:rgba(0,0,0,.87);padding-bottom:100%;border-radius:100%;overflow:hidden;-webkit-animation:menu-animation .8s ease-out forwards;animation:menu-animation .8s ease-out forwards}.ekit-promo-popup .modal-content{background-color:transparent;padding:0;border:0}.ekit-promo-popup .mfp-close{color:#fff;opacity:0;-webkit-transition:all 1s ease .8s;transition:all 1s ease .8s;-webkit-transform:translateY(-500px);transform:translateY(-500px)}.ekit-promo-popup.mfp-ready .mfp-close{opacity:1;-webkit-transform:translateY(0);transform:translateY(0);position:fixed}body.admin-bar .ekit-promo-popup.mfp-ready .mfp-close{margin-top:45px}.ekit-promo-popup.my-mfp-slide-bottom .zoom-anim-dialog{opacity:0;-webkit-transition:all 1s ease .8s;transition:all 1s ease .8s;-webkit-transform:translateY(-500px);transform:translateY(-500px)}.ekit-promo-popup.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}@-webkit-keyframes bounceAnim{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-16px);transform:translateY(-16px)}60%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}}@keyframes bounceAnim{0%,100%,20%,50%,80%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-16px);transform:translateY(-16px)}60%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}}@-webkit-keyframes menu-animation{0%{opacity:0;-webkit-transform:scale(.04) translateY(300%);transform:scale(.04) translateY(300%)}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0);-webkit-transition:ease-out;transition:ease-out}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}60%{opacity:1;-webkit-transform:scale(.02) translateY(0);transform:scale(.02) translateY(0)}61%{opacity:1;-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}99.9%{opacity:1;height:0;padding-bottom:100%;border-radius:100%}100%{opacity:1;-webkit-transform:scale(2) translateY(0);transform:scale(2) translateY(0);height:100%;padding-bottom:0;border-radius:0}}@keyframes menu-animation{0%{opacity:0;-webkit-transform:scale(.04) translateY(300%);transform:scale(.04) translateY(300%)}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0);-webkit-transition:ease-out;transition:ease-out}40%{-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}60%{opacity:1;-webkit-transform:scale(.02) translateY(0);transform:scale(.02) translateY(0)}61%{opacity:1;-webkit-transform:scale(.04) translateY(0);transform:scale(.04) translateY(0)}99.9%{opacity:1;height:0;padding-bottom:100%;border-radius:100%}100%{opacity:1;-webkit-transform:scale(2) translateY(0);transform:scale(2) translateY(0);height:100%;padding-bottom:0;border-radius:0}}@-webkit-keyframes show-fadein{0%{opacity:0}100%{opacity:1}}@keyframes show-fadein{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes hide-fadeout{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes show-animation{0%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes show-animation{0%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes hide-animation{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@keyframes hide-animation{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-webkit-keyframes button-ripple{70%{-webkit-box-shadow:0 0 0 var(--glow-size,15px) currentColor;box-shadow:0 0 0 var(--glow-size,15px) currentColor;opacity:0}100%{-webkit-box-shadow:0 0 0 0 currentColor;box-shadow:0 0 0 0 currentColor;opacity:0}}@keyframes button-ripple{70%{-webkit-box-shadow:0 0 0 var(--glow-size,15px) currentColor;box-shadow:0 0 0 var(--glow-size,15px) currentColor;opacity:0}100%{-webkit-box-shadow:0 0 0 0 currentColor;box-shadow:0 0 0 0 currentColor;opacity:0}}@-webkit-keyframes radio-wave{0%{opacity:.8;border-width:2px}70%{opacity:.4}100%{-webkit-transform:scale(var(--ekit-radio-wave-scale));transform:scale(var(--ekit-radio-wave-scale));opacity:0;border-width:0}}@keyframes radio-wave{0%{opacity:.8;border-width:2px}70%{opacity:.4}100%{-webkit-transform:scale(var(--ekit-radio-wave-scale));transform:scale(var(--ekit-radio-wave-scale));opacity:0;border-width:0}}@-webkit-keyframes open{0%{opacity:0}100%{opacity:1}}@keyframes open{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes close{0%{opacity:1}100%{opacity:0}}@keyframes close{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes galleryopen{0%{opacity:0}100%{opacity:1}}@keyframes galleryopen{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes location-indicator{0%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,.2);box-shadow:0 0 0 0 rgba(12,90,219,.2)}70%{-webkit-box-shadow:0 0 0 30px rgba(12,90,219,0);box-shadow:0 0 0 30px rgba(12,90,219,0)}100%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,0);box-shadow:0 0 0 0 rgba(12,90,219,0)}}@keyframes location-indicator{0%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,.2);box-shadow:0 0 0 0 rgba(12,90,219,.2)}70%{-webkit-box-shadow:0 0 0 30px rgba(12,90,219,0);box-shadow:0 0 0 30px rgba(12,90,219,0)}100%{-webkit-box-shadow:0 0 0 0 rgba(12,90,219,0);box-shadow:0 0 0 0 rgba(12,90,219,0)}}@-webkit-keyframes iconTranslateY{49%{-webkit-transform:translateY(100%);transform:translateY(100%)}50%{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}51%{opacity:1}}@keyframes iconTranslateY{49%{-webkit-transform:translateY(100%);transform:translateY(100%)}50%{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}51%{opacity:1}}@-webkit-keyframes RainDrop{0%,100%,25%,55%,75%,87%,97%{-webkit-transform:scaleX(1);transform:scaleX(1)}26%,56%,76%{-webkit-transform:scaleX(1.3) scaleY(.8);transform:scaleX(1.3) scaleY(.8)}31%,61%,81%{-webkit-transform:scaleX(.8) scaleY(1.2);transform:scaleX(.8) scaleY(1.2)}76%,88%{-webkit-transform:scaleX(1.2);transform:scaleX(1.2)}98%{-webkit-transform:scaleX(1.1);transform:scaleX(1.1)}}@keyframes RainDrop{0%,100%,25%,55%,75%,87%,97%{-webkit-transform:scaleX(1);transform:scaleX(1)}26%,56%,76%{-webkit-transform:scaleX(1.3) scaleY(.8);transform:scaleX(1.3) scaleY(.8)}31%,61%,81%{-webkit-transform:scaleX(.8) scaleY(1.2);transform:scaleX(.8) scaleY(1.2)}76%,88%{-webkit-transform:scaleX(1.2);transform:scaleX(1.2)}98%{-webkit-transform:scaleX(1.1);transform:scaleX(1.1)}}@-webkit-keyframes WaterWave{50%{-webkit-transform:skewY(1deg) skewX(-1deg) scale(1.06);transform:skewY(1deg) skewX(-1deg) scale(1.06)}}@keyframes WaterWave{50%{-webkit-transform:skewY(1deg) skewX(-1deg) scale(1.06);transform:skewY(1deg) skewX(-1deg) scale(1.06)}}@-webkit-keyframes lightning{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes lightning{50%,from,to{opacity:1}25%,75%{opacity:0}}@-webkit-keyframes JoltZoom{10%{font-size:140%}40%{font-size:80%}100%{font-size:100%}}@keyframes JoltZoom{10%{font-size:140%}40%{font-size:80%}100%{font-size:100%}}@-webkit-keyframes typing{from{width:0}}@keyframes typing{from{width:0}}@-webkit-keyframes cursor{50%{border-color:transparent}}@keyframes cursor{50%{border-color:transparent}}@-webkit-keyframes wipe{to{width:0}}@keyframes wipe{to{width:0}}@keyframes open{from{width:0}}@-webkit-keyframes Magnify{50%{-webkit-transform:scale(1.8);transform:scale(1.8);letter-spacing:26px}}@keyframes Magnify{50%{-webkit-transform:scale(1.8);transform:scale(1.8);letter-spacing:26px}}@-webkit-keyframes Beat{14%,42%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%,70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes Beat{14%,42%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%,70%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes FadeIn{from{opacity:0}to{opacity:1}}@keyframes FadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes FadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes FadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes FadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes FadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes FadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@keyframes FadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@-webkit-keyframes FadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@keyframes FadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@-webkit-keyframes FadeOut{from{opacity:1}to{opacity:0}}@keyframes FadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes FadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes FadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes FadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes FadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes FadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes FadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes FadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes FadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@-webkit-keyframes MovingBackFromRight{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes MovingBackFromRight{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes MovingBackFromLeft{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes MovingBackFromLeft{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes KickOutFront{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes KickOutFront{40%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes KickOutBehind{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@keyframes KickOutBehind{40%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-animation-timing-function:cubic-bezier(0,.9,.7,1.45);animation-timing-function:cubic-bezier(0,.9,.7,1.45)}}@-webkit-keyframes ScaleXIn{from{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}50%{opacity:1}}@keyframes ScaleXIn{from{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}50%{opacity:1}}@-webkit-keyframes ScaleXOut{to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}from{opacity:1}}@keyframes ScaleXOut{to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}from{opacity:1}}@-webkit-keyframes ScaleYIn{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}50%{opacity:1}}@keyframes ScaleYIn{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}50%{opacity:1}}@-webkit-keyframes ScaleYOut{to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}from{opacity:1}}@keyframes ScaleYOut{to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}from{opacity:1}}@-webkit-keyframes Jump{to{-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@keyframes Jump{to{-webkit-transform:translateY(-20px);transform:translateY(-20px)}}@-webkit-keyframes AboundTop{50%{-webkit-transform:translateY(-100px);transform:translateY(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundTop{50%{-webkit-transform:translateY(-100px);transform:translateY(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes AboundBottom{50%{-webkit-transform:translateY(100px);transform:translateY(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundBottom{50%{-webkit-transform:translateY(100px);transform:translateY(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes AboundLeft{50%{-webkit-transform:translateX(-100px);transform:translateX(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundLeft{50%{-webkit-transform:translateX(-100px);transform:translateX(-100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes AboundRight{50%{-webkit-transform:translateX(100px);transform:translateX(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes AboundRight{50%{-webkit-transform:translateX(100px);transform:translateX(100px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes FlyInTop{0%{-webkit-transform:translate(0,-80px);transform:translate(0,-80px);opacity:0}50%{-webkit-transform:translate(10px,50px);transform:translate(10px,50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@keyframes FlyInTop{0%{-webkit-transform:translate(0,-80px);transform:translate(0,-80px);opacity:0}50%{-webkit-transform:translate(10px,50px);transform:translate(10px,50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@-webkit-keyframes FlyInLeft{0%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0);opacity:0}50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}}@keyframes FlyInLeft{0%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0);opacity:0}50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}}@-webkit-keyframes FlyInRight{0%{-webkit-transform:translate(40px,0);transform:translate(40px,0);opacity:0}50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}}@keyframes FlyInRight{0%{-webkit-transform:translate(40px,0);transform:translate(40px,0);opacity:0}50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}}@-webkit-keyframes FlyInBottom{0%{-webkit-transform:translate(0,80px);transform:translate(0,80px);opacity:0}50%{-webkit-transform:translate(10px,-50px);transform:translate(10px,-50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@keyframes FlyInBottom{0%{-webkit-transform:translate(0,80px);transform:translate(0,80px);opacity:0}50%{-webkit-transform:translate(10px,-50px);transform:translate(10px,-50px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}}@-webkit-keyframes FlyOutTop{50%{-webkit-transform:translate(0,50px);transform:translate(0,50px)}to{-webkit-transform:translate(0,-100px);transform:translate(0,-100px);opacity:0}}@keyframes FlyOutTop{50%{-webkit-transform:translate(0,50px);transform:translate(0,50px)}to{-webkit-transform:translate(0,-100px);transform:translate(0,-100px);opacity:0}}@-webkit-keyframes FlyOutLeft{50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}to{-webkit-transform:translate(-100px,0);transform:translate(-100px,0);opacity:0}}@keyframes FlyOutLeft{50%{-webkit-transform:translate(40px,0);transform:translate(40px,0)}to{-webkit-transform:translate(-100px,0);transform:translate(-100px,0);opacity:0}}@-webkit-keyframes FlyOutRight{50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}to{-webkit-transform:translate(100px,0);transform:translate(100px,0);opacity:0}}@keyframes FlyOutRight{50%{-webkit-transform:translate(-40px,0);transform:translate(-40px,0)}to{-webkit-transform:translate(100px,0);transform:translate(100px,0);opacity:0}}@-webkit-keyframes FlyOutBottom{50%{-webkit-transform:translate(0,-40px);transform:translate(0,-40px)}to{-webkit-transform:translate(0,100px);transform:translate(0,100px);opacity:0}}@keyframes FlyOutBottom{50%{-webkit-transform:translate(0,-40px);transform:translate(0,-40px)}to{-webkit-transform:translate(0,100px);transform:translate(0,100px);opacity:0}}@-webkit-keyframes DoorCloseLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}from{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}to{opacity:1}}@keyframes DoorCloseLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}from{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}to{opacity:1}}@-webkit-keyframes DoorOpenRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}}@keyframes DoorOpenRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);opacity:0}}@-webkit-keyframes DoorCloseRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}from{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}to{opacity:1}}@keyframes DoorCloseRight{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}from{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}to{opacity:1}}@-webkit-keyframes DoorOpenLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}}@keyframes DoorOpenLeft{from,to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);opacity:0}}@-webkit-keyframes HangAndDropLeft{from{-webkit-transform-origin:left;transform-origin:left}50%{-webkit-transform:rotate(100deg);transform:rotate(100deg);-webkit-transform-origin:left;transform-origin:left}60%{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:translateY(800px) rotate(70deg);transform:translateY(800px) rotate(70deg);-webkit-transform-origin:left;transform-origin:left}}@keyframes HangAndDropLeft{from{-webkit-transform-origin:left;transform-origin:left}50%{-webkit-transform:rotate(100deg);transform:rotate(100deg);-webkit-transform-origin:left;transform-origin:left}60%{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:left;transform-origin:left}to{-webkit-transform:translateY(800px) rotate(70deg);transform:translateY(800px) rotate(70deg);-webkit-transform-origin:left;transform-origin:left}}@-webkit-keyframes HangAndDropRight{from{-webkit-transform-origin:right;transform-origin:right}50%{-webkit-transform:rotate(-100deg);transform:rotate(-100deg);-webkit-transform-origin:right;transform-origin:right}60%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:translateY(800px) rotate(-70deg);transform:translateY(800px) rotate(-70deg);-webkit-transform-origin:right;transform-origin:right}}@keyframes HangAndDropRight{from{-webkit-transform-origin:right;transform-origin:right}50%{-webkit-transform:rotate(-100deg);transform:rotate(-100deg);-webkit-transform-origin:right;transform-origin:right}60%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:right;transform-origin:right}to{-webkit-transform:translateY(800px) rotate(-70deg);transform:translateY(800px) rotate(-70deg);-webkit-transform-origin:right;transform-origin:right}}@-webkit-keyframes PushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}50%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@keyframes PushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}50%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@-webkit-keyframes PushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@keyframes PushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@-webkit-keyframes PushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@keyframes PushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@-webkit-keyframes PushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@keyframes PushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@-webkit-keyframes PushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@keyframes PushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@-webkit-keyframes PushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@keyframes PushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@-webkit-keyframes PushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@keyframes PushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@-webkit-keyframes FlipInTop{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipInTop{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes FlipOutTop{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipOutTop{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes FlipInBottom{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipInBottom{from{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}30%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes FlipOutBottom{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@keyframes FlipOutBottom{to{-webkit-transform:perspective(600px);transform:perspective(600px);opacity:0}70%{-webkit-transform:perspective(600px) rotateX(180deg);transform:perspective(600px) rotateX(180deg);-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{-webkit-transform:perspective(600px);transform:perspective(600px)}}@-webkit-keyframes ElevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@keyframes ElevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@-webkit-keyframes ElevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@keyframes ElevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@-webkit-keyframes RollFromLeft{from{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@keyframes RollFromLeft{from{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@-webkit-keyframes RollFromRight{from{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@keyframes RollFromRight{from{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@-webkit-keyframes RollFromTop{from{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@keyframes RollFromTop{from{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@-webkit-keyframes RollFromBottom{from{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@keyframes RollFromBottom{from{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@-webkit-keyframes RollToLeft{to{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@keyframes RollToLeft{to{-webkit-transform:translateX(-60px) perspective(600px) rotateY(180deg);transform:translateX(-60px) perspective(600px) rotateY(180deg);opacity:0}}@-webkit-keyframes RollToRight{to{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@keyframes RollToRight{to{-webkit-transform:translateX(60px) perspective(600px) rotateY(-180deg);transform:translateX(60px) perspective(600px) rotateY(-180deg);opacity:0}}@-webkit-keyframes RollToTop{to{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@keyframes RollToTop{to{-webkit-transform:translateY(-60px) perspective(600px) rotateX(180deg);transform:translateY(-60px) perspective(600px) rotateX(180deg);opacity:0}}@-webkit-keyframes RollToBottom{to{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@keyframes RollToBottom{to{-webkit-transform:translateY(60px) perspective(600px) rotateX(-180deg);transform:translateY(60px) perspective(600px) rotateX(-180deg);opacity:0}}@-webkit-keyframes RotateSkateInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@keyframes RotateSkateInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@-webkit-keyframes RotateSkateInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@keyframes RotateSkateInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@-webkit-keyframes RotateSkateInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@keyframes RotateSkateInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@-webkit-keyframes RotateSkateInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@keyframes RotateSkateInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@-webkit-keyframes RotateSkateOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@keyframes RotateSkateOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);opacity:0}}@-webkit-keyframes RotateSkateOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@keyframes RotateSkateOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);opacity:0}}@-webkit-keyframes RotateSkateOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@keyframes RotateSkateOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);opacity:0}}@-webkit-keyframes RotateSkateOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@keyframes RotateSkateOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);opacity:0}}@-webkit-keyframes RotateXZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@keyframes RotateXZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@-webkit-keyframes RotateXZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@keyframes RotateXZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@-webkit-keyframes RotateYZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@keyframes RotateYZoomIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@-webkit-keyframes RotateYZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@keyframes RotateYZoomOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@-webkit-keyframes RotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes RotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes RotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes RotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@-webkit-keyframes RotateInLeft{from{-webkit-transform:rotate(-180deg) translateX(150px);transform:rotate(-180deg) translateX(150px);opacity:0}to{opacity:1}}@keyframes RotateInLeft{from{-webkit-transform:rotate(-180deg) translateX(150px);transform:rotate(-180deg) translateX(150px);opacity:0}to{opacity:1}}@-webkit-keyframes RotateOutLeft{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(150px);transform:rotate(180deg) translateX(150px);opacity:0}}@keyframes RotateOutLeft{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(150px);transform:rotate(180deg) translateX(150px);opacity:0}}@-webkit-keyframes RotateInRight{from{-webkit-transform:rotate(-180deg) translateX(-150px);transform:rotate(-180deg) translateX(-150px);opacity:0}to{opacity:1}}@keyframes RotateInRight{from{-webkit-transform:rotate(-180deg) translateX(-150px);transform:rotate(-180deg) translateX(-150px);opacity:0}to{opacity:1}}@-webkit-keyframes RotateOutRight{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(-150px);transform:rotate(180deg) translateX(-150px);opacity:0}}@keyframes RotateOutRight{from{opacity:1}to{-webkit-transform:rotate(180deg) translateX(-150px);transform:rotate(180deg) translateX(-150px);opacity:0}}@-webkit-keyframes SpinInLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes SpinInLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes SpinInRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes SpinInRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes SpinOutLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes SpinOutLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes SpinOutRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes SpinOutRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes BlurIn{from{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurIn{from{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInRight{from{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInLeft{from{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInTop{from{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurInBottom{from{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOut{to{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOut{to{-webkit-transform:scaleX(.2);transform:scaleX(.2);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutRight{to{-webkit-transform:scaleX(.2) translateX(100px);transform:scaleX(.2) translateX(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutLeft{to{-webkit-transform:scaleX(.2) translateX(-100px);transform:scaleX(.2) translateX(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutTop{to{-webkit-transform:scaleY(.2) translateY(-100px);transform:scaleY(.2) translateY(-100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes BlurOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes BlurOutBottom{to{-webkit-transform:scaleY(.2) translateY(100px);transform:scaleY(.2) translateY(100px);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes PopUp{50%{-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes PopUp{50%{-webkit-transform:scale(1.5);transform:scale(1.5)}}@-webkit-keyframes PopUpLeft{50%{-webkit-transform:translateX(-50px) scale(1.5);transform:translateX(-50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopUpLeft{50%{-webkit-transform:translateX(-50px) scale(1.5);transform:translateX(-50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes PopUpRight{50%{-webkit-transform:translateX(50px) scale(1.5);transform:translateX(50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopUpRight{50%{-webkit-transform:translateX(50px) scale(1.5);transform:translateX(50px) scale(1.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes PopOut{50%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes PopOut{50%{-webkit-transform:scale(.5);transform:scale(.5)}}@-webkit-keyframes PopOutLeft{50%{-webkit-transform:translateX(-50px) scale(.5);transform:translateX(-50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopOutLeft{50%{-webkit-transform:translateX(-50px) scale(.5);transform:translateX(-50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes PopOutRight{50%{-webkit-transform:translateX(50px) scale(.5);transform:translateX(50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes PopOutRight{50%{-webkit-transform:translateX(50px) scale(.5);transform:translateX(50px) scale(.5);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@-webkit-keyframes BounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.2,1);transform:translate3d(0,-80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes BounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.2,1);transform:translate3d(0,-80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@-webkit-keyframes BounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@keyframes BounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@-webkit-keyframes BounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@keyframes BounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@-webkit-keyframes BounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.7);transform:scale(1.7)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.9);transform:scale(1.9)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes BounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.7);transform:scale(1.7)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.9);transform:scale(1.9)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@-webkit-keyframes BounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.7);transform:scale(.7)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes BounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.7);transform:scale(.7)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@-webkit-keyframes PerspectiveOutTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@keyframes PerspectiveOutTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@-webkit-keyframes PerspectiveOutBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@keyframes PerspectiveOutBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@-webkit-keyframes ZoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes ZoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes ZoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes ZoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes ZoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes ZoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes LetterZoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes LetterZoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes ZoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes ZoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes ZoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes ZoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-webkit-keyframes ZoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes ZoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@-webkit-keyframes ZoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes ZoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@-webkit-keyframes ZoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes ZoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes ZoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes ZoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes oaoFadeInTop{from{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@keyframes oaoFadeInTop{from{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@-webkit-keyframes oaoFadeInBottom{from{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}}@keyframes oaoFadeInBottom{from{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}}@-webkit-keyframes oaoFadeOutop{to{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@keyframes oaoFadeOutop{to{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@-webkit-keyframes oaoFadeOutBottom{to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@keyframes oaoFadeOutBottom{to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@-webkit-keyframes oaoFlyInTop{0%{-webkit-transform:translateY(80px);transform:translateY(80px);opacity:0}50%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes oaoFlyInTop{0%{-webkit-transform:translateY(80px);transform:translateY(80px);opacity:0}50%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@-webkit-keyframes oaoFlyInBottom{0%{-webkit-transform:translateY(-80px);transform:translateY(-80px);opacity:0}50%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes oaoFlyInBottom{0%{-webkit-transform:translateY(-80px);transform:translateY(-80px);opacity:0}50%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@-webkit-keyframes oaoFlyOutTop{30%{-webkit-transform:translateY(80px);transform:translateY(80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@keyframes oaoFlyOutTop{30%{-webkit-transform:translateY(80px);transform:translateY(80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(-50px);transform:translateY(-50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@-webkit-keyframes oaoFlyOutBottom{30%{-webkit-transform:translateY(-80px);transform:translateY(-80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@keyframes oaoFlyOutBottom{30%{-webkit-transform:translateY(-80px);transform:translateY(-80px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:translateY(50px);transform:translateY(50px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}to{opacity:0}}@-webkit-keyframes oaoRotateInTop{from{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@keyframes oaoRotateInTop{from{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateInBottom{from{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@keyframes oaoRotateInBottom{from{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateOutTop{to{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@keyframes oaoRotateOutTop{to{-webkit-transform:translateY(-100px) rotate(360deg);transform:translateY(-100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateOutBottom{to{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@keyframes oaoRotateOutBottom{to{-webkit-transform:translateY(100px) rotate(360deg);transform:translateY(100px) rotate(360deg);opacity:0}}@-webkit-keyframes oaoRotateXInTop{from{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXInTop{from{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateXInBottom{from{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXInBottom{from{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateXOutTop{to{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXOutTop{to{-webkit-transform:translateY(-100px) rotateX(360deg);transform:translateY(-100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateXOutBottom{to{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@keyframes oaoRotateXOutBottom{to{-webkit-transform:translateY(100px) rotateX(360deg);transform:translateY(100px) rotateX(360deg);opacity:0}}@-webkit-keyframes oaoRotateYInTop{from{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYInTop{from{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@-webkit-keyframes oaoRotateYInBottom{from{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYInBottom{from{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@-webkit-keyframes oaoRotateYOutTop{to{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYOutTop{to{-webkit-transform:translateY(-100px) rotateY(360deg);transform:translateY(-100px) rotateY(360deg);opacity:0}}@-webkit-keyframes oaoRotateYOutBottom{to{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@keyframes oaoRotateYOutBottom{to{-webkit-transform:translateY(100px) rotateY(360deg);transform:translateY(100px) rotateY(360deg);opacity:0}}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes fadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@keyframes fadeInTop{from{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:1}}@-webkit-keyframes fadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@keyframes fadeInBottom{from{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:1}}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes fadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes fadeOutTop{from{opacity:1}to{opacity:0;-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes fadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes fadeOutBottom{from{opacity:1}to{opacity:0;-webkit-transform:translateY(100%);transform:translateY(100%)}}@-webkit-keyframes moveFromLeft{from{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@keyframes moveFromLeft{from{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@-webkit-keyframes moveFromRight{from{-webkit-transform:translateX(800px);transform:translateX(800px)}}@keyframes moveFromRight{from{-webkit-transform:translateX(800px);transform:translateX(800px)}}@-webkit-keyframes moveFromTop{from{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@keyframes moveFromTop{from{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@-webkit-keyframes moveFromBottom{from{-webkit-transform:translateY(800px);transform:translateY(800px)}}@keyframes moveFromBottom{from{-webkit-transform:translateY(800px);transform:translateY(800px)}}@-webkit-keyframes moveToLeft{to{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@keyframes moveToLeft{to{-webkit-transform:translateX(-800px);transform:translateX(-800px)}}@-webkit-keyframes moveToRight{to{-webkit-transform:translateX(800px);transform:translateX(800px)}}@keyframes moveToRight{to{-webkit-transform:translateX(800px);transform:translateX(800px)}}@-webkit-keyframes moveToTop{to{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@keyframes moveToTop{to{-webkit-transform:translateY(-800px);transform:translateY(-800px)}}@-webkit-keyframes moveToBottom{to{-webkit-transform:translateY(800px);transform:translateY(800px)}}@keyframes moveToBottom{to{-webkit-transform:translateY(800px);transform:translateY(800px)}}@-webkit-keyframes doorCloseFromLeft{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}}@keyframes doorCloseFromLeft{from{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}}@-webkit-keyframes doorOpenFromRight{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}}@keyframes doorOpenFromRight{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:left;transform-origin:left;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-transform-origin:left;transform-origin:left;opacity:0}}@-webkit-keyframes doorCloseFromRight{from{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}}@keyframes doorCloseFromRight{from{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}50%,to{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}}@-webkit-keyframes doorOpenFromLeft{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}}@keyframes doorOpenFromLeft{from{-webkit-transform:perspective(400px) rotateY(0);transform:perspective(400px) rotateY(0);-webkit-transform-origin:right;transform-origin:right;opacity:1}50%,to{-webkit-transform:perspective(400px) rotateY(-90deg);transform:perspective(400px) rotateY(-90deg);-webkit-transform-origin:right;transform-origin:right;opacity:0}}@-webkit-keyframes pushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@keyframes pushReleaseFrom{from{-webkit-transform:scale(3,3);transform:scale(3,3);opacity:0}30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}}@-webkit-keyframes pushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@keyframes pushReleaseFromLeft{from{-webkit-transform:translateX(-100%);transform:translateX(-100%)}30%{-webkit-transform:translateX(100px);transform:translateX(100px)}}@-webkit-keyframes pushReleaseFromRight{from{-webkit-transform:translateX(100%);transform:translateX(100%)}30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}}@keyframes pushReleaseFromRight{from{-webkit-transform:translateX(100%);transform:translateX(100%)}30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}}@-webkit-keyframes pushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%)}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@keyframes pushReleaseFromTop{from{-webkit-transform:translateY(-100%);transform:translateY(-100%)}30%{-webkit-transform:translateY(100px);transform:translateY(100px)}}@-webkit-keyframes pushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%)}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@keyframes pushReleaseFromBottom{from{-webkit-transform:translateY(100%);transform:translateY(100%)}30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}}@-webkit-keyframes pushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@keyframes pushReleaseTo{30%{-webkit-transform:scale(.5,.5);transform:scale(.5,.5)}to{-webkit-transform:scale(5,5);transform:scale(5,5);opacity:0}}@-webkit-keyframes pushReleaseToLeft{30%{-webkit-transform:translateX(100px);transform:translateX(100px)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}@keyframes pushReleaseToLeft{30%{-webkit-transform:translateX(100px);transform:translateX(100px)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}@-webkit-keyframes pushReleaseToRight{30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}to{-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@keyframes pushReleaseToRight{30%{-webkit-transform:translateX(-100px);transform:translateX(-100px)}to{-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@-webkit-keyframes pushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@keyframes pushReleaseToTop{30%{-webkit-transform:translateY(100px);transform:translateY(100px)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}}@-webkit-keyframes pushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@keyframes pushReleaseToBottom{30%{-webkit-transform:translateY(-100px);transform:translateY(-100px)}to{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}}@-webkit-keyframes flipX{from{-webkit-transform:perspective(600px) rotateX(-180deg);transform:perspective(600px) rotateX(-180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateX(-360deg);transform:perspective(600px) rotateX(-360deg)}}@keyframes flipX{from{-webkit-transform:perspective(600px) rotateX(-180deg);transform:perspective(600px) rotateX(-180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateX(-360deg);transform:perspective(600px) rotateX(-360deg)}}@-webkit-keyframes flipXZoomIn{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(-180deg) scale(1.8);transform:perspective(600px) rotateX(-180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(-360deg) scale(.7);transform:perspective(600px) rotateX(-360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipXZoomIn{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(-180deg) scale(1.8);transform:perspective(600px) rotateX(-180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(-360deg) scale(.7);transform:perspective(600px) rotateX(-360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes flipXZoomOut{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(180deg) scale(1.8);transform:perspective(600px) rotateX(180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(360deg) scale(.7);transform:perspective(600px) rotateX(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipXZoomOut{from{-webkit-transform:perspective(600px) rotateX(0) scale(1);transform:perspective(600px) rotateX(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateX(180deg) scale(1.8);transform:perspective(600px) rotateX(180deg) scale(1.8);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateX(360deg) scale(.7);transform:perspective(600px) rotateX(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes flipY{from{-webkit-transform:perspective(600px) rotateY(180deg);transform:perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateY(360deg);transform:perspective(600px) rotateY(360deg)}}@keyframes flipY{from{-webkit-transform:perspective(600px) rotateY(180deg);transform:perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:perspective(600px) rotateY(360deg);transform:perspective(600px) rotateY(360deg)}}@-webkit-keyframes flipYZoomIn{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(1.6);transform:perspective(600px) rotateY(180deg) scale(1.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(.7);transform:perspective(600px) rotateY(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipYZoomIn{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(1.6);transform:perspective(600px) rotateY(180deg) scale(1.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(.7);transform:perspective(600px) rotateY(360deg) scale(.7);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes flipYZoomOut{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(.6);transform:perspective(600px) rotateY(180deg) scale(.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(1.8);transform:perspective(600px) rotateY(360deg) scale(1.8);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes flipYZoomOut{from{-webkit-transform:perspective(600px) rotateY(0) scale(1);transform:perspective(600px) rotateY(0) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(600px) rotateY(180deg) scale(.6);transform:perspective(600px) rotateY(180deg) scale(.6);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}80%{-webkit-transform:perspective(600px) rotateY(360deg) scale(1.8);transform:perspective(600px) rotateY(360deg) scale(1.8);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes skewLeft{70%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}}@keyframes skewLeft{70%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}}@-webkit-keyframes skewRight{70%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}}@keyframes skewRight{70%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}}@-webkit-keyframes skewInLeft{from{opacity:0;-webkit-transform:translateX(-100%) skewX(-40deg);transform:translateX(-100%) skewX(-40deg)}70%{-webkit-transform:skewX(-30deg);transform:skewX(-30deg)}}@keyframes skewInLeft{from{opacity:0;-webkit-transform:translateX(-100%) skewX(-40deg);transform:translateX(-100%) skewX(-40deg)}70%{-webkit-transform:skewX(-30deg);transform:skewX(-30deg)}}@-webkit-keyframes skewInRight{from{opacity:0;-webkit-transform:translateX(100%) skewX(40deg);transform:translateX(100%) skewX(40deg)}70%{-webkit-transform:skewX(30deg);transform:skewX(30deg)}}@keyframes skewInRight{from{opacity:0;-webkit-transform:translateX(100%) skewX(40deg);transform:translateX(100%) skewX(40deg)}70%{-webkit-transform:skewX(30deg);transform:skewX(30deg)}}@-webkit-keyframes skewOutLeft{20%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}to{-webkit-transform:translateX(-100%) skewX(40deg);transform:translateX(-100%) skewX(40deg);opacity:0}}@keyframes skewOutLeft{20%{-webkit-transform:skewX(40deg);transform:skewX(40deg)}to{-webkit-transform:translateX(-100%) skewX(40deg);transform:translateX(-100%) skewX(40deg);opacity:0}}@-webkit-keyframes skewOutRight{20%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}to{-webkit-transform:translateX(100%) skewX(-40deg);transform:translateX(100%) skewX(-40deg);opacity:0}}@keyframes skewOutRight{20%{-webkit-transform:skewX(-40deg);transform:skewX(-40deg)}to{-webkit-transform:translateX(100%) skewX(-40deg);transform:translateX(100%) skewX(-40deg);opacity:0}}@-webkit-keyframes pullRelease{15%{-webkit-transform:scale(1.8);transform:scale(1.8)}}@keyframes pullRelease{15%{-webkit-transform:scale(1.8);transform:scale(1.8)}}@-webkit-keyframes pushRelease{15%{-webkit-transform:scale(.5);transform:scale(.5)}}@keyframes pushRelease{15%{-webkit-transform:scale(.5);transform:scale(.5)}}@-webkit-keyframes swingInLeft{from{-webkit-transform:matrix(3,0,0,3,-800,0);transform:matrix(3,0,0,3,-800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,20,0);transform:matrix(1.3,0,0,1.3,20,0)}}@keyframes swingInLeft{from{-webkit-transform:matrix(3,0,0,3,-800,0);transform:matrix(3,0,0,3,-800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,20,0);transform:matrix(1.3,0,0,1.3,20,0)}}@-webkit-keyframes swingInRight{from{-webkit-transform:matrix(3,0,0,3,800,0);transform:matrix(3,0,0,3,800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,-20,0);transform:matrix(1.3,0,0,1.3,-20,0)}}@keyframes swingInRight{from{-webkit-transform:matrix(3,0,0,3,800,0);transform:matrix(3,0,0,3,800,0);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,-20,0);transform:matrix(1.3,0,0,1.3,-20,0)}}@-webkit-keyframes swingInTop{from{-webkit-transform:matrix(3,0,0,3,0,-800);transform:matrix(3,0,0,3,0,-800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,20);transform:matrix(1.3,0,0,1.3,0,20)}}@keyframes swingInTop{from{-webkit-transform:matrix(3,0,0,3,0,-800);transform:matrix(3,0,0,3,0,-800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,20);transform:matrix(1.3,0,0,1.3,0,20)}}@-webkit-keyframes swingInBottom{from{-webkit-transform:matrix(3,0,0,3,0,800);transform:matrix(3,0,0,3,0,800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,-20);transform:matrix(1.3,0,0,1.3,0,-20)}}@keyframes swingInBottom{from{-webkit-transform:matrix(3,0,0,3,0,800);transform:matrix(3,0,0,3,0,800);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:matrix(1.3,0,0,1.3,0,-20);transform:matrix(1.3,0,0,1.3,0,-20)}}@-webkit-keyframes elevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@keyframes elevateLeft{from{-webkit-transform:translateY(100%) rotate(-20deg);transform:translateY(100%) rotate(-20deg);-webkit-transform-origin:right;transform-origin:right}40%{-webkit-transform:rotate(20deg);transform:rotate(20deg);-webkit-transform-origin:right;transform-origin:right}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:right;transform-origin:right}}@-webkit-keyframes elevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@keyframes elevateRight{from{-webkit-transform:translateY(100%) rotate(20deg);transform:translateY(100%) rotate(20deg);-webkit-transform-origin:left;transform-origin:left}40%{-webkit-transform:rotate(-20deg);transform:rotate(-20deg);-webkit-transform-origin:left;transform-origin:left}65%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:left;transform-origin:left}}@-webkit-keyframes rollFromLeft{from{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromLeft{from{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollFromRight{from{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromRight{from{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollFromTop{from{-webkit-transform:translateY(-100%) perspective(600px) rotateY(180deg);transform:translateY(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromTop{from{-webkit-transform:translateY(-100%) perspective(600px) rotateY(180deg);transform:translateY(-100%) perspective(600px) rotateY(180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollFromBottom{from{-webkit-transform:translateY(100%) perspective(600px) rotateY(-180deg);transform:translateY(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@keyframes rollFromBottom{from{-webkit-transform:translateY(100%) perspective(600px) rotateY(-180deg);transform:translateY(100%) perspective(600px) rotateY(-180deg);opacity:0}to{-webkit-transform:translateY(0) perspective(600px) rotateY(0);transform:translateY(0) perspective(600px) rotateY(0);opacity:1}}@-webkit-keyframes rollToLeft{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}}@keyframes rollToLeft{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(-100%) perspective(600px) rotateY(180deg);transform:translateX(-100%) perspective(600px) rotateY(180deg);opacity:0}}@-webkit-keyframes rollToRight{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}}@keyframes rollToRight{from{-webkit-transform:translateX(0) perspective(600px) rotateY(0);transform:translateX(0) perspective(600px) rotateY(0);opacity:1}to{-webkit-transform:translateX(100%) perspective(600px) rotateY(-180deg);transform:translateX(100%) perspective(600px) rotateY(-180deg);opacity:0}}@-webkit-keyframes rollToTop{from{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(-100%) perspective(600px) rotateX(180deg);transform:translateY(-100%) perspective(600px) rotateX(180deg);opacity:0}}@keyframes rollToTop{from{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(-100%) perspective(600px) rotateX(180deg);transform:translateY(-100%) perspective(600px) rotateX(180deg);opacity:0}}@-webkit-keyframes rollToBottom{to{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(100%) perspective(600px) rotateX(-180deg);transform:translateY(100%) perspective(600px) rotateX(-180deg);opacity:0}}@keyframes rollToBottom{to{-webkit-transform:translateY(0) perspective(600px) rotateX(0);transform:translateY(0) perspective(600px) rotateX(0);opacity:1}to{-webkit-transform:translateY(100%) perspective(600px) rotateX(-180deg);transform:translateY(100%) perspective(600px) rotateX(-180deg);opacity:0}}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes rotateX{from{-webkit-transform:perspective(600px) rotateX(0);transform:perspective(600px) rotateX(0)}to{-webkit-transform:perspective(600px) rotateX(90deg);transform:perspective(600px) rotateX(90deg)}}@keyframes rotateX{from{-webkit-transform:perspective(600px) rotateX(0);transform:perspective(600px) rotateX(0)}to{-webkit-transform:perspective(600px) rotateX(90deg);transform:perspective(600px) rotateX(90deg)}}@-webkit-keyframes rotateXIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@keyframes rotateXIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}}@-webkit-keyframes rotateXOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@keyframes rotateXOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateX(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateX(75deg);opacity:0}}@-webkit-keyframes rotateY{from{-webkit-transform:perspective(600px) rotateY(0);transform:perspective(600px) rotateY(0)}to{-webkit-transform:perspective(600px) rotateY(90deg);transform:perspective(600px) rotateY(90deg)}}@keyframes rotateY{from{-webkit-transform:perspective(600px) rotateY(0);transform:perspective(600px) rotateY(0)}to{-webkit-transform:perspective(600px) rotateY(90deg);transform:perspective(600px) rotateY(90deg)}}@-webkit-keyframes rotateYIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@keyframes rotateYIn{from{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}5%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}}@-webkit-keyframes rotateYOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@keyframes rotateYOut{95%{-webkit-transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-1500px) rotateY(75deg)}to{-webkit-transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);transform:perspective(600px) translate3d(0,-60px,-2000px) rotateY(75deg);opacity:0}}@-webkit-keyframes rotateInLeft{from{opacity:0;-webkit-transform:translateX(-100%) rotate(0);transform:translateX(-100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@keyframes rotateInLeft{from{opacity:0;-webkit-transform:translateX(-100%) rotate(0);transform:translateX(-100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@-webkit-keyframes rotateInRight{from{opacity:0;-webkit-transform:translateX(100%) rotate(0);transform:translateX(100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}}@keyframes rotateInRight{from{opacity:0;-webkit-transform:translateX(100%) rotate(0);transform:translateX(100%) rotate(0)}to{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}}@-webkit-keyframes rotateInTop{from{opacity:0;-webkit-transform:translateY(-400%) rotate(0);transform:translateY(-400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@keyframes rotateInTop{from{opacity:0;-webkit-transform:translateY(-400%) rotate(0);transform:translateY(-400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@-webkit-keyframes rotateInBottom{from{opacity:0;-webkit-transform:translateY(400%) rotate(0);transform:translateY(400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@keyframes rotateInBottom{from{opacity:0;-webkit-transform:translateY(400%) rotate(0);transform:translateY(400%) rotate(0)}to{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}}@-webkit-keyframes rotateOutLeft{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateX(-800px) rotate(0);transform:translateX(-800px) rotate(0);opacity:0}}@keyframes rotateOutLeft{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateX(-800px) rotate(0);transform:translateX(-800px) rotate(0);opacity:0}}@-webkit-keyframes rotateOutRight{from{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}to{-webkit-transform:translateX(800px) rotate(0);transform:translateX(800px) rotate(0);opacity:0}}@keyframes rotateOutRight{from{-webkit-transform:translateX(0) rotate(-360deg);transform:translateX(0) rotate(-360deg)}to{-webkit-transform:translateX(800px) rotate(0);transform:translateX(800px) rotate(0);opacity:0}}@-webkit-keyframes rotateOutTop{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(-800px) rotate(0);transform:translateY(-800px) rotate(0);opacity:0}}@keyframes rotateOutTop{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(-800px) rotate(0);transform:translateY(-800px) rotate(0);opacity:0}}@-webkit-keyframes rotateOutBottom{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(800px) rotate(0);transform:translateY(800px) rotate(0);opacity:0}}@keyframes rotateOutBottom{from{-webkit-transform:translateX(0) rotate(360deg);transform:translateX(0) rotate(360deg)}to{-webkit-transform:translateY(800px) rotate(0);transform:translateY(800px) rotate(0);opacity:0}}@-webkit-keyframes spinToLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinToLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes spinToRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinToRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinToTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinToTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}from{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinToBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinToBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}from{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes spinFromLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinFromLeft{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes spinFromRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinFromRight{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinFromTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@keyframes spinFromTop{from,to{-webkit-transform-origin:left bottom;transform-origin:left bottom}to{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}}@-webkit-keyframes spinFromBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes spinFromBottom{from,to{-webkit-transform-origin:right bottom;transform-origin:right bottom}to{-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@-webkit-keyframes blurIn{from{-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurIn{from{-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInLeft{from{-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInLeft{from{-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInRight{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInRight{from{-webkit-transform:translateX(-100%);transform:translateX(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInTop{from{-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInTop{from{-webkit-transform:translateY(100%);transform:translateY(100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurInBottom{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@keyframes blurInBottom{from{-webkit-transform:translateY(-100%);transform:translateY(-100%);-webkit-filter:blur(20px);filter:blur(20px);opacity:0}}@-webkit-keyframes blurOut{85%,to{-webkit-filter:blur(20px);filter:blur(20px)}to{opacity:0}}@keyframes blurOut{85%,to{-webkit-filter:blur(20px);filter:blur(20px)}to{opacity:0}}@-webkit-keyframes blurOutLeft{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:0}}@keyframes blurOutLeft{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:0}}@-webkit-keyframes blurOutRight{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:0}}@keyframes blurOutRight{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:0}}@-webkit-keyframes blurOutTop{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:0}}@keyframes blurOutTop{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(100%);transform:translateY(100%)}to{opacity:0}}@-webkit-keyframes blurOutBottom{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:0}}@keyframes blurOutBottom{85%,to{-webkit-filter:blur(20px);filter:blur(20px);-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{opacity:0}}@-webkit-keyframes bounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.6,1);transform:translate3d(0,-80px,0) scale3d(1,1.6,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounceFromTop{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-80px,0) scale3d(1,1.6,1);transform:translate3d(0,-80px,0) scale3d(1,1.6,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@-webkit-keyframes bounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@keyframes bounceFromDown{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,80px,0) scale3d(1,1.2,1);transform:translate3d(0,80px,0) scale3d(1,1.2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}90%{-webkit-transform:translate3d(0,4px,0);transform:translate3d(0,4px,0)}}@-webkit-keyframes bounceX{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.8,1,1);transform:scale3d(1.8,1,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.5,1,1);transform:scale3d(1.5,1,1)}90%{-webkit-transform:scale3d(1.1,1,1);transform:scale3d(1.1,1,1)}}@keyframes bounceX{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.8,1,1);transform:scale3d(1.8,1,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1.5,1,1);transform:scale3d(1.5,1,1)}90%{-webkit-transform:scale3d(1.1,1,1);transform:scale3d(1.1,1,1)}}@-webkit-keyframes bounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@keyframes bounceY{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale3d(1,1.5,1);transform:scale3d(1,1.5,1)}90%{-webkit-transform:scale3d(1,1.1,1);transform:scale3d(1,1.1,1)}}@-webkit-keyframes bounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.5);transform:scale(1.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.3);transform:scale(1.3)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@keyframes bounceZoomIn{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.5);transform:scale(1.5)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(1.3);transform:scale(1.3)}90%{-webkit-transform:scale(1.1);transform:scale(1.1)}}@-webkit-keyframes bounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.3);transform:scale(.3)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@keyframes bounceZoomOut{0%,100%,25%,55%,85%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-transform:scale(1);transform:scale(1)}41%,44%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.3);transform:scale(.3)}70%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;-webkit-transform:scale(.5);transform:scale(.5)}90%{-webkit-transform:scale(.9);transform:scale(.9)}}@-webkit-keyframes bounceInTop{0%{-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}58%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}73%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}88%{-webkit-transform:translate3d(0,7px,0);transform:translate3d(0,7px,0)}}@keyframes bounceInTop{0%{-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}58%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}73%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}88%{-webkit-transform:translate3d(0,7px,0);transform:translate3d(0,7px,0)}}@-webkit-keyframes bounceInBottom{0%{-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}58%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}73%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}88%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}}@keyframes bounceInBottom{0%{-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}58%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}73%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}88%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(.98);transform:translate3d(-10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(.995);transform:translate3d(5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(.98);transform:translate3d(10px,0,0) scaleX(.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(.995);transform:translate3d(-5px,0,0) scaleX(.995)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes bounceOutTop{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}33%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}48%{-webkit-transform:translate3d(0,8px,0);transform:translate3d(0,8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}}@keyframes bounceOutTop{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,27px,0);transform:translate3d(0,27px,0)}33%{-webkit-transform:translate3d(0,-12px,0);transform:translate3d(0,-12px,0)}48%{-webkit-transform:translate3d(0,8px,0);transform:translate3d(0,8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-300%,0);transform:translate3d(0,-300%,0)}}@-webkit-keyframes bounceOutBottom{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}33%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}48%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}}@keyframes bounceOutBottom{18%,33%,48%{opacity:1}18%{-webkit-transform:translate3d(0,-27px,0);transform:translate3d(0,-27px,0)}33%{-webkit-transform:translate3d(0,12px,0);transform:translate3d(0,12px,0)}48%{-webkit-transform:translate3d(0,-8px,0);transform:translate3d(0,-8px,0)}100%{opacity:0;-webkit-transform:translate3d(0,300%,0);transform:translate3d(0,300%,0)}}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(.9);transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(.9);transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@-webkit-keyframes perspectiveToTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@keyframes perspectiveToTop{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);transform:perspective(500px) rotateX(90deg) translateY(-50px) translateZ(50px);opacity:0}}@-webkit-keyframes perspectiveToBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@keyframes perspectiveToBottom{50%{opacity:1}to{-webkit-transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);transform:perspective(500px) rotateX(90deg) translateY(50px) translateZ(-50px);opacity:0}}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@-webkit-keyframes zoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes zoomInTop{from{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes zoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes zoomInBottom{from{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0)}}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0)}}@-webkit-keyframes zoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@keyframes zoomOutTop{to{-webkit-transform:scale(10) translateY(-50%);transform:scale(10) translateY(-50%);opacity:0}}@-webkit-keyframes zoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@keyframes zoomOutBottom{to{-webkit-transform:scale(10) translateY(50%);transform:scale(10) translateY(50%);opacity:0}}@-webkit-keyframes ekitRevealInTop{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes ekitRevealInTop{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes ekitRevealInBottom{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes ekitRevealInBottom{form{-webkit-transform:scaleY(1);transform:scaleY(1)}to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@-webkit-keyframes ekitRevealInLeft{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes ekitRevealInLeft{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}@-webkit-keyframes ekitRevealInRight{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}@keyframes ekitRevealInRight{form{-webkit-transform:scaleX(1);transform:scaleX(1)}to{-webkit-transform:scaleX(0);transform:scaleX(0)}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;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";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.ekit-wid-con .product-filter-area{margin-bottom:30px}.ekit-wid-con .product-filter-wraper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.ekit-wid-con .product-filter-wraper .woocommerce-ordering{margin-right:50px;margin-bottom:0}.ekit-wid-con .woocommerce-ordering{position:relative;z-index:10}.ekit-wid-con .woocommerce-ordering .shop-filter-title{color:#777;font-size:14px;position:relative;top:9px;padding-right:50px}.ekit-wid-con .tab-filter .nav-tabs .nav-item .nav-link{border:0;color:#777;font-size:18px;padding:10px}.ekit-wid-con .tab-filter .nav-tabs .nav-item .nav-link.active{color:#2575fc;background-color:transparent}.ekit-wid-con iframe{border:none}.ekit-wid-con a{text-decoration:none}.ekit-wid-con a,.ekit-wid-con b,.ekit-wid-con div,.ekit-wid-con li,.ekit-wid-con ul{-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;outline:0}.ekit-wid-con a:active,.ekit-wid-con a:focus,.ekit-wid-con input,.ekit-wid-con input:active,.ekit-wid-con input:focus,.ekit-wid-con input:hover,.ekit-wid-con textarea,.ekit-wid-con textarea:active,.ekit-wid-con textarea:focus,.ekit-wid-con textarea:hover{-moz-outline:none;outline:0}.ekit-wid-con a:active,.ekit-wid-con a:focus,.ekit-wid-con a:hover,.ekit-wid-con a:visited{outline:0;text-decoration:none}.ekit-wid-con embed,.ekit-wid-con img:not([draggable]),.ekit-wid-con object,.ekit-wid-con video{max-width:100%;height:auto}.ekit-wid-con [type=button]:focus:not(:focus-visible),.ekit-wid-con [type=submit]:focus:not(:focus-visible),.ekit-wid-con button:focus:not(:focus-visible){outline:0}.ekit-wid-con a:focus-visible,.ekit-wid-con button:focus-visible,.ekit-wid-con input:focus-visible,.ekit-wid-con textarea:focus-visible{outline:-webkit-focus-ring-color auto 1px}.ekit-wid-con img{border:none;max-width:100%}.ekit-wid-con li,.ekit-wid-con ul{margin:0;padding:0}.ekit-wid-con .elementor-text-editor ol,.ekit-wid-con .elementor-text-editor ul{padding-left:18px}.ekit-wid-con h4,.ekit-wid-con p{margin-bottom:10px}.ekit-wid-con svg{width:1em;height:1em}.ekit-wid-con .clear-both::after,.ekit-wid-con .clear-both::before{display:table;content:"";clear:both}.ekit-wid-con .text-left{text-align:left!important}.ekit-wid-con .text-right{text-align:right!important}.ekit-wid-con .text-center{text-align:center!important}.ekit-wid-con .ekit-flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ekit-wid-con .ekit-flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ekit-wid-con .ekit-flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.ekit-wid-con .ekit-flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.ekit-wid-con .tab-content>.tab-pane{font-family:inherit}.ekit-wid-con .elementskit-border-divider{left:13px}.ekit-wid-con .elementskit-border-divider.elementskit-style-long{left:inherit}.ekit-wid-con .elementskit-border-divider::before{left:-26px}.ekit-wid-con .elementskit-navbar-nav-default.elementskit-menu-container{z-index:1000}.ekit-wid-con .elementskit-navbar-nav-default .elementskit-navbar-nav>li>a:hover{background-color:transparent}.ekit-wid-con .elementor-icon-list-item a>img{width:100px;margin-right:15px}.ekit-wid-con .elementor-icon-list-item .meta-lists{line-height:1}.ekit-wid-con .elementor-icon-list-item .meta-lists svg{max-width:12px;height:auto;vertical-align:middle}.ekit-wid-con .elementor-icon-list-item .meta-lists>span{color:#7f8595;font-size:12px;display:inline-block;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .elementor-icon-list-item .elementor-icon-list-text{display:block;margin-bottom:0}.ekit-wid-con .dialog-type-lightbox .dialog-widget-content{width:100%}.ekit-wid-con .nf-form-content .listselect-wrap .nf-field-element div,.ekit-wid-con .nf-form-content input.ninja-forms-field,.ekit-wid-con .nf-form-content select.ninja-forms-field:not([multiple]){height:100%}.ekit-wid-con .nf-form-content .list-select-wrap>div div::after{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:normal}.ekit-wid-con .nf-error.field-wrap .nf-field-element::after,.ekit-wid-con .nf-pass.field-wrap .nf-field-element::after{top:0;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:normal}.ekit-wid-con .nf-form-content button,.ekit-wid-con .nf-form-content input[type=button],.ekit-wid-con .nf-form-content input[type=submit]{cursor:pointer}.ekit-wid-con .nf-response-msg>p{line-height:normal}.ekit-wid-con textarea.ninja-forms-field{display:block}.ekit-wid-con .nf-form-content .list-select-wrap>div div{border:none}.ekit-wid-con .nf-form-content .list-select-wrap>div select{border:1px solid #c4c4c4}.ekit-wid-con .column-count-1{-webkit-column-count:1;-moz-column-count:1;column-count:1}.ekit-wid-con .column-count-2{-webkit-column-count:2;-moz-column-count:2;column-count:2}.ekit-wid-con .column-count-3{-webkit-column-count:3;-moz-column-count:3;column-count:3}.ekit-wid-con .column-count-4{-webkit-column-count:4;-moz-column-count:4;column-count:4}.ekit-wid-con .column-count-5{-webkit-column-count:5;-moz-column-count:5;column-count:5}.ekit-wid-con .column-count-6{-webkit-column-count:6;-moz-column-count:6;column-count:6}.ekit-wid-con .ekit-img-overlay{position:relative;z-index:0}.ekit-wid-con .ekit-img-overlay::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:1}.ekit-wid-con .ekit-wrapper-link{position:absolute;width:100%;height:100%;opacity:0;top:0;left:0;z-index:10}.ekit-wid-con .media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media (min-width:1025px){.ekit-wid-con .default_menu_position .elementor-column,.ekit-wid-con .default_menu_position .elementor-widget,.ekit-wid-con .default_menu_position .elementor-widget-wrap,.ekit-wid-con .default_menu_position .elementskit-navbar-nav-default.elementskit-menu-container{position:static}.ekit-wid-con .default_menu_position .elementskit-menu-po-right .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-custom_width .elementskit-megamenu-panel,.ekit-wid-con .default_menu_position .elementskit-menu-po-right .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-default_width .elementskit-megamenu-panel,.ekit-wid-con .elementskit-navbar-nav-default .elementskit-menu-po-right .relative_position.elementskit-megamenu-has .elementskit-megamenu-panel{right:0;left:auto}.ekit-wid-con .elementskit-navbar-nav-default .elementskit-megamenu-has .elementskit-megamenu-panel{-webkit-transition:transform .4s ease;-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.ekit-wid-con .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-custom_width .elementskit-megamenu-panel,.ekit-wid-con .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-default_width .elementskit-megamenu-panel{-webkit-transform:translateY(-10px) translateX(-50%);transform:translateY(-10px) translateX(-50%);left:50%}.ekit-wid-con .default_menu_position .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-custom_width:hover>.elementskit-megamenu-panel,.ekit-wid-con .default_menu_position .elementskit-menu-po-center .elementskit-megamenu-has.top_position.elementskit-dropdown-menu-default_width:hover>.elementskit-megamenu-panel{-webkit-transform:translateY(0) translateX(-50%);transform:translateY(0) translateX(-50%);left:50%}.ekit-wid-con body.is-vertical-menu-active .ekit-wid-con .elementskit-navbar-nav-default.elementskit-menu-container{z-index:9}.ekit-wid-con body.is-vertical-menu-active .vertical-menu-active .xs-vertical-menu-backdrop{z-index:150}.ekit-wid-con body.is-vertical-menu-active .ekit-vertical-menu-tigger{z-index:160}}@media (max-width:1024px){.ekit-wid-con .ekit-vertical-navbar-nav .elementskit-submenu-indicator{padding:3px 10px;border:1px solid;border-radius:30px}}.ekit-wid-con .xs-overlay{position:absolute;top:0;left:0;height:100%;width:100%;opacity:.5;z-index:0}.ekit-wid-con .form-control:focus{-webkit-box-shadow:none;box-shadow:none}.ekit-wid-con .swiper-container{width:inherit;height:inherit}.ekit-wid-con .swiper-container.ekit-main-swiper,.ekit-wid-con .swiper.ekit-main-swiper{position:static}.ekit-wid-con .swiper .swiper-navigation-button,.ekit-wid-con .swiper-container .swiper-navigation-button{background:rgba(0,0,0,0);width:auto;height:auto}.ekit-wid-con .swiper .swiper-navigation-button::after,.ekit-wid-con .swiper-container .swiper-navigation-button::after{display:none}.ekit-wid-con .tab-pane.animated{-webkit-animation-duration:1.5s;animation-duration:1.5s}.ekit-wid-con .mfp-iframe-scaler iframe{-webkit-box-shadow:none;box-shadow:none;background:0 0}.ekit-wid-con img{-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;-ms-user-select:none;user-select:none}.ekit-wid-con .image-switcher .content-image{position:relative}.ekit-wid-con .image-switcher .content-image .hover-image{position:absolute;top:0;left:0;opacity:0;visibility:hidden;-webkit-transform:scale(1.2);transform:scale(1.2)}.ekit-wid-con .image-switcher:hover .content-image .main-image{opacity:0;visibility:hidden;-webkit-transform:scale(1.2);transform:scale(1.2)}.ekit-wid-con .image-switcher:hover .content-image .hover-image{-webkit-transform:scale(1);transform:scale(1);opacity:1;visibility:visible}.ekit-wid-con .fill-icon{display:inline-block;background-color:#2575fc;color:#fff;font-size:40px;text-align:center;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .fill-icon.round{border-radius:50%}.ekit-wid-con .fill-icon.style-light{background-color:#f5f5f5;color:#000}.ekit-wid-con button{cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con .form-control{-webkit-transition:all .4s ease;transition:all .4s ease}.ekit-wid-con input{-webkit-box-sizing:border-box;box-sizing:border-box}.ekit-wid-con .widgetarea_warper_edit{display:none}.ekit-wid-con .swiper-pagination-bullet{opacity:inherit;background-color:inherit}.ekit-wid-con [data-ajax-post-id]:not(.is--loaded):before{content:"";display:block;width:30px;height:30px;margin:20px auto;border-style:solid;border-width:3px;border-color:#acacac #ddd #ddd;border-radius:50%;-webkit-animation:eicon-spin 1.5s infinite linear;animation:eicon-spin 1.5s infinite linear}.ekit-wid-con .select{cursor:pointer;display:block;position:relative;font-size:16px;color:#7b7b7b;width:220px;height:44px;float:right}.ekit-wid-con .ekit-row{margin-left:-15px;margin-right:-15px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.ekit-wid-con .ekit-col-1{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ekit-wid-con .ekit-col-2{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ekit-wid-con .ekit-col-3{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ekit-wid-con .ekit-col-4{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ekit-wid-con .ekit-col-5{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ekit-wid-con .ekit-col-6{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ekit-wid-con .ekit-col-7{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ekit-wid-con .ekit-col-8{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ekit-wid-con .ekit-col-9{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ekit-wid-con .ekit-col-10{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ekit-wid-con .ekit-col-11{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ekit-wid-con .ekit-col-12{padding-left:15px;padding-right:15px;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (max-width:1024px){.ekit-wid-con .ekit-col-1{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-2{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-3{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-4{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-5{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-6{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-7{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-8{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-9{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-10{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-11{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-12{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}@media (max-width:767px){.ekit-wid-con .ekit-col-1{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-2{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-3{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-4{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-5{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-6{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-7{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-8{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-9{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-10{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-11{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.ekit-wid-con .ekit-col-12{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}@media (max-width:1024px){.ekit-wid-con .ekit-col-tablet-1{-webkit-column-count:12;-moz-column-count:12;column-count:12}.ekit-wid-con .ekit-col-tablet-2{-webkit-column-count:6;-moz-column-count:6;column-count:6}.ekit-wid-con .ekit-col-tablet-3{-webkit-column-count:4;-moz-column-count:4;column-count:4}.ekit-wid-con .ekit-col-tablet-4{-webkit-column-count:3;-moz-column-count:3;column-count:3}.ekit-wid-con .ekit-col-tablet-5{-webkit-column-count:2.4;-moz-column-count:2.4;column-count:2.4}.ekit-wid-con .ekit-col-tablet-6{-webkit-column-count:2;-moz-column-count:2;column-count:2}.ekit-wid-con .ekit-col-tablet-7{-webkit-column-count:1.7142857143;-moz-column-count:1.7142857143;column-count:1.7142857143}.ekit-wid-con .ekit-col-tablet-8{-webkit-column-count:1.5;-moz-column-count:1.5;column-count:1.5}.ekit-wid-con .ekit-col-tablet-9{-webkit-column-count:1.3333333333;-moz-column-count:1.3333333333;column-count:1.3333333333}.ekit-wid-con .ekit-col-tablet-10{-webkit-column-count:1.2;-moz-column-count:1.2;column-count:1.2}.ekit-wid-con .ekit-col-tablet-11{-webkit-column-count:1.0909090909;-moz-column-count:1.0909090909;column-count:1.0909090909}.ekit-wid-con .ekit-col-tablet-12{-webkit-column-count:1;-moz-column-count:1;column-count:1}}@media (max-width:767px){.ekit-wid-con .ekit-col-mobile-1{-webkit-column-count:12;-moz-column-count:12;column-count:12}.ekit-wid-con .ekit-col-mobile-2{-webkit-column-count:6;-moz-column-count:6;column-count:6}.ekit-wid-con .ekit-col-mobile-3{-webkit-column-count:4;-moz-column-count:4;column-count:4}.ekit-wid-con .ekit-col-mobile-4{-webkit-column-count:3;-moz-column-count:3;column-count:3}.ekit-wid-con .ekit-col-mobile-5{-webkit-column-count:2.4;-moz-column-count:2.4;column-count:2.4}.ekit-wid-con .ekit-col-mobile-6{-webkit-column-count:2;-moz-column-count:2;column-count:2}.ekit-wid-con .ekit-col-mobile-7{-webkit-column-count:1.7142857143;-moz-column-count:1.7142857143;column-count:1.7142857143}.ekit-wid-con .ekit-col-mobile-8{-webkit-column-count:1.5;-moz-column-count:1.5;column-count:1.5}.ekit-wid-con .ekit-col-mobile-9{-webkit-column-count:1.3333333333;-moz-column-count:1.3333333333;column-count:1.3333333333}.ekit-wid-con .ekit-col-mobile-10{-webkit-column-count:1.2;-moz-column-count:1.2;column-count:1.2}.ekit-wid-con .ekit-col-mobile-11{-webkit-column-count:1.0909090909;-moz-column-count:1.0909090909;column-count:1.0909090909}.ekit-wid-con .ekit-col-mobile-12{-webkit-column-count:1;-moz-column-count:1;column-count:1}}@media (max-width:1024px){.ekit-wid-con .ekit-col-tablet-1{max-width:8.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%}.ekit-wid-con .ekit-col-tablet-2{max-width:16.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%}.ekit-wid-con .ekit-col-tablet-3{max-width:25%;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}.ekit-wid-con .ekit-col-tablet-4{max-width:33.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%}.ekit-wid-con .ekit-col-tablet-5{max-width:41.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%}.ekit-wid-con .ekit-col-tablet-6{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-tablet-7{max-width:58.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%}.ekit-wid-con .ekit-col-tablet-8{max-width:66.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%}.ekit-wid-con .ekit-col-tablet-9{max-width:75%;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%}.ekit-wid-con .ekit-col-tablet-10{max-width:83.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%}.ekit-wid-con .ekit-col-tablet-11{max-width:91.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%}.ekit-wid-con .ekit-col-tablet-12{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}@media (max-width:767px){.ekit-wid-con .ekit-col-mobile-1{max-width:8.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%}.ekit-wid-con .ekit-col-mobile-2{max-width:16.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%}.ekit-wid-con .ekit-col-mobile-3{max-width:25%;-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}.ekit-wid-con .ekit-col-mobile-4{max-width:33.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%}.ekit-wid-con .ekit-col-mobile-5{max-width:41.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%}.ekit-wid-con .ekit-col-mobile-6{max-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.ekit-wid-con .ekit-col-mobile-7{max-width:58.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%}.ekit-wid-con .ekit-col-mobile-8{max-width:66.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%}.ekit-wid-con .ekit-col-mobile-9{max-width:75%;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%}.ekit-wid-con .ekit-col-mobile-10{max-width:83.3333333333%;-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%}.ekit-wid-con .ekit-col-mobile-11{max-width:91.6666666667%;-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%}.ekit-wid-con .ekit-col-mobile-12{max-width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.ekit-wid-con .fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.ekit-wid-con .fade.in{opacity:1}.ekit-wid-con .collapse{display:none}.ekit-wid-con .collapse.in{display:block}.ekit-wid-con .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.ekit-wid-con .nav-tabs{border-bottom:1px solid #ddd}.ekit-wid-con .nav-tabs>li{float:left;margin-bottom:-1px}.ekit-wid-con .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.ekit-wid-con .nav-tabs>li.active>a,.ekit-wid-con .nav-tabs>li.active>a:focus,.ekit-wid-con .nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.ekit-wid-con .tab-content>.tab-pane{display:none}.ekit-wid-con .tab-content>.active{display:block}.ekit-wid-con .clearfix::after,.ekit-wid-con .clearfix::before,.ekit-wid-con .nav::after,.ekit-wid-con .nav::before,.ekit-wid-con .row::after,.ekit-wid-con .row::before{display:table;content:" "}.ekit-wid-con .clearfix::after,.ekit-wid-con .nav::after,.ekit-wid-con .row::after{clear:both}.ekit-wid-con .hide{display:none!important}.ekit-wid-con .show{display:block!important}#wp-admin-bar-elementor_edit_page-default:empty{display:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#eee;clip:auto!important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000}.ekit-template-content-header .elementor-section,.ekit-template-content-header .panel-row-style{-webkit-transform:none}
.nav-alignment-dynamic,.nav-alignment-flex-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementskit-menu-container{z-index:10000}.elementskit-navbar-nav>li>a .ekit-menu-icon{padding-right:5px}.ekit-menu-badge{position:absolute;top:5px;left:50%;background-color:#bbb;color:#fff;font-size:16px;padding:4px 8px;border-radius:3px;font-size:8px;line-height:1;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap;z-index:10}.ekit-menu-badge>.ekit-menu-badge-arrow{position:absolute;top:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-left:solid transparent;border-right:solid transparent;border-top:solid #bbb;border-bottom:solid transparent;border-width:6px}.elementskit-dropdown li{position:relative}.elementskit-dropdown .ekit-menu-badge{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.elementskit-navbar-nav-default .elementskit-navbar-nav{padding-left:0;margin-bottom:0;list-style:none;margin-left:0}.elementskit-navbar-nav-default .elementskit-navbar-nav>li{position:relative}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration:none}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a:hover{text-decoration:none}.elementskit-navbar-nav-default .elementskit-navbar-nav>li.elementskit-megamenu-has{position:static}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{-webkit-transition:all .4s ease;transition:all .4s ease;text-transform:none;font-weight:500;letter-spacing:normal}.elementskit-navbar-nav-default .elementskit-dropdown{border-top:1px solid #dadada;border-left:1px solid #dadada;border-bottom:1px solid #dadada;border-right:1px solid #dadada;background-color:#f4f4f4;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0;padding-left:0;list-style:none;opacity:0;visibility:hidden;-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown{left:100%;top:0}.elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown.open-fromleft{left:auto;right:100%}.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-top:15px;padding-left:10px;padding-bottom:15px;padding-right:10px;color:#000;font-weight:400;font-size:14px;-webkit-transition:all .3s;transition:all .3s}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-dropdown li:hover>a,.elementskit-navbar-nav-default .elementskit-navbar-nav>.elementskit-dropdown li>a:hover{color:#1e73be;background-color:#fff}.elementskit-navbar-nav-default .elementskit-submenu-panel>li:hover>a,.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a:hover{color:#0d3a4f;background-color:rgba(255,255,255,.5)}.elementskit-navbar-nav-default .elementskit-megamenu-panel{width:100%}.elementskit-navbar-nav-default .elementskit-overlay{display:none}.elementskit-navbar-nav-default .elementskit-nav-identity-panel{display:none}.elementskit-navbar-nav-default button.elementskit-menu-close{border:1px solid rgba(0,0,0,.5);color:rgba(51,51,51,.5);float:right;margin-top:20px;margin-left:20px;margin-right:20px;margin-bottom:20px}.elementskit-navbar-nav-default .elementskit-dropdown-has>a{position:relative}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{font-weight:900;font-style:normal;margin-left:6px;display:block;float:right;cursor:pointer;position:relative;font-size:11px}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.icon-none{display:none}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.ekit-spinner{width:1em;height:1em;border:2px solid color-mix(in srgb,currentColor 25%,transparent);border-bottom-color:currentColor;border-radius:50%;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:ekit_ajax_spinner_rotation 1s linear infinite;animation:ekit_ajax_spinner_rotation 1s linear infinite}.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.ekit-spinner::before{content:"";display:none}@media (max-width:1024px){.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator.ekit-spinner{padding:4px 4px;margin-right:10px}}@media (max-width:1024px){.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{padding:4px 15px}}@media (max-width:1024px){.elementskit-navbar-nav-default .elementskit-dropdown-has>a svg.elementskit-submenu-indicator{width:auto;height:auto;max-width:42px;max-height:42px}}.elementskit-navbar-nav-default.elementskit-menu-container{background:rgba(255,255,255,0);background:-webkit-gradient(linear,left bottom,left top,from(rgba(255,255,255,0)),to(rgba(255,255,255,0)));background:linear-gradient(0deg,rgba(255,255,255,0) 0,rgba(255,255,255,0) 100%);border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0;position:relative;height:100px;z-index:90000}.elementskit-navbar-nav-default .elementskit-dropdown{min-width:250px;margin-left:0}.elementskit-navbar-nav-default .elementskit-navbar-nav{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{font-size:15px;color:#000;padding-left:15px;padding-right:15px}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-menu-po-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-menu-po-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.elementskit-navbar-nav-default .elementskit-navbar-nav.elementskit-menu-po-justified{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (min-width:1025px){.elementskit-navbar-nav-default .elementskit-dropdown{-webkit-box-shadow:0 10px 30px 0 rgba(45,45,45,.2);box-shadow:0 10px 30px 0 rgba(45,45,45,.2);position:absolute;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;max-height:none;z-index:999}.elementskit-navbar-nav-default .elementskit-megamenu-panel{-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;opacity:0;visibility:hidden;-webkit-transition:all .4s ease;transition:all .4s ease;margin-left:0;position:absolute;left:0;top:100%;display:block;z-index:999}}@media (min-width:1025px){.elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-megamenu-has:hover>.elementskit-megamenu-panel{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}.elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-megamenu-has .elementskit-dropdown{display:none}.elementskit-navbar-nav-default.ekit-nav-dropdown-click .ekit-dropdown-open-onclick{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}@media (min-width:767px){.elementskit-navbar-nav-default.ekit-nav-dropdown-click .elementskit-megamenu-has .elementskit-submenu-panel{display:none}}@media (max-width:1024px){.ekit_menu_responsive_tablet>.elementskit-navbar-nav-default{background-color:#f7f7f7}.elementskit-navbar-nav-default.elementskit-menu-offcanvas-elements{width:100%;position:fixed;top:0;left:-100vw;height:100%;-webkit-box-shadow:0 10px 30px 0 rgba(255,165,0,0);box-shadow:0 10px 30px 0 rgba(255,165,0,0);overflow-y:auto;overflow-x:hidden;padding-top:0;padding-left:0;padding-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-transition:left .6s cubic-bezier(.6,.1,.68,.53);transition:left .6s cubic-bezier(.6,.1,.68,.53)}.elementskit-navbar-nav-default .no-scroller{overflow:hidden}.elementskit-navbar-nav-default .elementskit-nav-identity-panel{display:block;position:relative;z-index:5;width:100%}.elementskit-navbar-nav-default .elementskit-nav-identity-panel .elementskit-site-title{float:left}.elementskit-navbar-nav-default .elementskit-nav-identity-panel button.elementskit-menu-close{float:right}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a{color:#000;font-size:12px;-webkit-transition:all .4s ease;transition:all .4s ease;padding-top:5px;padding-left:10px;padding-right:5px;padding-bottom:5px}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>a:hover{color:#0d3a4f}.elementskit-navbar-nav-default .elementskit-navbar-nav>li:hover>a{color:#0d3a4f}.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a{color:#000;font-size:12px;padding-top:7px;padding-left:7px;padding-right:7px;padding-bottom:7px}.elementskit-navbar-nav-default .elementskit-dropdown{display:block;border:0;margin-left:0}.elementskit-navbar-nav-default .elementskit-megamenu-panel{display:none}.elementskit-navbar-nav-default .elementskit-navbar-nav>.elementskit-dropdown-has>.elementskit-dropdown li a{padding-left:15px}}@media (max-width:767px){.ekit_menu_responsive_mobile>.elementskit-navbar-nav-default{background-color:#f7f7f7}}@-webkit-keyframes ekit_ajax_spinner_rotation{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ekit_ajax_spinner_rotation{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@media (min-width:1025px){.ekit-nav-dropdown-hover .elementskit-dropdown-has .elementskit-dropdown{-webkit-box-shadow:0 10px 30px 0 rgba(45,45,45,.2);box-shadow:0 10px 30px 0 rgba(45,45,45,.2);position:absolute;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;max-height:none;z-index:999}.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-dropdown{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}@media only screen and (max-width:1023px) and (min-width:768px){.ekit_menu_responsive_mobile .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-dropdown,.ekit_menu_responsive_mobile .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-megamenu-panel,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default.ekit-nav-dropdown-hover .elementskit-dropdown-has:hover>.elementskit-megamenu-panel{opacity:1;visibility:visible;-webkit-transform:translateY(0);transform:translateY(0);pointer-events:auto}}@media only screen and (max-width:1024px) and (min-width:766px){.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-dropdown{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown~.elementskit-megamenu-panel{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown.elementskit-dropdown-open{display:block;max-height:2500px;opacity:1;visibility:visible;-webkit-transition:max-height 5s ease-out;transition:max-height 5s ease-out}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-navbar-nav{overflow-y:auto}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown{left:0}}button.elementskit-menu-close,button.elementskit-menu-hamburger{display:none}button.elementskit-menu-hamburger{color:#000}@media (max-width:1024px){.elementskit-menu-overlay{display:block;position:fixed;z-index:14;top:0;left:-100%;height:100%;width:100%;background-color:rgba(51,51,51,.5);-webkit-transition:all .4s ease;transition:all .4s ease;opacity:1;visibility:visible;-webkit-transition:all .6s cubic-bezier(.6,.1,.68,.53) .4s;transition:all .6s cubic-bezier(.6,.1,.68,.53) .4s}.elementor-element-edit-mode .elementskit-menu-overlay{left:100%}button.elementskit-menu-hamburger{border:1px solid rgba(0,0,0,.2);float:right}button.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{background-color:rgba(0,0,0,.5)}button.elementskit-menu-close,button.elementskit-menu-hamburger{padding:8px;background-color:transparent;border-radius:.25rem;position:relative;z-index:10;cursor:pointer;width:45px;-webkit-transition:all .4s ease-in;transition:all .4s ease-in}button.elementskit-menu-close .elementskit-menu-hamburger-icon,button.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{height:1px;width:100%;display:block;margin-bottom:4px}button.elementskit-menu-close .elementskit-menu-hamburger-icon:last-child,button.elementskit-menu-hamburger .elementskit-menu-hamburger-icon:last-child{margin-bottom:0}.elementskit-navbar-nav .ekit-menu-badge{font-size:7px}}.elementskit-navbar-nav-default .elementskit-navbar-nav>li>.elementskit-dropdown>li>a .ekit-menu-badge .ekit-menu-badge-arrow{display:none}.dropdown-item,.ekit-menu-nav-link{position:relative}.dropdown-item span.ekit-spinner,.dropdown-item>i,.dropdown-item>svg,.ekit-menu-nav-link span.ekit-spinner,.ekit-menu-nav-link>i,.ekit-menu-nav-link>svg{margin-right:6px}.dropdown-item .icon-none,.ekit-menu-nav-link .icon-none{display:none!important}@-webkit-keyframes xs-zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes xs-zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.xs-zoomIn{-webkit-animation-name:xs-zoomIn;animation-name:xs-zoomIn}.elementskit-nav-logo{display:inline-block}@media (max-width:1024px){.elementor-widget-ekit-nav-menu{-webkit-animation:none!important;animation:none!important}.ekit-wid-con:not(.ekit_menu_responsive_mobile) .elementskit-navbar-nav{display:block}}@media (max-width:1024px){button.elementskit-menu-close,button.elementskit-menu-hamburger{display:block}.elementskit-menu-container{max-width:350px}.elementskit-menu-overlay.active{left:0;-webkit-transition:all .6s cubic-bezier(.22,.61,.24,1) 0s;transition:all .6s cubic-bezier(.22,.61,.24,1) 0s}.elementskit-menu-offcanvas-elements{height:100%!important;padding-bottom:10px}.elementskit-menu-offcanvas-elements.active{left:0}.elementskit-dropdown{position:relative;max-height:0;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:max-height 2s cubic-bezier(0,1,0,1);transition:max-height 2s cubic-bezier(0,1,0,1)}.ekit_menu_responsive_tablet .ekit-menu-badge{position:static;margin-left:10px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-transform:none;transform:none}.ekit_menu_responsive_tablet .ekit-menu-badge>.ekit-menu-badge-arrow{display:none}.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{margin-left:auto}.ekit_menu_responsive_tablet .elementskit-submenu-indicator{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;border:1px solid;border-radius:30px}}@media screen and (min-width:766px) and (max-width:1024px){.ekit_menu_responsive_mobile .elementskit-menu-offcanvas-elements{position:static}.ekit_menu_responsive_mobile .elementskit-nav-identity-panel{display:none}.ekit_menu_responsive_mobile button.elementskit-menu-hamburger{display:none}.ekit_menu_responsive_mobile .elementskit-menu-container{overflow-y:unset;overflow-x:unset}.ekit_menu_responsive_mobile .elementskit-dropdown{-webkit-box-shadow:0 10px 30px 0 rgba(45,45,45,.2);box-shadow:0 10px 30px 0 rgba(45,45,45,.2);position:absolute;top:100%;left:0;-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;max-height:none;z-index:999}.ekit_menu_responsive_mobile .elementskit-megamenu-panel{-webkit-transform:translateY(-10px);transform:translateY(-10px);pointer-events:none;opacity:0;visibility:hidden;-webkit-transition:all .4s ease;transition:all .4s ease;margin-left:0;position:absolute;left:0;top:100%;display:block;z-index:999}.ekit_menu_responsive_mobile .elementskit-dropdown-menu-full_width .elementskit-megamenu-panel{width:100vw}.ekit_menu_responsive_mobile .elementskit-navbar-nav>li.elementskit-megamenu-has.relative_position{position:relative}.ekit_menu_responsive_mobile .elementskit-megamenu-panel .elementor-section-wrap>.elementor-section>.elementor-container{max-width:none}}@media (max-width:767px){.ekit_menu_responsive_mobile .elementskit-navbar-nav{display:block}.ekit_menu_responsive_mobile .elementskit-dropdown{position:relative}.ekit_menu_responsive_mobile .ekit-menu-badge{position:static;margin-left:10px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-transform:none;transform:none}.ekit_menu_responsive_mobile .ekit-menu-badge>.ekit-menu-badge-arrow{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{margin-left:auto}.ekit_menu_responsive_mobile .elementskit-submenu-indicator{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;border:1px solid;border-radius:30px}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-dropdown{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-megamenu-panel.elementskit-dropdown-open,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-has.elementskit-mobile-builder-content .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-megamenu-panel.elementskit-dropdown-open,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-megamenu-panel.elementskit-dropdown-open{display:block}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown~.elementskit-megamenu-panel,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown~.elementskit-megamenu-panel{display:none}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown.elementskit-dropdown-open,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown.elementskit-dropdown-open{display:block;max-height:2500px;opacity:1;visibility:visible;-webkit-transition:max-height 5s ease-out;transition:max-height 5s ease-out}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-navbar-nav,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-navbar-nav{overflow-y:auto}.ekit_menu_responsive_mobile .elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown,.ekit_menu_responsive_tablet .elementskit-navbar-nav-default .elementskit-dropdown>li>.elementskit-dropdown{left:0}}.elementskit-navbar-nav .elementskit-submenu-panel>li:hover>a>i,.elementskit-navbar-nav .elementskit-submenu-panel>li>a:hover>i{color:inherit!important}@media (min-width:1025px){.elementor-widget-ekit-nav-menu .elementskit-dropdown-menu-full_width .elementskit-megamenu-panel{width:100vw}.elementor-widget-ekit-nav-menu .elementskit-navbar-nav>li.elementskit-megamenu-has.relative_position{position:relative}.elementskit-megamenu-panel .elementor-section-wrap>.elementor-section>.elementor-container{max-width:none}}.elementskit-dropdown-has>.sub-menu-toggle{display:none}.ekit-nav-menu--empty-fallback{font-size:0}@media (min-width:766px){.ekit_menu_responsive_mobile .ekit-nav-menu--empty-fallback,.ekit_menu_responsive_mobile .ekit-nav-menu--overlay{display:none}}@media (min-width:1025px){.ekit_menu_responsive_tablet .ekit-nav-menu--empty-fallback,.ekit_menu_responsive_tablet .ekit-nav-menu--overlay{display:none}}@media (max-width:767px){.ekit-sticky .elementskit-menu-container.elementskit-menu-offcanvas-elements{height:120vh!important}.ekit-sticky .elementskit-menu-overlay{display:none}.ekit-sticky .elementskit-menu-offcanvas-elements::before{position:fixed;content:"";top:0;left:-110%;height:100%;width:100%;background-color:rgba(51,51,51,.5);-webkit-transition:left .5s ease;transition:left .5s ease}.ekit-sticky .elementskit-menu-offcanvas-elements::after{position:absolute;content:"";top:0;left:0;height:100%;width:100%;background:inherit}.ekit-sticky .elementskit-menu-offcanvas-elements.active::before{left:0}.ekit-sticky .elementskit-navbar-nav-default .elementskit-navbar-nav{position:relative;z-index:5}}
.ekit_modal-searchPanel .xs-serach{position:relative}.ekit_modal-searchPanel .xs-serach input:not([type=submit]){padding:0 20px;background-color:transparent;width:100%;height:44px;border-radius:5px;border:0;border:1px solid #e7e7e7;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::-moz-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::-webkit-input-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit]):-ms-input-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::-ms-input-placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit])::placeholder{color:#777;font-size:14px;opacity:1}.ekit_modal-searchPanel .xs-serach input:not([type=submit]):focus{border-color:#2575fc}.ekit_modal-searchPanel .xs-serach .search-btn{width:62px;border:0;font-size:14px;color:#777;background-color:transparent;position:absolute;right:0;top:0;height:100%;cursor:pointer;-webkit-transition:all .4s ease;transition:all .4s ease}.ekit_modal-searchPanel .mfp-wrap.ekit-promo-popup::before{content:"";width:100%;height:100%;display:block;background-color:rgba(0,0,0,.87);padding-bottom:100%;border-radius:100%;overflow:hidden;-webkit-animation:menu-animation .8s ease-out forwards;animation:menu-animation .8s ease-out forwards}.ekit_modal-searchPanel .mfp-wrap.ekit-promo-popup{height:100vh;overflow:hidden}.ekit_modal-searchPanel .mfp-bg.my-mfp-slide-bottom{display:none}.ekit_modal-searchPanel .ekit-sidebar-widget{height:100vh}.ekit_modal-searchPanel .ekit-bg-black{height:100vh!important}.ekit_modal-searchPanel .ekit-search-group{position:relative}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit]){height:70px;background-color:transparent;border-radius:50px;border:2px solid #fff;color:#fff;padding:0 30px;width:100%}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit]):focus{outline:0}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::-moz-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::-webkit-input-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit]):-ms-input-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::-ms-input-placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group input:not([type=submit])::placeholder{color:#fff;opacity:1}.ekit_modal-searchPanel .ekit-search-group .ekit_search-button{background-color:transparent;border:0;padding:0;color:#fff;fill:#fff;position:absolute;right:0;cursor:pointer;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);height:100%;width:70px;border-radius:0 50px 50px 0}.ekit_modal-searchPanel .ekit-search-group .ekit_search-button svg{width:1em;height:1em}.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-cancel-button,.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-decoration,.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-results-button,.ekit_modal-searchPanel .ekit-search-group input[type=search]::-webkit-search-results-decoration{display:none}.ekit_modal-searchPanel .ekit-search-panel{max-width:800px;margin:1.75rem auto}.ekit_navsearch-button{display:inline-block}.elementor-widget-elementskit-header-search .mfp-close{width:44px}
.ekit-wid-con .ekit-sidebar-group .ekit-overlay{left:100%;top:0;position:fixed;z-index:1002;height:100%;opacity:0;width:100%;visibility:hidden;-webkit-transition:all .4s ease-in var(--transition-duration);transition:all .4s ease-in var(--transition-duration);cursor:url(https://coralgablesclassof82.com/wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.svg),pointer;background-color:rgba(0,0,0,.9)}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-group .ekit-overlay{left:auto;right:100%}.ekit-wid-con .ekit-sidebar-group .ekit_widget-heading{padding:20px;float:right}.ekit-wid-con .ekit-sidebar-group.ekit-fade .ekit-overlay{left:0;right:0}.ekit-wid-con .ekit-sidebar-widget{position:fixed;right:-100%;top:0;bottom:0;width:100%;max-width:360px;z-index:999999;overflow:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:#fff;-webkit-transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) var(--transition-duration);transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) var(--transition-duration);visibility:hidden;opacity:0}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-widget{left:-100%;right:auto}.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-overlay{visibility:visible;-webkit-transition:all var(--transition-duration) ease-out 0s;transition:all var(--transition-duration) ease-out 0s;left:0;opacity:1}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-overlay{left:auto;right:0}.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-sidebar-widget{opacity:1;visibility:visible;right:0;-webkit-transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) .4s;transition:all var(--transition-duration) cubic-bezier(.9,.03,0,.96) .4s}.ekit-off-canvas-position-left .ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit-sidebar-widget{left:0;right:auto}.ekit-wid-con .ekit_sidebar-textwidget{padding:20px;padding-top:60px}.ekit-wid-con .ekit_close-side-widget{position:absolute;color:#1768dd;font-size:15px;display:block;font-weight:400;line-height:1;padding:4px 7px 5px 7px;border:1px solid #ccc;z-index:1;background-color:#fff;top:15px;right:15px;text-align:center;-webkit-transition:all .3s;transition:all .3s}.ekit-wid-con .ekit_close-side-widget svg{width:100%;max-width:20px;height:auto;vertical-align:middle}.ekit-wid-con .ekit_sidebar-widget-container{position:relative;top:150px;opacity:0;visibility:hidden;-webkit-transition:all .3s ease-in .3s;transition:all .3s ease-in .3s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ekit-wid-con .ekit-sidebar-group.ekit_isActive .ekit_sidebar-widget-container{top:0;opacity:1;visibility:visible;-webkit-transition:all 1s ease-out 1.2s;transition:all 1s ease-out 1.2s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.ekit-wid-con .ekit_navSidebar-button{display:inline-block;line-height:1}.ekit-wid-con .ekit_offcanvas-sidebar{-webkit-transition:all .3s;transition:all .3s}.ekit-wid-con .ekit_offcanvas-sidebar svg{width:100%;max-width:20px;height:auto;vertical-align:middle}
.ekit-wid-con .ekit-header-info{list-style:none}.ekit-wid-con .ekit-header-info>li:not(:last-child){margin-right:15px}.ekit-wid-con .ekit-header-info,.ekit-wid-con .ekit-header-info a{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ekit-wid-con .ekit-header-info svg{max-width:15px;height:auto;vertical-align:middle}
.um-popup-overlay{background:rgba(0,0,0,.7);width:100%;height:100%;position:fixed;top:0;left:0;z-index:1999992}.um-popup *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-popup{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:fixed;left:50%;top:10%;margin-left:-250px;width:500px;background:#fff;box-shadow:0 1px 3px #111;z-index:1999993;box-sizing:border-box;overflow:auto;color:#888;padding:0!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-popup.loading{background:#fff url(https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/img/loading.gif) no-repeat center;min-height:100px}.um-popup a{outline:0!important}.um-modal-overlay{background:rgba(0,0,0,.85);width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999}.um-modal *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-modal-hidden-content{display:none}.um-modal-close{display:block;position:fixed;right:0;top:0;font-size:24px;text-decoration:none!important;color:#fff!important;padding:0 10px}.um-modal{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:fixed;left:50%;display:none;z-index:1999993;box-sizing:border-box;bottom:-50px}.um-modal.normal{width:500px;margin-left:-250px}.um-modal.large{width:730px;margin-left:-365px}.um-modal.small{width:400px;margin-left:-200px}.um-modal-body{min-height:3px;padding:20px;box-sizing:border-box!important;width:100%;background:#fff;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.um-modal-body.photo{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 0 1px rgba(255,255,255,.12) inset;background:#888;padding:0}.um-modal-body.photo img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;display:block;overflow:hidden;opacity:0}.um-modal.loading .um-modal-body{background:#fff url(https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/img/loading.gif) no-repeat center;min-height:150px}.um-modal div.um{margin-bottom:20px!important}.um-modal-header{-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;height:44px;line-height:44px;color:#fff;padding:0 20px;box-sizing:border-box;font-size:17px}.um-modal-footer{margin-top:20px}.um-modal-left{float:left}.um-modal-right{float:right}.um-modal-btn.disabled,.um-modal-btn.disabled:hover{opacity:.5;cursor:default!important}.um-modal-btn{cursor:pointer!important;line-height:34px!important;height:34px;display:inline-block;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:0 20px;text-align:center;color:#fff;vertical-align:middle;font-size:14px;box-sizing:border-box;transition:.2s;text-decoration:none!important}a.um-modal-btn:visited{color:#fff}.um-modal-btn:hover{background:#44b0ec;color:#fff}.um-modal-btn.alt{color:#666;background:#eee}.um-modal-btn.alt:hover{background:#e5e5e5}.um-modal .um-single-image-preview.crop img{float:left}
/*! jQuery UI - v1.13.2 - 2023-10-18
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=.um&folderName=um-&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.um .ui-draggable-handle{-ms-touch-action:none;touch-action:none}.um .ui-helper-hidden{display:none}.um .ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.um .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.um .ui-helper-clearfix:before,.um .ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.um .ui-helper-clearfix:after{clear:both}.um .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.um .ui-front{z-index:100}.um .ui-state-disabled{cursor:default!important;pointer-events:none}.um .ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.um .ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.um .ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.um .ui-resizable{position:relative}.um .ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.um .ui-resizable-disabled .ui-resizable-handle,.um .ui-resizable-autohide .ui-resizable-handle{display:none}.um .ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.um .ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.um .ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.um .ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.um .ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.um .ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.um .ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.um .ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.um .ui-selectable{-ms-touch-action:none;touch-action:none}.um .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.um .ui-sortable-handle{-ms-touch-action:none;touch-action:none}.um .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.um .ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.um .ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.um .ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.um .ui-menu .ui-menu{position:absolute}.um .ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.um .ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.um .ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.um .ui-menu .ui-state-focus,.um .ui-menu .ui-state-active{margin:-1px}.um .ui-menu-icons{position:relative}.um .ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.um .ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.um .ui-menu .ui-menu-icon{left:auto;right:0}.um .ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.um .ui-button,.um .ui-button:link,.um .ui-button:visited,.um .ui-button:hover,.um .ui-button:active{text-decoration:none}.um .ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.um .ui-button.ui-button-icon-only{text-indent:0}.um .ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.um .ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.um .ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.um .ui-button::-moz-focus-inner,button.um .ui-button::-moz-focus-inner{border:0;padding:0}.um .ui-controlgroup{vertical-align:middle;display:inline-block}.um .ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.um .ui-controlgroup > .ui-controlgroup-item:focus,.um .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.um .ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.um .ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.um .ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.um .ui-controlgroup .ui-controlgroup-label span{font-size:80%}.um .ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.um .ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.um .ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.um .ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.um .ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.um .ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.um .ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.um .ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.um .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.um .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.um .ui-checkboxradio-disabled{pointer-events:none}.um .ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.um .ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.um .ui-datepicker .ui-datepicker-prev,.um .ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.um .ui-datepicker .ui-datepicker-prev-hover,.um .ui-datepicker .ui-datepicker-next-hover{top:1px}.um .ui-datepicker .ui-datepicker-prev{left:2px}.um .ui-datepicker .ui-datepicker-next{right:2px}.um .ui-datepicker .ui-datepicker-prev-hover{left:1px}.um .ui-datepicker .ui-datepicker-next-hover{right:1px}.um .ui-datepicker .ui-datepicker-prev span,.um .ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.um .ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.um .ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.um .ui-datepicker select.ui-datepicker-month,.um .ui-datepicker select.ui-datepicker-year{width:45%}.um .ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.um .ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.um .ui-datepicker td{border:0;padding:1px}.um .ui-datepicker td span,.um .ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.um .ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.um .ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.um .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.um .ui-datepicker.ui-datepicker-multi{width:auto}.um .ui-datepicker-multi .ui-datepicker-group{float:left}.um .ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.um .ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.um .ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.um .ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.um .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.um .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.um .ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.um .ui-datepicker-row-break{clear:both;width:100%;font-size:0}.um .ui-datepicker-rtl{direction:rtl}.um .ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.um .ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.um .ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.um .ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.um .ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.um .ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.um .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.um .ui-datepicker-rtl .ui-datepicker-group{float:right}.um .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.um .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.um .ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.um .ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.um .ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.um .ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.um .ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.um .ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.um .ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.um .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.um .ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.um .ui-dialog .ui-resizable-n{height:2px;top:0}.um .ui-dialog .ui-resizable-e{width:2px;right:0}.um .ui-dialog .ui-resizable-s{height:2px;bottom:0}.um .ui-dialog .ui-resizable-w{width:2px;left:0}.um .ui-dialog .ui-resizable-se,.um .ui-dialog .ui-resizable-sw,.um .ui-dialog .ui-resizable-ne,.um .ui-dialog .ui-resizable-nw{width:7px;height:7px}.um .ui-dialog .ui-resizable-se{right:0;bottom:0}.um .ui-dialog .ui-resizable-sw{left:0;bottom:0}.um .ui-dialog .ui-resizable-ne{right:0;top:0}.um .ui-dialog .ui-resizable-nw{left:0;top:0}.um .ui-draggable .ui-dialog-titlebar{cursor:move}.um .ui-progressbar{height:2em;text-align:left;overflow:hidden}.um .ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.um .ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;-ms-filter:"alpha(opacity=25)";opacity:0.25}.um .ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.um .ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.um .ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.um .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.um .ui-selectmenu-open{display:block}.um .ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.um .ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.um .ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.um .ui-slider{position:relative;text-align:left}.um .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;-ms-touch-action:none;touch-action:none}.um .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.um .ui-slider.ui-state-disabled .ui-slider-handle,.um .ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.um .ui-slider-horizontal{height:.8em}.um .ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.um .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.um .ui-slider-horizontal .ui-slider-range-min{left:0}.um .ui-slider-horizontal .ui-slider-range-max{right:0}.um .ui-slider-vertical{width:.8em;height:100px}.um .ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.um .ui-slider-vertical .ui-slider-range{left:0;width:100%}.um .ui-slider-vertical .ui-slider-range-min{bottom:0}.um .ui-slider-vertical .ui-slider-range-max{top:0}.um .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.um .ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.um .ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.um .ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.um .ui-spinner-up{top:0}.um .ui-spinner-down{bottom:0}.um .ui-tabs{position:relative;padding:.2em}.um .ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.um .ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.um .ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.um .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.um .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.um .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.um .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.um .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.um .ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.um .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .um .ui-tooltip{border-width:2px}.um .ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.um .ui-widget .ui-widget{font-size:1em}.um .ui-widget input,.um .ui-widget select,.um .ui-widget textarea,.um .ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.um .ui-widget.ui-widget-content{border:1px solid #c5c5c5}.um .ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.um .ui-widget-content a{color:#333}.um .ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.um .ui-widget-header a{color:#333}.um .ui-state-default,.um .ui-widget-content .ui-state-default,.um .ui-widget-header .ui-state-default,.um .ui-button,html .um .ui-button.ui-state-disabled:hover,html .um .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.um .ui-state-default a,.um .ui-state-default a:link,.um .ui-state-default a:visited,a.um .ui-button,a:link.um .ui-button,a:visited.um .ui-button,.um .ui-button{color:#454545;text-decoration:none}.um .ui-state-hover,.um .ui-widget-content .ui-state-hover,.um .ui-widget-header .ui-state-hover,.um .ui-state-focus,.um .ui-widget-content .ui-state-focus,.um .ui-widget-header .ui-state-focus,.um .ui-button:hover,.um .ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.um .ui-state-hover a,.um .ui-state-hover a:hover,.um .ui-state-hover a:link,.um .ui-state-hover a:visited,.um .ui-state-focus a,.um .ui-state-focus a:hover,.um .ui-state-focus a:link,.um .ui-state-focus a:visited,a.um .ui-button:hover,a.um .ui-button:focus{color:#2b2b2b;text-decoration:none}.um .ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.um .ui-state-active,.um .ui-widget-content .ui-state-active,.um .ui-widget-header .ui-state-active,a.um .ui-button:active,.um .ui-button:active,.um .ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.um .ui-icon-background,.um .ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.um .ui-state-active a,.um .ui-state-active a:link,.um .ui-state-active a:visited{color:#fff;text-decoration:none}.um .ui-state-highlight,.um .ui-widget-content .ui-state-highlight,.um .ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.um .ui-state-checked{border:1px solid #dad55e;background:#fffa90}.um .ui-state-highlight a,.um .ui-widget-content .ui-state-highlight a,.um .ui-widget-header .ui-state-highlight a{color:#777620}.um .ui-state-error,.um .ui-widget-content .ui-state-error,.um .ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.um .ui-state-error a,.um .ui-widget-content .ui-state-error a,.um .ui-widget-header .ui-state-error a{color:#5f3f3f}.um .ui-state-error-text,.um .ui-widget-content .ui-state-error-text,.um .ui-widget-header .ui-state-error-text{color:#5f3f3f}.um .ui-priority-primary,.um .ui-widget-content .ui-priority-primary,.um .ui-widget-header .ui-priority-primary{font-weight:bold}.um .ui-priority-secondary,.um .ui-widget-content .ui-priority-secondary,.um .ui-widget-header .ui-priority-secondary{opacity:.7;-ms-filter:"alpha(opacity=70)";font-weight:normal}.um .ui-state-disabled,.um .ui-widget-content .ui-state-disabled,.um .ui-widget-header .ui-state-disabled{opacity:.35;-ms-filter:"alpha(opacity=35)";background-image:none}.um .ui-state-disabled .ui-icon{-ms-filter:"alpha(opacity=35)"}.um .ui-icon{width:16px;height:16px}.um .ui-icon,.um .ui-widget-content .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_444444_256x240.png")}.um .ui-widget-header .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_444444_256x240.png")}.um .ui-state-hover .ui-icon,.um .ui-state-focus .ui-icon,.um .ui-button:hover .ui-icon,.um .ui-button:focus .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_555555_256x240.png")}.um .ui-state-active .ui-icon,.um .ui-button:active .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_ffffff_256x240.png")}.um .ui-state-highlight .ui-icon,.um .ui-button .ui-state-highlight.ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_777620_256x240.png")}.um .ui-state-error .ui-icon,.um .ui-state-error-text .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_cc0000_256x240.png")}.um .ui-button .ui-icon{background-image:url("https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/libs/jquery-ui/images/ui-icons_777777_256x240.png")}.um .ui-icon-blank.ui-icon-blank.ui-icon-blank{background-image:none}.um .ui-icon-caret-1-n{background-position:0 0}.um .ui-icon-caret-1-ne{background-position:-16px 0}.um .ui-icon-caret-1-e{background-position:-32px 0}.um .ui-icon-caret-1-se{background-position:-48px 0}.um .ui-icon-caret-1-s{background-position:-65px 0}.um .ui-icon-caret-1-sw{background-position:-80px 0}.um .ui-icon-caret-1-w{background-position:-96px 0}.um .ui-icon-caret-1-nw{background-position:-112px 0}.um .ui-icon-caret-2-n-s{background-position:-128px 0}.um .ui-icon-caret-2-e-w{background-position:-144px 0}.um .ui-icon-triangle-1-n{background-position:0 -16px}.um .ui-icon-triangle-1-ne{background-position:-16px -16px}.um .ui-icon-triangle-1-e{background-position:-32px -16px}.um .ui-icon-triangle-1-se{background-position:-48px -16px}.um .ui-icon-triangle-1-s{background-position:-65px -16px}.um .ui-icon-triangle-1-sw{background-position:-80px -16px}.um .ui-icon-triangle-1-w{background-position:-96px -16px}.um .ui-icon-triangle-1-nw{background-position:-112px -16px}.um .ui-icon-triangle-2-n-s{background-position:-128px -16px}.um .ui-icon-triangle-2-e-w{background-position:-144px -16px}.um .ui-icon-arrow-1-n{background-position:0 -32px}.um .ui-icon-arrow-1-ne{background-position:-16px -32px}.um .ui-icon-arrow-1-e{background-position:-32px -32px}.um .ui-icon-arrow-1-se{background-position:-48px -32px}.um .ui-icon-arrow-1-s{background-position:-65px -32px}.um .ui-icon-arrow-1-sw{background-position:-80px -32px}.um .ui-icon-arrow-1-w{background-position:-96px -32px}.um .ui-icon-arrow-1-nw{background-position:-112px -32px}.um .ui-icon-arrow-2-n-s{background-position:-128px -32px}.um .ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.um .ui-icon-arrow-2-e-w{background-position:-160px -32px}.um .ui-icon-arrow-2-se-nw{background-position:-176px -32px}.um .ui-icon-arrowstop-1-n{background-position:-192px -32px}.um .ui-icon-arrowstop-1-e{background-position:-208px -32px}.um .ui-icon-arrowstop-1-s{background-position:-224px -32px}.um .ui-icon-arrowstop-1-w{background-position:-240px -32px}.um .ui-icon-arrowthick-1-n{background-position:1px -48px}.um .ui-icon-arrowthick-1-ne{background-position:-16px -48px}.um .ui-icon-arrowthick-1-e{background-position:-32px -48px}.um .ui-icon-arrowthick-1-se{background-position:-48px -48px}.um .ui-icon-arrowthick-1-s{background-position:-64px -48px}.um .ui-icon-arrowthick-1-sw{background-position:-80px -48px}.um .ui-icon-arrowthick-1-w{background-position:-96px -48px}.um .ui-icon-arrowthick-1-nw{background-position:-112px -48px}.um .ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.um .ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.um .ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.um .ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.um .ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.um .ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.um .ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.um .ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.um .ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.um .ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.um .ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.um .ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.um .ui-icon-arrowreturn-1-w{background-position:-64px -64px}.um .ui-icon-arrowreturn-1-n{background-position:-80px -64px}.um .ui-icon-arrowreturn-1-e{background-position:-96px -64px}.um .ui-icon-arrowreturn-1-s{background-position:-112px -64px}.um .ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.um .ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.um .ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.um .ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.um .ui-icon-arrow-4{background-position:0 -80px}.um .ui-icon-arrow-4-diag{background-position:-16px -80px}.um .ui-icon-extlink{background-position:-32px -80px}.um .ui-icon-newwin{background-position:-48px -80px}.um .ui-icon-refresh{background-position:-64px -80px}.um .ui-icon-shuffle{background-position:-80px -80px}.um .ui-icon-transfer-e-w{background-position:-96px -80px}.um .ui-icon-transferthick-e-w{background-position:-112px -80px}.um .ui-icon-folder-collapsed{background-position:0 -96px}.um .ui-icon-folder-open{background-position:-16px -96px}.um .ui-icon-document{background-position:-32px -96px}.um .ui-icon-document-b{background-position:-48px -96px}.um .ui-icon-note{background-position:-64px -96px}.um .ui-icon-mail-closed{background-position:-80px -96px}.um .ui-icon-mail-open{background-position:-96px -96px}.um .ui-icon-suitcase{background-position:-112px -96px}.um .ui-icon-comment{background-position:-128px -96px}.um .ui-icon-person{background-position:-144px -96px}.um .ui-icon-print{background-position:-160px -96px}.um .ui-icon-trash{background-position:-176px -96px}.um .ui-icon-locked{background-position:-192px -96px}.um .ui-icon-unlocked{background-position:-208px -96px}.um .ui-icon-bookmark{background-position:-224px -96px}.um .ui-icon-tag{background-position:-240px -96px}.um .ui-icon-home{background-position:0 -112px}.um .ui-icon-flag{background-position:-16px -112px}.um .ui-icon-calendar{background-position:-32px -112px}.um .ui-icon-cart{background-position:-48px -112px}.um .ui-icon-pencil{background-position:-64px -112px}.um .ui-icon-clock{background-position:-80px -112px}.um .ui-icon-disk{background-position:-96px -112px}.um .ui-icon-calculator{background-position:-112px -112px}.um .ui-icon-zoomin{background-position:-128px -112px}.um .ui-icon-zoomout{background-position:-144px -112px}.um .ui-icon-search{background-position:-160px -112px}.um .ui-icon-wrench{background-position:-176px -112px}.um .ui-icon-gear{background-position:-192px -112px}.um .ui-icon-heart{background-position:-208px -112px}.um .ui-icon-star{background-position:-224px -112px}.um .ui-icon-link{background-position:-240px -112px}.um .ui-icon-cancel{background-position:0 -128px}.um .ui-icon-plus{background-position:-16px -128px}.um .ui-icon-plusthick{background-position:-32px -128px}.um .ui-icon-minus{background-position:-48px -128px}.um .ui-icon-minusthick{background-position:-64px -128px}.um .ui-icon-close{background-position:-80px -128px}.um .ui-icon-closethick{background-position:-96px -128px}.um .ui-icon-key{background-position:-112px -128px}.um .ui-icon-lightbulb{background-position:-128px -128px}.um .ui-icon-scissors{background-position:-144px -128px}.um .ui-icon-clipboard{background-position:-160px -128px}.um .ui-icon-copy{background-position:-176px -128px}.um .ui-icon-contact{background-position:-192px -128px}.um .ui-icon-image{background-position:-208px -128px}.um .ui-icon-video{background-position:-224px -128px}.um .ui-icon-script{background-position:-240px -128px}.um .ui-icon-alert{background-position:0 -144px}.um .ui-icon-info{background-position:-16px -144px}.um .ui-icon-notice{background-position:-32px -144px}.um .ui-icon-help{background-position:-48px -144px}.um .ui-icon-check{background-position:-64px -144px}.um .ui-icon-bullet{background-position:-80px -144px}.um .ui-icon-radio-on{background-position:-96px -144px}.um .ui-icon-radio-off{background-position:-112px -144px}.um .ui-icon-pin-w{background-position:-128px -144px}.um .ui-icon-pin-s{background-position:-144px -144px}.um .ui-icon-play{background-position:0 -160px}.um .ui-icon-pause{background-position:-16px -160px}.um .ui-icon-seek-next{background-position:-32px -160px}.um .ui-icon-seek-prev{background-position:-48px -160px}.um .ui-icon-seek-end{background-position:-64px -160px}.um .ui-icon-seek-start{background-position:-80px -160px}.um .ui-icon-seek-first{background-position:-80px -160px}.um .ui-icon-stop{background-position:-96px -160px}.um .ui-icon-eject{background-position:-112px -160px}.um .ui-icon-volume-off{background-position:-128px -160px}.um .ui-icon-volume-on{background-position:-144px -160px}.um .ui-icon-power{background-position:0 -176px}.um .ui-icon-signal-diag{background-position:-16px -176px}.um .ui-icon-signal{background-position:-32px -176px}.um .ui-icon-battery-0{background-position:-48px -176px}.um .ui-icon-battery-1{background-position:-64px -176px}.um .ui-icon-battery-2{background-position:-80px -176px}.um .ui-icon-battery-3{background-position:-96px -176px}.um .ui-icon-circle-plus{background-position:0 -192px}.um .ui-icon-circle-minus{background-position:-16px -192px}.um .ui-icon-circle-close{background-position:-32px -192px}.um .ui-icon-circle-triangle-e{background-position:-48px -192px}.um .ui-icon-circle-triangle-s{background-position:-64px -192px}.um .ui-icon-circle-triangle-w{background-position:-80px -192px}.um .ui-icon-circle-triangle-n{background-position:-96px -192px}.um .ui-icon-circle-arrow-e{background-position:-112px -192px}.um .ui-icon-circle-arrow-s{background-position:-128px -192px}.um .ui-icon-circle-arrow-w{background-position:-144px -192px}.um .ui-icon-circle-arrow-n{background-position:-160px -192px}.um .ui-icon-circle-zoomin{background-position:-176px -192px}.um .ui-icon-circle-zoomout{background-position:-192px -192px}.um .ui-icon-circle-check{background-position:-208px -192px}.um .ui-icon-circlesmall-plus{background-position:0 -208px}.um .ui-icon-circlesmall-minus{background-position:-16px -208px}.um .ui-icon-circlesmall-close{background-position:-32px -208px}.um .ui-icon-squaresmall-plus{background-position:-48px -208px}.um .ui-icon-squaresmall-minus{background-position:-64px -208px}.um .ui-icon-squaresmall-close{background-position:-80px -208px}.um .ui-icon-grip-dotted-vertical{background-position:0 -224px}.um .ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.um .ui-icon-grip-solid-vertical{background-position:-32px -224px}.um .ui-icon-grip-solid-horizontal{background-position:-48px -224px}.um .ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.um .ui-icon-grip-diagonal-se{background-position:-80px -224px}.um .ui-corner-all,.um .ui-corner-top,.um .ui-corner-left,.um .ui-corner-tl{border-top-left-radius:3px}.um .ui-corner-all,.um .ui-corner-top,.um .ui-corner-right,.um .ui-corner-tr{border-top-right-radius:3px}.um .ui-corner-all,.um .ui-corner-bottom,.um .ui-corner-left,.um .ui-corner-bl{border-bottom-left-radius:3px}.um .ui-corner-all,.um .ui-corner-bottom,.um .ui-corner-right,.um .ui-corner-br{border-bottom-right-radius:3px}.um .ui-widget-overlay{background:#aaa;opacity:.3;-ms-filter:Alpha(Opacity=30)}.um .ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
.tipsy{font-size:10px;position:absolute;padding:5px;z-index:100000}.tipsy-inner{background-color:#000;color:#fff;max-width:200px;padding:5px 8px 4px 8px;text-align:center}.tipsy-inner{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.tipsy-arrow{position:absolute;width:0;height:0;line-height:0;border:5px dashed #000}.tipsy-arrow-n{border-bottom-color:#000}.tipsy-arrow-s{border-top-color:#000}.tipsy-arrow-e{border-left-color:#000}.tipsy-arrow-w{border-right-color:#000}.tipsy-n .tipsy-arrow{top:0;left:50%;margin-left:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-nw .tipsy-arrow{top:0;left:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-ne .tipsy-arrow{top:0;right:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-s .tipsy-arrow{bottom:0;left:50%;margin-left:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-sw .tipsy-arrow{bottom:0;left:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-se .tipsy-arrow{bottom:0;right:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-e .tipsy-arrow{right:0;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent}.tipsy-w .tipsy-arrow{left:0;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent}
.cancel-off-png,.cancel-on-png,.star-half-png,.star-off-png,.star-on-png{font-family:raty;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;margin-right:.2em;color:#ccc}.star-half-png,.star-on-png{color:#ffbe32}.cancel-on-png:before{content:"\e600"}.cancel-off-png:before{content:"\e601"}.star-on-png:before{content:"\f005"}.star-off-png:before{content:"\f006"}.star-half-png:before{content:"\f123"}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
.um .um-single-file-preview,.um .um-single-image-preview{margin-bottom:20px}.um .um-single-image-preview>img{max-height:300px;display:inline-block;overflow:hidden;margin:auto;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.um-single-file-preview,.um-single-image-preview{display:none;text-align:center;position:relative}.um-single-file-preview.show,.um-single-image-preview.show{display:block}.um-single-image-preview>img{max-width:100%;max-height:inherit}.um-single-file-preview a.cancel,.um-single-image-preview a.cancel{position:absolute;top:-15px;right:-15px;width:30px;height:30px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;background:#ddd;cursor:pointer;text-decoration:none!important;z-index:666;opacity:.75}.um-single-file-preview a.cancel i,.um-single-image-preview a.cancel i{font-size:16px;color:#888;position:relative;display:block;width:100%;height:100%;line-height:30px;overflow:hidden}.um-single-file-preview a.cancel i:before,.um-single-image-preview a.cancel i:before{line-height:inherit}.um-single-fileinfo{padding:26px 0 20px 0;display:inline-block;max-width:100%}.um-single-fileinfo span.icon{font-size:40px;display:inline-block;width:100px;height:70px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#666;color:#fff!important}.um-single-fileinfo span.icon i{display:block;height:70px;line-height:70px;overflow:hidden}.um-single-fileinfo span.icon i:before{line-height:inherit}.um-single-fileinfo span.filename{display:block;font-size:16px;color:#888;padding-top:5px}.um-single-fileinfo a{text-decoration:none!important;opacity:.9}.um-single-fileinfo a:hover{opacity:1}div.um-modal .upload-statusbar{margin:20px 0 0 0}div.um-modal .upload-filename{display:none!important}div.um-modal .upload-progress{position:relative;width:100%;box-sizing:border-box}div.um-modal .upload-bar{width:0;height:10px;color:#666;background:#7acf58;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.um-modal .ajax-upload-dragdrop{width:100%;text-align:center;vertical-align:middle;padding:20px;box-sizing:border-box;border:2px dashed #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-size:18px;line-height:1em}div.um-modal .ajax-upload-dragdrop span.str{display:block;margin:0 0 15px 0}div.um-modal .ajax-upload-dragdrop span.icon{display:block;font-size:80px;line-height:80px;vertical-align:middle;margin-bottom:10px}div.um-modal .ajax-upload-dragdrop span.help{display:block;font-size:14px;color:#aaa;margin:0 0 12px 0}div.um-modal .upload{cursor:pointer!important;line-height:34px!important;height:34px;display:inline-block;text-decoration:none;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:0 20px;color:#fff;vertical-align:middle;font-size:14px;box-sizing:border-box;transition:.2s}div.um-modal .upload:hover{background:#44b0ec}.um-modal input[type=file]::-webkit-file-upload-button{cursor:pointer}
#um_confirm_block{display:none}#um_confirm_block_back{background-color:rgba(0,0,0,.2);width:100%;height:100%;position:fixed;left:0;top:0;z-index:2147483646}.um_confirm{position:fixed;color:#fff;width:400px;background-color:#000;left:50%;top:50%;z-index:2147483647}.um_confirm #um_confirm_title{background-color:rgba(0,0,0,.4);border-bottom:1px solid #5c5c5c;color:#ccc;font-weight:700;height:15px;padding:10px;text-align:center;width:calc(100% - 20px)}.um_confirm #um_confirm_message{width:calc(100% - 40px);text-align:center;padding:20px}.um_confirm #um_confirm_buttons{height:40px;width:100%}.um_confirm .um_confirm_button{border-top:1px solid #5c5c5c;color:#aaa;font-size:15px;font-weight:700;float:left;line-height:40px;text-align:center;width:50%;cursor:pointer}.um_confirm .um_confirm_button:hover{background-color:rgba(0,0,0,.6);border-top:1px solid #fff;color:#fff}
.um-notice-message{position:fixed;padding:0;color:var(--um-gray-700,#344054);text-align:center;width:250px;background-color:#fff;z-index:99999999;right:30px;bottom:-200px;display:none}.um-notice-message .um-notice-message-text{padding:5px;display:block;font-size:14px}.um-notice-message .um-notice-message-progress{display:block;border-bottom-width:2px;border-bottom-style:solid;margin-bottom:5px}.um-notice-message.um-notice-message-update .um-notice-message-progress{border-bottom-color:var(--um-success-500,#12b76a)}.um-notice-message.um-notice-message-error .um-notice-message-progress{border-bottom-color:var(--um-error-500,#f04438)}.um-notice-message.um-notice-message-warning .um-notice-message-progress{border-bottom-color:var(--um-warning-500,#f79009)}
.um .picker{font-size:16px;text-align:left;line-height:1.2;color:#fff;position:absolute;z-index:10000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.um .picker__box ul li[role=presentation]{margin:10px 0 0 0}.um .picker__input{cursor:default}.um .picker__input.picker__input--active{border-color:#0089ec}.um .picker__holder{width:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */.um .picker__frame,.um .picker__holder{bottom:0;left:0;right:0;top:100%}.um .picker__holder{position:fixed;-webkit-transition:background .15s ease-out,top 0s .15s;-moz-transition:background .15s ease-out,top 0s .15s;transition:background .15s ease-out,top 0s .15s}.um .picker__frame{position:absolute;margin:0 auto;min-width:256px;max-width:400px;width:100%;-moz-opacity:0;opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out}@media (min-height:33.875em){.um .picker__frame{overflow:visible;top:auto;bottom:-100%;max-height:80%}}@media (min-height:40.125em){.um .picker__frame{margin-bottom:15%!important}}.um .picker__wrap{display:table;width:100%;height:100%}@media (min-height:33.875em){.um .picker__wrap{display:block}}.um .picker__box{display:table-cell;vertical-align:middle}@media (min-height:33.875em){.um .picker__box{display:block;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}}@media (min-height:40.125em){.um .picker__box{border-bottom-width:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}}.um .picker--opened .picker__holder{top:0;background:0 0;zoom:1;background:rgba(0,0,0,.7);-webkit-transition:background .15s ease-out;-moz-transition:background .15s ease-out;transition:background .15s ease-out}.um .picker--opened .picker__frame{top:0;-moz-opacity:1;opacity:1}@media (min-height:33.875em){.um .picker--opened .picker__frame{top:auto;bottom:0}}
.um .picker__header{text-align:center;position:relative;margin-top:.75em;border-radius:2px 2px 0 0;padding:15px 0;font-size:18px}.um .picker__month,.um .picker__year{display:inline-block;margin-left:10px;margin-right:10px}.um .picker__select--month,.um .picker__select--year{margin-left:.25em;margin-right:.25em;font-size:16px;color:#999;background:#fff!important;outline:0!important;border:0!important}@media (min-width:24.5em){.um .picker__select--month,.um .picker__select--year{margin-top:-.5em}}.um .picker__select--month{width:35%}.um .picker__select--year{width:22.5%}.um .picker__nav--next,.um .picker__nav--prev{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box!important;top:8px;color:#fff}.um-popup .picker__nav--next,.um-popup .picker__nav--prev{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box!important;top:8px;color:#fff}.um .picker__nav--prev{left:0;padding-right:1.25em}.um-popup .picker__nav--prev{left:0;padding-right:1.25em}@media (min-width:24.5em){.um .picker__nav--prev{padding-right:1.5em}.um-popup .picker__nav--prev{padding-right:1.5em}}.um .picker__nav--next{right:0;padding-left:1.25em}.um-popup .picker__nav--next{right:0;padding-left:1.25em}@media (min-width:24.5em){.um .picker__nav--next{padding-left:1.5em}.um-popup .picker__nav--next{padding-left:1.5em}}.um .picker__nav--next:before,.um .picker__nav--prev:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:.5em solid #fff;width:0;height:0;display:block;margin:0 auto}.um-popup .picker__nav--next:before,.um-popup .picker__nav--prev:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:.5em solid #fff;width:0;height:0;display:block;margin:0 auto}.um .picker__nav--next:before{border-right:0;border-left:.5em solid #fff}.um-popup .picker__nav--next:before{border-right:0;border-left:.5em solid #fff}.um .picker__nav--next:hover,.um .picker__nav--prev:hover{cursor:pointer;color:#fff}.um-popup .picker__nav--next:hover,.um-popup .picker__nav--prev:hover{cursor:pointer;color:#fff}.um .picker__nav--disabled,.um .picker__nav--disabled:before,.um .picker__nav--disabled:before:hover,.um .picker__nav--disabled:hover{cursor:default;background:0 0}.um-popup .picker__nav--disabled,.um-popup .picker__nav--disabled:before,.um-popup .picker__nav--disabled:before:hover,.um-popup .picker__nav--disabled:hover{cursor:default;background:0 0}.um .picker__table{text-align:center;border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:inherit;width:100%;margin-top:5px;border:none;margin-bottom:0}.um .picker__table td{margin:0;padding:0 10px;text-align:center;border:0}.um .picker__weekday{width:14.285714286%;color:#fff;text-align:center;padding:5px 0!important}.um .picker__day{padding:10px 0;line-height:1em!important}.um .picker__day--today{position:relative}.um .picker__day--outfocus{opacity:.75}.um .picker__day--infocus:hover,.um .picker__day--outfocus:hover{border-radius:2px;cursor:pointer}.um .picker--focused .picker__day--highlighted,.um .picker__day--highlighted:hover{border-radius:2px}.um .picker__day--disabled,.um .picker__day--disabled:hover{cursor:default;background:0 0!important;opacity:.3}.um .picker__footer{text-align:center;height:50px!important;line-height:50px!important;margin-top:5px;border-radius:0 0 2px 2px}.um .picker__button--clear,.um .picker__button--today{margin:0!important;width:50%;display:inline-block;background:0 0!important;box-shadow:none!important;border:0!important;outline:0!important;box-sizing:border-box!important}.um .picker__button--clear:focus,.um .picker__button--clear:hover,.um .picker__button--today:focus,.um .picker__button--today:hover{cursor:pointer}
.um .picker__list{list-style:none;list-style:none!important;padding:5px!important;margin:0!important}.um .picker__list-item{position:relative;border-radius:2px;display:inline-block;width:25%;text-align:center;box-sizing:border-box;padding:6px 0!important;margin:5px 0!important}.um .picker__list-item:hover{cursor:pointer;z-index:10}.um .picker__list-item--highlighted{z-index:10}.um .picker--focused .picker__list-item--highlighted,.um .picker__list-item--highlighted:hover{cursor:pointer;font-weight:700}.um .picker--focused .picker__list-item--selected,.um .picker__list-item--selected,.um .picker__list-item--selected:hover{z-index:10}.um .picker--focused .picker__list-item--disabled,.um .picker__list-item--disabled,.um .picker__list-item--disabled:hover{color:#a9e792;cursor:default;background:0 0;z-index:auto}.um .picker--time .picker__button--clear{width:100%;display:inline-block;background:0 0;box-shadow:none!important;border:0!important;outline:0!important;background:0 0!important;border-radius:0 0 2px 2px;color:#fff!important}.um .picker--time .picker__button--clear:focus,.um .picker--time .picker__button--clear:hover{cursor:pointer}.um .picker--time .picker__frame{min-width:256px;max-width:400px}.um .picker--time .picker__box{font-size:15px;padding:0;border-radius:2px!important}.um .picker__box ul li[role=presentation]{margin:10px 0 0 0}@media (min-height:40.125em){.um .picker--time .picker__frame{margin-bottom:10%!important}}
[class*=" um-icon-"]:before,[class^=um-icon-]:before{font-family:Ionicons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um-icon-alert:before{content:"\f101"}.um-icon-alert-circled:before{content:"\f100"}.um-icon-android-add:before{content:"\f2c7"}.um-icon-android-add-circle:before{content:"\f359"}.um-icon-android-alarm-clock:before{content:"\f35a"}.um-icon-android-alert:before{content:"\f35b"}.um-icon-android-apps:before{content:"\f35c"}.um-icon-android-archive:before{content:"\f2c9"}.um-icon-android-arrow-back:before{content:"\f2ca"}.um-icon-android-arrow-down:before{content:"\f35d"}.um-icon-android-arrow-dropdown:before{content:"\f35f"}.um-icon-android-arrow-dropdown-circle:before{content:"\f35e"}.um-icon-android-arrow-dropleft:before{content:"\f361"}.um-icon-android-arrow-dropleft-circle:before{content:"\f360"}.um-icon-android-arrow-dropright:before{content:"\f363"}.um-icon-android-arrow-dropright-circle:before{content:"\f362"}.um-icon-android-arrow-dropup:before{content:"\f365"}.um-icon-android-arrow-dropup-circle:before{content:"\f364"}.um-icon-android-arrow-forward:before{content:"\f30f"}.um-icon-android-arrow-up:before{content:"\f366"}.um-icon-android-attach:before{content:"\f367"}.um-icon-android-bar:before{content:"\f368"}.um-icon-android-bicycle:before{content:"\f369"}.um-icon-android-boat:before{content:"\f36a"}.um-icon-android-bookmark:before{content:"\f36b"}.um-icon-android-bulb:before{content:"\f36c"}.um-icon-android-bus:before{content:"\f36d"}.um-icon-android-calendar:before{content:"\f2d1"}.um-icon-android-call:before{content:"\f2d2"}.um-icon-android-camera:before{content:"\f2d3"}.um-icon-android-cancel:before{content:"\f36e"}.um-icon-android-car:before{content:"\f36f"}.um-icon-android-cart:before{content:"\f370"}.um-icon-android-chat:before{content:"\f2d4"}.um-icon-android-checkbox:before{content:"\f374"}.um-icon-android-checkbox-blank:before{content:"\f371"}.um-icon-android-checkbox-outline:before{content:"\f373"}.um-icon-android-checkbox-outline-blank:before{content:"\f372"}.um-icon-android-checkmark-circle:before{content:"\f375"}.um-icon-android-clipboard:before{content:"\f376"}.um-icon-android-close:before{content:"\f2d7"}.um-icon-android-cloud:before{content:"\f37a"}.um-icon-android-cloud-circle:before{content:"\f377"}.um-icon-android-cloud-done:before{content:"\f378"}.um-icon-android-cloud-outline:before{content:"\f379"}.um-icon-android-color-palette:before{content:"\f37b"}.um-icon-android-compass:before{content:"\f37c"}.um-icon-android-contact:before{content:"\f2d8"}.um-icon-android-contacts:before{content:"\f2d9"}.um-icon-android-contract:before{content:"\f37d"}.um-icon-android-create:before{content:"\f37e"}.um-icon-android-delete:before{content:"\f37f"}.um-icon-android-desktop:before{content:"\f380"}.um-icon-android-document:before{content:"\f381"}.um-icon-android-done:before{content:"\f383"}.um-icon-android-done-all:before{content:"\f382"}.um-icon-android-download:before{content:"\f2dd"}.um-icon-android-drafts:before{content:"\f384"}.um-icon-android-exit:before{content:"\f385"}.um-icon-android-expand:before{content:"\f386"}.um-icon-android-favorite:before{content:"\f388"}.um-icon-android-favorite-outline:before{content:"\f387"}.um-icon-android-film:before{content:"\f389"}.um-icon-android-folder:before{content:"\f2e0"}.um-icon-android-folder-open:before{content:"\f38a"}.um-icon-android-funnel:before{content:"\f38b"}.um-icon-android-globe:before{content:"\f38c"}.um-icon-android-hand:before{content:"\f2e3"}.um-icon-android-hangout:before{content:"\f38d"}.um-icon-android-happy:before{content:"\f38e"}.um-icon-android-home:before{content:"\f38f"}.um-icon-android-image:before{content:"\f2e4"}.um-icon-android-laptop:before{content:"\f390"}.um-icon-android-list:before{content:"\f391"}.um-icon-android-locate:before{content:"\f2e9"}.um-icon-android-lock:before{content:"\f392"}.um-icon-android-mail:before{content:"\f2eb"}.um-icon-android-map:before{content:"\f393"}.um-icon-android-menu:before{content:"\f394"}.um-icon-android-microphone:before{content:"\f2ec"}.um-icon-android-microphone-off:before{content:"\f395"}.um-icon-android-more-horizontal:before{content:"\f396"}.um-icon-android-more-vertical:before{content:"\f397"}.um-icon-android-navigate:before{content:"\f398"}.um-icon-android-notifications:before{content:"\f39b"}.um-icon-android-notifications-none:before{content:"\f399"}.um-icon-android-notifications-off:before{content:"\f39a"}.um-icon-android-open:before{content:"\f39c"}.um-icon-android-options:before{content:"\f39d"}.um-icon-android-people:before{content:"\f39e"}.um-icon-android-person:before{content:"\f3a0"}.um-icon-android-person-add:before{content:"\f39f"}.um-icon-android-phone-landscape:before{content:"\f3a1"}.um-icon-android-phone-portrait:before{content:"\f3a2"}.um-icon-android-pin:before{content:"\f3a3"}.um-icon-android-plane:before{content:"\f3a4"}.um-icon-android-playstore:before{content:"\f2f0"}.um-icon-android-print:before{content:"\f3a5"}.um-icon-android-radio-button-off:before{content:"\f3a6"}.um-icon-android-radio-button-on:before{content:"\f3a7"}.um-icon-android-refresh:before{content:"\f3a8"}.um-icon-android-remove:before{content:"\f2f4"}.um-icon-android-remove-circle:before{content:"\f3a9"}.um-icon-android-restaurant:before{content:"\f3aa"}.um-icon-android-sad:before{content:"\f3ab"}.um-icon-android-search:before{content:"\f2f5"}.um-icon-android-send:before{content:"\f2f6"}.um-icon-android-settings:before{content:"\f2f7"}.um-icon-android-share:before{content:"\f2f8"}.um-icon-android-share-alt:before{content:"\f3ac"}.um-icon-android-star:before{content:"\f2fc"}.um-icon-android-star-half:before{content:"\f3ad"}.um-icon-android-star-outline:before{content:"\f3ae"}.um-icon-android-stopwatch:before{content:"\f2fd"}.um-icon-android-subway:before{content:"\f3af"}.um-icon-android-sunny:before{content:"\f3b0"}.um-icon-android-sync:before{content:"\f3b1"}.um-icon-android-textsms:before{content:"\f3b2"}.um-icon-android-time:before{content:"\f3b3"}.um-icon-android-train:before{content:"\f3b4"}.um-icon-android-unlock:before{content:"\f3b5"}.um-icon-android-upload:before{content:"\f3b6"}.um-icon-android-volume-down:before{content:"\f3b7"}.um-icon-android-volume-mute:before{content:"\f3b8"}.um-icon-android-volume-off:before{content:"\f3b9"}.um-icon-android-volume-up:before{content:"\f3ba"}.um-icon-android-walk:before{content:"\f3bb"}.um-icon-android-warning:before{content:"\f3bc"}.um-icon-android-watch:before{content:"\f3bd"}.um-icon-android-wifi:before{content:"\f305"}.um-icon-aperture:before{content:"\f313"}.um-icon-archive:before{content:"\f102"}.um-icon-arrow-down-a:before{content:"\f103"}.um-icon-arrow-down-b:before{content:"\f104"}.um-icon-arrow-down-c:before{content:"\f105"}.um-icon-arrow-expand:before{content:"\f25e"}.um-icon-arrow-graph-down-left:before{content:"\f25f"}.um-icon-arrow-graph-down-right:before{content:"\f260"}.um-icon-arrow-graph-up-left:before{content:"\f261"}.um-icon-arrow-graph-up-right:before{content:"\f262"}.um-icon-arrow-left-a:before{content:"\f106"}.um-icon-arrow-left-b:before{content:"\f107"}.um-icon-arrow-left-c:before{content:"\f108"}.um-icon-arrow-move:before{content:"\f263"}.um-icon-arrow-resize:before{content:"\f264"}.um-icon-arrow-return-left:before{content:"\f265"}.um-icon-arrow-return-right:before{content:"\f266"}.um-icon-arrow-right-a:before{content:"\f109"}.um-icon-arrow-right-b:before{content:"\f10a"}.um-icon-arrow-right-c:before{content:"\f10b"}.um-icon-arrow-shrink:before{content:"\f267"}.um-icon-arrow-swap:before{content:"\f268"}.um-icon-arrow-up-a:before{content:"\f10c"}.um-icon-arrow-up-b:before{content:"\f10d"}.um-icon-arrow-up-c:before{content:"\f10e"}.um-icon-asterisk:before{content:"\f314"}.um-icon-at:before{content:"\f10f"}.um-icon-backspace:before{content:"\f3bf"}.um-icon-backspace-outline:before{content:"\f3be"}.um-icon-bag:before{content:"\f110"}.um-icon-battery-charging:before{content:"\f111"}.um-icon-battery-empty:before{content:"\f112"}.um-icon-battery-full:before{content:"\f113"}.um-icon-battery-half:before{content:"\f114"}.um-icon-battery-low:before{content:"\f115"}.um-icon-beaker:before{content:"\f269"}.um-icon-beer:before{content:"\f26a"}.um-icon-bluetooth:before{content:"\f116"}.um-icon-bonfire:before{content:"\f315"}.um-icon-bookmark:before{content:"\f26b"}.um-icon-bowtie:before{content:"\f3c0"}.um-icon-briefcase:before{content:"\f26c"}.um-icon-bug:before{content:"\f2be"}.um-icon-calculator:before{content:"\f26d"}.um-icon-calendar:before{content:"\f117"}.um-icon-camera:before{content:"\f118"}.um-icon-card:before{content:"\f119"}.um-icon-cash:before{content:"\f316"}.um-icon-chatbox:before{content:"\f11b"}.um-icon-chatbox-working:before{content:"\f11a"}.um-icon-chatboxes:before{content:"\f11c"}.um-icon-chatbubble:before{content:"\f11e"}.um-icon-chatbubble-working:before{content:"\f11d"}.um-icon-chatbubbles:before{content:"\f11f"}.um-icon-checkmark:before{content:"\f122"}.um-icon-checkmark-circled:before{content:"\f120"}.um-icon-checkmark-round:before{content:"\f121"}.um-icon-chevron-down:before{content:"\f123"}.um-icon-chevron-left:before{content:"\f124"}.um-icon-chevron-right:before{content:"\f125"}.um-icon-chevron-up:before{content:"\f126"}.um-icon-clipboard:before{content:"\f127"}.um-icon-clock:before{content:"\f26e"}.um-icon-close:before{content:"\f12a"}.um-icon-close-circled:before{content:"\f128"}.um-icon-close-round:before{content:"\f129"}.um-icon-closed-captioning:before{content:"\f317"}.um-icon-cloud:before{content:"\f12b"}.um-icon-code:before{content:"\f271"}.um-icon-code-download:before{content:"\f26f"}.um-icon-code-working:before{content:"\f270"}.um-icon-coffee:before{content:"\f272"}.um-icon-compass:before{content:"\f273"}.um-icon-compose:before{content:"\f12c"}.um-icon-connection-bars:before{content:"\f274"}.um-icon-contrast:before{content:"\f275"}.um-icon-crop:before{content:"\f3c1"}.um-icon-cube:before{content:"\f318"}.um-icon-disc:before{content:"\f12d"}.um-icon-document:before{content:"\f12f"}.um-icon-document-text:before{content:"\f12e"}.um-icon-drag:before{content:"\f130"}.um-icon-earth:before{content:"\f276"}.um-icon-easel:before{content:"\f3c2"}.um-icon-edit:before{content:"\f2bf"}.um-icon-egg:before{content:"\f277"}.um-icon-eject:before{content:"\f131"}.um-icon-email:before{content:"\f132"}.um-icon-email-unread:before{content:"\f3c3"}.um-icon-erlenmeyer-flask:before{content:"\f3c5"}.um-icon-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.um-icon-eye:before{content:"\f133"}.um-icon-eye-disabled:before{content:"\f306"}.um-icon-female:before{content:"\f278"}.um-icon-filing:before{content:"\f134"}.um-icon-film-marker:before{content:"\f135"}.um-icon-fireball:before{content:"\f319"}.um-icon-flag:before{content:"\f279"}.um-icon-flame:before{content:"\f31a"}.um-icon-flash:before{content:"\f137"}.um-icon-flash-off:before{content:"\f136"}.um-icon-folder:before{content:"\f139"}.um-icon-fork:before{content:"\f27a"}.um-icon-fork-repo:before{content:"\f2c0"}.um-icon-forward:before{content:"\f13a"}.um-icon-funnel:before{content:"\f31b"}.um-icon-gear-a:before{content:"\f13d"}.um-icon-gear-b:before{content:"\f13e"}.um-icon-grid:before{content:"\f13f"}.um-icon-hammer:before{content:"\f27b"}.um-icon-happy:before{content:"\f31c"}.um-icon-happy-outline:before{content:"\f3c6"}.um-icon-headphone:before{content:"\f140"}.um-icon-heart:before{content:"\f141"}.um-icon-heart-broken:before{content:"\f31d"}.um-icon-help:before{content:"\f143"}.um-icon-help-buoy:before{content:"\f27c"}.um-icon-help-circled:before{content:"\f142"}.um-icon-home:before{content:"\f144"}.um-icon-icecream:before{content:"\f27d"}.um-icon-image:before{content:"\f147"}.um-icon-images:before{content:"\f148"}.um-icon-information:before{content:"\f14a"}.um-icon-information-circled:before{content:"\f149"}.um-icon-ionic:before{content:"\f14b"}.um-icon-ios-alarm:before{content:"\f3c8"}.um-icon-ios-alarm-outline:before{content:"\f3c7"}.um-icon-ios-albums:before{content:"\f3ca"}.um-icon-ios-albums-outline:before{content:"\f3c9"}.um-icon-ios-americanfootball:before{content:"\f3cc"}.um-icon-ios-americanfootball-outline:before{content:"\f3cb"}.um-icon-ios-analytics:before{content:"\f3ce"}.um-icon-ios-analytics-outline:before{content:"\f3cd"}.um-icon-ios-arrow-back:before{content:"\f3cf"}.um-icon-ios-arrow-down:before{content:"\f3d0"}.um-icon-ios-arrow-forward:before{content:"\f3d1"}.um-icon-ios-arrow-left:before{content:"\f3d2"}.um-icon-ios-arrow-right:before{content:"\f3d3"}.um-icon-ios-arrow-thin-down:before{content:"\f3d4"}.um-icon-ios-arrow-thin-left:before{content:"\f3d5"}.um-icon-ios-arrow-thin-right:before{content:"\f3d6"}.um-icon-ios-arrow-thin-up:before{content:"\f3d7"}.um-icon-ios-arrow-up:before{content:"\f3d8"}.um-icon-ios-at:before{content:"\f3da"}.um-icon-ios-at-outline:before{content:"\f3d9"}.um-icon-ios-barcode:before{content:"\f3dc"}.um-icon-ios-barcode-outline:before{content:"\f3db"}.um-icon-ios-baseball:before{content:"\f3de"}.um-icon-ios-baseball-outline:before{content:"\f3dd"}.um-icon-ios-basketball:before{content:"\f3e0"}.um-icon-ios-basketball-outline:before{content:"\f3df"}.um-icon-ios-bell:before{content:"\f3e2"}.um-icon-ios-bell-outline:before{content:"\f3e1"}.um-icon-ios-body:before{content:"\f3e4"}.um-icon-ios-body-outline:before{content:"\f3e3"}.um-icon-ios-bolt:before{content:"\f3e6"}.um-icon-ios-bolt-outline:before{content:"\f3e5"}.um-icon-ios-book:before{content:"\f3e8"}.um-icon-ios-book-outline:before{content:"\f3e7"}.um-icon-ios-bookmarks:before{content:"\f3ea"}.um-icon-ios-bookmarks-outline:before{content:"\f3e9"}.um-icon-ios-box:before{content:"\f3ec"}.um-icon-ios-box-outline:before{content:"\f3eb"}.um-icon-ios-briefcase:before{content:"\f3ee"}.um-icon-ios-briefcase-outline:before{content:"\f3ed"}.um-icon-ios-browsers:before{content:"\f3f0"}.um-icon-ios-browsers-outline:before{content:"\f3ef"}.um-icon-ios-calculator:before{content:"\f3f2"}.um-icon-ios-calculator-outline:before{content:"\f3f1"}.um-icon-ios-calendar:before{content:"\f3f4"}.um-icon-ios-calendar-outline:before{content:"\f3f3"}.um-icon-ios-camera:before{content:"\f3f6"}.um-icon-ios-camera-outline:before{content:"\f3f5"}.um-icon-ios-cart:before{content:"\f3f8"}.um-icon-ios-cart-outline:before{content:"\f3f7"}.um-icon-ios-chatboxes:before{content:"\f3fa"}.um-icon-ios-chatboxes-outline:before{content:"\f3f9"}.um-icon-ios-chatbubble:before{content:"\f3fc"}.um-icon-ios-chatbubble-outline:before{content:"\f3fb"}.um-icon-ios-checkmark:before{content:"\f3ff"}.um-icon-ios-checkmark-empty:before{content:"\f3fd"}.um-icon-ios-checkmark-outline:before{content:"\f3fe"}.um-icon-ios-circle-filled:before{content:"\f400"}.um-icon-ios-circle-outline:before{content:"\f401"}.um-icon-ios-clock:before{content:"\f403"}.um-icon-ios-clock-outline:before{content:"\f402"}.um-icon-ios-close:before{content:"\f406"}.um-icon-ios-close-empty:before{content:"\f404"}.um-icon-ios-close-outline:before{content:"\f405"}.um-icon-ios-cloud:before{content:"\f40c"}.um-icon-ios-cloud-download:before{content:"\f408"}.um-icon-ios-cloud-download-outline:before{content:"\f407"}.um-icon-ios-cloud-outline:before{content:"\f409"}.um-icon-ios-cloud-upload:before{content:"\f40b"}.um-icon-ios-cloud-upload-outline:before{content:"\f40a"}.um-icon-ios-cloudy:before{content:"\f410"}.um-icon-ios-cloudy-night:before{content:"\f40e"}.um-icon-ios-cloudy-night-outline:before{content:"\f40d"}.um-icon-ios-cloudy-outline:before{content:"\f40f"}.um-icon-ios-cog:before{content:"\f412"}.um-icon-ios-cog-outline:before{content:"\f411"}.um-icon-ios-color-filter:before{content:"\f414"}.um-icon-ios-color-filter-outline:before{content:"\f413"}.um-icon-ios-color-wand:before{content:"\f416"}.um-icon-ios-color-wand-outline:before{content:"\f415"}.um-icon-ios-compose:before{content:"\f418"}.um-icon-ios-compose-outline:before{content:"\f417"}.um-icon-ios-contact:before{content:"\f41a"}.um-icon-ios-contact-outline:before{content:"\f419"}.um-icon-ios-copy:before{content:"\f41c"}.um-icon-ios-copy-outline:before{content:"\f41b"}.um-icon-ios-crop:before{content:"\f41e"}.um-icon-ios-crop-strong:before{content:"\f41d"}.um-icon-ios-download:before{content:"\f420"}.um-icon-ios-download-outline:before{content:"\f41f"}.um-icon-ios-drag:before{content:"\f421"}.um-icon-ios-email:before{content:"\f423"}.um-icon-ios-email-outline:before{content:"\f422"}.um-icon-ios-eye:before{content:"\f425"}.um-icon-ios-eye-outline:before{content:"\f424"}.um-icon-ios-fastforward:before{content:"\f427"}.um-icon-ios-fastforward-outline:before{content:"\f426"}.um-icon-ios-filing:before{content:"\f429"}.um-icon-ios-filing-outline:before{content:"\f428"}.um-icon-ios-film:before{content:"\f42b"}.um-icon-ios-film-outline:before{content:"\f42a"}.um-icon-ios-flag:before{content:"\f42d"}.um-icon-ios-flag-outline:before{content:"\f42c"}.um-icon-ios-flame:before{content:"\f42f"}.um-icon-ios-flame-outline:before{content:"\f42e"}.um-icon-ios-flask:before{content:"\f431"}.um-icon-ios-flask-outline:before{content:"\f430"}.um-icon-ios-flower:before{content:"\f433"}.um-icon-ios-flower-outline:before{content:"\f432"}.um-icon-ios-folder:before{content:"\f435"}.um-icon-ios-folder-outline:before{content:"\f434"}.um-icon-ios-football:before{content:"\f437"}.um-icon-ios-football-outline:before{content:"\f436"}.um-icon-ios-game-controller-a:before{content:"\f439"}.um-icon-ios-game-controller-a-outline:before{content:"\f438"}.um-icon-ios-game-controller-b:before{content:"\f43b"}.um-icon-ios-game-controller-b-outline:before{content:"\f43a"}.um-icon-ios-gear:before{content:"\f43d"}.um-icon-ios-gear-outline:before{content:"\f43c"}.um-icon-ios-glasses:before{content:"\f43f"}.um-icon-ios-glasses-outline:before{content:"\f43e"}.um-icon-ios-grid-view:before{content:"\f441"}.um-icon-ios-grid-view-outline:before{content:"\f440"}.um-icon-ios-heart:before{content:"\f443"}.um-icon-ios-heart-outline:before{content:"\f442"}.um-icon-ios-help:before{content:"\f446"}.um-icon-ios-help-empty:before{content:"\f444"}.um-icon-ios-help-outline:before{content:"\f445"}.um-icon-ios-home:before{content:"\f448"}.um-icon-ios-home-outline:before{content:"\f447"}.um-icon-ios-infinite:before{content:"\f44a"}.um-icon-ios-infinite-outline:before{content:"\f449"}.um-icon-ios-information:before{content:"\f44d"}.um-icon-ios-information-empty:before{content:"\f44b"}.um-icon-ios-information-outline:before{content:"\f44c"}.um-icon-ios-ionic-outline:before{content:"\f44e"}.um-icon-ios-keypad:before{content:"\f450"}.um-icon-ios-keypad-outline:before{content:"\f44f"}.um-icon-ios-lightbulb:before{content:"\f452"}.um-icon-ios-lightbulb-outline:before{content:"\f451"}.um-icon-ios-list:before{content:"\f454"}.um-icon-ios-list-outline:before{content:"\f453"}.um-icon-ios-location:before{content:"\f456"}.um-icon-ios-location-outline:before{content:"\f455"}.um-icon-ios-locked:before{content:"\f458"}.um-icon-ios-locked-outline:before{content:"\f457"}.um-icon-ios-loop:before{content:"\f45a"}.um-icon-ios-loop-strong:before{content:"\f459"}.um-icon-ios-medical:before{content:"\f45c"}.um-icon-ios-medical-outline:before{content:"\f45b"}.um-icon-ios-medkit:before{content:"\f45e"}.um-icon-ios-medkit-outline:before{content:"\f45d"}.um-icon-ios-mic:before{content:"\f461"}.um-icon-ios-mic-off:before{content:"\f45f"}.um-icon-ios-mic-outline:before{content:"\f460"}.um-icon-ios-minus:before{content:"\f464"}.um-icon-ios-minus-empty:before{content:"\f462"}.um-icon-ios-minus-outline:before{content:"\f463"}.um-icon-ios-monitor:before{content:"\f466"}.um-icon-ios-monitor-outline:before{content:"\f465"}.um-icon-ios-moon:before{content:"\f468"}.um-icon-ios-moon-outline:before{content:"\f467"}.um-icon-ios-more:before{content:"\f46a"}.um-icon-ios-more-outline:before{content:"\f469"}.um-icon-ios-musical-note:before{content:"\f46b"}.um-icon-ios-musical-notes:before{content:"\f46c"}.um-icon-ios-navigate:before{content:"\f46e"}.um-icon-ios-navigate-outline:before{content:"\f46d"}.um-icon-ios-nutrition:before{content:"\f470"}.um-icon-ios-nutrition-outline:before{content:"\f46f"}.um-icon-ios-paper:before{content:"\f472"}.um-icon-ios-paper-outline:before{content:"\f471"}.um-icon-ios-paperplane:before{content:"\f474"}.um-icon-ios-paperplane-outline:before{content:"\f473"}.um-icon-ios-partlysunny:before{content:"\f476"}.um-icon-ios-partlysunny-outline:before{content:"\f475"}.um-icon-ios-pause:before{content:"\f478"}.um-icon-ios-pause-outline:before{content:"\f477"}.um-icon-ios-paw:before{content:"\f47a"}.um-icon-ios-paw-outline:before{content:"\f479"}.um-icon-ios-people:before{content:"\f47c"}.um-icon-ios-people-outline:before{content:"\f47b"}.um-icon-ios-person:before{content:"\f47e"}.um-icon-ios-person-outline:before{content:"\f47d"}.um-icon-ios-personadd:before{content:"\f480"}.um-icon-ios-personadd-outline:before{content:"\f47f"}.um-icon-ios-photos:before{content:"\f482"}.um-icon-ios-photos-outline:before{content:"\f481"}.um-icon-ios-pie:before{content:"\f484"}.um-icon-ios-pie-outline:before{content:"\f483"}.um-icon-ios-pint:before{content:"\f486"}.um-icon-ios-pint-outline:before{content:"\f485"}.um-icon-ios-play:before{content:"\f488"}.um-icon-ios-play-outline:before{content:"\f487"}.um-icon-ios-plus:before{content:"\f48b"}.um-icon-ios-plus-empty:before{content:"\f489"}.um-icon-ios-plus-outline:before{content:"\f48a"}.um-icon-ios-pricetag:before{content:"\f48d"}.um-icon-ios-pricetag-outline:before{content:"\f48c"}.um-icon-ios-pricetags:before{content:"\f48f"}.um-icon-ios-pricetags-outline:before{content:"\f48e"}.um-icon-ios-printer:before{content:"\f491"}.um-icon-ios-printer-outline:before{content:"\f490"}.um-icon-ios-pulse:before{content:"\f493"}.um-icon-ios-pulse-strong:before{content:"\f492"}.um-icon-ios-rainy:before{content:"\f495"}.um-icon-ios-rainy-outline:before{content:"\f494"}.um-icon-ios-recording:before{content:"\f497"}.um-icon-ios-recording-outline:before{content:"\f496"}.um-icon-ios-redo:before{content:"\f499"}.um-icon-ios-redo-outline:before{content:"\f498"}.um-icon-ios-refresh:before{content:"\f49c"}.um-icon-ios-refresh-empty:before{content:"\f49a"}.um-icon-ios-refresh-outline:before{content:"\f49b"}.um-icon-ios-reload:before{content:"\f49d"}.um-icon-ios-reverse-camera:before{content:"\f49f"}.um-icon-ios-reverse-camera-outline:before{content:"\f49e"}.um-icon-ios-rewind:before{content:"\f4a1"}.um-icon-ios-rewind-outline:before{content:"\f4a0"}.um-icon-ios-rose:before{content:"\f4a3"}.um-icon-ios-rose-outline:before{content:"\f4a2"}.um-icon-ios-search:before{content:"\f4a5"}.um-icon-ios-search-strong:before{content:"\f4a4"}.um-icon-ios-settings:before{content:"\f4a7"}.um-icon-ios-settings-strong:before{content:"\f4a6"}.um-icon-ios-shuffle:before{content:"\f4a9"}.um-icon-ios-shuffle-strong:before{content:"\f4a8"}.um-icon-ios-skipbackward:before{content:"\f4ab"}.um-icon-ios-skipbackward-outline:before{content:"\f4aa"}.um-icon-ios-skipforward:before{content:"\f4ad"}.um-icon-ios-skipforward-outline:before{content:"\f4ac"}.um-icon-ios-snowy:before{content:"\f4ae"}.um-icon-ios-speedometer:before{content:"\f4b0"}.um-icon-ios-speedometer-outline:before{content:"\f4af"}.um-icon-ios-star:before{content:"\f4b3"}.um-icon-ios-star-half:before{content:"\f4b1"}.um-icon-ios-star-outline:before{content:"\f4b2"}.um-icon-ios-stopwatch:before{content:"\f4b5"}.um-icon-ios-stopwatch-outline:before{content:"\f4b4"}.um-icon-ios-sunny:before{content:"\f4b7"}.um-icon-ios-sunny-outline:before{content:"\f4b6"}.um-icon-ios-telephone:before{content:"\f4b9"}.um-icon-ios-telephone-outline:before{content:"\f4b8"}.um-icon-ios-tennisball:before{content:"\f4bb"}.um-icon-ios-tennisball-outline:before{content:"\f4ba"}.um-icon-ios-thunderstorm:before{content:"\f4bd"}.um-icon-ios-thunderstorm-outline:before{content:"\f4bc"}.um-icon-ios-time:before{content:"\f4bf"}.um-icon-ios-time-outline:before{content:"\f4be"}.um-icon-ios-timer:before{content:"\f4c1"}.um-icon-ios-timer-outline:before{content:"\f4c0"}.um-icon-ios-toggle:before{content:"\f4c3"}.um-icon-ios-toggle-outline:before{content:"\f4c2"}.um-icon-ios-trash:before{content:"\f4c5"}.um-icon-ios-trash-outline:before{content:"\f4c4"}.um-icon-ios-undo:before{content:"\f4c7"}.um-icon-ios-undo-outline:before{content:"\f4c6"}.um-icon-ios-unlocked:before{content:"\f4c9"}.um-icon-ios-unlocked-outline:before{content:"\f4c8"}.um-icon-ios-upload:before{content:"\f4cb"}.um-icon-ios-upload-outline:before{content:"\f4ca"}.um-icon-ios-videocam:before{content:"\f4cd"}.um-icon-ios-videocam-outline:before{content:"\f4cc"}.um-icon-ios-volume-high:before{content:"\f4ce"}.um-icon-ios-volume-low:before{content:"\f4cf"}.um-icon-ios-wineglass:before{content:"\f4d1"}.um-icon-ios-wineglass-outline:before{content:"\f4d0"}.um-icon-ios-world:before{content:"\f4d3"}.um-icon-ios-world-outline:before{content:"\f4d2"}.um-icon-ipad:before{content:"\f1f9"}.um-icon-iphone:before{content:"\f1fa"}.um-icon-ipod:before{content:"\f1fb"}.um-icon-jet:before{content:"\f295"}.um-icon-key:before{content:"\f296"}.um-icon-knife:before{content:"\f297"}.um-icon-laptop:before{content:"\f1fc"}.um-icon-leaf:before{content:"\f1fd"}.um-icon-levels:before{content:"\f298"}.um-icon-lightbulb:before{content:"\f299"}.um-icon-link:before{content:"\f1fe"}.um-icon-load-a:before{content:"\f29a"}.um-icon-load-b:before{content:"\f29b"}.um-icon-load-c:before{content:"\f29c"}.um-icon-load-d:before{content:"\f29d"}.um-icon-location:before{content:"\f1ff"}.um-icon-lock-combination:before{content:"\f4d4"}.um-icon-locked:before{content:"\f200"}.um-icon-log-in:before{content:"\f29e"}.um-icon-log-out:before{content:"\f29f"}.um-icon-loop:before{content:"\f201"}.um-icon-magnet:before{content:"\f2a0"}.um-icon-male:before{content:"\f2a1"}.um-icon-man:before{content:"\f202"}.um-icon-map:before{content:"\f203"}.um-icon-medkit:before{content:"\f2a2"}.um-icon-merge:before{content:"\f33f"}.um-icon-mic-a:before{content:"\f204"}.um-icon-mic-b:before{content:"\f205"}.um-icon-mic-c:before{content:"\f206"}.um-icon-minus:before{content:"\f209"}.um-icon-minus-circled:before{content:"\f207"}.um-icon-minus-round:before{content:"\f208"}.um-icon-model-s:before{content:"\f2c1"}.um-icon-monitor:before{content:"\f20a"}.um-icon-more:before{content:"\f20b"}.um-icon-mouse:before{content:"\f340"}.um-icon-music-note:before{content:"\f20c"}.um-icon-navicon:before{content:"\f20e"}.um-icon-navicon-round:before{content:"\f20d"}.um-icon-navigate:before{content:"\f2a3"}.um-icon-network:before{content:"\f341"}.um-icon-no-smoking:before{content:"\f2c2"}.um-icon-nuclear:before{content:"\f2a4"}.um-icon-outlet:before{content:"\f342"}.um-icon-paintbrush:before{content:"\f4d5"}.um-icon-paintbucket:before{content:"\f4d6"}.um-icon-paper-airplane:before{content:"\f2c3"}.um-icon-paperclip:before{content:"\f20f"}.um-icon-pause:before{content:"\f210"}.um-icon-person:before{content:"\f213"}.um-icon-person-add:before{content:"\f211"}.um-icon-person-stalker:before{content:"\f212"}.um-icon-pie-graph:before{content:"\f2a5"}.um-icon-pin:before{content:"\f2a6"}.um-icon-pinpoint:before{content:"\f2a7"}.um-icon-pizza:before{content:"\f2a8"}.um-icon-plane:before{content:"\f214"}.um-icon-planet:before{content:"\f343"}.um-icon-play:before{content:"\f215"}.um-icon-playstation:before{content:"\f30a"}.um-icon-plus:before{content:"\f218"}.um-icon-plus-circled:before{content:"\f216"}.um-icon-plus-round:before{content:"\f217"}.um-icon-podium:before{content:"\f344"}.um-icon-pound:before{content:"\f219"}.um-icon-power:before{content:"\f2a9"}.um-icon-pricetag:before{content:"\f2aa"}.um-icon-pricetags:before{content:"\f2ab"}.um-icon-printer:before{content:"\f21a"}.um-icon-pull-request:before{content:"\f345"}.um-icon-qr-scanner:before{content:"\f346"}.um-icon-quote:before{content:"\f347"}.um-icon-radio-waves:before{content:"\f2ac"}.um-icon-record:before{content:"\f21b"}.um-icon-refresh:before{content:"\f21c"}.um-icon-reply:before{content:"\f21e"}.um-icon-reply-all:before{content:"\f21d"}.um-icon-ribbon-a:before{content:"\f348"}.um-icon-ribbon-b:before{content:"\f349"}.um-icon-sad:before{content:"\f34a"}.um-icon-sad-outline:before{content:"\f4d7"}.um-icon-scissors:before{content:"\f34b"}.um-icon-search:before{content:"\f21f"}.um-icon-settings:before{content:"\f2ad"}.um-icon-share:before{content:"\f220"}.um-icon-shuffle:before{content:"\f221"}.um-icon-skip-backward:before{content:"\f222"}.um-icon-skip-forward:before{content:"\f223"}.um-icon-social-android:before{content:"\f225"}.um-icon-social-android-outline:before{content:"\f224"}.um-icon-social-angular:before{content:"\f4d9"}.um-icon-social-angular-outline:before{content:"\f4d8"}.um-icon-social-apple:before{content:"\f227"}.um-icon-social-apple-outline:before{content:"\f226"}.um-icon-social-bitcoin:before{content:"\f2af"}.um-icon-social-bitcoin-outline:before{content:"\f2ae"}.um-icon-social-buffer:before{content:"\f229"}.um-icon-social-buffer-outline:before{content:"\f228"}.um-icon-social-chrome:before{content:"\f4db"}.um-icon-social-chrome-outline:before{content:"\f4da"}.um-icon-social-codepen:before{content:"\f4dd"}.um-icon-social-codepen-outline:before{content:"\f4dc"}.um-icon-social-css3:before{content:"\f4df"}.um-icon-social-css3-outline:before{content:"\f4de"}.um-icon-social-designernews:before{content:"\f22b"}.um-icon-social-designernews-outline:before{content:"\f22a"}.um-icon-social-dribbble:before{content:"\f22d"}.um-icon-social-dribbble-outline:before{content:"\f22c"}.um-icon-social-dropbox:before{content:"\f22f"}.um-icon-social-dropbox-outline:before{content:"\f22e"}.um-icon-social-euro:before{content:"\f4e1"}.um-icon-social-euro-outline:before{content:"\f4e0"}.um-icon-social-facebook:before{content:"\f231"}.um-icon-social-facebook-outline:before{content:"\f230"}.um-icon-social-foursquare:before{content:"\f34d"}.um-icon-social-foursquare-outline:before{content:"\f34c"}.um-icon-social-freebsd-devil:before{content:"\f2c4"}.um-icon-social-github:before{content:"\f233"}.um-icon-social-github-outline:before{content:"\f232"}.um-icon-social-google:before{content:"\f34f"}.um-icon-social-google-outline:before{content:"\f34e"}.um-icon-social-googleplus:before{content:"\f235"}.um-icon-social-googleplus-outline:before{content:"\f234"}.um-icon-social-hackernews:before{content:"\f237"}.um-icon-social-hackernews-outline:before{content:"\f236"}.um-icon-social-html5:before{content:"\f4e3"}.um-icon-social-html5-outline:before{content:"\f4e2"}.um-icon-social-instagram:before{content:"\f351"}.um-icon-social-instagram-outline:before{content:"\f350"}.um-icon-social-javascript:before{content:"\f4e5"}.um-icon-social-javascript-outline:before{content:"\f4e4"}.um-icon-social-linkedin:before{content:"\f239"}.um-icon-social-linkedin-outline:before{content:"\f238"}.um-icon-social-markdown:before{content:"\f4e6"}.um-icon-social-nodejs:before{content:"\f4e7"}.um-icon-social-octocat:before{content:"\f4e8"}.um-icon-social-pinterest:before{content:"\f2b1"}.um-icon-social-pinterest-outline:before{content:"\f2b0"}.um-icon-social-python:before{content:"\f4e9"}.um-icon-social-reddit:before{content:"\f23b"}.um-icon-social-reddit-outline:before{content:"\f23a"}.um-icon-social-rss:before{content:"\f23d"}.um-icon-social-rss-outline:before{content:"\f23c"}.um-icon-social-sass:before{content:"\f4ea"}.um-icon-social-skype:before{content:"\f23f"}.um-icon-social-skype-outline:before{content:"\f23e"}.um-icon-social-snapchat:before{content:"\f4ec"}.um-icon-social-snapchat-outline:before{content:"\f4eb"}.um-icon-social-tumblr:before{content:"\f241"}.um-icon-social-tumblr-outline:before{content:"\f240"}.um-icon-social-tux:before{content:"\f2c5"}.um-icon-social-twitch:before{content:"\f4ee"}.um-icon-social-twitch-outline:before{content:"\f4ed"}.um-icon-social-twitter:before{content:"\f243"}.um-icon-social-twitter-outline:before{content:"\f242"}.um-icon-social-usd:before{content:"\f353"}.um-icon-social-usd-outline:before{content:"\f352"}.um-icon-social-vimeo:before{content:"\f245"}.um-icon-social-vimeo-outline:before{content:"\f244"}.um-icon-social-whatsapp:before{content:"\f4f0"}.um-icon-social-whatsapp-outline:before{content:"\f4ef"}.um-icon-social-windows:before{content:"\f247"}.um-icon-social-windows-outline:before{content:"\f246"}.um-icon-social-wordpress:before{content:"\f249"}.um-icon-social-wordpress-outline:before{content:"\f248"}.um-icon-social-yahoo:before{content:"\f24b"}.um-icon-social-yahoo-outline:before{content:"\f24a"}.um-icon-social-yen:before{content:"\f4f2"}.um-icon-social-yen-outline:before{content:"\f4f1"}.um-icon-social-youtube:before{content:"\f24d"}.um-icon-social-youtube-outline:before{content:"\f24c"}.um-icon-soup-can:before{content:"\f4f4"}.um-icon-soup-can-outline:before{content:"\f4f3"}.um-icon-speakerphone:before{content:"\f2b2"}.um-icon-speedometer:before{content:"\f2b3"}.um-icon-spoon:before{content:"\f2b4"}.um-icon-star:before{content:"\f24e"}.um-icon-stats-bars:before{content:"\f2b5"}.um-icon-steam:before{content:"\f30b"}.um-icon-stop:before{content:"\f24f"}.um-icon-thermometer:before{content:"\f2b6"}.um-icon-thumbsdown:before{content:"\f250"}.um-icon-thumbsup:before{content:"\f251"}.um-icon-toggle:before{content:"\f355"}.um-icon-toggle-filled:before{content:"\f354"}.um-icon-transgender:before{content:"\f4f5"}.um-icon-trash-a:before{content:"\f252"}.um-icon-trash-b:before{content:"\f253"}.um-icon-trophy:before{content:"\f356"}.um-icon-tshirt:before{content:"\f4f7"}.um-icon-tshirt-outline:before{content:"\f4f6"}.um-icon-umbrella:before{content:"\f2b7"}.um-icon-university:before{content:"\f357"}.um-icon-unlocked:before{content:"\f254"}.um-icon-upload:before{content:"\f255"}.um-icon-usb:before{content:"\f2b8"}.um-icon-videocamera:before{content:"\f256"}.um-icon-volume-high:before{content:"\f257"}.um-icon-volume-low:before{content:"\f258"}.um-icon-volume-medium:before{content:"\f259"}.um-icon-volume-mute:before{content:"\f25a"}.um-icon-wand:before{content:"\f358"}.um-icon-waterdrop:before{content:"\f25b"}.um-icon-wifi:before{content:"\f25c"}.um-icon-wineglass:before{content:"\f2b9"}.um-icon-woman:before{content:"\f25d"}.um-icon-wrench:before{content:"\f2ba"}.um-icon-xbox:before{content:"\f30c"}
[class*=" um-faicon-"]:before,[class^=um-faicon-]:before{font-family:FontAwesome!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um-faicon-sticky-note:before{content:"\f249"}.um-faicon-glass:before{content:"\f000"}.um-faicon-music:before{content:"\f001"}.um-faicon-search:before{content:"\f002"}.um-faicon-envelope-o:before{content:"\f003"}.um-faicon-heart:before{content:"\f004"}.um-faicon-star:before{content:"\f005"}.um-faicon-star-o:before{content:"\f006"}.um-faicon-user:before{content:"\f007"}.um-faicon-film:before{content:"\f008"}.um-faicon-th-large:before{content:"\f009"}.um-faicon-th:before{content:"\f00a"}.um-faicon-th-list:before{content:"\f00b"}.um-faicon-check:before{content:"\f00c"}.um-faicon-close:before,.um-faicon-remove:before,.um-faicon-times:before{content:"\f00d"}.um-faicon-search-plus:before{content:"\f00e"}.um-faicon-search-minus:before{content:"\f010"}.um-faicon-power-off:before{content:"\f011"}.um-faicon-signal:before{content:"\f012"}.um-faicon-cog:before,.um-faicon-gear:before{content:"\f013"}.um-faicon-trash-o:before{content:"\f014"}.um-faicon-home:before{content:"\f015"}.um-faicon-file-o:before{content:"\f016"}.um-faicon-clock-o:before{content:"\f017"}.um-faicon-road:before{content:"\f018"}.um-faicon-download:before{content:"\f019"}.um-faicon-arrow-circle-o-down:before{content:"\f01a"}.um-faicon-arrow-circle-o-up:before{content:"\f01b"}.um-faicon-inbox:before{content:"\f01c"}.um-faicon-play-circle-o:before{content:"\f01d"}.um-faicon-repeat:before,.um-faicon-rotate-right:before{content:"\f01e"}.um-faicon-refresh:before{content:"\f021"}.um-faicon-list-alt:before{content:"\f022"}.um-faicon-lock:before{content:"\f023"}.um-faicon-flag:before{content:"\f024"}.um-faicon-headphones:before{content:"\f025"}.um-faicon-volume-off:before{content:"\f026"}.um-faicon-volume-down:before{content:"\f027"}.um-faicon-volume-up:before{content:"\f028"}.um-faicon-qrcode:before{content:"\f029"}.um-faicon-barcode:before{content:"\f02a"}.um-faicon-tag:before{content:"\f02b"}.um-faicon-tags:before{content:"\f02c"}.um-faicon-book:before{content:"\f02d"}.um-faicon-bookmark:before{content:"\f02e"}.um-faicon-print:before{content:"\f02f"}.um-faicon-camera:before{content:"\f030"}.um-faicon-font:before{content:"\f031"}.um-faicon-bold:before{content:"\f032"}.um-faicon-italic:before{content:"\f033"}.um-faicon-text-height:before{content:"\f034"}.um-faicon-text-width:before{content:"\f035"}.um-faicon-align-left:before{content:"\f036"}.um-faicon-align-center:before{content:"\f037"}.um-faicon-align-right:before{content:"\f038"}.um-faicon-align-justify:before{content:"\f039"}.um-faicon-list:before{content:"\f03a"}.um-faicon-dedent:before,.um-faicon-outdent:before{content:"\f03b"}.um-faicon-indent:before{content:"\f03c"}.um-faicon-video-camera:before{content:"\f03d"}.um-faicon-image:before,.um-faicon-photo:before,.um-faicon-picture-o:before{content:"\f03e"}.um-faicon-pencil:before{content:"\f040"}.um-faicon-map-marker:before{content:"\f041"}.um-faicon-adjust:before{content:"\f042"}.um-faicon-tint:before{content:"\f043"}.um-faicon-edit:before,.um-faicon-pencil-square-o:before{content:"\f044"}.um-faicon-share-square-o:before{content:"\f045"}.um-faicon-check-square-o:before{content:"\f046"}.um-faicon-arrows:before{content:"\f047"}.um-faicon-step-backward:before{content:"\f048"}.um-faicon-fast-backward:before{content:"\f049"}.um-faicon-backward:before{content:"\f04a"}.um-faicon-play:before{content:"\f04b"}.um-faicon-pause:before{content:"\f04c"}.um-faicon-stop:before{content:"\f04d"}.um-faicon-forward:before{content:"\f04e"}.um-faicon-fast-forward:before{content:"\f050"}.um-faicon-step-forward:before{content:"\f051"}.um-faicon-eject:before{content:"\f052"}.um-faicon-chevron-left:before{content:"\f053"}.um-faicon-chevron-right:before{content:"\f054"}.um-faicon-plus-circle:before{content:"\f055"}.um-faicon-minus-circle:before{content:"\f056"}.um-faicon-times-circle:before{content:"\f057"}.um-faicon-check-circle:before{content:"\f058"}.um-faicon-question-circle:before{content:"\f059"}.um-faicon-info-circle:before{content:"\f05a"}.um-faicon-crosshairs:before{content:"\f05b"}.um-faicon-times-circle-o:before{content:"\f05c"}.um-faicon-check-circle-o:before{content:"\f05d"}.um-faicon-ban:before{content:"\f05e"}.um-faicon-arrow-left:before{content:"\f060"}.um-faicon-arrow-right:before{content:"\f061"}.um-faicon-arrow-up:before{content:"\f062"}.um-faicon-arrow-down:before{content:"\f063"}.um-faicon-mail-forward:before,.um-faicon-share:before{content:"\f064"}.um-faicon-expand:before{content:"\f065"}.um-faicon-compress:before{content:"\f066"}.um-faicon-plus:before{content:"\f067"}.um-faicon-minus:before{content:"\f068"}.um-faicon-asterisk:before{content:"\f069"}.um-faicon-exclamation-circle:before{content:"\f06a"}.um-faicon-gift:before{content:"\f06b"}.um-faicon-leaf:before{content:"\f06c"}.um-faicon-fire:before{content:"\f06d"}.um-faicon-eye:before{content:"\f06e"}.um-faicon-eye-slash:before{content:"\f070"}.um-faicon-exclamation-triangle:before,.um-faicon-warning:before{content:"\f071"}.um-faicon-plane:before{content:"\f072"}.um-faicon-calendar:before{content:"\f073"}.um-faicon-random:before{content:"\f074"}.um-faicon-comment:before{content:"\f075"}.um-faicon-magnet:before{content:"\f076"}.um-faicon-chevron-up:before{content:"\f077"}.um-faicon-chevron-down:before{content:"\f078"}.um-faicon-retweet:before{content:"\f079"}.um-faicon-shopping-cart:before{content:"\f07a"}.um-faicon-folder:before{content:"\f07b"}.um-faicon-folder-open:before{content:"\f07c"}.um-faicon-arrows-v:before{content:"\f07d"}.um-faicon-arrows-h:before{content:"\f07e"}.um-faicon-bar-chart-o:before,.um-faicon-bar-chart:before{content:"\f080"}.um-faicon-twitter-square:before{content:"\f081"}.um-faicon-facebook-square:before{content:"\f082"}.um-faicon-camera-retro:before{content:"\f083"}.um-faicon-key:before{content:"\f084"}.um-faicon-cogs:before,.um-faicon-gears:before{content:"\f085"}.um-faicon-comments:before{content:"\f086"}.um-faicon-thumbs-o-up:before{content:"\f087"}.um-faicon-thumbs-o-down:before{content:"\f088"}.um-faicon-star-half:before{content:"\f089"}.um-faicon-heart-o:before{content:"\f08a"}.um-faicon-sign-out:before{content:"\f08b"}.um-faicon-linkedin-square:before{content:"\f08c"}.um-faicon-thumb-tack:before{content:"\f08d"}.um-faicon-external-link:before{content:"\f08e"}.um-faicon-sign-in:before{content:"\f090"}.um-faicon-trophy:before{content:"\f091"}.um-faicon-github-square:before{content:"\f092"}.um-faicon-upload:before{content:"\f093"}.um-faicon-lemon-o:before{content:"\f094"}.um-faicon-phone:before{content:"\f095"}.um-faicon-square-o:before{content:"\f096"}.um-faicon-bookmark-o:before{content:"\f097"}.um-faicon-phone-square:before{content:"\f098"}.um-faicon-twitter:before{content:"\f099"}.um-faicon-facebook:before{content:"\f09a"}.um-faicon-github:before{content:"\f09b"}.um-faicon-unlock:before{content:"\f09c"}.um-faicon-credit-card:before{content:"\f09d"}.um-faicon-rss:before{content:"\f09e"}.um-faicon-hdd-o:before{content:"\f0a0"}.um-faicon-bullhorn:before{content:"\f0a1"}.um-faicon-bell:before{content:"\f0f3"}.um-faicon-certificate:before{content:"\f0a3"}.um-faicon-hand-o-right:before{content:"\f0a4"}.um-faicon-hand-o-left:before{content:"\f0a5"}.um-faicon-hand-o-up:before{content:"\f0a6"}.um-faicon-hand-o-down:before{content:"\f0a7"}.um-faicon-arrow-circle-left:before{content:"\f0a8"}.um-faicon-arrow-circle-right:before{content:"\f0a9"}.um-faicon-arrow-circle-up:before{content:"\f0aa"}.um-faicon-arrow-circle-down:before{content:"\f0ab"}.um-faicon-globe:before{content:"\f0ac"}.um-faicon-wrench:before{content:"\f0ad"}.um-faicon-tasks:before{content:"\f0ae"}.um-faicon-filter:before{content:"\f0b0"}.um-faicon-briefcase:before{content:"\f0b1"}.um-faicon-arrows-alt:before{content:"\f0b2"}.um-faicon-group:before,.um-faicon-users:before{content:"\f0c0"}.um-faicon-chain:before,.um-faicon-link:before{content:"\f0c1"}.um-faicon-cloud:before{content:"\f0c2"}.um-faicon-flask:before{content:"\f0c3"}.um-faicon-cut:before,.um-faicon-scissors:before{content:"\f0c4"}.um-faicon-copy:before,.um-faicon-files-o:before{content:"\f0c5"}.um-faicon-paperclip:before{content:"\f0c6"}.um-faicon-floppy-o:before,.um-faicon-save:before{content:"\f0c7"}.um-faicon-square:before{content:"\f0c8"}.um-faicon-bars:before,.um-faicon-navicon:before,.um-faicon-reorder:before{content:"\f0c9"}.um-faicon-list-ul:before{content:"\f0ca"}.um-faicon-list-ol:before{content:"\f0cb"}.um-faicon-strikethrough:before{content:"\f0cc"}.um-faicon-underline:before{content:"\f0cd"}.um-faicon-table:before{content:"\f0ce"}.um-faicon-magic:before{content:"\f0d0"}.um-faicon-truck:before{content:"\f0d1"}.um-faicon-pinterest:before{content:"\f0d2"}.um-faicon-pinterest-square:before{content:"\f0d3"}.um-faicon-google-plus-square:before{content:"\f0d4"}.um-faicon-google-plus:before{content:"\f0d5"}.um-faicon-money:before{content:"\f0d6"}.um-faicon-caret-down:before{content:"\f0d7"}.um-faicon-caret-up:before{content:"\f0d8"}.um-faicon-caret-left:before{content:"\f0d9"}.um-faicon-caret-right:before{content:"\f0da"}.um-faicon-columns:before{content:"\f0db"}.um-faicon-sort:before,.um-faicon-unsorted:before{content:"\f0dc"}.um-faicon-sort-desc:before,.um-faicon-sort-down:before{content:"\f0dd"}.um-faicon-sort-asc:before,.um-faicon-sort-up:before{content:"\f0de"}.um-faicon-envelope:before{content:"\f0e0"}.um-faicon-linkedin:before{content:"\f0e1"}.um-faicon-rotate-left:before,.um-faicon-undo:before{content:"\f0e2"}.um-faicon-gavel:before,.um-faicon-legal:before{content:"\f0e3"}.um-faicon-dashboard:before,.um-faicon-tachometer:before{content:"\f0e4"}.um-faicon-comment-o:before{content:"\f0e5"}.um-faicon-comments-o:before{content:"\f0e6"}.um-faicon-bolt:before,.um-faicon-flash:before{content:"\f0e7"}.um-faicon-sitemap:before{content:"\f0e8"}.um-faicon-umbrella:before{content:"\f0e9"}.um-faicon-clipboard:before,.um-faicon-paste:before{content:"\f0ea"}.um-faicon-lightbulb-o:before{content:"\f0eb"}.um-faicon-exchange:before{content:"\f0ec"}.um-faicon-cloud-download:before{content:"\f0ed"}.um-faicon-cloud-upload:before{content:"\f0ee"}.um-faicon-user-md:before{content:"\f0f0"}.um-faicon-stethoscope:before{content:"\f0f1"}.um-faicon-suitcase:before{content:"\f0f2"}.um-faicon-bell-o:before{content:"\f0a2"}.um-faicon-coffee:before{content:"\f0f4"}.um-faicon-cutlery:before{content:"\f0f5"}.um-faicon-file-text-o:before{content:"\f0f6"}.um-faicon-building-o:before{content:"\f0f7"}.um-faicon-hospital-o:before{content:"\f0f8"}.um-faicon-ambulance:before{content:"\f0f9"}.um-faicon-medkit:before{content:"\f0fa"}.um-faicon-fighter-jet:before{content:"\f0fb"}.um-faicon-beer:before{content:"\f0fc"}.um-faicon-h-square:before{content:"\f0fd"}.um-faicon-plus-square:before{content:"\f0fe"}.um-faicon-angle-double-left:before{content:"\f100"}.um-faicon-angle-double-right:before{content:"\f101"}.um-faicon-angle-double-up:before{content:"\f102"}.um-faicon-angle-double-down:before{content:"\f103"}.um-faicon-angle-left:before{content:"\f104"}.um-faicon-angle-right:before{content:"\f105"}.um-faicon-angle-up:before{content:"\f106"}.um-faicon-angle-down:before{content:"\f107"}.um-faicon-desktop:before{content:"\f108"}.um-faicon-laptop:before{content:"\f109"}.um-faicon-tablet:before{content:"\f10a"}.um-faicon-mobile-phone:before,.um-faicon-mobile:before{content:"\f10b"}.um-faicon-circle-o:before{content:"\f10c"}.um-faicon-quote-left:before{content:"\f10d"}.um-faicon-quote-right:before{content:"\f10e"}.um-faicon-spinner:before{content:"\f110"}.um-faicon-spin{-webkit-animation:um-faicon-spin 2s infinite linear;animation:um-faicon-spin 2s infinite linear}.um-faicon-circle:before{content:"\f111"}.um-faicon-mail-reply:before,.um-faicon-reply:before{content:"\f112"}.um-faicon-github-alt:before{content:"\f113"}.um-faicon-folder-o:before{content:"\f114"}.um-faicon-folder-open-o:before{content:"\f115"}.um-faicon-smile-o:before{content:"\f118"}.um-faicon-frown-o:before{content:"\f119"}.um-faicon-meh-o:before{content:"\f11a"}.um-faicon-gamepad:before{content:"\f11b"}.um-faicon-keyboard-o:before{content:"\f11c"}.um-faicon-flag-o:before{content:"\f11d"}.um-faicon-flag-checkered:before{content:"\f11e"}.um-faicon-terminal:before{content:"\f120"}.um-faicon-code:before{content:"\f121"}.um-faicon-mail-reply-all:before,.um-faicon-reply-all:before{content:"\f122"}.um-faicon-star-half-empty:before,.um-faicon-star-half-full:before,.um-faicon-star-half-o:before{content:"\f123"}.um-faicon-location-arrow:before{content:"\f124"}.um-faicon-crop:before{content:"\f125"}.um-faicon-code-fork:before{content:"\f126"}.um-faicon-chain-broken:before,.um-faicon-unlink:before{content:"\f127"}.um-faicon-question:before{content:"\f128"}.um-faicon-info:before{content:"\f129"}.um-faicon-exclamation:before{content:"\f12a"}.um-faicon-superscript:before{content:"\f12b"}.um-faicon-subscript:before{content:"\f12c"}.um-faicon-eraser:before{content:"\f12d"}.um-faicon-puzzle-piece:before{content:"\f12e"}.um-faicon-microphone:before{content:"\f130"}.um-faicon-microphone-slash:before{content:"\f131"}.um-faicon-shield:before{content:"\f132"}.um-faicon-calendar-o:before{content:"\f133"}.um-faicon-fire-extinguisher:before{content:"\f134"}.um-faicon-rocket:before{content:"\f135"}.um-faicon-maxcdn:before{content:"\f136"}.um-faicon-chevron-circle-left:before{content:"\f137"}.um-faicon-chevron-circle-right:before{content:"\f138"}.um-faicon-chevron-circle-up:before{content:"\f139"}.um-faicon-chevron-circle-down:before{content:"\f13a"}.um-faicon-html5:before{content:"\f13b"}.um-faicon-css3:before{content:"\f13c"}.um-faicon-anchor:before{content:"\f13d"}.um-faicon-unlock-alt:before{content:"\f13e"}.um-faicon-bullseye:before{content:"\f140"}.um-faicon-ellipsis-h:before{content:"\f141"}.um-faicon-ellipsis-v:before{content:"\f142"}.um-faicon-rss-square:before{content:"\f143"}.um-faicon-play-circle:before{content:"\f144"}.um-faicon-ticket:before{content:"\f145"}.um-faicon-minus-square:before{content:"\f146"}.um-faicon-minus-square-o:before{content:"\f147"}.um-faicon-level-up:before{content:"\f148"}.um-faicon-level-down:before{content:"\f149"}.um-faicon-check-square:before{content:"\f14a"}.um-faicon-pencil-square:before{content:"\f14b"}.um-faicon-external-link-square:before{content:"\f14c"}.um-faicon-share-square:before{content:"\f14d"}.um-faicon-compass:before{content:"\f14e"}.um-faicon-caret-square-o-down:before,.um-faicon-toggle-down:before{content:"\f150"}.um-faicon-caret-square-o-up:before,.um-faicon-toggle-up:before{content:"\f151"}.um-faicon-caret-square-o-right:before,.um-faicon-toggle-right:before{content:"\f152"}.um-faicon-eur:before,.um-faicon-euro:before{content:"\f153"}.um-faicon-gbp:before{content:"\f154"}.um-faicon-dollar:before,.um-faicon-usd:before{content:"\f155"}.um-faicon-inr:before,.um-faicon-rupee:before{content:"\f156"}.um-faicon-cny:before,.um-faicon-jpy:before,.um-faicon-rmb:before,.um-faicon-yen:before{content:"\f157"}.um-faicon-rouble:before,.um-faicon-rub:before,.um-faicon-ruble:before{content:"\f158"}.um-faicon-krw:before,.um-faicon-won:before{content:"\f159"}.um-faicon-bitcoin:before,.um-faicon-btc:before{content:"\f15a"}.um-faicon-file:before{content:"\f15b"}.um-faicon-file-text:before{content:"\f15c"}.um-faicon-sort-alpha-asc:before{content:"\f15d"}.um-faicon-sort-alpha-desc:before{content:"\f15e"}.um-faicon-sort-amount-asc:before{content:"\f160"}.um-faicon-sort-amount-desc:before{content:"\f161"}.um-faicon-sort-numeric-asc:before{content:"\f162"}.um-faicon-sort-numeric-desc:before{content:"\f163"}.um-faicon-thumbs-up:before{content:"\f164"}.um-faicon-thumbs-down:before{content:"\f165"}.um-faicon-youtube-square:before{content:"\f166"}.um-faicon-youtube:before{content:"\f167"}.um-faicon-xing:before{content:"\f168"}.um-faicon-xing-square:before{content:"\f169"}.um-faicon-youtube-play:before{content:"\f16a"}.um-faicon-dropbox:before{content:"\f16b"}.um-faicon-stack-overflow:before{content:"\f16c"}.um-faicon-instagram:before{content:"\f16d"}.um-faicon-flickr:before{content:"\f16e"}.um-faicon-adn:before{content:"\f170"}.um-faicon-bitbucket:before{content:"\f171"}.um-faicon-bitbucket-square:before{content:"\f172"}.um-faicon-tumblr:before{content:"\f173"}.um-faicon-tumblr-square:before{content:"\f174"}.um-faicon-long-arrow-down:before{content:"\f175"}.um-faicon-long-arrow-up:before{content:"\f176"}.um-faicon-long-arrow-left:before{content:"\f177"}.um-faicon-long-arrow-right:before{content:"\f178"}.um-faicon-apple:before{content:"\f179"}.um-faicon-windows:before{content:"\f17a"}.um-faicon-android:before{content:"\f17b"}.um-faicon-linux:before{content:"\f17c"}.um-faicon-dribbble:before{content:"\f17d"}.um-faicon-skype:before{content:"\f17e"}.um-faicon-foursquare:before{content:"\f180"}.um-faicon-trello:before{content:"\f181"}.um-faicon-female:before{content:"\f182"}.um-faicon-male:before{content:"\f183"}.um-faicon-gittip:before{content:"\f184"}.um-faicon-sun-o:before{content:"\f185"}.um-faicon-moon-o:before{content:"\f186"}.um-faicon-archive:before{content:"\f187"}.um-faicon-bug:before{content:"\f188"}.um-faicon-vk:before{content:"\f189"}.um-faicon-weibo:before{content:"\f18a"}.um-faicon-renren:before{content:"\f18b"}.um-faicon-pagelines:before{content:"\f18c"}.um-faicon-stack-exchange:before{content:"\f18d"}.um-faicon-arrow-circle-o-right:before{content:"\f18e"}.um-faicon-arrow-circle-o-left:before{content:"\f190"}.um-faicon-caret-square-o-left:before,.um-faicon-toggle-left:before{content:"\f191"}.um-faicon-dot-circle-o:before{content:"\f192"}.um-faicon-wheelchair:before{content:"\f193"}.um-faicon-vimeo-square:before{content:"\f194"}.um-faicon-try:before,.um-faicon-turkish-lira:before{content:"\f195"}.um-faicon-plus-square-o:before{content:"\f196"}.um-faicon-space-shuttle:before{content:"\f197"}.um-faicon-slack:before{content:"\f198"}.um-faicon-envelope-square:before{content:"\f199"}.um-faicon-wordpress:before{content:"\f19a"}.um-faicon-openid:before{content:"\f19b"}.um-faicon-bank:before,.um-faicon-institution:before,.um-faicon-university:before{content:"\f19c"}.um-faicon-graduation-cap:before,.um-faicon-mortar-board:before{content:"\f19d"}.um-faicon-yahoo:before{content:"\f19e"}.um-faicon-google:before{content:"\f1a0"}.um-faicon-reddit:before{content:"\f1a1"}.um-faicon-reddit-square:before{content:"\f1a2"}.um-faicon-stumbleupon-circle:before{content:"\f1a3"}.um-faicon-stumbleupon:before{content:"\f1a4"}.um-faicon-delicious:before{content:"\f1a5"}.um-faicon-digg:before{content:"\f1a6"}.um-faicon-pied-piper:before{content:"\f1a7"}.um-faicon-pied-piper-alt:before{content:"\f1a8"}.um-faicon-drupal:before{content:"\f1a9"}.um-faicon-joomla:before{content:"\f1aa"}.um-faicon-language:before{content:"\f1ab"}.um-faicon-fax:before{content:"\f1ac"}.um-faicon-building:before{content:"\f1ad"}.um-faicon-child:before{content:"\f1ae"}.um-faicon-paw:before{content:"\f1b0"}.um-faicon-spoon:before{content:"\f1b1"}.um-faicon-cube:before{content:"\f1b2"}.um-faicon-cubes:before{content:"\f1b3"}.um-faicon-behance:before{content:"\f1b4"}.um-faicon-behance-square:before{content:"\f1b5"}.um-faicon-steam:before{content:"\f1b6"}.um-faicon-steam-square:before{content:"\f1b7"}.um-faicon-recycle:before{content:"\f1b8"}.um-faicon-automobile:before,.um-faicon-car:before{content:"\f1b9"}.um-faicon-cab:before,.um-faicon-taxi:before{content:"\f1ba"}.um-faicon-tree:before{content:"\f1bb"}.um-faicon-spotify:before{content:"\f1bc"}.um-faicon-deviantart:before{content:"\f1bd"}.um-faicon-soundcloud:before{content:"\f1be"}.um-faicon-database:before{content:"\f1c0"}.um-faicon-file-pdf-o:before{content:"\f1c1"}.um-faicon-file-word-o:before{content:"\f1c2"}.um-faicon-file-excel-o:before{content:"\f1c3"}.um-faicon-file-powerpoint-o:before{content:"\f1c4"}.um-faicon-file-image-o:before,.um-faicon-file-photo-o:before,.um-faicon-file-picture-o:before{content:"\f1c5"}.um-faicon-file-archive-o:before,.um-faicon-file-zip-o:before{content:"\f1c6"}.um-faicon-file-audio-o:before,.um-faicon-file-sound-o:before{content:"\f1c7"}.um-faicon-file-movie-o:before,.um-faicon-file-video-o:before{content:"\f1c8"}.um-faicon-file-code-o:before{content:"\f1c9"}.um-faicon-vine:before{content:"\f1ca"}.um-faicon-codepen:before{content:"\f1cb"}.um-faicon-jsfiddle:before{content:"\f1cc"}.um-faicon-life-bouy:before,.um-faicon-life-buoy:before,.um-faicon-life-ring:before,.um-faicon-life-saver:before,.um-faicon-support:before{content:"\f1cd"}.um-faicon-circle-o-notch:before{content:"\f1ce"}.um-faicon-ra:before,.um-faicon-rebel:before{content:"\f1d0"}.um-faicon-empire:before,.um-faicon-ge:before{content:"\f1d1"}.um-faicon-git-square:before{content:"\f1d2"}.um-faicon-git:before{content:"\f1d3"}.um-faicon-hacker-news:before{content:"\f1d4"}.um-faicon-tencent-weibo:before{content:"\f1d5"}.um-faicon-qq:before{content:"\f1d6"}.um-faicon-wechat:before,.um-faicon-weixin:before{content:"\f1d7"}.um-faicon-paper-plane:before,.um-faicon-send:before{content:"\f1d8"}.um-faicon-paper-plane-o:before,.um-faicon-send-o:before{content:"\f1d9"}.um-faicon-history:before{content:"\f1da"}.um-faicon-circle-thin:before{content:"\f1db"}.um-faicon-header:before{content:"\f1dc"}.um-faicon-paragraph:before{content:"\f1dd"}.um-faicon-sliders:before{content:"\f1de"}.um-faicon-share-alt:before{content:"\f1e0"}.um-faicon-share-alt-square:before{content:"\f1e1"}.um-faicon-bomb:before{content:"\f1e2"}.um-faicon-futbol-o:before,.um-faicon-soccer-ball-o:before{content:"\f1e3"}.um-faicon-tty:before{content:"\f1e4"}.um-faicon-binoculars:before{content:"\f1e5"}.um-faicon-plug:before{content:"\f1e6"}.um-faicon-slideshare:before{content:"\f1e7"}.um-faicon-twitch:before{content:"\f1e8"}.um-faicon-yelp:before{content:"\f1e9"}.um-faicon-newspaper-o:before{content:"\f1ea"}.um-faicon-wifi:before{content:"\f1eb"}.um-faicon-calculator:before{content:"\f1ec"}.um-faicon-paypal:before{content:"\f1ed"}.um-faicon-google-wallet:before{content:"\f1ee"}.um-faicon-cc-visa:before{content:"\f1f0"}.um-faicon-cc-mastercard:before{content:"\f1f1"}.um-faicon-cc-discover:before{content:"\f1f2"}.um-faicon-cc-amex:before{content:"\f1f3"}.um-faicon-cc-paypal:before{content:"\f1f4"}.um-faicon-cc-stripe:before{content:"\f1f5"}.um-faicon-bell-slash:before{content:"\f1f6"}.um-faicon-bell-slash-o:before{content:"\f1f7"}.um-faicon-trash:before{content:"\f1f8"}.um-faicon-copyright:before{content:"\f1f9"}.um-faicon-at:before{content:"\f1fa"}.um-faicon-eyedropper:before{content:"\f1fb"}.um-faicon-paint-brush:before{content:"\f1fc"}.um-faicon-birthday-cake:before{content:"\f1fd"}.um-faicon-area-chart:before{content:"\f1fe"}.um-faicon-pie-chart:before{content:"\f200"}.um-faicon-line-chart:before{content:"\f201"}.um-faicon-lastfm:before{content:"\f202"}.um-faicon-lastfm-square:before{content:"\f203"}.um-faicon-toggle-off:before{content:"\f204"}.um-faicon-toggle-on:before{content:"\f205"}.um-faicon-bicycle:before{content:"\f206"}.um-faicon-bus:before{content:"\f207"}.um-faicon-ioxhost:before{content:"\f208"}.um-faicon-angellist:before{content:"\f209"}.um-faicon-cc:before{content:"\f20a"}.um-faicon-ils:before,.um-faicon-shekel:before,.um-faicon-sheqel:before{content:"\f20b"}.um-faicon-meanpath:before{content:"\f20c"}@-moz-keyframes um-faicon-spin{0%{-moz-transform:rotate(0)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes um-faicon-spin{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes um-faicon-spin{0%{-o-transform:rotate(0)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes um-faicon-spin{0%{-ms-transform:rotate(0)}100%{-ms-transform:rotate(359deg)}}@keyframes um-faicon-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}
.um,.um-icon-within{/*!
   * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   *//*!
   * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   *//*!
   * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   *//*!
   * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   *//*!
   * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
   * Copyright 2024 Fonticons, Inc.
   */}.um .fa,.um-icon-within .fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style,900)}.um .fa,.um .fa-brands,.um .fa-classic,.um .fa-regular,.um .fa-sharp,.um .fa-solid,.um .fab,.um .far,.um .fas,.um-icon-within .fa,.um-icon-within .fa-brands,.um-icon-within .fa-classic,.um-icon-within .fa-regular,.um-icon-within .fa-sharp,.um-icon-within .fa-solid,.um-icon-within .fab,.um-icon-within .far,.um-icon-within .fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.um .fa-classic,.um .fa-regular,.um .fa-solid,.um .far,.um .fas,.um-icon-within .fa-classic,.um-icon-within .fa-regular,.um-icon-within .fa-solid,.um-icon-within .far,.um-icon-within .fas{font-family:"Font Awesome 6 Free"}.um .fa-brands,.um .fab,.um-icon-within .fa-brands,.um-icon-within .fab{font-family:"Font Awesome 6 Brands"}.um .fa-1x,.um-icon-within .fa-1x{font-size:1em}.um .fa-2x,.um-icon-within .fa-2x{font-size:2em}.um .fa-3x,.um-icon-within .fa-3x{font-size:3em}.um .fa-4x,.um-icon-within .fa-4x{font-size:4em}.um .fa-5x,.um-icon-within .fa-5x{font-size:5em}.um .fa-6x,.um-icon-within .fa-6x{font-size:6em}.um .fa-7x,.um-icon-within .fa-7x{font-size:7em}.um .fa-8x,.um-icon-within .fa-8x{font-size:8em}.um .fa-9x,.um-icon-within .fa-9x{font-size:9em}.um .fa-10x,.um-icon-within .fa-10x{font-size:10em}.um .fa-2xs,.um-icon-within .fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.um .fa-xs,.um-icon-within .fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.um .fa-sm,.um-icon-within .fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.um .fa-lg,.um-icon-within .fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.um .fa-xl,.um-icon-within .fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.um .fa-2xl,.um-icon-within .fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.um .fa-fw,.um-icon-within .fa-fw{text-align:center;width:1.25em}.um .fa-ul,.um-icon-within .fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.um .fa-ul>li,.um-icon-within .fa-ul>li{position:relative}.um .fa-li,.um-icon-within .fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.um .fa-border,.um-icon-within .fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.um .fa-pull-left,.um-icon-within .fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.um .fa-pull-right,.um-icon-within .fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.um .fa-beat,.um-icon-within .fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.um .fa-bounce,.um-icon-within .fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.um .fa-fade,.um-icon-within .fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.um .fa-beat-fade,.um-icon-within .fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.um .fa-flip,.um-icon-within .fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.um .fa-shake,.um-icon-within .fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.um .fa-spin,.um-icon-within .fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.um .fa-spin-reverse,.um-icon-within .fa-spin-reverse{--fa-animation-direction:reverse}.um .fa-pulse,.um .fa-spin-pulse,.um-icon-within .fa-pulse,.um-icon-within .fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.um .fa-beat,.um .fa-beat-fade,.um .fa-bounce,.um .fa-fade,.um .fa-flip,.um .fa-pulse,.um .fa-shake,.um .fa-spin,.um .fa-spin-pulse,.um-icon-within .fa-beat,.um-icon-within .fa-beat-fade,.um-icon-within .fa-bounce,.um-icon-within .fa-fade,.um-icon-within .fa-flip,.um-icon-within .fa-pulse,.um-icon-within .fa-shake,.um-icon-within .fa-spin,.um-icon-within .fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1,1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1,1) translateY(0)}100%{transform:scale(1,1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}24%,8%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}100%,40%{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.um .fa-rotate-90,.um-icon-within .fa-rotate-90{transform:rotate(90deg)}.um .fa-rotate-180,.um-icon-within .fa-rotate-180{transform:rotate(180deg)}.um .fa-rotate-270,.um-icon-within .fa-rotate-270{transform:rotate(270deg)}.um .fa-flip-horizontal,.um-icon-within .fa-flip-horizontal{transform:scale(-1,1)}.um .fa-flip-vertical,.um-icon-within .fa-flip-vertical{transform:scale(1,-1)}.um .fa-flip-both,.um .fa-flip-horizontal.fa-flip-vertical,.um-icon-within .fa-flip-both,.um-icon-within .fa-flip-horizontal.fa-flip-vertical{transform:scale(-1,-1)}.um .fa-rotate-by,.um-icon-within .fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.um .fa-stack,.um-icon-within .fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.um .fa-stack-1x,.um .fa-stack-2x,.um-icon-within .fa-stack-1x,.um-icon-within .fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.um .fa-stack-1x,.um-icon-within .fa-stack-1x{line-height:inherit}.um .fa-stack-2x,.um-icon-within .fa-stack-2x{font-size:2em}.um .fa-inverse,.um-icon-within .fa-inverse{color:var(--fa-inverse,#fff)}.um .fa-0::before,.um-icon-within .fa-0::before{content:"\30 "}.um .fa-1::before,.um-icon-within .fa-1::before{content:"\31 "}.um .fa-2::before,.um-icon-within .fa-2::before{content:"\32 "}.um .fa-3::before,.um-icon-within .fa-3::before{content:"\33 "}.um .fa-4::before,.um-icon-within .fa-4::before{content:"\34 "}.um .fa-5::before,.um-icon-within .fa-5::before{content:"\35 "}.um .fa-6::before,.um-icon-within .fa-6::before{content:"\36 "}.um .fa-7::before,.um-icon-within .fa-7::before{content:"\37 "}.um .fa-8::before,.um-icon-within .fa-8::before{content:"\38 "}.um .fa-9::before,.um-icon-within .fa-9::before{content:"\39 "}.um .fa-fill-drip::before,.um-icon-within .fa-fill-drip::before{content:"\f576"}.um .fa-arrows-to-circle::before,.um-icon-within .fa-arrows-to-circle::before{content:"\e4bd"}.um .fa-circle-chevron-right::before,.um-icon-within .fa-circle-chevron-right::before{content:"\f138"}.um .fa-chevron-circle-right::before,.um-icon-within .fa-chevron-circle-right::before{content:"\f138"}.um .fa-at::before,.um-icon-within .fa-at::before{content:"\@"}.um .fa-trash-can::before,.um-icon-within .fa-trash-can::before{content:"\f2ed"}.um .fa-trash-alt::before,.um-icon-within .fa-trash-alt::before{content:"\f2ed"}.um .fa-text-height::before,.um-icon-within .fa-text-height::before{content:"\f034"}.um .fa-user-xmark::before,.um-icon-within .fa-user-xmark::before{content:"\f235"}.um .fa-user-times::before,.um-icon-within .fa-user-times::before{content:"\f235"}.um .fa-stethoscope::before,.um-icon-within .fa-stethoscope::before{content:"\f0f1"}.um .fa-message::before,.um-icon-within .fa-message::before{content:"\f27a"}.um .fa-comment-alt::before,.um-icon-within .fa-comment-alt::before{content:"\f27a"}.um .fa-info::before,.um-icon-within .fa-info::before{content:"\f129"}.um .fa-down-left-and-up-right-to-center::before,.um-icon-within .fa-down-left-and-up-right-to-center::before{content:"\f422"}.um .fa-compress-alt::before,.um-icon-within .fa-compress-alt::before{content:"\f422"}.um .fa-explosion::before,.um-icon-within .fa-explosion::before{content:"\e4e9"}.um .fa-file-lines::before,.um-icon-within .fa-file-lines::before{content:"\f15c"}.um .fa-file-alt::before,.um-icon-within .fa-file-alt::before{content:"\f15c"}.um .fa-file-text::before,.um-icon-within .fa-file-text::before{content:"\f15c"}.um .fa-wave-square::before,.um-icon-within .fa-wave-square::before{content:"\f83e"}.um .fa-ring::before,.um-icon-within .fa-ring::before{content:"\f70b"}.um .fa-building-un::before,.um-icon-within .fa-building-un::before{content:"\e4d9"}.um .fa-dice-three::before,.um-icon-within .fa-dice-three::before{content:"\f527"}.um .fa-calendar-days::before,.um-icon-within .fa-calendar-days::before{content:"\f073"}.um .fa-calendar-alt::before,.um-icon-within .fa-calendar-alt::before{content:"\f073"}.um .fa-anchor-circle-check::before,.um-icon-within .fa-anchor-circle-check::before{content:"\e4aa"}.um .fa-building-circle-arrow-right::before,.um-icon-within .fa-building-circle-arrow-right::before{content:"\e4d1"}.um .fa-volleyball::before,.um-icon-within .fa-volleyball::before{content:"\f45f"}.um .fa-volleyball-ball::before,.um-icon-within .fa-volleyball-ball::before{content:"\f45f"}.um .fa-arrows-up-to-line::before,.um-icon-within .fa-arrows-up-to-line::before{content:"\e4c2"}.um .fa-sort-down::before,.um-icon-within .fa-sort-down::before{content:"\f0dd"}.um .fa-sort-desc::before,.um-icon-within .fa-sort-desc::before{content:"\f0dd"}.um .fa-circle-minus::before,.um-icon-within .fa-circle-minus::before{content:"\f056"}.um .fa-minus-circle::before,.um-icon-within .fa-minus-circle::before{content:"\f056"}.um .fa-door-open::before,.um-icon-within .fa-door-open::before{content:"\f52b"}.um .fa-right-from-bracket::before,.um-icon-within .fa-right-from-bracket::before{content:"\f2f5"}.um .fa-sign-out-alt::before,.um-icon-within .fa-sign-out-alt::before{content:"\f2f5"}.um .fa-atom::before,.um-icon-within .fa-atom::before{content:"\f5d2"}.um .fa-soap::before,.um-icon-within .fa-soap::before{content:"\e06e"}.um .fa-icons::before,.um-icon-within .fa-icons::before{content:"\f86d"}.um .fa-heart-music-camera-bolt::before,.um-icon-within .fa-heart-music-camera-bolt::before{content:"\f86d"}.um .fa-microphone-lines-slash::before,.um-icon-within .fa-microphone-lines-slash::before{content:"\f539"}.um .fa-microphone-alt-slash::before,.um-icon-within .fa-microphone-alt-slash::before{content:"\f539"}.um .fa-bridge-circle-check::before,.um-icon-within .fa-bridge-circle-check::before{content:"\e4c9"}.um .fa-pump-medical::before,.um-icon-within .fa-pump-medical::before{content:"\e06a"}.um .fa-fingerprint::before,.um-icon-within .fa-fingerprint::before{content:"\f577"}.um .fa-hand-point-right::before,.um-icon-within .fa-hand-point-right::before{content:"\f0a4"}.um .fa-magnifying-glass-location::before,.um-icon-within .fa-magnifying-glass-location::before{content:"\f689"}.um .fa-search-location::before,.um-icon-within .fa-search-location::before{content:"\f689"}.um .fa-forward-step::before,.um-icon-within .fa-forward-step::before{content:"\f051"}.um .fa-step-forward::before,.um-icon-within .fa-step-forward::before{content:"\f051"}.um .fa-face-smile-beam::before,.um-icon-within .fa-face-smile-beam::before{content:"\f5b8"}.um .fa-smile-beam::before,.um-icon-within .fa-smile-beam::before{content:"\f5b8"}.um .fa-flag-checkered::before,.um-icon-within .fa-flag-checkered::before{content:"\f11e"}.um .fa-football::before,.um-icon-within .fa-football::before{content:"\f44e"}.um .fa-football-ball::before,.um-icon-within .fa-football-ball::before{content:"\f44e"}.um .fa-school-circle-exclamation::before,.um-icon-within .fa-school-circle-exclamation::before{content:"\e56c"}.um .fa-crop::before,.um-icon-within .fa-crop::before{content:"\f125"}.um .fa-angles-down::before,.um-icon-within .fa-angles-down::before{content:"\f103"}.um .fa-angle-double-down::before,.um-icon-within .fa-angle-double-down::before{content:"\f103"}.um .fa-users-rectangle::before,.um-icon-within .fa-users-rectangle::before{content:"\e594"}.um .fa-people-roof::before,.um-icon-within .fa-people-roof::before{content:"\e537"}.um .fa-people-line::before,.um-icon-within .fa-people-line::before{content:"\e534"}.um .fa-beer-mug-empty::before,.um-icon-within .fa-beer-mug-empty::before{content:"\f0fc"}.um .fa-beer::before,.um-icon-within .fa-beer::before{content:"\f0fc"}.um .fa-diagram-predecessor::before,.um-icon-within .fa-diagram-predecessor::before{content:"\e477"}.um .fa-arrow-up-long::before,.um-icon-within .fa-arrow-up-long::before{content:"\f176"}.um .fa-long-arrow-up::before,.um-icon-within .fa-long-arrow-up::before{content:"\f176"}.um .fa-fire-flame-simple::before,.um-icon-within .fa-fire-flame-simple::before{content:"\f46a"}.um .fa-burn::before,.um-icon-within .fa-burn::before{content:"\f46a"}.um .fa-person::before,.um-icon-within .fa-person::before{content:"\f183"}.um .fa-male::before,.um-icon-within .fa-male::before{content:"\f183"}.um .fa-laptop::before,.um-icon-within .fa-laptop::before{content:"\f109"}.um .fa-file-csv::before,.um-icon-within .fa-file-csv::before{content:"\f6dd"}.um .fa-menorah::before,.um-icon-within .fa-menorah::before{content:"\f676"}.um .fa-truck-plane::before,.um-icon-within .fa-truck-plane::before{content:"\e58f"}.um .fa-record-vinyl::before,.um-icon-within .fa-record-vinyl::before{content:"\f8d9"}.um .fa-face-grin-stars::before,.um-icon-within .fa-face-grin-stars::before{content:"\f587"}.um .fa-grin-stars::before,.um-icon-within .fa-grin-stars::before{content:"\f587"}.um .fa-bong::before,.um-icon-within .fa-bong::before{content:"\f55c"}.um .fa-spaghetti-monster-flying::before,.um-icon-within .fa-spaghetti-monster-flying::before{content:"\f67b"}.um .fa-pastafarianism::before,.um-icon-within .fa-pastafarianism::before{content:"\f67b"}.um .fa-arrow-down-up-across-line::before,.um-icon-within .fa-arrow-down-up-across-line::before{content:"\e4af"}.um .fa-spoon::before,.um-icon-within .fa-spoon::before{content:"\f2e5"}.um .fa-utensil-spoon::before,.um-icon-within .fa-utensil-spoon::before{content:"\f2e5"}.um .fa-jar-wheat::before,.um-icon-within .fa-jar-wheat::before{content:"\e517"}.um .fa-envelopes-bulk::before,.um-icon-within .fa-envelopes-bulk::before{content:"\f674"}.um .fa-mail-bulk::before,.um-icon-within .fa-mail-bulk::before{content:"\f674"}.um .fa-file-circle-exclamation::before,.um-icon-within .fa-file-circle-exclamation::before{content:"\e4eb"}.um .fa-circle-h::before,.um-icon-within .fa-circle-h::before{content:"\f47e"}.um .fa-hospital-symbol::before,.um-icon-within .fa-hospital-symbol::before{content:"\f47e"}.um .fa-pager::before,.um-icon-within .fa-pager::before{content:"\f815"}.um .fa-address-book::before,.um-icon-within .fa-address-book::before{content:"\f2b9"}.um .fa-contact-book::before,.um-icon-within .fa-contact-book::before{content:"\f2b9"}.um .fa-strikethrough::before,.um-icon-within .fa-strikethrough::before{content:"\f0cc"}.um .fa-k::before,.um-icon-within .fa-k::before{content:"K"}.um .fa-landmark-flag::before,.um-icon-within .fa-landmark-flag::before{content:"\e51c"}.um .fa-pencil::before,.um-icon-within .fa-pencil::before{content:"\f303"}.um .fa-pencil-alt::before,.um-icon-within .fa-pencil-alt::before{content:"\f303"}.um .fa-backward::before,.um-icon-within .fa-backward::before{content:"\f04a"}.um .fa-caret-right::before,.um-icon-within .fa-caret-right::before{content:"\f0da"}.um .fa-comments::before,.um-icon-within .fa-comments::before{content:"\f086"}.um .fa-paste::before,.um-icon-within .fa-paste::before{content:"\f0ea"}.um .fa-file-clipboard::before,.um-icon-within .fa-file-clipboard::before{content:"\f0ea"}.um .fa-code-pull-request::before,.um-icon-within .fa-code-pull-request::before{content:"\e13c"}.um .fa-clipboard-list::before,.um-icon-within .fa-clipboard-list::before{content:"\f46d"}.um .fa-truck-ramp-box::before,.um-icon-within .fa-truck-ramp-box::before{content:"\f4de"}.um .fa-truck-loading::before,.um-icon-within .fa-truck-loading::before{content:"\f4de"}.um .fa-user-check::before,.um-icon-within .fa-user-check::before{content:"\f4fc"}.um .fa-vial-virus::before,.um-icon-within .fa-vial-virus::before{content:"\e597"}.um .fa-sheet-plastic::before,.um-icon-within .fa-sheet-plastic::before{content:"\e571"}.um .fa-blog::before,.um-icon-within .fa-blog::before{content:"\f781"}.um .fa-user-ninja::before,.um-icon-within .fa-user-ninja::before{content:"\f504"}.um .fa-person-arrow-up-from-line::before,.um-icon-within .fa-person-arrow-up-from-line::before{content:"\e539"}.um .fa-scroll-torah::before,.um-icon-within .fa-scroll-torah::before{content:"\f6a0"}.um .fa-torah::before,.um-icon-within .fa-torah::before{content:"\f6a0"}.um .fa-broom-ball::before,.um-icon-within .fa-broom-ball::before{content:"\f458"}.um .fa-quidditch::before,.um-icon-within .fa-quidditch::before{content:"\f458"}.um .fa-quidditch-broom-ball::before,.um-icon-within .fa-quidditch-broom-ball::before{content:"\f458"}.um .fa-toggle-off::before,.um-icon-within .fa-toggle-off::before{content:"\f204"}.um .fa-box-archive::before,.um-icon-within .fa-box-archive::before{content:"\f187"}.um .fa-archive::before,.um-icon-within .fa-archive::before{content:"\f187"}.um .fa-person-drowning::before,.um-icon-within .fa-person-drowning::before{content:"\e545"}.um .fa-arrow-down-9-1::before,.um-icon-within .fa-arrow-down-9-1::before{content:"\f886"}.um .fa-sort-numeric-desc::before,.um-icon-within .fa-sort-numeric-desc::before{content:"\f886"}.um .fa-sort-numeric-down-alt::before,.um-icon-within .fa-sort-numeric-down-alt::before{content:"\f886"}.um .fa-face-grin-tongue-squint::before,.um-icon-within .fa-face-grin-tongue-squint::before{content:"\f58a"}.um .fa-grin-tongue-squint::before,.um-icon-within .fa-grin-tongue-squint::before{content:"\f58a"}.um .fa-spray-can::before,.um-icon-within .fa-spray-can::before{content:"\f5bd"}.um .fa-truck-monster::before,.um-icon-within .fa-truck-monster::before{content:"\f63b"}.um .fa-w::before,.um-icon-within .fa-w::before{content:"W"}.um .fa-earth-africa::before,.um-icon-within .fa-earth-africa::before{content:"\f57c"}.um .fa-globe-africa::before,.um-icon-within .fa-globe-africa::before{content:"\f57c"}.um .fa-rainbow::before,.um-icon-within .fa-rainbow::before{content:"\f75b"}.um .fa-circle-notch::before,.um-icon-within .fa-circle-notch::before{content:"\f1ce"}.um .fa-tablet-screen-button::before,.um-icon-within .fa-tablet-screen-button::before{content:"\f3fa"}.um .fa-tablet-alt::before,.um-icon-within .fa-tablet-alt::before{content:"\f3fa"}.um .fa-paw::before,.um-icon-within .fa-paw::before{content:"\f1b0"}.um .fa-cloud::before,.um-icon-within .fa-cloud::before{content:"\f0c2"}.um .fa-trowel-bricks::before,.um-icon-within .fa-trowel-bricks::before{content:"\e58a"}.um .fa-face-flushed::before,.um-icon-within .fa-face-flushed::before{content:"\f579"}.um .fa-flushed::before,.um-icon-within .fa-flushed::before{content:"\f579"}.um .fa-hospital-user::before,.um-icon-within .fa-hospital-user::before{content:"\f80d"}.um .fa-tent-arrow-left-right::before,.um-icon-within .fa-tent-arrow-left-right::before{content:"\e57f"}.um .fa-gavel::before,.um-icon-within .fa-gavel::before{content:"\f0e3"}.um .fa-legal::before,.um-icon-within .fa-legal::before{content:"\f0e3"}.um .fa-binoculars::before,.um-icon-within .fa-binoculars::before{content:"\f1e5"}.um .fa-microphone-slash::before,.um-icon-within .fa-microphone-slash::before{content:"\f131"}.um .fa-box-tissue::before,.um-icon-within .fa-box-tissue::before{content:"\e05b"}.um .fa-motorcycle::before,.um-icon-within .fa-motorcycle::before{content:"\f21c"}.um .fa-bell-concierge::before,.um-icon-within .fa-bell-concierge::before{content:"\f562"}.um .fa-concierge-bell::before,.um-icon-within .fa-concierge-bell::before{content:"\f562"}.um .fa-pen-ruler::before,.um-icon-within .fa-pen-ruler::before{content:"\f5ae"}.um .fa-pencil-ruler::before,.um-icon-within .fa-pencil-ruler::before{content:"\f5ae"}.um .fa-people-arrows::before,.um-icon-within .fa-people-arrows::before{content:"\e068"}.um .fa-people-arrows-left-right::before,.um-icon-within .fa-people-arrows-left-right::before{content:"\e068"}.um .fa-mars-and-venus-burst::before,.um-icon-within .fa-mars-and-venus-burst::before{content:"\e523"}.um .fa-square-caret-right::before,.um-icon-within .fa-square-caret-right::before{content:"\f152"}.um .fa-caret-square-right::before,.um-icon-within .fa-caret-square-right::before{content:"\f152"}.um .fa-scissors::before,.um-icon-within .fa-scissors::before{content:"\f0c4"}.um .fa-cut::before,.um-icon-within .fa-cut::before{content:"\f0c4"}.um .fa-sun-plant-wilt::before,.um-icon-within .fa-sun-plant-wilt::before{content:"\e57a"}.um .fa-toilets-portable::before,.um-icon-within .fa-toilets-portable::before{content:"\e584"}.um .fa-hockey-puck::before,.um-icon-within .fa-hockey-puck::before{content:"\f453"}.um .fa-table::before,.um-icon-within .fa-table::before{content:"\f0ce"}.um .fa-magnifying-glass-arrow-right::before,.um-icon-within .fa-magnifying-glass-arrow-right::before{content:"\e521"}.um .fa-tachograph-digital::before,.um-icon-within .fa-tachograph-digital::before{content:"\f566"}.um .fa-digital-tachograph::before,.um-icon-within .fa-digital-tachograph::before{content:"\f566"}.um .fa-users-slash::before,.um-icon-within .fa-users-slash::before{content:"\e073"}.um .fa-clover::before,.um-icon-within .fa-clover::before{content:"\e139"}.um .fa-reply::before,.um-icon-within .fa-reply::before{content:"\f3e5"}.um .fa-mail-reply::before,.um-icon-within .fa-mail-reply::before{content:"\f3e5"}.um .fa-star-and-crescent::before,.um-icon-within .fa-star-and-crescent::before{content:"\f699"}.um .fa-house-fire::before,.um-icon-within .fa-house-fire::before{content:"\e50c"}.um .fa-square-minus::before,.um-icon-within .fa-square-minus::before{content:"\f146"}.um .fa-minus-square::before,.um-icon-within .fa-minus-square::before{content:"\f146"}.um .fa-helicopter::before,.um-icon-within .fa-helicopter::before{content:"\f533"}.um .fa-compass::before,.um-icon-within .fa-compass::before{content:"\f14e"}.um .fa-square-caret-down::before,.um-icon-within .fa-square-caret-down::before{content:"\f150"}.um .fa-caret-square-down::before,.um-icon-within .fa-caret-square-down::before{content:"\f150"}.um .fa-file-circle-question::before,.um-icon-within .fa-file-circle-question::before{content:"\e4ef"}.um .fa-laptop-code::before,.um-icon-within .fa-laptop-code::before{content:"\f5fc"}.um .fa-swatchbook::before,.um-icon-within .fa-swatchbook::before{content:"\f5c3"}.um .fa-prescription-bottle::before,.um-icon-within .fa-prescription-bottle::before{content:"\f485"}.um .fa-bars::before,.um-icon-within .fa-bars::before{content:"\f0c9"}.um .fa-navicon::before,.um-icon-within .fa-navicon::before{content:"\f0c9"}.um .fa-people-group::before,.um-icon-within .fa-people-group::before{content:"\e533"}.um .fa-hourglass-end::before,.um-icon-within .fa-hourglass-end::before{content:"\f253"}.um .fa-hourglass-3::before,.um-icon-within .fa-hourglass-3::before{content:"\f253"}.um .fa-heart-crack::before,.um-icon-within .fa-heart-crack::before{content:"\f7a9"}.um .fa-heart-broken::before,.um-icon-within .fa-heart-broken::before{content:"\f7a9"}.um .fa-square-up-right::before,.um-icon-within .fa-square-up-right::before{content:"\f360"}.um .fa-external-link-square-alt::before,.um-icon-within .fa-external-link-square-alt::before{content:"\f360"}.um .fa-face-kiss-beam::before,.um-icon-within .fa-face-kiss-beam::before{content:"\f597"}.um .fa-kiss-beam::before,.um-icon-within .fa-kiss-beam::before{content:"\f597"}.um .fa-film::before,.um-icon-within .fa-film::before{content:"\f008"}.um .fa-ruler-horizontal::before,.um-icon-within .fa-ruler-horizontal::before{content:"\f547"}.um .fa-people-robbery::before,.um-icon-within .fa-people-robbery::before{content:"\e536"}.um .fa-lightbulb::before,.um-icon-within .fa-lightbulb::before{content:"\f0eb"}.um .fa-caret-left::before,.um-icon-within .fa-caret-left::before{content:"\f0d9"}.um .fa-circle-exclamation::before,.um-icon-within .fa-circle-exclamation::before{content:"\f06a"}.um .fa-exclamation-circle::before,.um-icon-within .fa-exclamation-circle::before{content:"\f06a"}.um .fa-school-circle-xmark::before,.um-icon-within .fa-school-circle-xmark::before{content:"\e56d"}.um .fa-arrow-right-from-bracket::before,.um-icon-within .fa-arrow-right-from-bracket::before{content:"\f08b"}.um .fa-sign-out::before,.um-icon-within .fa-sign-out::before{content:"\f08b"}.um .fa-circle-chevron-down::before,.um-icon-within .fa-circle-chevron-down::before{content:"\f13a"}.um .fa-chevron-circle-down::before,.um-icon-within .fa-chevron-circle-down::before{content:"\f13a"}.um .fa-unlock-keyhole::before,.um-icon-within .fa-unlock-keyhole::before{content:"\f13e"}.um .fa-unlock-alt::before,.um-icon-within .fa-unlock-alt::before{content:"\f13e"}.um .fa-cloud-showers-heavy::before,.um-icon-within .fa-cloud-showers-heavy::before{content:"\f740"}.um .fa-headphones-simple::before,.um-icon-within .fa-headphones-simple::before{content:"\f58f"}.um .fa-headphones-alt::before,.um-icon-within .fa-headphones-alt::before{content:"\f58f"}.um .fa-sitemap::before,.um-icon-within .fa-sitemap::before{content:"\f0e8"}.um .fa-circle-dollar-to-slot::before,.um-icon-within .fa-circle-dollar-to-slot::before{content:"\f4b9"}.um .fa-donate::before,.um-icon-within .fa-donate::before{content:"\f4b9"}.um .fa-memory::before,.um-icon-within .fa-memory::before{content:"\f538"}.um .fa-road-spikes::before,.um-icon-within .fa-road-spikes::before{content:"\e568"}.um .fa-fire-burner::before,.um-icon-within .fa-fire-burner::before{content:"\e4f1"}.um .fa-flag::before,.um-icon-within .fa-flag::before{content:"\f024"}.um .fa-hanukiah::before,.um-icon-within .fa-hanukiah::before{content:"\f6e6"}.um .fa-feather::before,.um-icon-within .fa-feather::before{content:"\f52d"}.um .fa-volume-low::before,.um-icon-within .fa-volume-low::before{content:"\f027"}.um .fa-volume-down::before,.um-icon-within .fa-volume-down::before{content:"\f027"}.um .fa-comment-slash::before,.um-icon-within .fa-comment-slash::before{content:"\f4b3"}.um .fa-cloud-sun-rain::before,.um-icon-within .fa-cloud-sun-rain::before{content:"\f743"}.um .fa-compress::before,.um-icon-within .fa-compress::before{content:"\f066"}.um .fa-wheat-awn::before,.um-icon-within .fa-wheat-awn::before{content:"\e2cd"}.um .fa-wheat-alt::before,.um-icon-within .fa-wheat-alt::before{content:"\e2cd"}.um .fa-ankh::before,.um-icon-within .fa-ankh::before{content:"\f644"}.um .fa-hands-holding-child::before,.um-icon-within .fa-hands-holding-child::before{content:"\e4fa"}.um .fa-asterisk::before,.um-icon-within .fa-asterisk::before{content:"\*"}.um .fa-square-check::before,.um-icon-within .fa-square-check::before{content:"\f14a"}.um .fa-check-square::before,.um-icon-within .fa-check-square::before{content:"\f14a"}.um .fa-peseta-sign::before,.um-icon-within .fa-peseta-sign::before{content:"\e221"}.um .fa-heading::before,.um-icon-within .fa-heading::before{content:"\f1dc"}.um .fa-header::before,.um-icon-within .fa-header::before{content:"\f1dc"}.um .fa-ghost::before,.um-icon-within .fa-ghost::before{content:"\f6e2"}.um .fa-list::before,.um-icon-within .fa-list::before{content:"\f03a"}.um .fa-list-squares::before,.um-icon-within .fa-list-squares::before{content:"\f03a"}.um .fa-square-phone-flip::before,.um-icon-within .fa-square-phone-flip::before{content:"\f87b"}.um .fa-phone-square-alt::before,.um-icon-within .fa-phone-square-alt::before{content:"\f87b"}.um .fa-cart-plus::before,.um-icon-within .fa-cart-plus::before{content:"\f217"}.um .fa-gamepad::before,.um-icon-within .fa-gamepad::before{content:"\f11b"}.um .fa-circle-dot::before,.um-icon-within .fa-circle-dot::before{content:"\f192"}.um .fa-dot-circle::before,.um-icon-within .fa-dot-circle::before{content:"\f192"}.um .fa-face-dizzy::before,.um-icon-within .fa-face-dizzy::before{content:"\f567"}.um .fa-dizzy::before,.um-icon-within .fa-dizzy::before{content:"\f567"}.um .fa-egg::before,.um-icon-within .fa-egg::before{content:"\f7fb"}.um .fa-house-medical-circle-xmark::before,.um-icon-within .fa-house-medical-circle-xmark::before{content:"\e513"}.um .fa-campground::before,.um-icon-within .fa-campground::before{content:"\f6bb"}.um .fa-folder-plus::before,.um-icon-within .fa-folder-plus::before{content:"\f65e"}.um .fa-futbol::before,.um-icon-within .fa-futbol::before{content:"\f1e3"}.um .fa-futbol-ball::before,.um-icon-within .fa-futbol-ball::before{content:"\f1e3"}.um .fa-soccer-ball::before,.um-icon-within .fa-soccer-ball::before{content:"\f1e3"}.um .fa-paintbrush::before,.um-icon-within .fa-paintbrush::before{content:"\f1fc"}.um .fa-paint-brush::before,.um-icon-within .fa-paint-brush::before{content:"\f1fc"}.um .fa-lock::before,.um-icon-within .fa-lock::before{content:"\f023"}.um .fa-gas-pump::before,.um-icon-within .fa-gas-pump::before{content:"\f52f"}.um .fa-hot-tub-person::before,.um-icon-within .fa-hot-tub-person::before{content:"\f593"}.um .fa-hot-tub::before,.um-icon-within .fa-hot-tub::before{content:"\f593"}.um .fa-map-location::before,.um-icon-within .fa-map-location::before{content:"\f59f"}.um .fa-map-marked::before,.um-icon-within .fa-map-marked::before{content:"\f59f"}.um .fa-house-flood-water::before,.um-icon-within .fa-house-flood-water::before{content:"\e50e"}.um .fa-tree::before,.um-icon-within .fa-tree::before{content:"\f1bb"}.um .fa-bridge-lock::before,.um-icon-within .fa-bridge-lock::before{content:"\e4cc"}.um .fa-sack-dollar::before,.um-icon-within .fa-sack-dollar::before{content:"\f81d"}.um .fa-pen-to-square::before,.um-icon-within .fa-pen-to-square::before{content:"\f044"}.um .fa-edit::before,.um-icon-within .fa-edit::before{content:"\f044"}.um .fa-car-side::before,.um-icon-within .fa-car-side::before{content:"\f5e4"}.um .fa-share-nodes::before,.um-icon-within .fa-share-nodes::before{content:"\f1e0"}.um .fa-share-alt::before,.um-icon-within .fa-share-alt::before{content:"\f1e0"}.um .fa-heart-circle-minus::before,.um-icon-within .fa-heart-circle-minus::before{content:"\e4ff"}.um .fa-hourglass-half::before,.um-icon-within .fa-hourglass-half::before{content:"\f252"}.um .fa-hourglass-2::before,.um-icon-within .fa-hourglass-2::before{content:"\f252"}.um .fa-microscope::before,.um-icon-within .fa-microscope::before{content:"\f610"}.um .fa-sink::before,.um-icon-within .fa-sink::before{content:"\e06d"}.um .fa-bag-shopping::before,.um-icon-within .fa-bag-shopping::before{content:"\f290"}.um .fa-shopping-bag::before,.um-icon-within .fa-shopping-bag::before{content:"\f290"}.um .fa-arrow-down-z-a::before,.um-icon-within .fa-arrow-down-z-a::before{content:"\f881"}.um .fa-sort-alpha-desc::before,.um-icon-within .fa-sort-alpha-desc::before{content:"\f881"}.um .fa-sort-alpha-down-alt::before,.um-icon-within .fa-sort-alpha-down-alt::before{content:"\f881"}.um .fa-mitten::before,.um-icon-within .fa-mitten::before{content:"\f7b5"}.um .fa-person-rays::before,.um-icon-within .fa-person-rays::before{content:"\e54d"}.um .fa-users::before,.um-icon-within .fa-users::before{content:"\f0c0"}.um .fa-eye-slash::before,.um-icon-within .fa-eye-slash::before{content:"\f070"}.um .fa-flask-vial::before,.um-icon-within .fa-flask-vial::before{content:"\e4f3"}.um .fa-hand::before,.um-icon-within .fa-hand::before{content:"\f256"}.um .fa-hand-paper::before,.um-icon-within .fa-hand-paper::before{content:"\f256"}.um .fa-om::before,.um-icon-within .fa-om::before{content:"\f679"}.um .fa-worm::before,.um-icon-within .fa-worm::before{content:"\e599"}.um .fa-house-circle-xmark::before,.um-icon-within .fa-house-circle-xmark::before{content:"\e50b"}.um .fa-plug::before,.um-icon-within .fa-plug::before{content:"\f1e6"}.um .fa-chevron-up::before,.um-icon-within .fa-chevron-up::before{content:"\f077"}.um .fa-hand-spock::before,.um-icon-within .fa-hand-spock::before{content:"\f259"}.um .fa-stopwatch::before,.um-icon-within .fa-stopwatch::before{content:"\f2f2"}.um .fa-face-kiss::before,.um-icon-within .fa-face-kiss::before{content:"\f596"}.um .fa-kiss::before,.um-icon-within .fa-kiss::before{content:"\f596"}.um .fa-bridge-circle-xmark::before,.um-icon-within .fa-bridge-circle-xmark::before{content:"\e4cb"}.um .fa-face-grin-tongue::before,.um-icon-within .fa-face-grin-tongue::before{content:"\f589"}.um .fa-grin-tongue::before,.um-icon-within .fa-grin-tongue::before{content:"\f589"}.um .fa-chess-bishop::before,.um-icon-within .fa-chess-bishop::before{content:"\f43a"}.um .fa-face-grin-wink::before,.um-icon-within .fa-face-grin-wink::before{content:"\f58c"}.um .fa-grin-wink::before,.um-icon-within .fa-grin-wink::before{content:"\f58c"}.um .fa-ear-deaf::before,.um-icon-within .fa-ear-deaf::before{content:"\f2a4"}.um .fa-deaf::before,.um-icon-within .fa-deaf::before{content:"\f2a4"}.um .fa-deafness::before,.um-icon-within .fa-deafness::before{content:"\f2a4"}.um .fa-hard-of-hearing::before,.um-icon-within .fa-hard-of-hearing::before{content:"\f2a4"}.um .fa-road-circle-check::before,.um-icon-within .fa-road-circle-check::before{content:"\e564"}.um .fa-dice-five::before,.um-icon-within .fa-dice-five::before{content:"\f523"}.um .fa-square-rss::before,.um-icon-within .fa-square-rss::before{content:"\f143"}.um .fa-rss-square::before,.um-icon-within .fa-rss-square::before{content:"\f143"}.um .fa-land-mine-on::before,.um-icon-within .fa-land-mine-on::before{content:"\e51b"}.um .fa-i-cursor::before,.um-icon-within .fa-i-cursor::before{content:"\f246"}.um .fa-stamp::before,.um-icon-within .fa-stamp::before{content:"\f5bf"}.um .fa-stairs::before,.um-icon-within .fa-stairs::before{content:"\e289"}.um .fa-i::before,.um-icon-within .fa-i::before{content:"I"}.um .fa-hryvnia-sign::before,.um-icon-within .fa-hryvnia-sign::before{content:"\f6f2"}.um .fa-hryvnia::before,.um-icon-within .fa-hryvnia::before{content:"\f6f2"}.um .fa-pills::before,.um-icon-within .fa-pills::before{content:"\f484"}.um .fa-face-grin-wide::before,.um-icon-within .fa-face-grin-wide::before{content:"\f581"}.um .fa-grin-alt::before,.um-icon-within .fa-grin-alt::before{content:"\f581"}.um .fa-tooth::before,.um-icon-within .fa-tooth::before{content:"\f5c9"}.um .fa-v::before,.um-icon-within .fa-v::before{content:"V"}.um .fa-bangladeshi-taka-sign::before,.um-icon-within .fa-bangladeshi-taka-sign::before{content:"\e2e6"}.um .fa-bicycle::before,.um-icon-within .fa-bicycle::before{content:"\f206"}.um .fa-staff-snake::before,.um-icon-within .fa-staff-snake::before{content:"\e579"}.um .fa-rod-asclepius::before,.um-icon-within .fa-rod-asclepius::before{content:"\e579"}.um .fa-rod-snake::before,.um-icon-within .fa-rod-snake::before{content:"\e579"}.um .fa-staff-aesculapius::before,.um-icon-within .fa-staff-aesculapius::before{content:"\e579"}.um .fa-head-side-cough-slash::before,.um-icon-within .fa-head-side-cough-slash::before{content:"\e062"}.um .fa-truck-medical::before,.um-icon-within .fa-truck-medical::before{content:"\f0f9"}.um .fa-ambulance::before,.um-icon-within .fa-ambulance::before{content:"\f0f9"}.um .fa-wheat-awn-circle-exclamation::before,.um-icon-within .fa-wheat-awn-circle-exclamation::before{content:"\e598"}.um .fa-snowman::before,.um-icon-within .fa-snowman::before{content:"\f7d0"}.um .fa-mortar-pestle::before,.um-icon-within .fa-mortar-pestle::before{content:"\f5a7"}.um .fa-road-barrier::before,.um-icon-within .fa-road-barrier::before{content:"\e562"}.um .fa-school::before,.um-icon-within .fa-school::before{content:"\f549"}.um .fa-igloo::before,.um-icon-within .fa-igloo::before{content:"\f7ae"}.um .fa-joint::before,.um-icon-within .fa-joint::before{content:"\f595"}.um .fa-angle-right::before,.um-icon-within .fa-angle-right::before{content:"\f105"}.um .fa-horse::before,.um-icon-within .fa-horse::before{content:"\f6f0"}.um .fa-q::before,.um-icon-within .fa-q::before{content:"Q"}.um .fa-g::before,.um-icon-within .fa-g::before{content:"G"}.um .fa-notes-medical::before,.um-icon-within .fa-notes-medical::before{content:"\f481"}.um .fa-temperature-half::before,.um-icon-within .fa-temperature-half::before{content:"\f2c9"}.um .fa-temperature-2::before,.um-icon-within .fa-temperature-2::before{content:"\f2c9"}.um .fa-thermometer-2::before,.um-icon-within .fa-thermometer-2::before{content:"\f2c9"}.um .fa-thermometer-half::before,.um-icon-within .fa-thermometer-half::before{content:"\f2c9"}.um .fa-dong-sign::before,.um-icon-within .fa-dong-sign::before{content:"\e169"}.um .fa-capsules::before,.um-icon-within .fa-capsules::before{content:"\f46b"}.um .fa-poo-storm::before,.um-icon-within .fa-poo-storm::before{content:"\f75a"}.um .fa-poo-bolt::before,.um-icon-within .fa-poo-bolt::before{content:"\f75a"}.um .fa-face-frown-open::before,.um-icon-within .fa-face-frown-open::before{content:"\f57a"}.um .fa-frown-open::before,.um-icon-within .fa-frown-open::before{content:"\f57a"}.um .fa-hand-point-up::before,.um-icon-within .fa-hand-point-up::before{content:"\f0a6"}.um .fa-money-bill::before,.um-icon-within .fa-money-bill::before{content:"\f0d6"}.um .fa-bookmark::before,.um-icon-within .fa-bookmark::before{content:"\f02e"}.um .fa-align-justify::before,.um-icon-within .fa-align-justify::before{content:"\f039"}.um .fa-umbrella-beach::before,.um-icon-within .fa-umbrella-beach::before{content:"\f5ca"}.um .fa-helmet-un::before,.um-icon-within .fa-helmet-un::before{content:"\e503"}.um .fa-bullseye::before,.um-icon-within .fa-bullseye::before{content:"\f140"}.um .fa-bacon::before,.um-icon-within .fa-bacon::before{content:"\f7e5"}.um .fa-hand-point-down::before,.um-icon-within .fa-hand-point-down::before{content:"\f0a7"}.um .fa-arrow-up-from-bracket::before,.um-icon-within .fa-arrow-up-from-bracket::before{content:"\e09a"}.um .fa-folder::before,.um-icon-within .fa-folder::before{content:"\f07b"}.um .fa-folder-blank::before,.um-icon-within .fa-folder-blank::before{content:"\f07b"}.um .fa-file-waveform::before,.um-icon-within .fa-file-waveform::before{content:"\f478"}.um .fa-file-medical-alt::before,.um-icon-within .fa-file-medical-alt::before{content:"\f478"}.um .fa-radiation::before,.um-icon-within .fa-radiation::before{content:"\f7b9"}.um .fa-chart-simple::before,.um-icon-within .fa-chart-simple::before{content:"\e473"}.um .fa-mars-stroke::before,.um-icon-within .fa-mars-stroke::before{content:"\f229"}.um .fa-vial::before,.um-icon-within .fa-vial::before{content:"\f492"}.um .fa-gauge::before,.um-icon-within .fa-gauge::before{content:"\f624"}.um .fa-dashboard::before,.um-icon-within .fa-dashboard::before{content:"\f624"}.um .fa-gauge-med::before,.um-icon-within .fa-gauge-med::before{content:"\f624"}.um .fa-tachometer-alt-average::before,.um-icon-within .fa-tachometer-alt-average::before{content:"\f624"}.um .fa-wand-magic-sparkles::before,.um-icon-within .fa-wand-magic-sparkles::before{content:"\e2ca"}.um .fa-magic-wand-sparkles::before,.um-icon-within .fa-magic-wand-sparkles::before{content:"\e2ca"}.um .fa-e::before,.um-icon-within .fa-e::before{content:"E"}.um .fa-pen-clip::before,.um-icon-within .fa-pen-clip::before{content:"\f305"}.um .fa-pen-alt::before,.um-icon-within .fa-pen-alt::before{content:"\f305"}.um .fa-bridge-circle-exclamation::before,.um-icon-within .fa-bridge-circle-exclamation::before{content:"\e4ca"}.um .fa-user::before,.um-icon-within .fa-user::before{content:"\f007"}.um .fa-school-circle-check::before,.um-icon-within .fa-school-circle-check::before{content:"\e56b"}.um .fa-dumpster::before,.um-icon-within .fa-dumpster::before{content:"\f793"}.um .fa-van-shuttle::before,.um-icon-within .fa-van-shuttle::before{content:"\f5b6"}.um .fa-shuttle-van::before,.um-icon-within .fa-shuttle-van::before{content:"\f5b6"}.um .fa-building-user::before,.um-icon-within .fa-building-user::before{content:"\e4da"}.um .fa-square-caret-left::before,.um-icon-within .fa-square-caret-left::before{content:"\f191"}.um .fa-caret-square-left::before,.um-icon-within .fa-caret-square-left::before{content:"\f191"}.um .fa-highlighter::before,.um-icon-within .fa-highlighter::before{content:"\f591"}.um .fa-key::before,.um-icon-within .fa-key::before{content:"\f084"}.um .fa-bullhorn::before,.um-icon-within .fa-bullhorn::before{content:"\f0a1"}.um .fa-globe::before,.um-icon-within .fa-globe::before{content:"\f0ac"}.um .fa-synagogue::before,.um-icon-within .fa-synagogue::before{content:"\f69b"}.um .fa-person-half-dress::before,.um-icon-within .fa-person-half-dress::before{content:"\e548"}.um .fa-road-bridge::before,.um-icon-within .fa-road-bridge::before{content:"\e563"}.um .fa-location-arrow::before,.um-icon-within .fa-location-arrow::before{content:"\f124"}.um .fa-c::before,.um-icon-within .fa-c::before{content:"C"}.um .fa-tablet-button::before,.um-icon-within .fa-tablet-button::before{content:"\f10a"}.um .fa-building-lock::before,.um-icon-within .fa-building-lock::before{content:"\e4d6"}.um .fa-pizza-slice::before,.um-icon-within .fa-pizza-slice::before{content:"\f818"}.um .fa-money-bill-wave::before,.um-icon-within .fa-money-bill-wave::before{content:"\f53a"}.um .fa-chart-area::before,.um-icon-within .fa-chart-area::before{content:"\f1fe"}.um .fa-area-chart::before,.um-icon-within .fa-area-chart::before{content:"\f1fe"}.um .fa-house-flag::before,.um-icon-within .fa-house-flag::before{content:"\e50d"}.um .fa-person-circle-minus::before,.um-icon-within .fa-person-circle-minus::before{content:"\e540"}.um .fa-ban::before,.um-icon-within .fa-ban::before{content:"\f05e"}.um .fa-cancel::before,.um-icon-within .fa-cancel::before{content:"\f05e"}.um .fa-camera-rotate::before,.um-icon-within .fa-camera-rotate::before{content:"\e0d8"}.um .fa-spray-can-sparkles::before,.um-icon-within .fa-spray-can-sparkles::before{content:"\f5d0"}.um .fa-air-freshener::before,.um-icon-within .fa-air-freshener::before{content:"\f5d0"}.um .fa-star::before,.um-icon-within .fa-star::before{content:"\f005"}.um .fa-repeat::before,.um-icon-within .fa-repeat::before{content:"\f363"}.um .fa-cross::before,.um-icon-within .fa-cross::before{content:"\f654"}.um .fa-box::before,.um-icon-within .fa-box::before{content:"\f466"}.um .fa-venus-mars::before,.um-icon-within .fa-venus-mars::before{content:"\f228"}.um .fa-arrow-pointer::before,.um-icon-within .fa-arrow-pointer::before{content:"\f245"}.um .fa-mouse-pointer::before,.um-icon-within .fa-mouse-pointer::before{content:"\f245"}.um .fa-maximize::before,.um-icon-within .fa-maximize::before{content:"\f31e"}.um .fa-expand-arrows-alt::before,.um-icon-within .fa-expand-arrows-alt::before{content:"\f31e"}.um .fa-charging-station::before,.um-icon-within .fa-charging-station::before{content:"\f5e7"}.um .fa-shapes::before,.um-icon-within .fa-shapes::before{content:"\f61f"}.um .fa-triangle-circle-square::before,.um-icon-within .fa-triangle-circle-square::before{content:"\f61f"}.um .fa-shuffle::before,.um-icon-within .fa-shuffle::before{content:"\f074"}.um .fa-random::before,.um-icon-within .fa-random::before{content:"\f074"}.um .fa-person-running::before,.um-icon-within .fa-person-running::before{content:"\f70c"}.um .fa-running::before,.um-icon-within .fa-running::before{content:"\f70c"}.um .fa-mobile-retro::before,.um-icon-within .fa-mobile-retro::before{content:"\e527"}.um .fa-grip-lines-vertical::before,.um-icon-within .fa-grip-lines-vertical::before{content:"\f7a5"}.um .fa-spider::before,.um-icon-within .fa-spider::before{content:"\f717"}.um .fa-hands-bound::before,.um-icon-within .fa-hands-bound::before{content:"\e4f9"}.um .fa-file-invoice-dollar::before,.um-icon-within .fa-file-invoice-dollar::before{content:"\f571"}.um .fa-plane-circle-exclamation::before,.um-icon-within .fa-plane-circle-exclamation::before{content:"\e556"}.um .fa-x-ray::before,.um-icon-within .fa-x-ray::before{content:"\f497"}.um .fa-spell-check::before,.um-icon-within .fa-spell-check::before{content:"\f891"}.um .fa-slash::before,.um-icon-within .fa-slash::before{content:"\f715"}.um .fa-computer-mouse::before,.um-icon-within .fa-computer-mouse::before{content:"\f8cc"}.um .fa-mouse::before,.um-icon-within .fa-mouse::before{content:"\f8cc"}.um .fa-arrow-right-to-bracket::before,.um-icon-within .fa-arrow-right-to-bracket::before{content:"\f090"}.um .fa-sign-in::before,.um-icon-within .fa-sign-in::before{content:"\f090"}.um .fa-shop-slash::before,.um-icon-within .fa-shop-slash::before{content:"\e070"}.um .fa-store-alt-slash::before,.um-icon-within .fa-store-alt-slash::before{content:"\e070"}.um .fa-server::before,.um-icon-within .fa-server::before{content:"\f233"}.um .fa-virus-covid-slash::before,.um-icon-within .fa-virus-covid-slash::before{content:"\e4a9"}.um .fa-shop-lock::before,.um-icon-within .fa-shop-lock::before{content:"\e4a5"}.um .fa-hourglass-start::before,.um-icon-within .fa-hourglass-start::before{content:"\f251"}.um .fa-hourglass-1::before,.um-icon-within .fa-hourglass-1::before{content:"\f251"}.um .fa-blender-phone::before,.um-icon-within .fa-blender-phone::before{content:"\f6b6"}.um .fa-building-wheat::before,.um-icon-within .fa-building-wheat::before{content:"\e4db"}.um .fa-person-breastfeeding::before,.um-icon-within .fa-person-breastfeeding::before{content:"\e53a"}.um .fa-right-to-bracket::before,.um-icon-within .fa-right-to-bracket::before{content:"\f2f6"}.um .fa-sign-in-alt::before,.um-icon-within .fa-sign-in-alt::before{content:"\f2f6"}.um .fa-venus::before,.um-icon-within .fa-venus::before{content:"\f221"}.um .fa-passport::before,.um-icon-within .fa-passport::before{content:"\f5ab"}.um .fa-heart-pulse::before,.um-icon-within .fa-heart-pulse::before{content:"\f21e"}.um .fa-heartbeat::before,.um-icon-within .fa-heartbeat::before{content:"\f21e"}.um .fa-people-carry-box::before,.um-icon-within .fa-people-carry-box::before{content:"\f4ce"}.um .fa-people-carry::before,.um-icon-within .fa-people-carry::before{content:"\f4ce"}.um .fa-temperature-high::before,.um-icon-within .fa-temperature-high::before{content:"\f769"}.um .fa-microchip::before,.um-icon-within .fa-microchip::before{content:"\f2db"}.um .fa-crown::before,.um-icon-within .fa-crown::before{content:"\f521"}.um .fa-weight-hanging::before,.um-icon-within .fa-weight-hanging::before{content:"\f5cd"}.um .fa-xmarks-lines::before,.um-icon-within .fa-xmarks-lines::before{content:"\e59a"}.um .fa-file-prescription::before,.um-icon-within .fa-file-prescription::before{content:"\f572"}.um .fa-weight-scale::before,.um-icon-within .fa-weight-scale::before{content:"\f496"}.um .fa-weight::before,.um-icon-within .fa-weight::before{content:"\f496"}.um .fa-user-group::before,.um-icon-within .fa-user-group::before{content:"\f500"}.um .fa-user-friends::before,.um-icon-within .fa-user-friends::before{content:"\f500"}.um .fa-arrow-up-a-z::before,.um-icon-within .fa-arrow-up-a-z::before{content:"\f15e"}.um .fa-sort-alpha-up::before,.um-icon-within .fa-sort-alpha-up::before{content:"\f15e"}.um .fa-chess-knight::before,.um-icon-within .fa-chess-knight::before{content:"\f441"}.um .fa-face-laugh-squint::before,.um-icon-within .fa-face-laugh-squint::before{content:"\f59b"}.um .fa-laugh-squint::before,.um-icon-within .fa-laugh-squint::before{content:"\f59b"}.um .fa-wheelchair::before,.um-icon-within .fa-wheelchair::before{content:"\f193"}.um .fa-circle-arrow-up::before,.um-icon-within .fa-circle-arrow-up::before{content:"\f0aa"}.um .fa-arrow-circle-up::before,.um-icon-within .fa-arrow-circle-up::before{content:"\f0aa"}.um .fa-toggle-on::before,.um-icon-within .fa-toggle-on::before{content:"\f205"}.um .fa-person-walking::before,.um-icon-within .fa-person-walking::before{content:"\f554"}.um .fa-walking::before,.um-icon-within .fa-walking::before{content:"\f554"}.um .fa-l::before,.um-icon-within .fa-l::before{content:"L"}.um .fa-fire::before,.um-icon-within .fa-fire::before{content:"\f06d"}.um .fa-bed-pulse::before,.um-icon-within .fa-bed-pulse::before{content:"\f487"}.um .fa-procedures::before,.um-icon-within .fa-procedures::before{content:"\f487"}.um .fa-shuttle-space::before,.um-icon-within .fa-shuttle-space::before{content:"\f197"}.um .fa-space-shuttle::before,.um-icon-within .fa-space-shuttle::before{content:"\f197"}.um .fa-face-laugh::before,.um-icon-within .fa-face-laugh::before{content:"\f599"}.um .fa-laugh::before,.um-icon-within .fa-laugh::before{content:"\f599"}.um .fa-folder-open::before,.um-icon-within .fa-folder-open::before{content:"\f07c"}.um .fa-heart-circle-plus::before,.um-icon-within .fa-heart-circle-plus::before{content:"\e500"}.um .fa-code-fork::before,.um-icon-within .fa-code-fork::before{content:"\e13b"}.um .fa-city::before,.um-icon-within .fa-city::before{content:"\f64f"}.um .fa-microphone-lines::before,.um-icon-within .fa-microphone-lines::before{content:"\f3c9"}.um .fa-microphone-alt::before,.um-icon-within .fa-microphone-alt::before{content:"\f3c9"}.um .fa-pepper-hot::before,.um-icon-within .fa-pepper-hot::before{content:"\f816"}.um .fa-unlock::before,.um-icon-within .fa-unlock::before{content:"\f09c"}.um .fa-colon-sign::before,.um-icon-within .fa-colon-sign::before{content:"\e140"}.um .fa-headset::before,.um-icon-within .fa-headset::before{content:"\f590"}.um .fa-store-slash::before,.um-icon-within .fa-store-slash::before{content:"\e071"}.um .fa-road-circle-xmark::before,.um-icon-within .fa-road-circle-xmark::before{content:"\e566"}.um .fa-user-minus::before,.um-icon-within .fa-user-minus::before{content:"\f503"}.um .fa-mars-stroke-up::before,.um-icon-within .fa-mars-stroke-up::before{content:"\f22a"}.um .fa-mars-stroke-v::before,.um-icon-within .fa-mars-stroke-v::before{content:"\f22a"}.um .fa-champagne-glasses::before,.um-icon-within .fa-champagne-glasses::before{content:"\f79f"}.um .fa-glass-cheers::before,.um-icon-within .fa-glass-cheers::before{content:"\f79f"}.um .fa-clipboard::before,.um-icon-within .fa-clipboard::before{content:"\f328"}.um .fa-house-circle-exclamation::before,.um-icon-within .fa-house-circle-exclamation::before{content:"\e50a"}.um .fa-file-arrow-up::before,.um-icon-within .fa-file-arrow-up::before{content:"\f574"}.um .fa-file-upload::before,.um-icon-within .fa-file-upload::before{content:"\f574"}.um .fa-wifi::before,.um-icon-within .fa-wifi::before{content:"\f1eb"}.um .fa-wifi-3::before,.um-icon-within .fa-wifi-3::before{content:"\f1eb"}.um .fa-wifi-strong::before,.um-icon-within .fa-wifi-strong::before{content:"\f1eb"}.um .fa-bath::before,.um-icon-within .fa-bath::before{content:"\f2cd"}.um .fa-bathtub::before,.um-icon-within .fa-bathtub::before{content:"\f2cd"}.um .fa-underline::before,.um-icon-within .fa-underline::before{content:"\f0cd"}.um .fa-user-pen::before,.um-icon-within .fa-user-pen::before{content:"\f4ff"}.um .fa-user-edit::before,.um-icon-within .fa-user-edit::before{content:"\f4ff"}.um .fa-signature::before,.um-icon-within .fa-signature::before{content:"\f5b7"}.um .fa-stroopwafel::before,.um-icon-within .fa-stroopwafel::before{content:"\f551"}.um .fa-bold::before,.um-icon-within .fa-bold::before{content:"\f032"}.um .fa-anchor-lock::before,.um-icon-within .fa-anchor-lock::before{content:"\e4ad"}.um .fa-building-ngo::before,.um-icon-within .fa-building-ngo::before{content:"\e4d7"}.um .fa-manat-sign::before,.um-icon-within .fa-manat-sign::before{content:"\e1d5"}.um .fa-not-equal::before,.um-icon-within .fa-not-equal::before{content:"\f53e"}.um .fa-border-top-left::before,.um-icon-within .fa-border-top-left::before{content:"\f853"}.um .fa-border-style::before,.um-icon-within .fa-border-style::before{content:"\f853"}.um .fa-map-location-dot::before,.um-icon-within .fa-map-location-dot::before{content:"\f5a0"}.um .fa-map-marked-alt::before,.um-icon-within .fa-map-marked-alt::before{content:"\f5a0"}.um .fa-jedi::before,.um-icon-within .fa-jedi::before{content:"\f669"}.um .fa-square-poll-vertical::before,.um-icon-within .fa-square-poll-vertical::before{content:"\f681"}.um .fa-poll::before,.um-icon-within .fa-poll::before{content:"\f681"}.um .fa-mug-hot::before,.um-icon-within .fa-mug-hot::before{content:"\f7b6"}.um .fa-car-battery::before,.um-icon-within .fa-car-battery::before{content:"\f5df"}.um .fa-battery-car::before,.um-icon-within .fa-battery-car::before{content:"\f5df"}.um .fa-gift::before,.um-icon-within .fa-gift::before{content:"\f06b"}.um .fa-dice-two::before,.um-icon-within .fa-dice-two::before{content:"\f528"}.um .fa-chess-queen::before,.um-icon-within .fa-chess-queen::before{content:"\f445"}.um .fa-glasses::before,.um-icon-within .fa-glasses::before{content:"\f530"}.um .fa-chess-board::before,.um-icon-within .fa-chess-board::before{content:"\f43c"}.um .fa-building-circle-check::before,.um-icon-within .fa-building-circle-check::before{content:"\e4d2"}.um .fa-person-chalkboard::before,.um-icon-within .fa-person-chalkboard::before{content:"\e53d"}.um .fa-mars-stroke-right::before,.um-icon-within .fa-mars-stroke-right::before{content:"\f22b"}.um .fa-mars-stroke-h::before,.um-icon-within .fa-mars-stroke-h::before{content:"\f22b"}.um .fa-hand-back-fist::before,.um-icon-within .fa-hand-back-fist::before{content:"\f255"}.um .fa-hand-rock::before,.um-icon-within .fa-hand-rock::before{content:"\f255"}.um .fa-square-caret-up::before,.um-icon-within .fa-square-caret-up::before{content:"\f151"}.um .fa-caret-square-up::before,.um-icon-within .fa-caret-square-up::before{content:"\f151"}.um .fa-cloud-showers-water::before,.um-icon-within .fa-cloud-showers-water::before{content:"\e4e4"}.um .fa-chart-bar::before,.um-icon-within .fa-chart-bar::before{content:"\f080"}.um .fa-bar-chart::before,.um-icon-within .fa-bar-chart::before{content:"\f080"}.um .fa-hands-bubbles::before,.um-icon-within .fa-hands-bubbles::before{content:"\e05e"}.um .fa-hands-wash::before,.um-icon-within .fa-hands-wash::before{content:"\e05e"}.um .fa-less-than-equal::before,.um-icon-within .fa-less-than-equal::before{content:"\f537"}.um .fa-train::before,.um-icon-within .fa-train::before{content:"\f238"}.um .fa-eye-low-vision::before,.um-icon-within .fa-eye-low-vision::before{content:"\f2a8"}.um .fa-low-vision::before,.um-icon-within .fa-low-vision::before{content:"\f2a8"}.um .fa-crow::before,.um-icon-within .fa-crow::before{content:"\f520"}.um .fa-sailboat::before,.um-icon-within .fa-sailboat::before{content:"\e445"}.um .fa-window-restore::before,.um-icon-within .fa-window-restore::before{content:"\f2d2"}.um .fa-square-plus::before,.um-icon-within .fa-square-plus::before{content:"\f0fe"}.um .fa-plus-square::before,.um-icon-within .fa-plus-square::before{content:"\f0fe"}.um .fa-torii-gate::before,.um-icon-within .fa-torii-gate::before{content:"\f6a1"}.um .fa-frog::before,.um-icon-within .fa-frog::before{content:"\f52e"}.um .fa-bucket::before,.um-icon-within .fa-bucket::before{content:"\e4cf"}.um .fa-image::before,.um-icon-within .fa-image::before{content:"\f03e"}.um .fa-microphone::before,.um-icon-within .fa-microphone::before{content:"\f130"}.um .fa-cow::before,.um-icon-within .fa-cow::before{content:"\f6c8"}.um .fa-caret-up::before,.um-icon-within .fa-caret-up::before{content:"\f0d8"}.um .fa-screwdriver::before,.um-icon-within .fa-screwdriver::before{content:"\f54a"}.um .fa-folder-closed::before,.um-icon-within .fa-folder-closed::before{content:"\e185"}.um .fa-house-tsunami::before,.um-icon-within .fa-house-tsunami::before{content:"\e515"}.um .fa-square-nfi::before,.um-icon-within .fa-square-nfi::before{content:"\e576"}.um .fa-arrow-up-from-ground-water::before,.um-icon-within .fa-arrow-up-from-ground-water::before{content:"\e4b5"}.um .fa-martini-glass::before,.um-icon-within .fa-martini-glass::before{content:"\f57b"}.um .fa-glass-martini-alt::before,.um-icon-within .fa-glass-martini-alt::before{content:"\f57b"}.um .fa-rotate-left::before,.um-icon-within .fa-rotate-left::before{content:"\f2ea"}.um .fa-rotate-back::before,.um-icon-within .fa-rotate-back::before{content:"\f2ea"}.um .fa-rotate-backward::before,.um-icon-within .fa-rotate-backward::before{content:"\f2ea"}.um .fa-undo-alt::before,.um-icon-within .fa-undo-alt::before{content:"\f2ea"}.um .fa-table-columns::before,.um-icon-within .fa-table-columns::before{content:"\f0db"}.um .fa-columns::before,.um-icon-within .fa-columns::before{content:"\f0db"}.um .fa-lemon::before,.um-icon-within .fa-lemon::before{content:"\f094"}.um .fa-head-side-mask::before,.um-icon-within .fa-head-side-mask::before{content:"\e063"}.um .fa-handshake::before,.um-icon-within .fa-handshake::before{content:"\f2b5"}.um .fa-gem::before,.um-icon-within .fa-gem::before{content:"\f3a5"}.um .fa-dolly::before,.um-icon-within .fa-dolly::before{content:"\f472"}.um .fa-dolly-box::before,.um-icon-within .fa-dolly-box::before{content:"\f472"}.um .fa-smoking::before,.um-icon-within .fa-smoking::before{content:"\f48d"}.um .fa-minimize::before,.um-icon-within .fa-minimize::before{content:"\f78c"}.um .fa-compress-arrows-alt::before,.um-icon-within .fa-compress-arrows-alt::before{content:"\f78c"}.um .fa-monument::before,.um-icon-within .fa-monument::before{content:"\f5a6"}.um .fa-snowplow::before,.um-icon-within .fa-snowplow::before{content:"\f7d2"}.um .fa-angles-right::before,.um-icon-within .fa-angles-right::before{content:"\f101"}.um .fa-angle-double-right::before,.um-icon-within .fa-angle-double-right::before{content:"\f101"}.um .fa-cannabis::before,.um-icon-within .fa-cannabis::before{content:"\f55f"}.um .fa-circle-play::before,.um-icon-within .fa-circle-play::before{content:"\f144"}.um .fa-play-circle::before,.um-icon-within .fa-play-circle::before{content:"\f144"}.um .fa-tablets::before,.um-icon-within .fa-tablets::before{content:"\f490"}.um .fa-ethernet::before,.um-icon-within .fa-ethernet::before{content:"\f796"}.um .fa-euro-sign::before,.um-icon-within .fa-euro-sign::before{content:"\f153"}.um .fa-eur::before,.um-icon-within .fa-eur::before{content:"\f153"}.um .fa-euro::before,.um-icon-within .fa-euro::before{content:"\f153"}.um .fa-chair::before,.um-icon-within .fa-chair::before{content:"\f6c0"}.um .fa-circle-check::before,.um-icon-within .fa-circle-check::before{content:"\f058"}.um .fa-check-circle::before,.um-icon-within .fa-check-circle::before{content:"\f058"}.um .fa-circle-stop::before,.um-icon-within .fa-circle-stop::before{content:"\f28d"}.um .fa-stop-circle::before,.um-icon-within .fa-stop-circle::before{content:"\f28d"}.um .fa-compass-drafting::before,.um-icon-within .fa-compass-drafting::before{content:"\f568"}.um .fa-drafting-compass::before,.um-icon-within .fa-drafting-compass::before{content:"\f568"}.um .fa-plate-wheat::before,.um-icon-within .fa-plate-wheat::before{content:"\e55a"}.um .fa-icicles::before,.um-icon-within .fa-icicles::before{content:"\f7ad"}.um .fa-person-shelter::before,.um-icon-within .fa-person-shelter::before{content:"\e54f"}.um .fa-neuter::before,.um-icon-within .fa-neuter::before{content:"\f22c"}.um .fa-id-badge::before,.um-icon-within .fa-id-badge::before{content:"\f2c1"}.um .fa-marker::before,.um-icon-within .fa-marker::before{content:"\f5a1"}.um .fa-face-laugh-beam::before,.um-icon-within .fa-face-laugh-beam::before{content:"\f59a"}.um .fa-laugh-beam::before,.um-icon-within .fa-laugh-beam::before{content:"\f59a"}.um .fa-helicopter-symbol::before,.um-icon-within .fa-helicopter-symbol::before{content:"\e502"}.um .fa-universal-access::before,.um-icon-within .fa-universal-access::before{content:"\f29a"}.um .fa-circle-chevron-up::before,.um-icon-within .fa-circle-chevron-up::before{content:"\f139"}.um .fa-chevron-circle-up::before,.um-icon-within .fa-chevron-circle-up::before{content:"\f139"}.um .fa-lari-sign::before,.um-icon-within .fa-lari-sign::before{content:"\e1c8"}.um .fa-volcano::before,.um-icon-within .fa-volcano::before{content:"\f770"}.um .fa-person-walking-dashed-line-arrow-right::before,.um-icon-within .fa-person-walking-dashed-line-arrow-right::before{content:"\e553"}.um .fa-sterling-sign::before,.um-icon-within .fa-sterling-sign::before{content:"\f154"}.um .fa-gbp::before,.um-icon-within .fa-gbp::before{content:"\f154"}.um .fa-pound-sign::before,.um-icon-within .fa-pound-sign::before{content:"\f154"}.um .fa-viruses::before,.um-icon-within .fa-viruses::before{content:"\e076"}.um .fa-square-person-confined::before,.um-icon-within .fa-square-person-confined::before{content:"\e577"}.um .fa-user-tie::before,.um-icon-within .fa-user-tie::before{content:"\f508"}.um .fa-arrow-down-long::before,.um-icon-within .fa-arrow-down-long::before{content:"\f175"}.um .fa-long-arrow-down::before,.um-icon-within .fa-long-arrow-down::before{content:"\f175"}.um .fa-tent-arrow-down-to-line::before,.um-icon-within .fa-tent-arrow-down-to-line::before{content:"\e57e"}.um .fa-certificate::before,.um-icon-within .fa-certificate::before{content:"\f0a3"}.um .fa-reply-all::before,.um-icon-within .fa-reply-all::before{content:"\f122"}.um .fa-mail-reply-all::before,.um-icon-within .fa-mail-reply-all::before{content:"\f122"}.um .fa-suitcase::before,.um-icon-within .fa-suitcase::before{content:"\f0f2"}.um .fa-person-skating::before,.um-icon-within .fa-person-skating::before{content:"\f7c5"}.um .fa-skating::before,.um-icon-within .fa-skating::before{content:"\f7c5"}.um .fa-filter-circle-dollar::before,.um-icon-within .fa-filter-circle-dollar::before{content:"\f662"}.um .fa-funnel-dollar::before,.um-icon-within .fa-funnel-dollar::before{content:"\f662"}.um .fa-camera-retro::before,.um-icon-within .fa-camera-retro::before{content:"\f083"}.um .fa-circle-arrow-down::before,.um-icon-within .fa-circle-arrow-down::before{content:"\f0ab"}.um .fa-arrow-circle-down::before,.um-icon-within .fa-arrow-circle-down::before{content:"\f0ab"}.um .fa-file-import::before,.um-icon-within .fa-file-import::before{content:"\f56f"}.um .fa-arrow-right-to-file::before,.um-icon-within .fa-arrow-right-to-file::before{content:"\f56f"}.um .fa-square-arrow-up-right::before,.um-icon-within .fa-square-arrow-up-right::before{content:"\f14c"}.um .fa-external-link-square::before,.um-icon-within .fa-external-link-square::before{content:"\f14c"}.um .fa-box-open::before,.um-icon-within .fa-box-open::before{content:"\f49e"}.um .fa-scroll::before,.um-icon-within .fa-scroll::before{content:"\f70e"}.um .fa-spa::before,.um-icon-within .fa-spa::before{content:"\f5bb"}.um .fa-location-pin-lock::before,.um-icon-within .fa-location-pin-lock::before{content:"\e51f"}.um .fa-pause::before,.um-icon-within .fa-pause::before{content:"\f04c"}.um .fa-hill-avalanche::before,.um-icon-within .fa-hill-avalanche::before{content:"\e507"}.um .fa-temperature-empty::before,.um-icon-within .fa-temperature-empty::before{content:"\f2cb"}.um .fa-temperature-0::before,.um-icon-within .fa-temperature-0::before{content:"\f2cb"}.um .fa-thermometer-0::before,.um-icon-within .fa-thermometer-0::before{content:"\f2cb"}.um .fa-thermometer-empty::before,.um-icon-within .fa-thermometer-empty::before{content:"\f2cb"}.um .fa-bomb::before,.um-icon-within .fa-bomb::before{content:"\f1e2"}.um .fa-registered::before,.um-icon-within .fa-registered::before{content:"\f25d"}.um .fa-address-card::before,.um-icon-within .fa-address-card::before{content:"\f2bb"}.um .fa-contact-card::before,.um-icon-within .fa-contact-card::before{content:"\f2bb"}.um .fa-vcard::before,.um-icon-within .fa-vcard::before{content:"\f2bb"}.um .fa-scale-unbalanced-flip::before,.um-icon-within .fa-scale-unbalanced-flip::before{content:"\f516"}.um .fa-balance-scale-right::before,.um-icon-within .fa-balance-scale-right::before{content:"\f516"}.um .fa-subscript::before,.um-icon-within .fa-subscript::before{content:"\f12c"}.um .fa-diamond-turn-right::before,.um-icon-within .fa-diamond-turn-right::before{content:"\f5eb"}.um .fa-directions::before,.um-icon-within .fa-directions::before{content:"\f5eb"}.um .fa-burst::before,.um-icon-within .fa-burst::before{content:"\e4dc"}.um .fa-house-laptop::before,.um-icon-within .fa-house-laptop::before{content:"\e066"}.um .fa-laptop-house::before,.um-icon-within .fa-laptop-house::before{content:"\e066"}.um .fa-face-tired::before,.um-icon-within .fa-face-tired::before{content:"\f5c8"}.um .fa-tired::before,.um-icon-within .fa-tired::before{content:"\f5c8"}.um .fa-money-bills::before,.um-icon-within .fa-money-bills::before{content:"\e1f3"}.um .fa-smog::before,.um-icon-within .fa-smog::before{content:"\f75f"}.um .fa-crutch::before,.um-icon-within .fa-crutch::before{content:"\f7f7"}.um .fa-cloud-arrow-up::before,.um-icon-within .fa-cloud-arrow-up::before{content:"\f0ee"}.um .fa-cloud-upload::before,.um-icon-within .fa-cloud-upload::before{content:"\f0ee"}.um .fa-cloud-upload-alt::before,.um-icon-within .fa-cloud-upload-alt::before{content:"\f0ee"}.um .fa-palette::before,.um-icon-within .fa-palette::before{content:"\f53f"}.um .fa-arrows-turn-right::before,.um-icon-within .fa-arrows-turn-right::before{content:"\e4c0"}.um .fa-vest::before,.um-icon-within .fa-vest::before{content:"\e085"}.um .fa-ferry::before,.um-icon-within .fa-ferry::before{content:"\e4ea"}.um .fa-arrows-down-to-people::before,.um-icon-within .fa-arrows-down-to-people::before{content:"\e4b9"}.um .fa-seedling::before,.um-icon-within .fa-seedling::before{content:"\f4d8"}.um .fa-sprout::before,.um-icon-within .fa-sprout::before{content:"\f4d8"}.um .fa-left-right::before,.um-icon-within .fa-left-right::before{content:"\f337"}.um .fa-arrows-alt-h::before,.um-icon-within .fa-arrows-alt-h::before{content:"\f337"}.um .fa-boxes-packing::before,.um-icon-within .fa-boxes-packing::before{content:"\e4c7"}.um .fa-circle-arrow-left::before,.um-icon-within .fa-circle-arrow-left::before{content:"\f0a8"}.um .fa-arrow-circle-left::before,.um-icon-within .fa-arrow-circle-left::before{content:"\f0a8"}.um .fa-group-arrows-rotate::before,.um-icon-within .fa-group-arrows-rotate::before{content:"\e4f6"}.um .fa-bowl-food::before,.um-icon-within .fa-bowl-food::before{content:"\e4c6"}.um .fa-candy-cane::before,.um-icon-within .fa-candy-cane::before{content:"\f786"}.um .fa-arrow-down-wide-short::before,.um-icon-within .fa-arrow-down-wide-short::before{content:"\f160"}.um .fa-sort-amount-asc::before,.um-icon-within .fa-sort-amount-asc::before{content:"\f160"}.um .fa-sort-amount-down::before,.um-icon-within .fa-sort-amount-down::before{content:"\f160"}.um .fa-cloud-bolt::before,.um-icon-within .fa-cloud-bolt::before{content:"\f76c"}.um .fa-thunderstorm::before,.um-icon-within .fa-thunderstorm::before{content:"\f76c"}.um .fa-text-slash::before,.um-icon-within .fa-text-slash::before{content:"\f87d"}.um .fa-remove-format::before,.um-icon-within .fa-remove-format::before{content:"\f87d"}.um .fa-face-smile-wink::before,.um-icon-within .fa-face-smile-wink::before{content:"\f4da"}.um .fa-smile-wink::before,.um-icon-within .fa-smile-wink::before{content:"\f4da"}.um .fa-file-word::before,.um-icon-within .fa-file-word::before{content:"\f1c2"}.um .fa-file-powerpoint::before,.um-icon-within .fa-file-powerpoint::before{content:"\f1c4"}.um .fa-arrows-left-right::before,.um-icon-within .fa-arrows-left-right::before{content:"\f07e"}.um .fa-arrows-h::before,.um-icon-within .fa-arrows-h::before{content:"\f07e"}.um .fa-house-lock::before,.um-icon-within .fa-house-lock::before{content:"\e510"}.um .fa-cloud-arrow-down::before,.um-icon-within .fa-cloud-arrow-down::before{content:"\f0ed"}.um .fa-cloud-download::before,.um-icon-within .fa-cloud-download::before{content:"\f0ed"}.um .fa-cloud-download-alt::before,.um-icon-within .fa-cloud-download-alt::before{content:"\f0ed"}.um .fa-children::before,.um-icon-within .fa-children::before{content:"\e4e1"}.um .fa-chalkboard::before,.um-icon-within .fa-chalkboard::before{content:"\f51b"}.um .fa-blackboard::before,.um-icon-within .fa-blackboard::before{content:"\f51b"}.um .fa-user-large-slash::before,.um-icon-within .fa-user-large-slash::before{content:"\f4fa"}.um .fa-user-alt-slash::before,.um-icon-within .fa-user-alt-slash::before{content:"\f4fa"}.um .fa-envelope-open::before,.um-icon-within .fa-envelope-open::before{content:"\f2b6"}.um .fa-handshake-simple-slash::before,.um-icon-within .fa-handshake-simple-slash::before{content:"\e05f"}.um .fa-handshake-alt-slash::before,.um-icon-within .fa-handshake-alt-slash::before{content:"\e05f"}.um .fa-mattress-pillow::before,.um-icon-within .fa-mattress-pillow::before{content:"\e525"}.um .fa-guarani-sign::before,.um-icon-within .fa-guarani-sign::before{content:"\e19a"}.um .fa-arrows-rotate::before,.um-icon-within .fa-arrows-rotate::before{content:"\f021"}.um .fa-refresh::before,.um-icon-within .fa-refresh::before{content:"\f021"}.um .fa-sync::before,.um-icon-within .fa-sync::before{content:"\f021"}.um .fa-fire-extinguisher::before,.um-icon-within .fa-fire-extinguisher::before{content:"\f134"}.um .fa-cruzeiro-sign::before,.um-icon-within .fa-cruzeiro-sign::before{content:"\e152"}.um .fa-greater-than-equal::before,.um-icon-within .fa-greater-than-equal::before{content:"\f532"}.um .fa-shield-halved::before,.um-icon-within .fa-shield-halved::before{content:"\f3ed"}.um .fa-shield-alt::before,.um-icon-within .fa-shield-alt::before{content:"\f3ed"}.um .fa-book-atlas::before,.um-icon-within .fa-book-atlas::before{content:"\f558"}.um .fa-atlas::before,.um-icon-within .fa-atlas::before{content:"\f558"}.um .fa-virus::before,.um-icon-within .fa-virus::before{content:"\e074"}.um .fa-envelope-circle-check::before,.um-icon-within .fa-envelope-circle-check::before{content:"\e4e8"}.um .fa-layer-group::before,.um-icon-within .fa-layer-group::before{content:"\f5fd"}.um .fa-arrows-to-dot::before,.um-icon-within .fa-arrows-to-dot::before{content:"\e4be"}.um .fa-archway::before,.um-icon-within .fa-archway::before{content:"\f557"}.um .fa-heart-circle-check::before,.um-icon-within .fa-heart-circle-check::before{content:"\e4fd"}.um .fa-house-chimney-crack::before,.um-icon-within .fa-house-chimney-crack::before{content:"\f6f1"}.um .fa-house-damage::before,.um-icon-within .fa-house-damage::before{content:"\f6f1"}.um .fa-file-zipper::before,.um-icon-within .fa-file-zipper::before{content:"\f1c6"}.um .fa-file-archive::before,.um-icon-within .fa-file-archive::before{content:"\f1c6"}.um .fa-square::before,.um-icon-within .fa-square::before{content:"\f0c8"}.um .fa-martini-glass-empty::before,.um-icon-within .fa-martini-glass-empty::before{content:"\f000"}.um .fa-glass-martini::before,.um-icon-within .fa-glass-martini::before{content:"\f000"}.um .fa-couch::before,.um-icon-within .fa-couch::before{content:"\f4b8"}.um .fa-cedi-sign::before,.um-icon-within .fa-cedi-sign::before{content:"\e0df"}.um .fa-italic::before,.um-icon-within .fa-italic::before{content:"\f033"}.um .fa-table-cells-column-lock::before,.um-icon-within .fa-table-cells-column-lock::before{content:"\e678"}.um .fa-church::before,.um-icon-within .fa-church::before{content:"\f51d"}.um .fa-comments-dollar::before,.um-icon-within .fa-comments-dollar::before{content:"\f653"}.um .fa-democrat::before,.um-icon-within .fa-democrat::before{content:"\f747"}.um .fa-z::before,.um-icon-within .fa-z::before{content:"Z"}.um .fa-person-skiing::before,.um-icon-within .fa-person-skiing::before{content:"\f7c9"}.um .fa-skiing::before,.um-icon-within .fa-skiing::before{content:"\f7c9"}.um .fa-road-lock::before,.um-icon-within .fa-road-lock::before{content:"\e567"}.um .fa-a::before,.um-icon-within .fa-a::before{content:"A"}.um .fa-temperature-arrow-down::before,.um-icon-within .fa-temperature-arrow-down::before{content:"\e03f"}.um .fa-temperature-down::before,.um-icon-within .fa-temperature-down::before{content:"\e03f"}.um .fa-feather-pointed::before,.um-icon-within .fa-feather-pointed::before{content:"\f56b"}.um .fa-feather-alt::before,.um-icon-within .fa-feather-alt::before{content:"\f56b"}.um .fa-p::before,.um-icon-within .fa-p::before{content:"P"}.um .fa-snowflake::before,.um-icon-within .fa-snowflake::before{content:"\f2dc"}.um .fa-newspaper::before,.um-icon-within .fa-newspaper::before{content:"\f1ea"}.um .fa-rectangle-ad::before,.um-icon-within .fa-rectangle-ad::before{content:"\f641"}.um .fa-ad::before,.um-icon-within .fa-ad::before{content:"\f641"}.um .fa-circle-arrow-right::before,.um-icon-within .fa-circle-arrow-right::before{content:"\f0a9"}.um .fa-arrow-circle-right::before,.um-icon-within .fa-arrow-circle-right::before{content:"\f0a9"}.um .fa-filter-circle-xmark::before,.um-icon-within .fa-filter-circle-xmark::before{content:"\e17b"}.um .fa-locust::before,.um-icon-within .fa-locust::before{content:"\e520"}.um .fa-sort::before,.um-icon-within .fa-sort::before{content:"\f0dc"}.um .fa-unsorted::before,.um-icon-within .fa-unsorted::before{content:"\f0dc"}.um .fa-list-ol::before,.um-icon-within .fa-list-ol::before{content:"\f0cb"}.um .fa-list-1-2::before,.um-icon-within .fa-list-1-2::before{content:"\f0cb"}.um .fa-list-numeric::before,.um-icon-within .fa-list-numeric::before{content:"\f0cb"}.um .fa-person-dress-burst::before,.um-icon-within .fa-person-dress-burst::before{content:"\e544"}.um .fa-money-check-dollar::before,.um-icon-within .fa-money-check-dollar::before{content:"\f53d"}.um .fa-money-check-alt::before,.um-icon-within .fa-money-check-alt::before{content:"\f53d"}.um .fa-vector-square::before,.um-icon-within .fa-vector-square::before{content:"\f5cb"}.um .fa-bread-slice::before,.um-icon-within .fa-bread-slice::before{content:"\f7ec"}.um .fa-language::before,.um-icon-within .fa-language::before{content:"\f1ab"}.um .fa-face-kiss-wink-heart::before,.um-icon-within .fa-face-kiss-wink-heart::before{content:"\f598"}.um .fa-kiss-wink-heart::before,.um-icon-within .fa-kiss-wink-heart::before{content:"\f598"}.um .fa-filter::before,.um-icon-within .fa-filter::before{content:"\f0b0"}.um .fa-question::before,.um-icon-within .fa-question::before{content:"\?"}.um .fa-file-signature::before,.um-icon-within .fa-file-signature::before{content:"\f573"}.um .fa-up-down-left-right::before,.um-icon-within .fa-up-down-left-right::before{content:"\f0b2"}.um .fa-arrows-alt::before,.um-icon-within .fa-arrows-alt::before{content:"\f0b2"}.um .fa-house-chimney-user::before,.um-icon-within .fa-house-chimney-user::before{content:"\e065"}.um .fa-hand-holding-heart::before,.um-icon-within .fa-hand-holding-heart::before{content:"\f4be"}.um .fa-puzzle-piece::before,.um-icon-within .fa-puzzle-piece::before{content:"\f12e"}.um .fa-money-check::before,.um-icon-within .fa-money-check::before{content:"\f53c"}.um .fa-star-half-stroke::before,.um-icon-within .fa-star-half-stroke::before{content:"\f5c0"}.um .fa-star-half-alt::before,.um-icon-within .fa-star-half-alt::before{content:"\f5c0"}.um .fa-code::before,.um-icon-within .fa-code::before{content:"\f121"}.um .fa-whiskey-glass::before,.um-icon-within .fa-whiskey-glass::before{content:"\f7a0"}.um .fa-glass-whiskey::before,.um-icon-within .fa-glass-whiskey::before{content:"\f7a0"}.um .fa-building-circle-exclamation::before,.um-icon-within .fa-building-circle-exclamation::before{content:"\e4d3"}.um .fa-magnifying-glass-chart::before,.um-icon-within .fa-magnifying-glass-chart::before{content:"\e522"}.um .fa-arrow-up-right-from-square::before,.um-icon-within .fa-arrow-up-right-from-square::before{content:"\f08e"}.um .fa-external-link::before,.um-icon-within .fa-external-link::before{content:"\f08e"}.um .fa-cubes-stacked::before,.um-icon-within .fa-cubes-stacked::before{content:"\e4e6"}.um .fa-won-sign::before,.um-icon-within .fa-won-sign::before{content:"\f159"}.um .fa-krw::before,.um-icon-within .fa-krw::before{content:"\f159"}.um .fa-won::before,.um-icon-within .fa-won::before{content:"\f159"}.um .fa-virus-covid::before,.um-icon-within .fa-virus-covid::before{content:"\e4a8"}.um .fa-austral-sign::before,.um-icon-within .fa-austral-sign::before{content:"\e0a9"}.um .fa-f::before,.um-icon-within .fa-f::before{content:"F"}.um .fa-leaf::before,.um-icon-within .fa-leaf::before{content:"\f06c"}.um .fa-road::before,.um-icon-within .fa-road::before{content:"\f018"}.um .fa-taxi::before,.um-icon-within .fa-taxi::before{content:"\f1ba"}.um .fa-cab::before,.um-icon-within .fa-cab::before{content:"\f1ba"}.um .fa-person-circle-plus::before,.um-icon-within .fa-person-circle-plus::before{content:"\e541"}.um .fa-chart-pie::before,.um-icon-within .fa-chart-pie::before{content:"\f200"}.um .fa-pie-chart::before,.um-icon-within .fa-pie-chart::before{content:"\f200"}.um .fa-bolt-lightning::before,.um-icon-within .fa-bolt-lightning::before{content:"\e0b7"}.um .fa-sack-xmark::before,.um-icon-within .fa-sack-xmark::before{content:"\e56a"}.um .fa-file-excel::before,.um-icon-within .fa-file-excel::before{content:"\f1c3"}.um .fa-file-contract::before,.um-icon-within .fa-file-contract::before{content:"\f56c"}.um .fa-fish-fins::before,.um-icon-within .fa-fish-fins::before{content:"\e4f2"}.um .fa-building-flag::before,.um-icon-within .fa-building-flag::before{content:"\e4d5"}.um .fa-face-grin-beam::before,.um-icon-within .fa-face-grin-beam::before{content:"\f582"}.um .fa-grin-beam::before,.um-icon-within .fa-grin-beam::before{content:"\f582"}.um .fa-object-ungroup::before,.um-icon-within .fa-object-ungroup::before{content:"\f248"}.um .fa-poop::before,.um-icon-within .fa-poop::before{content:"\f619"}.um .fa-location-pin::before,.um-icon-within .fa-location-pin::before{content:"\f041"}.um .fa-map-marker::before,.um-icon-within .fa-map-marker::before{content:"\f041"}.um .fa-kaaba::before,.um-icon-within .fa-kaaba::before{content:"\f66b"}.um .fa-toilet-paper::before,.um-icon-within .fa-toilet-paper::before{content:"\f71e"}.um .fa-helmet-safety::before,.um-icon-within .fa-helmet-safety::before{content:"\f807"}.um .fa-hard-hat::before,.um-icon-within .fa-hard-hat::before{content:"\f807"}.um .fa-hat-hard::before,.um-icon-within .fa-hat-hard::before{content:"\f807"}.um .fa-eject::before,.um-icon-within .fa-eject::before{content:"\f052"}.um .fa-circle-right::before,.um-icon-within .fa-circle-right::before{content:"\f35a"}.um .fa-arrow-alt-circle-right::before,.um-icon-within .fa-arrow-alt-circle-right::before{content:"\f35a"}.um .fa-plane-circle-check::before,.um-icon-within .fa-plane-circle-check::before{content:"\e555"}.um .fa-face-rolling-eyes::before,.um-icon-within .fa-face-rolling-eyes::before{content:"\f5a5"}.um .fa-meh-rolling-eyes::before,.um-icon-within .fa-meh-rolling-eyes::before{content:"\f5a5"}.um .fa-object-group::before,.um-icon-within .fa-object-group::before{content:"\f247"}.um .fa-chart-line::before,.um-icon-within .fa-chart-line::before{content:"\f201"}.um .fa-line-chart::before,.um-icon-within .fa-line-chart::before{content:"\f201"}.um .fa-mask-ventilator::before,.um-icon-within .fa-mask-ventilator::before{content:"\e524"}.um .fa-arrow-right::before,.um-icon-within .fa-arrow-right::before{content:"\f061"}.um .fa-signs-post::before,.um-icon-within .fa-signs-post::before{content:"\f277"}.um .fa-map-signs::before,.um-icon-within .fa-map-signs::before{content:"\f277"}.um .fa-cash-register::before,.um-icon-within .fa-cash-register::before{content:"\f788"}.um .fa-person-circle-question::before,.um-icon-within .fa-person-circle-question::before{content:"\e542"}.um .fa-h::before,.um-icon-within .fa-h::before{content:"H"}.um .fa-tarp::before,.um-icon-within .fa-tarp::before{content:"\e57b"}.um .fa-screwdriver-wrench::before,.um-icon-within .fa-screwdriver-wrench::before{content:"\f7d9"}.um .fa-tools::before,.um-icon-within .fa-tools::before{content:"\f7d9"}.um .fa-arrows-to-eye::before,.um-icon-within .fa-arrows-to-eye::before{content:"\e4bf"}.um .fa-plug-circle-bolt::before,.um-icon-within .fa-plug-circle-bolt::before{content:"\e55b"}.um .fa-heart::before,.um-icon-within .fa-heart::before{content:"\f004"}.um .fa-mars-and-venus::before,.um-icon-within .fa-mars-and-venus::before{content:"\f224"}.um .fa-house-user::before,.um-icon-within .fa-house-user::before{content:"\e1b0"}.um .fa-home-user::before,.um-icon-within .fa-home-user::before{content:"\e1b0"}.um .fa-dumpster-fire::before,.um-icon-within .fa-dumpster-fire::before{content:"\f794"}.um .fa-house-crack::before,.um-icon-within .fa-house-crack::before{content:"\e3b1"}.um .fa-martini-glass-citrus::before,.um-icon-within .fa-martini-glass-citrus::before{content:"\f561"}.um .fa-cocktail::before,.um-icon-within .fa-cocktail::before{content:"\f561"}.um .fa-face-surprise::before,.um-icon-within .fa-face-surprise::before{content:"\f5c2"}.um .fa-surprise::before,.um-icon-within .fa-surprise::before{content:"\f5c2"}.um .fa-bottle-water::before,.um-icon-within .fa-bottle-water::before{content:"\e4c5"}.um .fa-circle-pause::before,.um-icon-within .fa-circle-pause::before{content:"\f28b"}.um .fa-pause-circle::before,.um-icon-within .fa-pause-circle::before{content:"\f28b"}.um .fa-toilet-paper-slash::before,.um-icon-within .fa-toilet-paper-slash::before{content:"\e072"}.um .fa-apple-whole::before,.um-icon-within .fa-apple-whole::before{content:"\f5d1"}.um .fa-apple-alt::before,.um-icon-within .fa-apple-alt::before{content:"\f5d1"}.um .fa-kitchen-set::before,.um-icon-within .fa-kitchen-set::before{content:"\e51a"}.um .fa-r::before,.um-icon-within .fa-r::before{content:"R"}.um .fa-temperature-quarter::before,.um-icon-within .fa-temperature-quarter::before{content:"\f2ca"}.um .fa-temperature-1::before,.um-icon-within .fa-temperature-1::before{content:"\f2ca"}.um .fa-thermometer-1::before,.um-icon-within .fa-thermometer-1::before{content:"\f2ca"}.um .fa-thermometer-quarter::before,.um-icon-within .fa-thermometer-quarter::before{content:"\f2ca"}.um .fa-cube::before,.um-icon-within .fa-cube::before{content:"\f1b2"}.um .fa-bitcoin-sign::before,.um-icon-within .fa-bitcoin-sign::before{content:"\e0b4"}.um .fa-shield-dog::before,.um-icon-within .fa-shield-dog::before{content:"\e573"}.um .fa-solar-panel::before,.um-icon-within .fa-solar-panel::before{content:"\f5ba"}.um .fa-lock-open::before,.um-icon-within .fa-lock-open::before{content:"\f3c1"}.um .fa-elevator::before,.um-icon-within .fa-elevator::before{content:"\e16d"}.um .fa-money-bill-transfer::before,.um-icon-within .fa-money-bill-transfer::before{content:"\e528"}.um .fa-money-bill-trend-up::before,.um-icon-within .fa-money-bill-trend-up::before{content:"\e529"}.um .fa-house-flood-water-circle-arrow-right::before,.um-icon-within .fa-house-flood-water-circle-arrow-right::before{content:"\e50f"}.um .fa-square-poll-horizontal::before,.um-icon-within .fa-square-poll-horizontal::before{content:"\f682"}.um .fa-poll-h::before,.um-icon-within .fa-poll-h::before{content:"\f682"}.um .fa-circle::before,.um-icon-within .fa-circle::before{content:"\f111"}.um .fa-backward-fast::before,.um-icon-within .fa-backward-fast::before{content:"\f049"}.um .fa-fast-backward::before,.um-icon-within .fa-fast-backward::before{content:"\f049"}.um .fa-recycle::before,.um-icon-within .fa-recycle::before{content:"\f1b8"}.um .fa-user-astronaut::before,.um-icon-within .fa-user-astronaut::before{content:"\f4fb"}.um .fa-plane-slash::before,.um-icon-within .fa-plane-slash::before{content:"\e069"}.um .fa-trademark::before,.um-icon-within .fa-trademark::before{content:"\f25c"}.um .fa-basketball::before,.um-icon-within .fa-basketball::before{content:"\f434"}.um .fa-basketball-ball::before,.um-icon-within .fa-basketball-ball::before{content:"\f434"}.um .fa-satellite-dish::before,.um-icon-within .fa-satellite-dish::before{content:"\f7c0"}.um .fa-circle-up::before,.um-icon-within .fa-circle-up::before{content:"\f35b"}.um .fa-arrow-alt-circle-up::before,.um-icon-within .fa-arrow-alt-circle-up::before{content:"\f35b"}.um .fa-mobile-screen-button::before,.um-icon-within .fa-mobile-screen-button::before{content:"\f3cd"}.um .fa-mobile-alt::before,.um-icon-within .fa-mobile-alt::before{content:"\f3cd"}.um .fa-volume-high::before,.um-icon-within .fa-volume-high::before{content:"\f028"}.um .fa-volume-up::before,.um-icon-within .fa-volume-up::before{content:"\f028"}.um .fa-users-rays::before,.um-icon-within .fa-users-rays::before{content:"\e593"}.um .fa-wallet::before,.um-icon-within .fa-wallet::before{content:"\f555"}.um .fa-clipboard-check::before,.um-icon-within .fa-clipboard-check::before{content:"\f46c"}.um .fa-file-audio::before,.um-icon-within .fa-file-audio::before{content:"\f1c7"}.um .fa-burger::before,.um-icon-within .fa-burger::before{content:"\f805"}.um .fa-hamburger::before,.um-icon-within .fa-hamburger::before{content:"\f805"}.um .fa-wrench::before,.um-icon-within .fa-wrench::before{content:"\f0ad"}.um .fa-bugs::before,.um-icon-within .fa-bugs::before{content:"\e4d0"}.um .fa-rupee-sign::before,.um-icon-within .fa-rupee-sign::before{content:"\f156"}.um .fa-rupee::before,.um-icon-within .fa-rupee::before{content:"\f156"}.um .fa-file-image::before,.um-icon-within .fa-file-image::before{content:"\f1c5"}.um .fa-circle-question::before,.um-icon-within .fa-circle-question::before{content:"\f059"}.um .fa-question-circle::before,.um-icon-within .fa-question-circle::before{content:"\f059"}.um .fa-plane-departure::before,.um-icon-within .fa-plane-departure::before{content:"\f5b0"}.um .fa-handshake-slash::before,.um-icon-within .fa-handshake-slash::before{content:"\e060"}.um .fa-book-bookmark::before,.um-icon-within .fa-book-bookmark::before{content:"\e0bb"}.um .fa-code-branch::before,.um-icon-within .fa-code-branch::before{content:"\f126"}.um .fa-hat-cowboy::before,.um-icon-within .fa-hat-cowboy::before{content:"\f8c0"}.um .fa-bridge::before,.um-icon-within .fa-bridge::before{content:"\e4c8"}.um .fa-phone-flip::before,.um-icon-within .fa-phone-flip::before{content:"\f879"}.um .fa-phone-alt::before,.um-icon-within .fa-phone-alt::before{content:"\f879"}.um .fa-truck-front::before,.um-icon-within .fa-truck-front::before{content:"\e2b7"}.um .fa-cat::before,.um-icon-within .fa-cat::before{content:"\f6be"}.um .fa-anchor-circle-exclamation::before,.um-icon-within .fa-anchor-circle-exclamation::before{content:"\e4ab"}.um .fa-truck-field::before,.um-icon-within .fa-truck-field::before{content:"\e58d"}.um .fa-route::before,.um-icon-within .fa-route::before{content:"\f4d7"}.um .fa-clipboard-question::before,.um-icon-within .fa-clipboard-question::before{content:"\e4e3"}.um .fa-panorama::before,.um-icon-within .fa-panorama::before{content:"\e209"}.um .fa-comment-medical::before,.um-icon-within .fa-comment-medical::before{content:"\f7f5"}.um .fa-teeth-open::before,.um-icon-within .fa-teeth-open::before{content:"\f62f"}.um .fa-file-circle-minus::before,.um-icon-within .fa-file-circle-minus::before{content:"\e4ed"}.um .fa-tags::before,.um-icon-within .fa-tags::before{content:"\f02c"}.um .fa-wine-glass::before,.um-icon-within .fa-wine-glass::before{content:"\f4e3"}.um .fa-forward-fast::before,.um-icon-within .fa-forward-fast::before{content:"\f050"}.um .fa-fast-forward::before,.um-icon-within .fa-fast-forward::before{content:"\f050"}.um .fa-face-meh-blank::before,.um-icon-within .fa-face-meh-blank::before{content:"\f5a4"}.um .fa-meh-blank::before,.um-icon-within .fa-meh-blank::before{content:"\f5a4"}.um .fa-square-parking::before,.um-icon-within .fa-square-parking::before{content:"\f540"}.um .fa-parking::before,.um-icon-within .fa-parking::before{content:"\f540"}.um .fa-house-signal::before,.um-icon-within .fa-house-signal::before{content:"\e012"}.um .fa-bars-progress::before,.um-icon-within .fa-bars-progress::before{content:"\f828"}.um .fa-tasks-alt::before,.um-icon-within .fa-tasks-alt::before{content:"\f828"}.um .fa-faucet-drip::before,.um-icon-within .fa-faucet-drip::before{content:"\e006"}.um .fa-cart-flatbed::before,.um-icon-within .fa-cart-flatbed::before{content:"\f474"}.um .fa-dolly-flatbed::before,.um-icon-within .fa-dolly-flatbed::before{content:"\f474"}.um .fa-ban-smoking::before,.um-icon-within .fa-ban-smoking::before{content:"\f54d"}.um .fa-smoking-ban::before,.um-icon-within .fa-smoking-ban::before{content:"\f54d"}.um .fa-terminal::before,.um-icon-within .fa-terminal::before{content:"\f120"}.um .fa-mobile-button::before,.um-icon-within .fa-mobile-button::before{content:"\f10b"}.um .fa-house-medical-flag::before,.um-icon-within .fa-house-medical-flag::before{content:"\e514"}.um .fa-basket-shopping::before,.um-icon-within .fa-basket-shopping::before{content:"\f291"}.um .fa-shopping-basket::before,.um-icon-within .fa-shopping-basket::before{content:"\f291"}.um .fa-tape::before,.um-icon-within .fa-tape::before{content:"\f4db"}.um .fa-bus-simple::before,.um-icon-within .fa-bus-simple::before{content:"\f55e"}.um .fa-bus-alt::before,.um-icon-within .fa-bus-alt::before{content:"\f55e"}.um .fa-eye::before,.um-icon-within .fa-eye::before{content:"\f06e"}.um .fa-face-sad-cry::before,.um-icon-within .fa-face-sad-cry::before{content:"\f5b3"}.um .fa-sad-cry::before,.um-icon-within .fa-sad-cry::before{content:"\f5b3"}.um .fa-audio-description::before,.um-icon-within .fa-audio-description::before{content:"\f29e"}.um .fa-person-military-to-person::before,.um-icon-within .fa-person-military-to-person::before{content:"\e54c"}.um .fa-file-shield::before,.um-icon-within .fa-file-shield::before{content:"\e4f0"}.um .fa-user-slash::before,.um-icon-within .fa-user-slash::before{content:"\f506"}.um .fa-pen::before,.um-icon-within .fa-pen::before{content:"\f304"}.um .fa-tower-observation::before,.um-icon-within .fa-tower-observation::before{content:"\e586"}.um .fa-file-code::before,.um-icon-within .fa-file-code::before{content:"\f1c9"}.um .fa-signal::before,.um-icon-within .fa-signal::before{content:"\f012"}.um .fa-signal-5::before,.um-icon-within .fa-signal-5::before{content:"\f012"}.um .fa-signal-perfect::before,.um-icon-within .fa-signal-perfect::before{content:"\f012"}.um .fa-bus::before,.um-icon-within .fa-bus::before{content:"\f207"}.um .fa-heart-circle-xmark::before,.um-icon-within .fa-heart-circle-xmark::before{content:"\e501"}.um .fa-house-chimney::before,.um-icon-within .fa-house-chimney::before{content:"\e3af"}.um .fa-home-lg::before,.um-icon-within .fa-home-lg::before{content:"\e3af"}.um .fa-window-maximize::before,.um-icon-within .fa-window-maximize::before{content:"\f2d0"}.um .fa-face-frown::before,.um-icon-within .fa-face-frown::before{content:"\f119"}.um .fa-frown::before,.um-icon-within .fa-frown::before{content:"\f119"}.um .fa-prescription::before,.um-icon-within .fa-prescription::before{content:"\f5b1"}.um .fa-shop::before,.um-icon-within .fa-shop::before{content:"\f54f"}.um .fa-store-alt::before,.um-icon-within .fa-store-alt::before{content:"\f54f"}.um .fa-floppy-disk::before,.um-icon-within .fa-floppy-disk::before{content:"\f0c7"}.um .fa-save::before,.um-icon-within .fa-save::before{content:"\f0c7"}.um .fa-vihara::before,.um-icon-within .fa-vihara::before{content:"\f6a7"}.um .fa-scale-unbalanced::before,.um-icon-within .fa-scale-unbalanced::before{content:"\f515"}.um .fa-balance-scale-left::before,.um-icon-within .fa-balance-scale-left::before{content:"\f515"}.um .fa-sort-up::before,.um-icon-within .fa-sort-up::before{content:"\f0de"}.um .fa-sort-asc::before,.um-icon-within .fa-sort-asc::before{content:"\f0de"}.um .fa-comment-dots::before,.um-icon-within .fa-comment-dots::before{content:"\f4ad"}.um .fa-commenting::before,.um-icon-within .fa-commenting::before{content:"\f4ad"}.um .fa-plant-wilt::before,.um-icon-within .fa-plant-wilt::before{content:"\e5aa"}.um .fa-diamond::before,.um-icon-within .fa-diamond::before{content:"\f219"}.um .fa-face-grin-squint::before,.um-icon-within .fa-face-grin-squint::before{content:"\f585"}.um .fa-grin-squint::before,.um-icon-within .fa-grin-squint::before{content:"\f585"}.um .fa-hand-holding-dollar::before,.um-icon-within .fa-hand-holding-dollar::before{content:"\f4c0"}.um .fa-hand-holding-usd::before,.um-icon-within .fa-hand-holding-usd::before{content:"\f4c0"}.um .fa-bacterium::before,.um-icon-within .fa-bacterium::before{content:"\e05a"}.um .fa-hand-pointer::before,.um-icon-within .fa-hand-pointer::before{content:"\f25a"}.um .fa-drum-steelpan::before,.um-icon-within .fa-drum-steelpan::before{content:"\f56a"}.um .fa-hand-scissors::before,.um-icon-within .fa-hand-scissors::before{content:"\f257"}.um .fa-hands-praying::before,.um-icon-within .fa-hands-praying::before{content:"\f684"}.um .fa-praying-hands::before,.um-icon-within .fa-praying-hands::before{content:"\f684"}.um .fa-arrow-rotate-right::before,.um-icon-within .fa-arrow-rotate-right::before{content:"\f01e"}.um .fa-arrow-right-rotate::before,.um-icon-within .fa-arrow-right-rotate::before{content:"\f01e"}.um .fa-arrow-rotate-forward::before,.um-icon-within .fa-arrow-rotate-forward::before{content:"\f01e"}.um .fa-redo::before,.um-icon-within .fa-redo::before{content:"\f01e"}.um .fa-biohazard::before,.um-icon-within .fa-biohazard::before{content:"\f780"}.um .fa-location-crosshairs::before,.um-icon-within .fa-location-crosshairs::before{content:"\f601"}.um .fa-location::before,.um-icon-within .fa-location::before{content:"\f601"}.um .fa-mars-double::before,.um-icon-within .fa-mars-double::before{content:"\f227"}.um .fa-child-dress::before,.um-icon-within .fa-child-dress::before{content:"\e59c"}.um .fa-users-between-lines::before,.um-icon-within .fa-users-between-lines::before{content:"\e591"}.um .fa-lungs-virus::before,.um-icon-within .fa-lungs-virus::before{content:"\e067"}.um .fa-face-grin-tears::before,.um-icon-within .fa-face-grin-tears::before{content:"\f588"}.um .fa-grin-tears::before,.um-icon-within .fa-grin-tears::before{content:"\f588"}.um .fa-phone::before,.um-icon-within .fa-phone::before{content:"\f095"}.um .fa-calendar-xmark::before,.um-icon-within .fa-calendar-xmark::before{content:"\f273"}.um .fa-calendar-times::before,.um-icon-within .fa-calendar-times::before{content:"\f273"}.um .fa-child-reaching::before,.um-icon-within .fa-child-reaching::before{content:"\e59d"}.um .fa-head-side-virus::before,.um-icon-within .fa-head-side-virus::before{content:"\e064"}.um .fa-user-gear::before,.um-icon-within .fa-user-gear::before{content:"\f4fe"}.um .fa-user-cog::before,.um-icon-within .fa-user-cog::before{content:"\f4fe"}.um .fa-arrow-up-1-9::before,.um-icon-within .fa-arrow-up-1-9::before{content:"\f163"}.um .fa-sort-numeric-up::before,.um-icon-within .fa-sort-numeric-up::before{content:"\f163"}.um .fa-door-closed::before,.um-icon-within .fa-door-closed::before{content:"\f52a"}.um .fa-shield-virus::before,.um-icon-within .fa-shield-virus::before{content:"\e06c"}.um .fa-dice-six::before,.um-icon-within .fa-dice-six::before{content:"\f526"}.um .fa-mosquito-net::before,.um-icon-within .fa-mosquito-net::before{content:"\e52c"}.um .fa-bridge-water::before,.um-icon-within .fa-bridge-water::before{content:"\e4ce"}.um .fa-person-booth::before,.um-icon-within .fa-person-booth::before{content:"\f756"}.um .fa-text-width::before,.um-icon-within .fa-text-width::before{content:"\f035"}.um .fa-hat-wizard::before,.um-icon-within .fa-hat-wizard::before{content:"\f6e8"}.um .fa-pen-fancy::before,.um-icon-within .fa-pen-fancy::before{content:"\f5ac"}.um .fa-person-digging::before,.um-icon-within .fa-person-digging::before{content:"\f85e"}.um .fa-digging::before,.um-icon-within .fa-digging::before{content:"\f85e"}.um .fa-trash::before,.um-icon-within .fa-trash::before{content:"\f1f8"}.um .fa-gauge-simple::before,.um-icon-within .fa-gauge-simple::before{content:"\f629"}.um .fa-gauge-simple-med::before,.um-icon-within .fa-gauge-simple-med::before{content:"\f629"}.um .fa-tachometer-average::before,.um-icon-within .fa-tachometer-average::before{content:"\f629"}.um .fa-book-medical::before,.um-icon-within .fa-book-medical::before{content:"\f7e6"}.um .fa-poo::before,.um-icon-within .fa-poo::before{content:"\f2fe"}.um .fa-quote-right::before,.um-icon-within .fa-quote-right::before{content:"\f10e"}.um .fa-quote-right-alt::before,.um-icon-within .fa-quote-right-alt::before{content:"\f10e"}.um .fa-shirt::before,.um-icon-within .fa-shirt::before{content:"\f553"}.um .fa-t-shirt::before,.um-icon-within .fa-t-shirt::before{content:"\f553"}.um .fa-tshirt::before,.um-icon-within .fa-tshirt::before{content:"\f553"}.um .fa-cubes::before,.um-icon-within .fa-cubes::before{content:"\f1b3"}.um .fa-divide::before,.um-icon-within .fa-divide::before{content:"\f529"}.um .fa-tenge-sign::before,.um-icon-within .fa-tenge-sign::before{content:"\f7d7"}.um .fa-tenge::before,.um-icon-within .fa-tenge::before{content:"\f7d7"}.um .fa-headphones::before,.um-icon-within .fa-headphones::before{content:"\f025"}.um .fa-hands-holding::before,.um-icon-within .fa-hands-holding::before{content:"\f4c2"}.um .fa-hands-clapping::before,.um-icon-within .fa-hands-clapping::before{content:"\e1a8"}.um .fa-republican::before,.um-icon-within .fa-republican::before{content:"\f75e"}.um .fa-arrow-left::before,.um-icon-within .fa-arrow-left::before{content:"\f060"}.um .fa-person-circle-xmark::before,.um-icon-within .fa-person-circle-xmark::before{content:"\e543"}.um .fa-ruler::before,.um-icon-within .fa-ruler::before{content:"\f545"}.um .fa-align-left::before,.um-icon-within .fa-align-left::before{content:"\f036"}.um .fa-dice-d6::before,.um-icon-within .fa-dice-d6::before{content:"\f6d1"}.um .fa-restroom::before,.um-icon-within .fa-restroom::before{content:"\f7bd"}.um .fa-j::before,.um-icon-within .fa-j::before{content:"J"}.um .fa-users-viewfinder::before,.um-icon-within .fa-users-viewfinder::before{content:"\e595"}.um .fa-file-video::before,.um-icon-within .fa-file-video::before{content:"\f1c8"}.um .fa-up-right-from-square::before,.um-icon-within .fa-up-right-from-square::before{content:"\f35d"}.um .fa-external-link-alt::before,.um-icon-within .fa-external-link-alt::before{content:"\f35d"}.um .fa-table-cells::before,.um-icon-within .fa-table-cells::before{content:"\f00a"}.um .fa-th::before,.um-icon-within .fa-th::before{content:"\f00a"}.um .fa-file-pdf::before,.um-icon-within .fa-file-pdf::before{content:"\f1c1"}.um .fa-book-bible::before,.um-icon-within .fa-book-bible::before{content:"\f647"}.um .fa-bible::before,.um-icon-within .fa-bible::before{content:"\f647"}.um .fa-o::before,.um-icon-within .fa-o::before{content:"O"}.um .fa-suitcase-medical::before,.um-icon-within .fa-suitcase-medical::before{content:"\f0fa"}.um .fa-medkit::before,.um-icon-within .fa-medkit::before{content:"\f0fa"}.um .fa-user-secret::before,.um-icon-within .fa-user-secret::before{content:"\f21b"}.um .fa-otter::before,.um-icon-within .fa-otter::before{content:"\f700"}.um .fa-person-dress::before,.um-icon-within .fa-person-dress::before{content:"\f182"}.um .fa-female::before,.um-icon-within .fa-female::before{content:"\f182"}.um .fa-comment-dollar::before,.um-icon-within .fa-comment-dollar::before{content:"\f651"}.um .fa-business-time::before,.um-icon-within .fa-business-time::before{content:"\f64a"}.um .fa-briefcase-clock::before,.um-icon-within .fa-briefcase-clock::before{content:"\f64a"}.um .fa-table-cells-large::before,.um-icon-within .fa-table-cells-large::before{content:"\f009"}.um .fa-th-large::before,.um-icon-within .fa-th-large::before{content:"\f009"}.um .fa-book-tanakh::before,.um-icon-within .fa-book-tanakh::before{content:"\f827"}.um .fa-tanakh::before,.um-icon-within .fa-tanakh::before{content:"\f827"}.um .fa-phone-volume::before,.um-icon-within .fa-phone-volume::before{content:"\f2a0"}.um .fa-volume-control-phone::before,.um-icon-within .fa-volume-control-phone::before{content:"\f2a0"}.um .fa-hat-cowboy-side::before,.um-icon-within .fa-hat-cowboy-side::before{content:"\f8c1"}.um .fa-clipboard-user::before,.um-icon-within .fa-clipboard-user::before{content:"\f7f3"}.um .fa-child::before,.um-icon-within .fa-child::before{content:"\f1ae"}.um .fa-lira-sign::before,.um-icon-within .fa-lira-sign::before{content:"\f195"}.um .fa-satellite::before,.um-icon-within .fa-satellite::before{content:"\f7bf"}.um .fa-plane-lock::before,.um-icon-within .fa-plane-lock::before{content:"\e558"}.um .fa-tag::before,.um-icon-within .fa-tag::before{content:"\f02b"}.um .fa-comment::before,.um-icon-within .fa-comment::before{content:"\f075"}.um .fa-cake-candles::before,.um-icon-within .fa-cake-candles::before{content:"\f1fd"}.um .fa-birthday-cake::before,.um-icon-within .fa-birthday-cake::before{content:"\f1fd"}.um .fa-cake::before,.um-icon-within .fa-cake::before{content:"\f1fd"}.um .fa-envelope::before,.um-icon-within .fa-envelope::before{content:"\f0e0"}.um .fa-angles-up::before,.um-icon-within .fa-angles-up::before{content:"\f102"}.um .fa-angle-double-up::before,.um-icon-within .fa-angle-double-up::before{content:"\f102"}.um .fa-paperclip::before,.um-icon-within .fa-paperclip::before{content:"\f0c6"}.um .fa-arrow-right-to-city::before,.um-icon-within .fa-arrow-right-to-city::before{content:"\e4b3"}.um .fa-ribbon::before,.um-icon-within .fa-ribbon::before{content:"\f4d6"}.um .fa-lungs::before,.um-icon-within .fa-lungs::before{content:"\f604"}.um .fa-arrow-up-9-1::before,.um-icon-within .fa-arrow-up-9-1::before{content:"\f887"}.um .fa-sort-numeric-up-alt::before,.um-icon-within .fa-sort-numeric-up-alt::before{content:"\f887"}.um .fa-litecoin-sign::before,.um-icon-within .fa-litecoin-sign::before{content:"\e1d3"}.um .fa-border-none::before,.um-icon-within .fa-border-none::before{content:"\f850"}.um .fa-circle-nodes::before,.um-icon-within .fa-circle-nodes::before{content:"\e4e2"}.um .fa-parachute-box::before,.um-icon-within .fa-parachute-box::before{content:"\f4cd"}.um .fa-indent::before,.um-icon-within .fa-indent::before{content:"\f03c"}.um .fa-truck-field-un::before,.um-icon-within .fa-truck-field-un::before{content:"\e58e"}.um .fa-hourglass::before,.um-icon-within .fa-hourglass::before{content:"\f254"}.um .fa-hourglass-empty::before,.um-icon-within .fa-hourglass-empty::before{content:"\f254"}.um .fa-mountain::before,.um-icon-within .fa-mountain::before{content:"\f6fc"}.um .fa-user-doctor::before,.um-icon-within .fa-user-doctor::before{content:"\f0f0"}.um .fa-user-md::before,.um-icon-within .fa-user-md::before{content:"\f0f0"}.um .fa-circle-info::before,.um-icon-within .fa-circle-info::before{content:"\f05a"}.um .fa-info-circle::before,.um-icon-within .fa-info-circle::before{content:"\f05a"}.um .fa-cloud-meatball::before,.um-icon-within .fa-cloud-meatball::before{content:"\f73b"}.um .fa-camera::before,.um-icon-within .fa-camera::before{content:"\f030"}.um .fa-camera-alt::before,.um-icon-within .fa-camera-alt::before{content:"\f030"}.um .fa-square-virus::before,.um-icon-within .fa-square-virus::before{content:"\e578"}.um .fa-meteor::before,.um-icon-within .fa-meteor::before{content:"\f753"}.um .fa-car-on::before,.um-icon-within .fa-car-on::before{content:"\e4dd"}.um .fa-sleigh::before,.um-icon-within .fa-sleigh::before{content:"\f7cc"}.um .fa-arrow-down-1-9::before,.um-icon-within .fa-arrow-down-1-9::before{content:"\f162"}.um .fa-sort-numeric-asc::before,.um-icon-within .fa-sort-numeric-asc::before{content:"\f162"}.um .fa-sort-numeric-down::before,.um-icon-within .fa-sort-numeric-down::before{content:"\f162"}.um .fa-hand-holding-droplet::before,.um-icon-within .fa-hand-holding-droplet::before{content:"\f4c1"}.um .fa-hand-holding-water::before,.um-icon-within .fa-hand-holding-water::before{content:"\f4c1"}.um .fa-water::before,.um-icon-within .fa-water::before{content:"\f773"}.um .fa-calendar-check::before,.um-icon-within .fa-calendar-check::before{content:"\f274"}.um .fa-braille::before,.um-icon-within .fa-braille::before{content:"\f2a1"}.um .fa-prescription-bottle-medical::before,.um-icon-within .fa-prescription-bottle-medical::before{content:"\f486"}.um .fa-prescription-bottle-alt::before,.um-icon-within .fa-prescription-bottle-alt::before{content:"\f486"}.um .fa-landmark::before,.um-icon-within .fa-landmark::before{content:"\f66f"}.um .fa-truck::before,.um-icon-within .fa-truck::before{content:"\f0d1"}.um .fa-crosshairs::before,.um-icon-within .fa-crosshairs::before{content:"\f05b"}.um .fa-person-cane::before,.um-icon-within .fa-person-cane::before{content:"\e53c"}.um .fa-tent::before,.um-icon-within .fa-tent::before{content:"\e57d"}.um .fa-vest-patches::before,.um-icon-within .fa-vest-patches::before{content:"\e086"}.um .fa-check-double::before,.um-icon-within .fa-check-double::before{content:"\f560"}.um .fa-arrow-down-a-z::before,.um-icon-within .fa-arrow-down-a-z::before{content:"\f15d"}.um .fa-sort-alpha-asc::before,.um-icon-within .fa-sort-alpha-asc::before{content:"\f15d"}.um .fa-sort-alpha-down::before,.um-icon-within .fa-sort-alpha-down::before{content:"\f15d"}.um .fa-money-bill-wheat::before,.um-icon-within .fa-money-bill-wheat::before{content:"\e52a"}.um .fa-cookie::before,.um-icon-within .fa-cookie::before{content:"\f563"}.um .fa-arrow-rotate-left::before,.um-icon-within .fa-arrow-rotate-left::before{content:"\f0e2"}.um .fa-arrow-left-rotate::before,.um-icon-within .fa-arrow-left-rotate::before{content:"\f0e2"}.um .fa-arrow-rotate-back::before,.um-icon-within .fa-arrow-rotate-back::before{content:"\f0e2"}.um .fa-arrow-rotate-backward::before,.um-icon-within .fa-arrow-rotate-backward::before{content:"\f0e2"}.um .fa-undo::before,.um-icon-within .fa-undo::before{content:"\f0e2"}.um .fa-hard-drive::before,.um-icon-within .fa-hard-drive::before{content:"\f0a0"}.um .fa-hdd::before,.um-icon-within .fa-hdd::before{content:"\f0a0"}.um .fa-face-grin-squint-tears::before,.um-icon-within .fa-face-grin-squint-tears::before{content:"\f586"}.um .fa-grin-squint-tears::before,.um-icon-within .fa-grin-squint-tears::before{content:"\f586"}.um .fa-dumbbell::before,.um-icon-within .fa-dumbbell::before{content:"\f44b"}.um .fa-rectangle-list::before,.um-icon-within .fa-rectangle-list::before{content:"\f022"}.um .fa-list-alt::before,.um-icon-within .fa-list-alt::before{content:"\f022"}.um .fa-tarp-droplet::before,.um-icon-within .fa-tarp-droplet::before{content:"\e57c"}.um .fa-house-medical-circle-check::before,.um-icon-within .fa-house-medical-circle-check::before{content:"\e511"}.um .fa-person-skiing-nordic::before,.um-icon-within .fa-person-skiing-nordic::before{content:"\f7ca"}.um .fa-skiing-nordic::before,.um-icon-within .fa-skiing-nordic::before{content:"\f7ca"}.um .fa-calendar-plus::before,.um-icon-within .fa-calendar-plus::before{content:"\f271"}.um .fa-plane-arrival::before,.um-icon-within .fa-plane-arrival::before{content:"\f5af"}.um .fa-circle-left::before,.um-icon-within .fa-circle-left::before{content:"\f359"}.um .fa-arrow-alt-circle-left::before,.um-icon-within .fa-arrow-alt-circle-left::before{content:"\f359"}.um .fa-train-subway::before,.um-icon-within .fa-train-subway::before{content:"\f239"}.um .fa-subway::before,.um-icon-within .fa-subway::before{content:"\f239"}.um .fa-chart-gantt::before,.um-icon-within .fa-chart-gantt::before{content:"\e0e4"}.um .fa-indian-rupee-sign::before,.um-icon-within .fa-indian-rupee-sign::before{content:"\e1bc"}.um .fa-indian-rupee::before,.um-icon-within .fa-indian-rupee::before{content:"\e1bc"}.um .fa-inr::before,.um-icon-within .fa-inr::before{content:"\e1bc"}.um .fa-crop-simple::before,.um-icon-within .fa-crop-simple::before{content:"\f565"}.um .fa-crop-alt::before,.um-icon-within .fa-crop-alt::before{content:"\f565"}.um .fa-money-bill-1::before,.um-icon-within .fa-money-bill-1::before{content:"\f3d1"}.um .fa-money-bill-alt::before,.um-icon-within .fa-money-bill-alt::before{content:"\f3d1"}.um .fa-left-long::before,.um-icon-within .fa-left-long::before{content:"\f30a"}.um .fa-long-arrow-alt-left::before,.um-icon-within .fa-long-arrow-alt-left::before{content:"\f30a"}.um .fa-dna::before,.um-icon-within .fa-dna::before{content:"\f471"}.um .fa-virus-slash::before,.um-icon-within .fa-virus-slash::before{content:"\e075"}.um .fa-minus::before,.um-icon-within .fa-minus::before{content:"\f068"}.um .fa-subtract::before,.um-icon-within .fa-subtract::before{content:"\f068"}.um .fa-chess::before,.um-icon-within .fa-chess::before{content:"\f439"}.um .fa-arrow-left-long::before,.um-icon-within .fa-arrow-left-long::before{content:"\f177"}.um .fa-long-arrow-left::before,.um-icon-within .fa-long-arrow-left::before{content:"\f177"}.um .fa-plug-circle-check::before,.um-icon-within .fa-plug-circle-check::before{content:"\e55c"}.um .fa-street-view::before,.um-icon-within .fa-street-view::before{content:"\f21d"}.um .fa-franc-sign::before,.um-icon-within .fa-franc-sign::before{content:"\e18f"}.um .fa-volume-off::before,.um-icon-within .fa-volume-off::before{content:"\f026"}.um .fa-hands-asl-interpreting::before,.um-icon-within .fa-hands-asl-interpreting::before{content:"\f2a3"}.um .fa-american-sign-language-interpreting::before,.um-icon-within .fa-american-sign-language-interpreting::before{content:"\f2a3"}.um .fa-asl-interpreting::before,.um-icon-within .fa-asl-interpreting::before{content:"\f2a3"}.um .fa-hands-american-sign-language-interpreting::before,.um-icon-within .fa-hands-american-sign-language-interpreting::before{content:"\f2a3"}.um .fa-gear::before,.um-icon-within .fa-gear::before{content:"\f013"}.um .fa-cog::before,.um-icon-within .fa-cog::before{content:"\f013"}.um .fa-droplet-slash::before,.um-icon-within .fa-droplet-slash::before{content:"\f5c7"}.um .fa-tint-slash::before,.um-icon-within .fa-tint-slash::before{content:"\f5c7"}.um .fa-mosque::before,.um-icon-within .fa-mosque::before{content:"\f678"}.um .fa-mosquito::before,.um-icon-within .fa-mosquito::before{content:"\e52b"}.um .fa-star-of-david::before,.um-icon-within .fa-star-of-david::before{content:"\f69a"}.um .fa-person-military-rifle::before,.um-icon-within .fa-person-military-rifle::before{content:"\e54b"}.um .fa-cart-shopping::before,.um-icon-within .fa-cart-shopping::before{content:"\f07a"}.um .fa-shopping-cart::before,.um-icon-within .fa-shopping-cart::before{content:"\f07a"}.um .fa-vials::before,.um-icon-within .fa-vials::before{content:"\f493"}.um .fa-plug-circle-plus::before,.um-icon-within .fa-plug-circle-plus::before{content:"\e55f"}.um .fa-place-of-worship::before,.um-icon-within .fa-place-of-worship::before{content:"\f67f"}.um .fa-grip-vertical::before,.um-icon-within .fa-grip-vertical::before{content:"\f58e"}.um .fa-arrow-turn-up::before,.um-icon-within .fa-arrow-turn-up::before{content:"\f148"}.um .fa-level-up::before,.um-icon-within .fa-level-up::before{content:"\f148"}.um .fa-u::before,.um-icon-within .fa-u::before{content:"U"}.um .fa-square-root-variable::before,.um-icon-within .fa-square-root-variable::before{content:"\f698"}.um .fa-square-root-alt::before,.um-icon-within .fa-square-root-alt::before{content:"\f698"}.um .fa-clock::before,.um-icon-within .fa-clock::before{content:"\f017"}.um .fa-clock-four::before,.um-icon-within .fa-clock-four::before{content:"\f017"}.um .fa-backward-step::before,.um-icon-within .fa-backward-step::before{content:"\f048"}.um .fa-step-backward::before,.um-icon-within .fa-step-backward::before{content:"\f048"}.um .fa-pallet::before,.um-icon-within .fa-pallet::before{content:"\f482"}.um .fa-faucet::before,.um-icon-within .fa-faucet::before{content:"\e005"}.um .fa-baseball-bat-ball::before,.um-icon-within .fa-baseball-bat-ball::before{content:"\f432"}.um .fa-s::before,.um-icon-within .fa-s::before{content:"S"}.um .fa-timeline::before,.um-icon-within .fa-timeline::before{content:"\e29c"}.um .fa-keyboard::before,.um-icon-within .fa-keyboard::before{content:"\f11c"}.um .fa-caret-down::before,.um-icon-within .fa-caret-down::before{content:"\f0d7"}.um .fa-house-chimney-medical::before,.um-icon-within .fa-house-chimney-medical::before{content:"\f7f2"}.um .fa-clinic-medical::before,.um-icon-within .fa-clinic-medical::before{content:"\f7f2"}.um .fa-temperature-three-quarters::before,.um-icon-within .fa-temperature-three-quarters::before{content:"\f2c8"}.um .fa-temperature-3::before,.um-icon-within .fa-temperature-3::before{content:"\f2c8"}.um .fa-thermometer-3::before,.um-icon-within .fa-thermometer-3::before{content:"\f2c8"}.um .fa-thermometer-three-quarters::before,.um-icon-within .fa-thermometer-three-quarters::before{content:"\f2c8"}.um .fa-mobile-screen::before,.um-icon-within .fa-mobile-screen::before{content:"\f3cf"}.um .fa-mobile-android-alt::before,.um-icon-within .fa-mobile-android-alt::before{content:"\f3cf"}.um .fa-plane-up::before,.um-icon-within .fa-plane-up::before{content:"\e22d"}.um .fa-piggy-bank::before,.um-icon-within .fa-piggy-bank::before{content:"\f4d3"}.um .fa-battery-half::before,.um-icon-within .fa-battery-half::before{content:"\f242"}.um .fa-battery-3::before,.um-icon-within .fa-battery-3::before{content:"\f242"}.um .fa-mountain-city::before,.um-icon-within .fa-mountain-city::before{content:"\e52e"}.um .fa-coins::before,.um-icon-within .fa-coins::before{content:"\f51e"}.um .fa-khanda::before,.um-icon-within .fa-khanda::before{content:"\f66d"}.um .fa-sliders::before,.um-icon-within .fa-sliders::before{content:"\f1de"}.um .fa-sliders-h::before,.um-icon-within .fa-sliders-h::before{content:"\f1de"}.um .fa-folder-tree::before,.um-icon-within .fa-folder-tree::before{content:"\f802"}.um .fa-network-wired::before,.um-icon-within .fa-network-wired::before{content:"\f6ff"}.um .fa-map-pin::before,.um-icon-within .fa-map-pin::before{content:"\f276"}.um .fa-hamsa::before,.um-icon-within .fa-hamsa::before{content:"\f665"}.um .fa-cent-sign::before,.um-icon-within .fa-cent-sign::before{content:"\e3f5"}.um .fa-flask::before,.um-icon-within .fa-flask::before{content:"\f0c3"}.um .fa-person-pregnant::before,.um-icon-within .fa-person-pregnant::before{content:"\e31e"}.um .fa-wand-sparkles::before,.um-icon-within .fa-wand-sparkles::before{content:"\f72b"}.um .fa-ellipsis-vertical::before,.um-icon-within .fa-ellipsis-vertical::before{content:"\f142"}.um .fa-ellipsis-v::before,.um-icon-within .fa-ellipsis-v::before{content:"\f142"}.um .fa-ticket::before,.um-icon-within .fa-ticket::before{content:"\f145"}.um .fa-power-off::before,.um-icon-within .fa-power-off::before{content:"\f011"}.um .fa-right-long::before,.um-icon-within .fa-right-long::before{content:"\f30b"}.um .fa-long-arrow-alt-right::before,.um-icon-within .fa-long-arrow-alt-right::before{content:"\f30b"}.um .fa-flag-usa::before,.um-icon-within .fa-flag-usa::before{content:"\f74d"}.um .fa-laptop-file::before,.um-icon-within .fa-laptop-file::before{content:"\e51d"}.um .fa-tty::before,.um-icon-within .fa-tty::before{content:"\f1e4"}.um .fa-teletype::before,.um-icon-within .fa-teletype::before{content:"\f1e4"}.um .fa-diagram-next::before,.um-icon-within .fa-diagram-next::before{content:"\e476"}.um .fa-person-rifle::before,.um-icon-within .fa-person-rifle::before{content:"\e54e"}.um .fa-house-medical-circle-exclamation::before,.um-icon-within .fa-house-medical-circle-exclamation::before{content:"\e512"}.um .fa-closed-captioning::before,.um-icon-within .fa-closed-captioning::before{content:"\f20a"}.um .fa-person-hiking::before,.um-icon-within .fa-person-hiking::before{content:"\f6ec"}.um .fa-hiking::before,.um-icon-within .fa-hiking::before{content:"\f6ec"}.um .fa-venus-double::before,.um-icon-within .fa-venus-double::before{content:"\f226"}.um .fa-images::before,.um-icon-within .fa-images::before{content:"\f302"}.um .fa-calculator::before,.um-icon-within .fa-calculator::before{content:"\f1ec"}.um .fa-people-pulling::before,.um-icon-within .fa-people-pulling::before{content:"\e535"}.um .fa-n::before,.um-icon-within .fa-n::before{content:"N"}.um .fa-cable-car::before,.um-icon-within .fa-cable-car::before{content:"\f7da"}.um .fa-tram::before,.um-icon-within .fa-tram::before{content:"\f7da"}.um .fa-cloud-rain::before,.um-icon-within .fa-cloud-rain::before{content:"\f73d"}.um .fa-building-circle-xmark::before,.um-icon-within .fa-building-circle-xmark::before{content:"\e4d4"}.um .fa-ship::before,.um-icon-within .fa-ship::before{content:"\f21a"}.um .fa-arrows-down-to-line::before,.um-icon-within .fa-arrows-down-to-line::before{content:"\e4b8"}.um .fa-download::before,.um-icon-within .fa-download::before{content:"\f019"}.um .fa-face-grin::before,.um-icon-within .fa-face-grin::before{content:"\f580"}.um .fa-grin::before,.um-icon-within .fa-grin::before{content:"\f580"}.um .fa-delete-left::before,.um-icon-within .fa-delete-left::before{content:"\f55a"}.um .fa-backspace::before,.um-icon-within .fa-backspace::before{content:"\f55a"}.um .fa-eye-dropper::before,.um-icon-within .fa-eye-dropper::before{content:"\f1fb"}.um .fa-eye-dropper-empty::before,.um-icon-within .fa-eye-dropper-empty::before{content:"\f1fb"}.um .fa-eyedropper::before,.um-icon-within .fa-eyedropper::before{content:"\f1fb"}.um .fa-file-circle-check::before,.um-icon-within .fa-file-circle-check::before{content:"\e5a0"}.um .fa-forward::before,.um-icon-within .fa-forward::before{content:"\f04e"}.um .fa-mobile::before,.um-icon-within .fa-mobile::before{content:"\f3ce"}.um .fa-mobile-android::before,.um-icon-within .fa-mobile-android::before{content:"\f3ce"}.um .fa-mobile-phone::before,.um-icon-within .fa-mobile-phone::before{content:"\f3ce"}.um .fa-face-meh::before,.um-icon-within .fa-face-meh::before{content:"\f11a"}.um .fa-meh::before,.um-icon-within .fa-meh::before{content:"\f11a"}.um .fa-align-center::before,.um-icon-within .fa-align-center::before{content:"\f037"}.um .fa-book-skull::before,.um-icon-within .fa-book-skull::before{content:"\f6b7"}.um .fa-book-dead::before,.um-icon-within .fa-book-dead::before{content:"\f6b7"}.um .fa-id-card::before,.um-icon-within .fa-id-card::before{content:"\f2c2"}.um .fa-drivers-license::before,.um-icon-within .fa-drivers-license::before{content:"\f2c2"}.um .fa-outdent::before,.um-icon-within .fa-outdent::before{content:"\f03b"}.um .fa-dedent::before,.um-icon-within .fa-dedent::before{content:"\f03b"}.um .fa-heart-circle-exclamation::before,.um-icon-within .fa-heart-circle-exclamation::before{content:"\e4fe"}.um .fa-house::before,.um-icon-within .fa-house::before{content:"\f015"}.um .fa-home::before,.um-icon-within .fa-home::before{content:"\f015"}.um .fa-home-alt::before,.um-icon-within .fa-home-alt::before{content:"\f015"}.um .fa-home-lg-alt::before,.um-icon-within .fa-home-lg-alt::before{content:"\f015"}.um .fa-calendar-week::before,.um-icon-within .fa-calendar-week::before{content:"\f784"}.um .fa-laptop-medical::before,.um-icon-within .fa-laptop-medical::before{content:"\f812"}.um .fa-b::before,.um-icon-within .fa-b::before{content:"B"}.um .fa-file-medical::before,.um-icon-within .fa-file-medical::before{content:"\f477"}.um .fa-dice-one::before,.um-icon-within .fa-dice-one::before{content:"\f525"}.um .fa-kiwi-bird::before,.um-icon-within .fa-kiwi-bird::before{content:"\f535"}.um .fa-arrow-right-arrow-left::before,.um-icon-within .fa-arrow-right-arrow-left::before{content:"\f0ec"}.um .fa-exchange::before,.um-icon-within .fa-exchange::before{content:"\f0ec"}.um .fa-rotate-right::before,.um-icon-within .fa-rotate-right::before{content:"\f2f9"}.um .fa-redo-alt::before,.um-icon-within .fa-redo-alt::before{content:"\f2f9"}.um .fa-rotate-forward::before,.um-icon-within .fa-rotate-forward::before{content:"\f2f9"}.um .fa-utensils::before,.um-icon-within .fa-utensils::before{content:"\f2e7"}.um .fa-cutlery::before,.um-icon-within .fa-cutlery::before{content:"\f2e7"}.um .fa-arrow-up-wide-short::before,.um-icon-within .fa-arrow-up-wide-short::before{content:"\f161"}.um .fa-sort-amount-up::before,.um-icon-within .fa-sort-amount-up::before{content:"\f161"}.um .fa-mill-sign::before,.um-icon-within .fa-mill-sign::before{content:"\e1ed"}.um .fa-bowl-rice::before,.um-icon-within .fa-bowl-rice::before{content:"\e2eb"}.um .fa-skull::before,.um-icon-within .fa-skull::before{content:"\f54c"}.um .fa-tower-broadcast::before,.um-icon-within .fa-tower-broadcast::before{content:"\f519"}.um .fa-broadcast-tower::before,.um-icon-within .fa-broadcast-tower::before{content:"\f519"}.um .fa-truck-pickup::before,.um-icon-within .fa-truck-pickup::before{content:"\f63c"}.um .fa-up-long::before,.um-icon-within .fa-up-long::before{content:"\f30c"}.um .fa-long-arrow-alt-up::before,.um-icon-within .fa-long-arrow-alt-up::before{content:"\f30c"}.um .fa-stop::before,.um-icon-within .fa-stop::before{content:"\f04d"}.um .fa-code-merge::before,.um-icon-within .fa-code-merge::before{content:"\f387"}.um .fa-upload::before,.um-icon-within .fa-upload::before{content:"\f093"}.um .fa-hurricane::before,.um-icon-within .fa-hurricane::before{content:"\f751"}.um .fa-mound::before,.um-icon-within .fa-mound::before{content:"\e52d"}.um .fa-toilet-portable::before,.um-icon-within .fa-toilet-portable::before{content:"\e583"}.um .fa-compact-disc::before,.um-icon-within .fa-compact-disc::before{content:"\f51f"}.um .fa-file-arrow-down::before,.um-icon-within .fa-file-arrow-down::before{content:"\f56d"}.um .fa-file-download::before,.um-icon-within .fa-file-download::before{content:"\f56d"}.um .fa-caravan::before,.um-icon-within .fa-caravan::before{content:"\f8ff"}.um .fa-shield-cat::before,.um-icon-within .fa-shield-cat::before{content:"\e572"}.um .fa-bolt::before,.um-icon-within .fa-bolt::before{content:"\f0e7"}.um .fa-zap::before,.um-icon-within .fa-zap::before{content:"\f0e7"}.um .fa-glass-water::before,.um-icon-within .fa-glass-water::before{content:"\e4f4"}.um .fa-oil-well::before,.um-icon-within .fa-oil-well::before{content:"\e532"}.um .fa-vault::before,.um-icon-within .fa-vault::before{content:"\e2c5"}.um .fa-mars::before,.um-icon-within .fa-mars::before{content:"\f222"}.um .fa-toilet::before,.um-icon-within .fa-toilet::before{content:"\f7d8"}.um .fa-plane-circle-xmark::before,.um-icon-within .fa-plane-circle-xmark::before{content:"\e557"}.um .fa-yen-sign::before,.um-icon-within .fa-yen-sign::before{content:"\f157"}.um .fa-cny::before,.um-icon-within .fa-cny::before{content:"\f157"}.um .fa-jpy::before,.um-icon-within .fa-jpy::before{content:"\f157"}.um .fa-rmb::before,.um-icon-within .fa-rmb::before{content:"\f157"}.um .fa-yen::before,.um-icon-within .fa-yen::before{content:"\f157"}.um .fa-ruble-sign::before,.um-icon-within .fa-ruble-sign::before{content:"\f158"}.um .fa-rouble::before,.um-icon-within .fa-rouble::before{content:"\f158"}.um .fa-rub::before,.um-icon-within .fa-rub::before{content:"\f158"}.um .fa-ruble::before,.um-icon-within .fa-ruble::before{content:"\f158"}.um .fa-sun::before,.um-icon-within .fa-sun::before{content:"\f185"}.um .fa-guitar::before,.um-icon-within .fa-guitar::before{content:"\f7a6"}.um .fa-face-laugh-wink::before,.um-icon-within .fa-face-laugh-wink::before{content:"\f59c"}.um .fa-laugh-wink::before,.um-icon-within .fa-laugh-wink::before{content:"\f59c"}.um .fa-horse-head::before,.um-icon-within .fa-horse-head::before{content:"\f7ab"}.um .fa-bore-hole::before,.um-icon-within .fa-bore-hole::before{content:"\e4c3"}.um .fa-industry::before,.um-icon-within .fa-industry::before{content:"\f275"}.um .fa-circle-down::before,.um-icon-within .fa-circle-down::before{content:"\f358"}.um .fa-arrow-alt-circle-down::before,.um-icon-within .fa-arrow-alt-circle-down::before{content:"\f358"}.um .fa-arrows-turn-to-dots::before,.um-icon-within .fa-arrows-turn-to-dots::before{content:"\e4c1"}.um .fa-florin-sign::before,.um-icon-within .fa-florin-sign::before{content:"\e184"}.um .fa-arrow-down-short-wide::before,.um-icon-within .fa-arrow-down-short-wide::before{content:"\f884"}.um .fa-sort-amount-desc::before,.um-icon-within .fa-sort-amount-desc::before{content:"\f884"}.um .fa-sort-amount-down-alt::before,.um-icon-within .fa-sort-amount-down-alt::before{content:"\f884"}.um .fa-less-than::before,.um-icon-within .fa-less-than::before{content:"\<"}.um .fa-angle-down::before,.um-icon-within .fa-angle-down::before{content:"\f107"}.um .fa-car-tunnel::before,.um-icon-within .fa-car-tunnel::before{content:"\e4de"}.um .fa-head-side-cough::before,.um-icon-within .fa-head-side-cough::before{content:"\e061"}.um .fa-grip-lines::before,.um-icon-within .fa-grip-lines::before{content:"\f7a4"}.um .fa-thumbs-down::before,.um-icon-within .fa-thumbs-down::before{content:"\f165"}.um .fa-user-lock::before,.um-icon-within .fa-user-lock::before{content:"\f502"}.um .fa-arrow-right-long::before,.um-icon-within .fa-arrow-right-long::before{content:"\f178"}.um .fa-long-arrow-right::before,.um-icon-within .fa-long-arrow-right::before{content:"\f178"}.um .fa-anchor-circle-xmark::before,.um-icon-within .fa-anchor-circle-xmark::before{content:"\e4ac"}.um .fa-ellipsis::before,.um-icon-within .fa-ellipsis::before{content:"\f141"}.um .fa-ellipsis-h::before,.um-icon-within .fa-ellipsis-h::before{content:"\f141"}.um .fa-chess-pawn::before,.um-icon-within .fa-chess-pawn::before{content:"\f443"}.um .fa-kit-medical::before,.um-icon-within .fa-kit-medical::before{content:"\f479"}.um .fa-first-aid::before,.um-icon-within .fa-first-aid::before{content:"\f479"}.um .fa-person-through-window::before,.um-icon-within .fa-person-through-window::before{content:"\e5a9"}.um .fa-toolbox::before,.um-icon-within .fa-toolbox::before{content:"\f552"}.um .fa-hands-holding-circle::before,.um-icon-within .fa-hands-holding-circle::before{content:"\e4fb"}.um .fa-bug::before,.um-icon-within .fa-bug::before{content:"\f188"}.um .fa-credit-card::before,.um-icon-within .fa-credit-card::before{content:"\f09d"}.um .fa-credit-card-alt::before,.um-icon-within .fa-credit-card-alt::before{content:"\f09d"}.um .fa-car::before,.um-icon-within .fa-car::before{content:"\f1b9"}.um .fa-automobile::before,.um-icon-within .fa-automobile::before{content:"\f1b9"}.um .fa-hand-holding-hand::before,.um-icon-within .fa-hand-holding-hand::before{content:"\e4f7"}.um .fa-book-open-reader::before,.um-icon-within .fa-book-open-reader::before{content:"\f5da"}.um .fa-book-reader::before,.um-icon-within .fa-book-reader::before{content:"\f5da"}.um .fa-mountain-sun::before,.um-icon-within .fa-mountain-sun::before{content:"\e52f"}.um .fa-arrows-left-right-to-line::before,.um-icon-within .fa-arrows-left-right-to-line::before{content:"\e4ba"}.um .fa-dice-d20::before,.um-icon-within .fa-dice-d20::before{content:"\f6cf"}.um .fa-truck-droplet::before,.um-icon-within .fa-truck-droplet::before{content:"\e58c"}.um .fa-file-circle-xmark::before,.um-icon-within .fa-file-circle-xmark::before{content:"\e5a1"}.um .fa-temperature-arrow-up::before,.um-icon-within .fa-temperature-arrow-up::before{content:"\e040"}.um .fa-temperature-up::before,.um-icon-within .fa-temperature-up::before{content:"\e040"}.um .fa-medal::before,.um-icon-within .fa-medal::before{content:"\f5a2"}.um .fa-bed::before,.um-icon-within .fa-bed::before{content:"\f236"}.um .fa-square-h::before,.um-icon-within .fa-square-h::before{content:"\f0fd"}.um .fa-h-square::before,.um-icon-within .fa-h-square::before{content:"\f0fd"}.um .fa-podcast::before,.um-icon-within .fa-podcast::before{content:"\f2ce"}.um .fa-temperature-full::before,.um-icon-within .fa-temperature-full::before{content:"\f2c7"}.um .fa-temperature-4::before,.um-icon-within .fa-temperature-4::before{content:"\f2c7"}.um .fa-thermometer-4::before,.um-icon-within .fa-thermometer-4::before{content:"\f2c7"}.um .fa-thermometer-full::before,.um-icon-within .fa-thermometer-full::before{content:"\f2c7"}.um .fa-bell::before,.um-icon-within .fa-bell::before{content:"\f0f3"}.um .fa-superscript::before,.um-icon-within .fa-superscript::before{content:"\f12b"}.um .fa-plug-circle-xmark::before,.um-icon-within .fa-plug-circle-xmark::before{content:"\e560"}.um .fa-star-of-life::before,.um-icon-within .fa-star-of-life::before{content:"\f621"}.um .fa-phone-slash::before,.um-icon-within .fa-phone-slash::before{content:"\f3dd"}.um .fa-paint-roller::before,.um-icon-within .fa-paint-roller::before{content:"\f5aa"}.um .fa-handshake-angle::before,.um-icon-within .fa-handshake-angle::before{content:"\f4c4"}.um .fa-hands-helping::before,.um-icon-within .fa-hands-helping::before{content:"\f4c4"}.um .fa-location-dot::before,.um-icon-within .fa-location-dot::before{content:"\f3c5"}.um .fa-map-marker-alt::before,.um-icon-within .fa-map-marker-alt::before{content:"\f3c5"}.um .fa-file::before,.um-icon-within .fa-file::before{content:"\f15b"}.um .fa-greater-than::before,.um-icon-within .fa-greater-than::before{content:"\>"}.um .fa-person-swimming::before,.um-icon-within .fa-person-swimming::before{content:"\f5c4"}.um .fa-swimmer::before,.um-icon-within .fa-swimmer::before{content:"\f5c4"}.um .fa-arrow-down::before,.um-icon-within .fa-arrow-down::before{content:"\f063"}.um .fa-droplet::before,.um-icon-within .fa-droplet::before{content:"\f043"}.um .fa-tint::before,.um-icon-within .fa-tint::before{content:"\f043"}.um .fa-eraser::before,.um-icon-within .fa-eraser::before{content:"\f12d"}.um .fa-earth-americas::before,.um-icon-within .fa-earth-americas::before{content:"\f57d"}.um .fa-earth::before,.um-icon-within .fa-earth::before{content:"\f57d"}.um .fa-earth-america::before,.um-icon-within .fa-earth-america::before{content:"\f57d"}.um .fa-globe-americas::before,.um-icon-within .fa-globe-americas::before{content:"\f57d"}.um .fa-person-burst::before,.um-icon-within .fa-person-burst::before{content:"\e53b"}.um .fa-dove::before,.um-icon-within .fa-dove::before{content:"\f4ba"}.um .fa-battery-empty::before,.um-icon-within .fa-battery-empty::before{content:"\f244"}.um .fa-battery-0::before,.um-icon-within .fa-battery-0::before{content:"\f244"}.um .fa-socks::before,.um-icon-within .fa-socks::before{content:"\f696"}.um .fa-inbox::before,.um-icon-within .fa-inbox::before{content:"\f01c"}.um .fa-section::before,.um-icon-within .fa-section::before{content:"\e447"}.um .fa-gauge-high::before,.um-icon-within .fa-gauge-high::before{content:"\f625"}.um .fa-tachometer-alt::before,.um-icon-within .fa-tachometer-alt::before{content:"\f625"}.um .fa-tachometer-alt-fast::before,.um-icon-within .fa-tachometer-alt-fast::before{content:"\f625"}.um .fa-envelope-open-text::before,.um-icon-within .fa-envelope-open-text::before{content:"\f658"}.um .fa-hospital::before,.um-icon-within .fa-hospital::before{content:"\f0f8"}.um .fa-hospital-alt::before,.um-icon-within .fa-hospital-alt::before{content:"\f0f8"}.um .fa-hospital-wide::before,.um-icon-within .fa-hospital-wide::before{content:"\f0f8"}.um .fa-wine-bottle::before,.um-icon-within .fa-wine-bottle::before{content:"\f72f"}.um .fa-chess-rook::before,.um-icon-within .fa-chess-rook::before{content:"\f447"}.um .fa-bars-staggered::before,.um-icon-within .fa-bars-staggered::before{content:"\f550"}.um .fa-reorder::before,.um-icon-within .fa-reorder::before{content:"\f550"}.um .fa-stream::before,.um-icon-within .fa-stream::before{content:"\f550"}.um .fa-dharmachakra::before,.um-icon-within .fa-dharmachakra::before{content:"\f655"}.um .fa-hotdog::before,.um-icon-within .fa-hotdog::before{content:"\f80f"}.um .fa-person-walking-with-cane::before,.um-icon-within .fa-person-walking-with-cane::before{content:"\f29d"}.um .fa-blind::before,.um-icon-within .fa-blind::before{content:"\f29d"}.um .fa-drum::before,.um-icon-within .fa-drum::before{content:"\f569"}.um .fa-ice-cream::before,.um-icon-within .fa-ice-cream::before{content:"\f810"}.um .fa-heart-circle-bolt::before,.um-icon-within .fa-heart-circle-bolt::before{content:"\e4fc"}.um .fa-fax::before,.um-icon-within .fa-fax::before{content:"\f1ac"}.um .fa-paragraph::before,.um-icon-within .fa-paragraph::before{content:"\f1dd"}.um .fa-check-to-slot::before,.um-icon-within .fa-check-to-slot::before{content:"\f772"}.um .fa-vote-yea::before,.um-icon-within .fa-vote-yea::before{content:"\f772"}.um .fa-star-half::before,.um-icon-within .fa-star-half::before{content:"\f089"}.um .fa-boxes-stacked::before,.um-icon-within .fa-boxes-stacked::before{content:"\f468"}.um .fa-boxes::before,.um-icon-within .fa-boxes::before{content:"\f468"}.um .fa-boxes-alt::before,.um-icon-within .fa-boxes-alt::before{content:"\f468"}.um .fa-link::before,.um-icon-within .fa-link::before{content:"\f0c1"}.um .fa-chain::before,.um-icon-within .fa-chain::before{content:"\f0c1"}.um .fa-ear-listen::before,.um-icon-within .fa-ear-listen::before{content:"\f2a2"}.um .fa-assistive-listening-systems::before,.um-icon-within .fa-assistive-listening-systems::before{content:"\f2a2"}.um .fa-tree-city::before,.um-icon-within .fa-tree-city::before{content:"\e587"}.um .fa-play::before,.um-icon-within .fa-play::before{content:"\f04b"}.um .fa-font::before,.um-icon-within .fa-font::before{content:"\f031"}.um .fa-table-cells-row-lock::before,.um-icon-within .fa-table-cells-row-lock::before{content:"\e67a"}.um .fa-rupiah-sign::before,.um-icon-within .fa-rupiah-sign::before{content:"\e23d"}.um .fa-magnifying-glass::before,.um-icon-within .fa-magnifying-glass::before{content:"\f002"}.um .fa-search::before,.um-icon-within .fa-search::before{content:"\f002"}.um .fa-table-tennis-paddle-ball::before,.um-icon-within .fa-table-tennis-paddle-ball::before{content:"\f45d"}.um .fa-ping-pong-paddle-ball::before,.um-icon-within .fa-ping-pong-paddle-ball::before{content:"\f45d"}.um .fa-table-tennis::before,.um-icon-within .fa-table-tennis::before{content:"\f45d"}.um .fa-person-dots-from-line::before,.um-icon-within .fa-person-dots-from-line::before{content:"\f470"}.um .fa-diagnoses::before,.um-icon-within .fa-diagnoses::before{content:"\f470"}.um .fa-trash-can-arrow-up::before,.um-icon-within .fa-trash-can-arrow-up::before{content:"\f82a"}.um .fa-trash-restore-alt::before,.um-icon-within .fa-trash-restore-alt::before{content:"\f82a"}.um .fa-naira-sign::before,.um-icon-within .fa-naira-sign::before{content:"\e1f6"}.um .fa-cart-arrow-down::before,.um-icon-within .fa-cart-arrow-down::before{content:"\f218"}.um .fa-walkie-talkie::before,.um-icon-within .fa-walkie-talkie::before{content:"\f8ef"}.um .fa-file-pen::before,.um-icon-within .fa-file-pen::before{content:"\f31c"}.um .fa-file-edit::before,.um-icon-within .fa-file-edit::before{content:"\f31c"}.um .fa-receipt::before,.um-icon-within .fa-receipt::before{content:"\f543"}.um .fa-square-pen::before,.um-icon-within .fa-square-pen::before{content:"\f14b"}.um .fa-pen-square::before,.um-icon-within .fa-pen-square::before{content:"\f14b"}.um .fa-pencil-square::before,.um-icon-within .fa-pencil-square::before{content:"\f14b"}.um .fa-suitcase-rolling::before,.um-icon-within .fa-suitcase-rolling::before{content:"\f5c1"}.um .fa-person-circle-exclamation::before,.um-icon-within .fa-person-circle-exclamation::before{content:"\e53f"}.um .fa-chevron-down::before,.um-icon-within .fa-chevron-down::before{content:"\f078"}.um .fa-battery-full::before,.um-icon-within .fa-battery-full::before{content:"\f240"}.um .fa-battery::before,.um-icon-within .fa-battery::before{content:"\f240"}.um .fa-battery-5::before,.um-icon-within .fa-battery-5::before{content:"\f240"}.um .fa-skull-crossbones::before,.um-icon-within .fa-skull-crossbones::before{content:"\f714"}.um .fa-code-compare::before,.um-icon-within .fa-code-compare::before{content:"\e13a"}.um .fa-list-ul::before,.um-icon-within .fa-list-ul::before{content:"\f0ca"}.um .fa-list-dots::before,.um-icon-within .fa-list-dots::before{content:"\f0ca"}.um .fa-school-lock::before,.um-icon-within .fa-school-lock::before{content:"\e56f"}.um .fa-tower-cell::before,.um-icon-within .fa-tower-cell::before{content:"\e585"}.um .fa-down-long::before,.um-icon-within .fa-down-long::before{content:"\f309"}.um .fa-long-arrow-alt-down::before,.um-icon-within .fa-long-arrow-alt-down::before{content:"\f309"}.um .fa-ranking-star::before,.um-icon-within .fa-ranking-star::before{content:"\e561"}.um .fa-chess-king::before,.um-icon-within .fa-chess-king::before{content:"\f43f"}.um .fa-person-harassing::before,.um-icon-within .fa-person-harassing::before{content:"\e549"}.um .fa-brazilian-real-sign::before,.um-icon-within .fa-brazilian-real-sign::before{content:"\e46c"}.um .fa-landmark-dome::before,.um-icon-within .fa-landmark-dome::before{content:"\f752"}.um .fa-landmark-alt::before,.um-icon-within .fa-landmark-alt::before{content:"\f752"}.um .fa-arrow-up::before,.um-icon-within .fa-arrow-up::before{content:"\f062"}.um .fa-tv::before,.um-icon-within .fa-tv::before{content:"\f26c"}.um .fa-television::before,.um-icon-within .fa-television::before{content:"\f26c"}.um .fa-tv-alt::before,.um-icon-within .fa-tv-alt::before{content:"\f26c"}.um .fa-shrimp::before,.um-icon-within .fa-shrimp::before{content:"\e448"}.um .fa-list-check::before,.um-icon-within .fa-list-check::before{content:"\f0ae"}.um .fa-tasks::before,.um-icon-within .fa-tasks::before{content:"\f0ae"}.um .fa-jug-detergent::before,.um-icon-within .fa-jug-detergent::before{content:"\e519"}.um .fa-circle-user::before,.um-icon-within .fa-circle-user::before{content:"\f2bd"}.um .fa-user-circle::before,.um-icon-within .fa-user-circle::before{content:"\f2bd"}.um .fa-user-shield::before,.um-icon-within .fa-user-shield::before{content:"\f505"}.um .fa-wind::before,.um-icon-within .fa-wind::before{content:"\f72e"}.um .fa-car-burst::before,.um-icon-within .fa-car-burst::before{content:"\f5e1"}.um .fa-car-crash::before,.um-icon-within .fa-car-crash::before{content:"\f5e1"}.um .fa-y::before,.um-icon-within .fa-y::before{content:"Y"}.um .fa-person-snowboarding::before,.um-icon-within .fa-person-snowboarding::before{content:"\f7ce"}.um .fa-snowboarding::before,.um-icon-within .fa-snowboarding::before{content:"\f7ce"}.um .fa-truck-fast::before,.um-icon-within .fa-truck-fast::before{content:"\f48b"}.um .fa-shipping-fast::before,.um-icon-within .fa-shipping-fast::before{content:"\f48b"}.um .fa-fish::before,.um-icon-within .fa-fish::before{content:"\f578"}.um .fa-user-graduate::before,.um-icon-within .fa-user-graduate::before{content:"\f501"}.um .fa-circle-half-stroke::before,.um-icon-within .fa-circle-half-stroke::before{content:"\f042"}.um .fa-adjust::before,.um-icon-within .fa-adjust::before{content:"\f042"}.um .fa-clapperboard::before,.um-icon-within .fa-clapperboard::before{content:"\e131"}.um .fa-circle-radiation::before,.um-icon-within .fa-circle-radiation::before{content:"\f7ba"}.um .fa-radiation-alt::before,.um-icon-within .fa-radiation-alt::before{content:"\f7ba"}.um .fa-baseball::before,.um-icon-within .fa-baseball::before{content:"\f433"}.um .fa-baseball-ball::before,.um-icon-within .fa-baseball-ball::before{content:"\f433"}.um .fa-jet-fighter-up::before,.um-icon-within .fa-jet-fighter-up::before{content:"\e518"}.um .fa-diagram-project::before,.um-icon-within .fa-diagram-project::before{content:"\f542"}.um .fa-project-diagram::before,.um-icon-within .fa-project-diagram::before{content:"\f542"}.um .fa-copy::before,.um-icon-within .fa-copy::before{content:"\f0c5"}.um .fa-volume-xmark::before,.um-icon-within .fa-volume-xmark::before{content:"\f6a9"}.um .fa-volume-mute::before,.um-icon-within .fa-volume-mute::before{content:"\f6a9"}.um .fa-volume-times::before,.um-icon-within .fa-volume-times::before{content:"\f6a9"}.um .fa-hand-sparkles::before,.um-icon-within .fa-hand-sparkles::before{content:"\e05d"}.um .fa-grip::before,.um-icon-within .fa-grip::before{content:"\f58d"}.um .fa-grip-horizontal::before,.um-icon-within .fa-grip-horizontal::before{content:"\f58d"}.um .fa-share-from-square::before,.um-icon-within .fa-share-from-square::before{content:"\f14d"}.um .fa-share-square::before,.um-icon-within .fa-share-square::before{content:"\f14d"}.um .fa-child-combatant::before,.um-icon-within .fa-child-combatant::before{content:"\e4e0"}.um .fa-child-rifle::before,.um-icon-within .fa-child-rifle::before{content:"\e4e0"}.um .fa-gun::before,.um-icon-within .fa-gun::before{content:"\e19b"}.um .fa-square-phone::before,.um-icon-within .fa-square-phone::before{content:"\f098"}.um .fa-phone-square::before,.um-icon-within .fa-phone-square::before{content:"\f098"}.um .fa-plus::before,.um-icon-within .fa-plus::before{content:"\+"}.um .fa-add::before,.um-icon-within .fa-add::before{content:"\+"}.um .fa-expand::before,.um-icon-within .fa-expand::before{content:"\f065"}.um .fa-computer::before,.um-icon-within .fa-computer::before{content:"\e4e5"}.um .fa-xmark::before,.um-icon-within .fa-xmark::before{content:"\f00d"}.um .fa-close::before,.um-icon-within .fa-close::before{content:"\f00d"}.um .fa-multiply::before,.um-icon-within .fa-multiply::before{content:"\f00d"}.um .fa-remove::before,.um-icon-within .fa-remove::before{content:"\f00d"}.um .fa-times::before,.um-icon-within .fa-times::before{content:"\f00d"}.um .fa-arrows-up-down-left-right::before,.um-icon-within .fa-arrows-up-down-left-right::before{content:"\f047"}.um .fa-arrows::before,.um-icon-within .fa-arrows::before{content:"\f047"}.um .fa-chalkboard-user::before,.um-icon-within .fa-chalkboard-user::before{content:"\f51c"}.um .fa-chalkboard-teacher::before,.um-icon-within .fa-chalkboard-teacher::before{content:"\f51c"}.um .fa-peso-sign::before,.um-icon-within .fa-peso-sign::before{content:"\e222"}.um .fa-building-shield::before,.um-icon-within .fa-building-shield::before{content:"\e4d8"}.um .fa-baby::before,.um-icon-within .fa-baby::before{content:"\f77c"}.um .fa-users-line::before,.um-icon-within .fa-users-line::before{content:"\e592"}.um .fa-quote-left::before,.um-icon-within .fa-quote-left::before{content:"\f10d"}.um .fa-quote-left-alt::before,.um-icon-within .fa-quote-left-alt::before{content:"\f10d"}.um .fa-tractor::before,.um-icon-within .fa-tractor::before{content:"\f722"}.um .fa-trash-arrow-up::before,.um-icon-within .fa-trash-arrow-up::before{content:"\f829"}.um .fa-trash-restore::before,.um-icon-within .fa-trash-restore::before{content:"\f829"}.um .fa-arrow-down-up-lock::before,.um-icon-within .fa-arrow-down-up-lock::before{content:"\e4b0"}.um .fa-lines-leaning::before,.um-icon-within .fa-lines-leaning::before{content:"\e51e"}.um .fa-ruler-combined::before,.um-icon-within .fa-ruler-combined::before{content:"\f546"}.um .fa-copyright::before,.um-icon-within .fa-copyright::before{content:"\f1f9"}.um .fa-equals::before,.um-icon-within .fa-equals::before{content:"\="}.um .fa-blender::before,.um-icon-within .fa-blender::before{content:"\f517"}.um .fa-teeth::before,.um-icon-within .fa-teeth::before{content:"\f62e"}.um .fa-shekel-sign::before,.um-icon-within .fa-shekel-sign::before{content:"\f20b"}.um .fa-ils::before,.um-icon-within .fa-ils::before{content:"\f20b"}.um .fa-shekel::before,.um-icon-within .fa-shekel::before{content:"\f20b"}.um .fa-sheqel::before,.um-icon-within .fa-sheqel::before{content:"\f20b"}.um .fa-sheqel-sign::before,.um-icon-within .fa-sheqel-sign::before{content:"\f20b"}.um .fa-map::before,.um-icon-within .fa-map::before{content:"\f279"}.um .fa-rocket::before,.um-icon-within .fa-rocket::before{content:"\f135"}.um .fa-photo-film::before,.um-icon-within .fa-photo-film::before{content:"\f87c"}.um .fa-photo-video::before,.um-icon-within .fa-photo-video::before{content:"\f87c"}.um .fa-folder-minus::before,.um-icon-within .fa-folder-minus::before{content:"\f65d"}.um .fa-store::before,.um-icon-within .fa-store::before{content:"\f54e"}.um .fa-arrow-trend-up::before,.um-icon-within .fa-arrow-trend-up::before{content:"\e098"}.um .fa-plug-circle-minus::before,.um-icon-within .fa-plug-circle-minus::before{content:"\e55e"}.um .fa-sign-hanging::before,.um-icon-within .fa-sign-hanging::before{content:"\f4d9"}.um .fa-sign::before,.um-icon-within .fa-sign::before{content:"\f4d9"}.um .fa-bezier-curve::before,.um-icon-within .fa-bezier-curve::before{content:"\f55b"}.um .fa-bell-slash::before,.um-icon-within .fa-bell-slash::before{content:"\f1f6"}.um .fa-tablet::before,.um-icon-within .fa-tablet::before{content:"\f3fb"}.um .fa-tablet-android::before,.um-icon-within .fa-tablet-android::before{content:"\f3fb"}.um .fa-school-flag::before,.um-icon-within .fa-school-flag::before{content:"\e56e"}.um .fa-fill::before,.um-icon-within .fa-fill::before{content:"\f575"}.um .fa-angle-up::before,.um-icon-within .fa-angle-up::before{content:"\f106"}.um .fa-drumstick-bite::before,.um-icon-within .fa-drumstick-bite::before{content:"\f6d7"}.um .fa-holly-berry::before,.um-icon-within .fa-holly-berry::before{content:"\f7aa"}.um .fa-chevron-left::before,.um-icon-within .fa-chevron-left::before{content:"\f053"}.um .fa-bacteria::before,.um-icon-within .fa-bacteria::before{content:"\e059"}.um .fa-hand-lizard::before,.um-icon-within .fa-hand-lizard::before{content:"\f258"}.um .fa-notdef::before,.um-icon-within .fa-notdef::before{content:"\e1fe"}.um .fa-disease::before,.um-icon-within .fa-disease::before{content:"\f7fa"}.um .fa-briefcase-medical::before,.um-icon-within .fa-briefcase-medical::before{content:"\f469"}.um .fa-genderless::before,.um-icon-within .fa-genderless::before{content:"\f22d"}.um .fa-chevron-right::before,.um-icon-within .fa-chevron-right::before{content:"\f054"}.um .fa-retweet::before,.um-icon-within .fa-retweet::before{content:"\f079"}.um .fa-car-rear::before,.um-icon-within .fa-car-rear::before{content:"\f5de"}.um .fa-car-alt::before,.um-icon-within .fa-car-alt::before{content:"\f5de"}.um .fa-pump-soap::before,.um-icon-within .fa-pump-soap::before{content:"\e06b"}.um .fa-video-slash::before,.um-icon-within .fa-video-slash::before{content:"\f4e2"}.um .fa-battery-quarter::before,.um-icon-within .fa-battery-quarter::before{content:"\f243"}.um .fa-battery-2::before,.um-icon-within .fa-battery-2::before{content:"\f243"}.um .fa-radio::before,.um-icon-within .fa-radio::before{content:"\f8d7"}.um .fa-baby-carriage::before,.um-icon-within .fa-baby-carriage::before{content:"\f77d"}.um .fa-carriage-baby::before,.um-icon-within .fa-carriage-baby::before{content:"\f77d"}.um .fa-traffic-light::before,.um-icon-within .fa-traffic-light::before{content:"\f637"}.um .fa-thermometer::before,.um-icon-within .fa-thermometer::before{content:"\f491"}.um .fa-vr-cardboard::before,.um-icon-within .fa-vr-cardboard::before{content:"\f729"}.um .fa-hand-middle-finger::before,.um-icon-within .fa-hand-middle-finger::before{content:"\f806"}.um .fa-percent::before,.um-icon-within .fa-percent::before{content:"\%"}.um .fa-percentage::before,.um-icon-within .fa-percentage::before{content:"\%"}.um .fa-truck-moving::before,.um-icon-within .fa-truck-moving::before{content:"\f4df"}.um .fa-glass-water-droplet::before,.um-icon-within .fa-glass-water-droplet::before{content:"\e4f5"}.um .fa-display::before,.um-icon-within .fa-display::before{content:"\e163"}.um .fa-face-smile::before,.um-icon-within .fa-face-smile::before{content:"\f118"}.um .fa-smile::before,.um-icon-within .fa-smile::before{content:"\f118"}.um .fa-thumbtack::before,.um-icon-within .fa-thumbtack::before{content:"\f08d"}.um .fa-thumb-tack::before,.um-icon-within .fa-thumb-tack::before{content:"\f08d"}.um .fa-trophy::before,.um-icon-within .fa-trophy::before{content:"\f091"}.um .fa-person-praying::before,.um-icon-within .fa-person-praying::before{content:"\f683"}.um .fa-pray::before,.um-icon-within .fa-pray::before{content:"\f683"}.um .fa-hammer::before,.um-icon-within .fa-hammer::before{content:"\f6e3"}.um .fa-hand-peace::before,.um-icon-within .fa-hand-peace::before{content:"\f25b"}.um .fa-rotate::before,.um-icon-within .fa-rotate::before{content:"\f2f1"}.um .fa-sync-alt::before,.um-icon-within .fa-sync-alt::before{content:"\f2f1"}.um .fa-spinner::before,.um-icon-within .fa-spinner::before{content:"\f110"}.um .fa-robot::before,.um-icon-within .fa-robot::before{content:"\f544"}.um .fa-peace::before,.um-icon-within .fa-peace::before{content:"\f67c"}.um .fa-gears::before,.um-icon-within .fa-gears::before{content:"\f085"}.um .fa-cogs::before,.um-icon-within .fa-cogs::before{content:"\f085"}.um .fa-warehouse::before,.um-icon-within .fa-warehouse::before{content:"\f494"}.um .fa-arrow-up-right-dots::before,.um-icon-within .fa-arrow-up-right-dots::before{content:"\e4b7"}.um .fa-splotch::before,.um-icon-within .fa-splotch::before{content:"\f5bc"}.um .fa-face-grin-hearts::before,.um-icon-within .fa-face-grin-hearts::before{content:"\f584"}.um .fa-grin-hearts::before,.um-icon-within .fa-grin-hearts::before{content:"\f584"}.um .fa-dice-four::before,.um-icon-within .fa-dice-four::before{content:"\f524"}.um .fa-sim-card::before,.um-icon-within .fa-sim-card::before{content:"\f7c4"}.um .fa-transgender::before,.um-icon-within .fa-transgender::before{content:"\f225"}.um .fa-transgender-alt::before,.um-icon-within .fa-transgender-alt::before{content:"\f225"}.um .fa-mercury::before,.um-icon-within .fa-mercury::before{content:"\f223"}.um .fa-arrow-turn-down::before,.um-icon-within .fa-arrow-turn-down::before{content:"\f149"}.um .fa-level-down::before,.um-icon-within .fa-level-down::before{content:"\f149"}.um .fa-person-falling-burst::before,.um-icon-within .fa-person-falling-burst::before{content:"\e547"}.um .fa-award::before,.um-icon-within .fa-award::before{content:"\f559"}.um .fa-ticket-simple::before,.um-icon-within .fa-ticket-simple::before{content:"\f3ff"}.um .fa-ticket-alt::before,.um-icon-within .fa-ticket-alt::before{content:"\f3ff"}.um .fa-building::before,.um-icon-within .fa-building::before{content:"\f1ad"}.um .fa-angles-left::before,.um-icon-within .fa-angles-left::before{content:"\f100"}.um .fa-angle-double-left::before,.um-icon-within .fa-angle-double-left::before{content:"\f100"}.um .fa-qrcode::before,.um-icon-within .fa-qrcode::before{content:"\f029"}.um .fa-clock-rotate-left::before,.um-icon-within .fa-clock-rotate-left::before{content:"\f1da"}.um .fa-history::before,.um-icon-within .fa-history::before{content:"\f1da"}.um .fa-face-grin-beam-sweat::before,.um-icon-within .fa-face-grin-beam-sweat::before{content:"\f583"}.um .fa-grin-beam-sweat::before,.um-icon-within .fa-grin-beam-sweat::before{content:"\f583"}.um .fa-file-export::before,.um-icon-within .fa-file-export::before{content:"\f56e"}.um .fa-arrow-right-from-file::before,.um-icon-within .fa-arrow-right-from-file::before{content:"\f56e"}.um .fa-shield::before,.um-icon-within .fa-shield::before{content:"\f132"}.um .fa-shield-blank::before,.um-icon-within .fa-shield-blank::before{content:"\f132"}.um .fa-arrow-up-short-wide::before,.um-icon-within .fa-arrow-up-short-wide::before{content:"\f885"}.um .fa-sort-amount-up-alt::before,.um-icon-within .fa-sort-amount-up-alt::before{content:"\f885"}.um .fa-house-medical::before,.um-icon-within .fa-house-medical::before{content:"\e3b2"}.um .fa-golf-ball-tee::before,.um-icon-within .fa-golf-ball-tee::before{content:"\f450"}.um .fa-golf-ball::before,.um-icon-within .fa-golf-ball::before{content:"\f450"}.um .fa-circle-chevron-left::before,.um-icon-within .fa-circle-chevron-left::before{content:"\f137"}.um .fa-chevron-circle-left::before,.um-icon-within .fa-chevron-circle-left::before{content:"\f137"}.um .fa-house-chimney-window::before,.um-icon-within .fa-house-chimney-window::before{content:"\e00d"}.um .fa-pen-nib::before,.um-icon-within .fa-pen-nib::before{content:"\f5ad"}.um .fa-tent-arrow-turn-left::before,.um-icon-within .fa-tent-arrow-turn-left::before{content:"\e580"}.um .fa-tents::before,.um-icon-within .fa-tents::before{content:"\e582"}.um .fa-wand-magic::before,.um-icon-within .fa-wand-magic::before{content:"\f0d0"}.um .fa-magic::before,.um-icon-within .fa-magic::before{content:"\f0d0"}.um .fa-dog::before,.um-icon-within .fa-dog::before{content:"\f6d3"}.um .fa-carrot::before,.um-icon-within .fa-carrot::before{content:"\f787"}.um .fa-moon::before,.um-icon-within .fa-moon::before{content:"\f186"}.um .fa-wine-glass-empty::before,.um-icon-within .fa-wine-glass-empty::before{content:"\f5ce"}.um .fa-wine-glass-alt::before,.um-icon-within .fa-wine-glass-alt::before{content:"\f5ce"}.um .fa-cheese::before,.um-icon-within .fa-cheese::before{content:"\f7ef"}.um .fa-yin-yang::before,.um-icon-within .fa-yin-yang::before{content:"\f6ad"}.um .fa-music::before,.um-icon-within .fa-music::before{content:"\f001"}.um .fa-code-commit::before,.um-icon-within .fa-code-commit::before{content:"\f386"}.um .fa-temperature-low::before,.um-icon-within .fa-temperature-low::before{content:"\f76b"}.um .fa-person-biking::before,.um-icon-within .fa-person-biking::before{content:"\f84a"}.um .fa-biking::before,.um-icon-within .fa-biking::before{content:"\f84a"}.um .fa-broom::before,.um-icon-within .fa-broom::before{content:"\f51a"}.um .fa-shield-heart::before,.um-icon-within .fa-shield-heart::before{content:"\e574"}.um .fa-gopuram::before,.um-icon-within .fa-gopuram::before{content:"\f664"}.um .fa-earth-oceania::before,.um-icon-within .fa-earth-oceania::before{content:"\e47b"}.um .fa-globe-oceania::before,.um-icon-within .fa-globe-oceania::before{content:"\e47b"}.um .fa-square-xmark::before,.um-icon-within .fa-square-xmark::before{content:"\f2d3"}.um .fa-times-square::before,.um-icon-within .fa-times-square::before{content:"\f2d3"}.um .fa-xmark-square::before,.um-icon-within .fa-xmark-square::before{content:"\f2d3"}.um .fa-hashtag::before,.um-icon-within .fa-hashtag::before{content:"\#"}.um .fa-up-right-and-down-left-from-center::before,.um-icon-within .fa-up-right-and-down-left-from-center::before{content:"\f424"}.um .fa-expand-alt::before,.um-icon-within .fa-expand-alt::before{content:"\f424"}.um .fa-oil-can::before,.um-icon-within .fa-oil-can::before{content:"\f613"}.um .fa-t::before,.um-icon-within .fa-t::before{content:"T"}.um .fa-hippo::before,.um-icon-within .fa-hippo::before{content:"\f6ed"}.um .fa-chart-column::before,.um-icon-within .fa-chart-column::before{content:"\e0e3"}.um .fa-infinity::before,.um-icon-within .fa-infinity::before{content:"\f534"}.um .fa-vial-circle-check::before,.um-icon-within .fa-vial-circle-check::before{content:"\e596"}.um .fa-person-arrow-down-to-line::before,.um-icon-within .fa-person-arrow-down-to-line::before{content:"\e538"}.um .fa-voicemail::before,.um-icon-within .fa-voicemail::before{content:"\f897"}.um .fa-fan::before,.um-icon-within .fa-fan::before{content:"\f863"}.um .fa-person-walking-luggage::before,.um-icon-within .fa-person-walking-luggage::before{content:"\e554"}.um .fa-up-down::before,.um-icon-within .fa-up-down::before{content:"\f338"}.um .fa-arrows-alt-v::before,.um-icon-within .fa-arrows-alt-v::before{content:"\f338"}.um .fa-cloud-moon-rain::before,.um-icon-within .fa-cloud-moon-rain::before{content:"\f73c"}.um .fa-calendar::before,.um-icon-within .fa-calendar::before{content:"\f133"}.um .fa-trailer::before,.um-icon-within .fa-trailer::before{content:"\e041"}.um .fa-bahai::before,.um-icon-within .fa-bahai::before{content:"\f666"}.um .fa-haykal::before,.um-icon-within .fa-haykal::before{content:"\f666"}.um .fa-sd-card::before,.um-icon-within .fa-sd-card::before{content:"\f7c2"}.um .fa-dragon::before,.um-icon-within .fa-dragon::before{content:"\f6d5"}.um .fa-shoe-prints::before,.um-icon-within .fa-shoe-prints::before{content:"\f54b"}.um .fa-circle-plus::before,.um-icon-within .fa-circle-plus::before{content:"\f055"}.um .fa-plus-circle::before,.um-icon-within .fa-plus-circle::before{content:"\f055"}.um .fa-face-grin-tongue-wink::before,.um-icon-within .fa-face-grin-tongue-wink::before{content:"\f58b"}.um .fa-grin-tongue-wink::before,.um-icon-within .fa-grin-tongue-wink::before{content:"\f58b"}.um .fa-hand-holding::before,.um-icon-within .fa-hand-holding::before{content:"\f4bd"}.um .fa-plug-circle-exclamation::before,.um-icon-within .fa-plug-circle-exclamation::before{content:"\e55d"}.um .fa-link-slash::before,.um-icon-within .fa-link-slash::before{content:"\f127"}.um .fa-chain-broken::before,.um-icon-within .fa-chain-broken::before{content:"\f127"}.um .fa-chain-slash::before,.um-icon-within .fa-chain-slash::before{content:"\f127"}.um .fa-unlink::before,.um-icon-within .fa-unlink::before{content:"\f127"}.um .fa-clone::before,.um-icon-within .fa-clone::before{content:"\f24d"}.um .fa-person-walking-arrow-loop-left::before,.um-icon-within .fa-person-walking-arrow-loop-left::before{content:"\e551"}.um .fa-arrow-up-z-a::before,.um-icon-within .fa-arrow-up-z-a::before{content:"\f882"}.um .fa-sort-alpha-up-alt::before,.um-icon-within .fa-sort-alpha-up-alt::before{content:"\f882"}.um .fa-fire-flame-curved::before,.um-icon-within .fa-fire-flame-curved::before{content:"\f7e4"}.um .fa-fire-alt::before,.um-icon-within .fa-fire-alt::before{content:"\f7e4"}.um .fa-tornado::before,.um-icon-within .fa-tornado::before{content:"\f76f"}.um .fa-file-circle-plus::before,.um-icon-within .fa-file-circle-plus::before{content:"\e494"}.um .fa-book-quran::before,.um-icon-within .fa-book-quran::before{content:"\f687"}.um .fa-quran::before,.um-icon-within .fa-quran::before{content:"\f687"}.um .fa-anchor::before,.um-icon-within .fa-anchor::before{content:"\f13d"}.um .fa-border-all::before,.um-icon-within .fa-border-all::before{content:"\f84c"}.um .fa-face-angry::before,.um-icon-within .fa-face-angry::before{content:"\f556"}.um .fa-angry::before,.um-icon-within .fa-angry::before{content:"\f556"}.um .fa-cookie-bite::before,.um-icon-within .fa-cookie-bite::before{content:"\f564"}.um .fa-arrow-trend-down::before,.um-icon-within .fa-arrow-trend-down::before{content:"\e097"}.um .fa-rss::before,.um-icon-within .fa-rss::before{content:"\f09e"}.um .fa-feed::before,.um-icon-within .fa-feed::before{content:"\f09e"}.um .fa-draw-polygon::before,.um-icon-within .fa-draw-polygon::before{content:"\f5ee"}.um .fa-scale-balanced::before,.um-icon-within .fa-scale-balanced::before{content:"\f24e"}.um .fa-balance-scale::before,.um-icon-within .fa-balance-scale::before{content:"\f24e"}.um .fa-gauge-simple-high::before,.um-icon-within .fa-gauge-simple-high::before{content:"\f62a"}.um .fa-tachometer::before,.um-icon-within .fa-tachometer::before{content:"\f62a"}.um .fa-tachometer-fast::before,.um-icon-within .fa-tachometer-fast::before{content:"\f62a"}.um .fa-shower::before,.um-icon-within .fa-shower::before{content:"\f2cc"}.um .fa-desktop::before,.um-icon-within .fa-desktop::before{content:"\f390"}.um .fa-desktop-alt::before,.um-icon-within .fa-desktop-alt::before{content:"\f390"}.um .fa-m::before,.um-icon-within .fa-m::before{content:"M"}.um .fa-table-list::before,.um-icon-within .fa-table-list::before{content:"\f00b"}.um .fa-th-list::before,.um-icon-within .fa-th-list::before{content:"\f00b"}.um .fa-comment-sms::before,.um-icon-within .fa-comment-sms::before{content:"\f7cd"}.um .fa-sms::before,.um-icon-within .fa-sms::before{content:"\f7cd"}.um .fa-book::before,.um-icon-within .fa-book::before{content:"\f02d"}.um .fa-user-plus::before,.um-icon-within .fa-user-plus::before{content:"\f234"}.um .fa-check::before,.um-icon-within .fa-check::before{content:"\f00c"}.um .fa-battery-three-quarters::before,.um-icon-within .fa-battery-three-quarters::before{content:"\f241"}.um .fa-battery-4::before,.um-icon-within .fa-battery-4::before{content:"\f241"}.um .fa-house-circle-check::before,.um-icon-within .fa-house-circle-check::before{content:"\e509"}.um .fa-angle-left::before,.um-icon-within .fa-angle-left::before{content:"\f104"}.um .fa-diagram-successor::before,.um-icon-within .fa-diagram-successor::before{content:"\e47a"}.um .fa-truck-arrow-right::before,.um-icon-within .fa-truck-arrow-right::before{content:"\e58b"}.um .fa-arrows-split-up-and-left::before,.um-icon-within .fa-arrows-split-up-and-left::before{content:"\e4bc"}.um .fa-hand-fist::before,.um-icon-within .fa-hand-fist::before{content:"\f6de"}.um .fa-fist-raised::before,.um-icon-within .fa-fist-raised::before{content:"\f6de"}.um .fa-cloud-moon::before,.um-icon-within .fa-cloud-moon::before{content:"\f6c3"}.um .fa-briefcase::before,.um-icon-within .fa-briefcase::before{content:"\f0b1"}.um .fa-person-falling::before,.um-icon-within .fa-person-falling::before{content:"\e546"}.um .fa-image-portrait::before,.um-icon-within .fa-image-portrait::before{content:"\f3e0"}.um .fa-portrait::before,.um-icon-within .fa-portrait::before{content:"\f3e0"}.um .fa-user-tag::before,.um-icon-within .fa-user-tag::before{content:"\f507"}.um .fa-rug::before,.um-icon-within .fa-rug::before{content:"\e569"}.um .fa-earth-europe::before,.um-icon-within .fa-earth-europe::before{content:"\f7a2"}.um .fa-globe-europe::before,.um-icon-within .fa-globe-europe::before{content:"\f7a2"}.um .fa-cart-flatbed-suitcase::before,.um-icon-within .fa-cart-flatbed-suitcase::before{content:"\f59d"}.um .fa-luggage-cart::before,.um-icon-within .fa-luggage-cart::before{content:"\f59d"}.um .fa-rectangle-xmark::before,.um-icon-within .fa-rectangle-xmark::before{content:"\f410"}.um .fa-rectangle-times::before,.um-icon-within .fa-rectangle-times::before{content:"\f410"}.um .fa-times-rectangle::before,.um-icon-within .fa-times-rectangle::before{content:"\f410"}.um .fa-window-close::before,.um-icon-within .fa-window-close::before{content:"\f410"}.um .fa-baht-sign::before,.um-icon-within .fa-baht-sign::before{content:"\e0ac"}.um .fa-book-open::before,.um-icon-within .fa-book-open::before{content:"\f518"}.um .fa-book-journal-whills::before,.um-icon-within .fa-book-journal-whills::before{content:"\f66a"}.um .fa-journal-whills::before,.um-icon-within .fa-journal-whills::before{content:"\f66a"}.um .fa-handcuffs::before,.um-icon-within .fa-handcuffs::before{content:"\e4f8"}.um .fa-triangle-exclamation::before,.um-icon-within .fa-triangle-exclamation::before{content:"\f071"}.um .fa-exclamation-triangle::before,.um-icon-within .fa-exclamation-triangle::before{content:"\f071"}.um .fa-warning::before,.um-icon-within .fa-warning::before{content:"\f071"}.um .fa-database::before,.um-icon-within .fa-database::before{content:"\f1c0"}.um .fa-share::before,.um-icon-within .fa-share::before{content:"\f064"}.um .fa-mail-forward::before,.um-icon-within .fa-mail-forward::before{content:"\f064"}.um .fa-bottle-droplet::before,.um-icon-within .fa-bottle-droplet::before{content:"\e4c4"}.um .fa-mask-face::before,.um-icon-within .fa-mask-face::before{content:"\e1d7"}.um .fa-hill-rockslide::before,.um-icon-within .fa-hill-rockslide::before{content:"\e508"}.um .fa-right-left::before,.um-icon-within .fa-right-left::before{content:"\f362"}.um .fa-exchange-alt::before,.um-icon-within .fa-exchange-alt::before{content:"\f362"}.um .fa-paper-plane::before,.um-icon-within .fa-paper-plane::before{content:"\f1d8"}.um .fa-road-circle-exclamation::before,.um-icon-within .fa-road-circle-exclamation::before{content:"\e565"}.um .fa-dungeon::before,.um-icon-within .fa-dungeon::before{content:"\f6d9"}.um .fa-align-right::before,.um-icon-within .fa-align-right::before{content:"\f038"}.um .fa-money-bill-1-wave::before,.um-icon-within .fa-money-bill-1-wave::before{content:"\f53b"}.um .fa-money-bill-wave-alt::before,.um-icon-within .fa-money-bill-wave-alt::before{content:"\f53b"}.um .fa-life-ring::before,.um-icon-within .fa-life-ring::before{content:"\f1cd"}.um .fa-hands::before,.um-icon-within .fa-hands::before{content:"\f2a7"}.um .fa-sign-language::before,.um-icon-within .fa-sign-language::before{content:"\f2a7"}.um .fa-signing::before,.um-icon-within .fa-signing::before{content:"\f2a7"}.um .fa-calendar-day::before,.um-icon-within .fa-calendar-day::before{content:"\f783"}.um .fa-water-ladder::before,.um-icon-within .fa-water-ladder::before{content:"\f5c5"}.um .fa-ladder-water::before,.um-icon-within .fa-ladder-water::before{content:"\f5c5"}.um .fa-swimming-pool::before,.um-icon-within .fa-swimming-pool::before{content:"\f5c5"}.um .fa-arrows-up-down::before,.um-icon-within .fa-arrows-up-down::before{content:"\f07d"}.um .fa-arrows-v::before,.um-icon-within .fa-arrows-v::before{content:"\f07d"}.um .fa-face-grimace::before,.um-icon-within .fa-face-grimace::before{content:"\f57f"}.um .fa-grimace::before,.um-icon-within .fa-grimace::before{content:"\f57f"}.um .fa-wheelchair-move::before,.um-icon-within .fa-wheelchair-move::before{content:"\e2ce"}.um .fa-wheelchair-alt::before,.um-icon-within .fa-wheelchair-alt::before{content:"\e2ce"}.um .fa-turn-down::before,.um-icon-within .fa-turn-down::before{content:"\f3be"}.um .fa-level-down-alt::before,.um-icon-within .fa-level-down-alt::before{content:"\f3be"}.um .fa-person-walking-arrow-right::before,.um-icon-within .fa-person-walking-arrow-right::before{content:"\e552"}.um .fa-square-envelope::before,.um-icon-within .fa-square-envelope::before{content:"\f199"}.um .fa-envelope-square::before,.um-icon-within .fa-envelope-square::before{content:"\f199"}.um .fa-dice::before,.um-icon-within .fa-dice::before{content:"\f522"}.um .fa-bowling-ball::before,.um-icon-within .fa-bowling-ball::before{content:"\f436"}.um .fa-brain::before,.um-icon-within .fa-brain::before{content:"\f5dc"}.um .fa-bandage::before,.um-icon-within .fa-bandage::before{content:"\f462"}.um .fa-band-aid::before,.um-icon-within .fa-band-aid::before{content:"\f462"}.um .fa-calendar-minus::before,.um-icon-within .fa-calendar-minus::before{content:"\f272"}.um .fa-circle-xmark::before,.um-icon-within .fa-circle-xmark::before{content:"\f057"}.um .fa-times-circle::before,.um-icon-within .fa-times-circle::before{content:"\f057"}.um .fa-xmark-circle::before,.um-icon-within .fa-xmark-circle::before{content:"\f057"}.um .fa-gifts::before,.um-icon-within .fa-gifts::before{content:"\f79c"}.um .fa-hotel::before,.um-icon-within .fa-hotel::before{content:"\f594"}.um .fa-earth-asia::before,.um-icon-within .fa-earth-asia::before{content:"\f57e"}.um .fa-globe-asia::before,.um-icon-within .fa-globe-asia::before{content:"\f57e"}.um .fa-id-card-clip::before,.um-icon-within .fa-id-card-clip::before{content:"\f47f"}.um .fa-id-card-alt::before,.um-icon-within .fa-id-card-alt::before{content:"\f47f"}.um .fa-magnifying-glass-plus::before,.um-icon-within .fa-magnifying-glass-plus::before{content:"\f00e"}.um .fa-search-plus::before,.um-icon-within .fa-search-plus::before{content:"\f00e"}.um .fa-thumbs-up::before,.um-icon-within .fa-thumbs-up::before{content:"\f164"}.um .fa-user-clock::before,.um-icon-within .fa-user-clock::before{content:"\f4fd"}.um .fa-hand-dots::before,.um-icon-within .fa-hand-dots::before{content:"\f461"}.um .fa-allergies::before,.um-icon-within .fa-allergies::before{content:"\f461"}.um .fa-file-invoice::before,.um-icon-within .fa-file-invoice::before{content:"\f570"}.um .fa-window-minimize::before,.um-icon-within .fa-window-minimize::before{content:"\f2d1"}.um .fa-mug-saucer::before,.um-icon-within .fa-mug-saucer::before{content:"\f0f4"}.um .fa-coffee::before,.um-icon-within .fa-coffee::before{content:"\f0f4"}.um .fa-brush::before,.um-icon-within .fa-brush::before{content:"\f55d"}.um .fa-mask::before,.um-icon-within .fa-mask::before{content:"\f6fa"}.um .fa-magnifying-glass-minus::before,.um-icon-within .fa-magnifying-glass-minus::before{content:"\f010"}.um .fa-search-minus::before,.um-icon-within .fa-search-minus::before{content:"\f010"}.um .fa-ruler-vertical::before,.um-icon-within .fa-ruler-vertical::before{content:"\f548"}.um .fa-user-large::before,.um-icon-within .fa-user-large::before{content:"\f406"}.um .fa-user-alt::before,.um-icon-within .fa-user-alt::before{content:"\f406"}.um .fa-train-tram::before,.um-icon-within .fa-train-tram::before{content:"\e5b4"}.um .fa-user-nurse::before,.um-icon-within .fa-user-nurse::before{content:"\f82f"}.um .fa-syringe::before,.um-icon-within .fa-syringe::before{content:"\f48e"}.um .fa-cloud-sun::before,.um-icon-within .fa-cloud-sun::before{content:"\f6c4"}.um .fa-stopwatch-20::before,.um-icon-within .fa-stopwatch-20::before{content:"\e06f"}.um .fa-square-full::before,.um-icon-within .fa-square-full::before{content:"\f45c"}.um .fa-magnet::before,.um-icon-within .fa-magnet::before{content:"\f076"}.um .fa-jar::before,.um-icon-within .fa-jar::before{content:"\e516"}.um .fa-note-sticky::before,.um-icon-within .fa-note-sticky::before{content:"\f249"}.um .fa-sticky-note::before,.um-icon-within .fa-sticky-note::before{content:"\f249"}.um .fa-bug-slash::before,.um-icon-within .fa-bug-slash::before{content:"\e490"}.um .fa-arrow-up-from-water-pump::before,.um-icon-within .fa-arrow-up-from-water-pump::before{content:"\e4b6"}.um .fa-bone::before,.um-icon-within .fa-bone::before{content:"\f5d7"}.um .fa-user-injured::before,.um-icon-within .fa-user-injured::before{content:"\f728"}.um .fa-face-sad-tear::before,.um-icon-within .fa-face-sad-tear::before{content:"\f5b4"}.um .fa-sad-tear::before,.um-icon-within .fa-sad-tear::before{content:"\f5b4"}.um .fa-plane::before,.um-icon-within .fa-plane::before{content:"\f072"}.um .fa-tent-arrows-down::before,.um-icon-within .fa-tent-arrows-down::before{content:"\e581"}.um .fa-exclamation::before,.um-icon-within .fa-exclamation::before{content:"\!"}.um .fa-arrows-spin::before,.um-icon-within .fa-arrows-spin::before{content:"\e4bb"}.um .fa-print::before,.um-icon-within .fa-print::before{content:"\f02f"}.um .fa-turkish-lira-sign::before,.um-icon-within .fa-turkish-lira-sign::before{content:"\e2bb"}.um .fa-try::before,.um-icon-within .fa-try::before{content:"\e2bb"}.um .fa-turkish-lira::before,.um-icon-within .fa-turkish-lira::before{content:"\e2bb"}.um .fa-dollar-sign::before,.um-icon-within .fa-dollar-sign::before{content:"\$"}.um .fa-dollar::before,.um-icon-within .fa-dollar::before{content:"\$"}.um .fa-usd::before,.um-icon-within .fa-usd::before{content:"\$"}.um .fa-x::before,.um-icon-within .fa-x::before{content:"X"}.um .fa-magnifying-glass-dollar::before,.um-icon-within .fa-magnifying-glass-dollar::before{content:"\f688"}.um .fa-search-dollar::before,.um-icon-within .fa-search-dollar::before{content:"\f688"}.um .fa-users-gear::before,.um-icon-within .fa-users-gear::before{content:"\f509"}.um .fa-users-cog::before,.um-icon-within .fa-users-cog::before{content:"\f509"}.um .fa-person-military-pointing::before,.um-icon-within .fa-person-military-pointing::before{content:"\e54a"}.um .fa-building-columns::before,.um-icon-within .fa-building-columns::before{content:"\f19c"}.um .fa-bank::before,.um-icon-within .fa-bank::before{content:"\f19c"}.um .fa-institution::before,.um-icon-within .fa-institution::before{content:"\f19c"}.um .fa-museum::before,.um-icon-within .fa-museum::before{content:"\f19c"}.um .fa-university::before,.um-icon-within .fa-university::before{content:"\f19c"}.um .fa-umbrella::before,.um-icon-within .fa-umbrella::before{content:"\f0e9"}.um .fa-trowel::before,.um-icon-within .fa-trowel::before{content:"\e589"}.um .fa-d::before,.um-icon-within .fa-d::before{content:"D"}.um .fa-stapler::before,.um-icon-within .fa-stapler::before{content:"\e5af"}.um .fa-masks-theater::before,.um-icon-within .fa-masks-theater::before{content:"\f630"}.um .fa-theater-masks::before,.um-icon-within .fa-theater-masks::before{content:"\f630"}.um .fa-kip-sign::before,.um-icon-within .fa-kip-sign::before{content:"\e1c4"}.um .fa-hand-point-left::before,.um-icon-within .fa-hand-point-left::before{content:"\f0a5"}.um .fa-handshake-simple::before,.um-icon-within .fa-handshake-simple::before{content:"\f4c6"}.um .fa-handshake-alt::before,.um-icon-within .fa-handshake-alt::before{content:"\f4c6"}.um .fa-jet-fighter::before,.um-icon-within .fa-jet-fighter::before{content:"\f0fb"}.um .fa-fighter-jet::before,.um-icon-within .fa-fighter-jet::before{content:"\f0fb"}.um .fa-square-share-nodes::before,.um-icon-within .fa-square-share-nodes::before{content:"\f1e1"}.um .fa-share-alt-square::before,.um-icon-within .fa-share-alt-square::before{content:"\f1e1"}.um .fa-barcode::before,.um-icon-within .fa-barcode::before{content:"\f02a"}.um .fa-plus-minus::before,.um-icon-within .fa-plus-minus::before{content:"\e43c"}.um .fa-video::before,.um-icon-within .fa-video::before{content:"\f03d"}.um .fa-video-camera::before,.um-icon-within .fa-video-camera::before{content:"\f03d"}.um .fa-graduation-cap::before,.um-icon-within .fa-graduation-cap::before{content:"\f19d"}.um .fa-mortar-board::before,.um-icon-within .fa-mortar-board::before{content:"\f19d"}.um .fa-hand-holding-medical::before,.um-icon-within .fa-hand-holding-medical::before{content:"\e05c"}.um .fa-person-circle-check::before,.um-icon-within .fa-person-circle-check::before{content:"\e53e"}.um .fa-turn-up::before,.um-icon-within .fa-turn-up::before{content:"\f3bf"}.um .fa-level-up-alt::before,.um-icon-within .fa-level-up-alt::before{content:"\f3bf"}.um .fa-sr-only,.um .sr-only,.um-icon-within .fa-sr-only,.um-icon-within .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.um .fa-sr-only-focusable:not(:focus),.um .sr-only-focusable:not(:focus),.um-icon-within .fa-sr-only-focusable:not(:focus),.um-icon-within .sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.um :host,.um :root,.um-icon-within :host,.um-icon-within :root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}.um .fa-brands,.um .fab,.um-icon-within .fa-brands,.um-icon-within .fab{font-weight:400}.um .fa-monero:before,.um-icon-within .fa-monero:before{content:"\f3d0"}.um .fa-hooli:before,.um-icon-within .fa-hooli:before{content:"\f427"}.um .fa-yelp:before,.um-icon-within .fa-yelp:before{content:"\f1e9"}.um .fa-cc-visa:before,.um-icon-within .fa-cc-visa:before{content:"\f1f0"}.um .fa-lastfm:before,.um-icon-within .fa-lastfm:before{content:"\f202"}.um .fa-shopware:before,.um-icon-within .fa-shopware:before{content:"\f5b5"}.um .fa-creative-commons-nc:before,.um-icon-within .fa-creative-commons-nc:before{content:"\f4e8"}.um .fa-aws:before,.um-icon-within .fa-aws:before{content:"\f375"}.um .fa-redhat:before,.um-icon-within .fa-redhat:before{content:"\f7bc"}.um .fa-yoast:before,.um-icon-within .fa-yoast:before{content:"\f2b1"}.um .fa-cloudflare:before,.um-icon-within .fa-cloudflare:before{content:"\e07d"}.um .fa-ups:before,.um-icon-within .fa-ups:before{content:"\f7e0"}.um .fa-pixiv:before,.um-icon-within .fa-pixiv:before{content:"\e640"}.um .fa-wpexplorer:before,.um-icon-within .fa-wpexplorer:before{content:"\f2de"}.um .fa-dyalog:before,.um-icon-within .fa-dyalog:before{content:"\f399"}.um .fa-bity:before,.um-icon-within .fa-bity:before{content:"\f37a"}.um .fa-stackpath:before,.um-icon-within .fa-stackpath:before{content:"\f842"}.um .fa-buysellads:before,.um-icon-within .fa-buysellads:before{content:"\f20d"}.um .fa-first-order:before,.um-icon-within .fa-first-order:before{content:"\f2b0"}.um .fa-modx:before,.um-icon-within .fa-modx:before{content:"\f285"}.um .fa-guilded:before,.um-icon-within .fa-guilded:before{content:"\e07e"}.um .fa-vnv:before,.um-icon-within .fa-vnv:before{content:"\f40b"}.um .fa-square-js:before,.um-icon-within .fa-square-js:before{content:"\f3b9"}.um .fa-js-square:before,.um-icon-within .fa-js-square:before{content:"\f3b9"}.um .fa-microsoft:before,.um-icon-within .fa-microsoft:before{content:"\f3ca"}.um .fa-qq:before,.um-icon-within .fa-qq:before{content:"\f1d6"}.um .fa-orcid:before,.um-icon-within .fa-orcid:before{content:"\f8d2"}.um .fa-java:before,.um-icon-within .fa-java:before{content:"\f4e4"}.um .fa-invision:before,.um-icon-within .fa-invision:before{content:"\f7b0"}.um .fa-creative-commons-pd-alt:before,.um-icon-within .fa-creative-commons-pd-alt:before{content:"\f4ed"}.um .fa-centercode:before,.um-icon-within .fa-centercode:before{content:"\f380"}.um .fa-glide-g:before,.um-icon-within .fa-glide-g:before{content:"\f2a6"}.um .fa-drupal:before,.um-icon-within .fa-drupal:before{content:"\f1a9"}.um .fa-jxl:before,.um-icon-within .fa-jxl:before{content:"\e67b"}.um .fa-hire-a-helper:before,.um-icon-within .fa-hire-a-helper:before{content:"\f3b0"}.um .fa-creative-commons-by:before,.um-icon-within .fa-creative-commons-by:before{content:"\f4e7"}.um .fa-unity:before,.um-icon-within .fa-unity:before{content:"\e049"}.um .fa-whmcs:before,.um-icon-within .fa-whmcs:before{content:"\f40d"}.um .fa-rocketchat:before,.um-icon-within .fa-rocketchat:before{content:"\f3e8"}.um .fa-vk:before,.um-icon-within .fa-vk:before{content:"\f189"}.um .fa-untappd:before,.um-icon-within .fa-untappd:before{content:"\f405"}.um .fa-mailchimp:before,.um-icon-within .fa-mailchimp:before{content:"\f59e"}.um .fa-css3-alt:before,.um-icon-within .fa-css3-alt:before{content:"\f38b"}.um .fa-square-reddit:before,.um-icon-within .fa-square-reddit:before{content:"\f1a2"}.um .fa-reddit-square:before,.um-icon-within .fa-reddit-square:before{content:"\f1a2"}.um .fa-vimeo-v:before,.um-icon-within .fa-vimeo-v:before{content:"\f27d"}.um .fa-contao:before,.um-icon-within .fa-contao:before{content:"\f26d"}.um .fa-square-font-awesome:before,.um-icon-within .fa-square-font-awesome:before{content:"\e5ad"}.um .fa-deskpro:before,.um-icon-within .fa-deskpro:before{content:"\f38f"}.um .fa-brave:before,.um-icon-within .fa-brave:before{content:"\e63c"}.um .fa-sistrix:before,.um-icon-within .fa-sistrix:before{content:"\f3ee"}.um .fa-square-instagram:before,.um-icon-within .fa-square-instagram:before{content:"\e055"}.um .fa-instagram-square:before,.um-icon-within .fa-instagram-square:before{content:"\e055"}.um .fa-battle-net:before,.um-icon-within .fa-battle-net:before{content:"\f835"}.um .fa-the-red-yeti:before,.um-icon-within .fa-the-red-yeti:before{content:"\f69d"}.um .fa-square-hacker-news:before,.um-icon-within .fa-square-hacker-news:before{content:"\f3af"}.um .fa-hacker-news-square:before,.um-icon-within .fa-hacker-news-square:before{content:"\f3af"}.um .fa-edge:before,.um-icon-within .fa-edge:before{content:"\f282"}.um .fa-threads:before,.um-icon-within .fa-threads:before{content:"\e618"}.um .fa-napster:before,.um-icon-within .fa-napster:before{content:"\f3d2"}.um .fa-square-snapchat:before,.um-icon-within .fa-square-snapchat:before{content:"\f2ad"}.um .fa-snapchat-square:before,.um-icon-within .fa-snapchat-square:before{content:"\f2ad"}.um .fa-google-plus-g:before,.um-icon-within .fa-google-plus-g:before{content:"\f0d5"}.um .fa-artstation:before,.um-icon-within .fa-artstation:before{content:"\f77a"}.um .fa-markdown:before,.um-icon-within .fa-markdown:before{content:"\f60f"}.um .fa-sourcetree:before,.um-icon-within .fa-sourcetree:before{content:"\f7d3"}.um .fa-google-plus:before,.um-icon-within .fa-google-plus:before{content:"\f2b3"}.um .fa-diaspora:before,.um-icon-within .fa-diaspora:before{content:"\f791"}.um .fa-foursquare:before,.um-icon-within .fa-foursquare:before{content:"\f180"}.um .fa-stack-overflow:before,.um-icon-within .fa-stack-overflow:before{content:"\f16c"}.um .fa-github-alt:before,.um-icon-within .fa-github-alt:before{content:"\f113"}.um .fa-phoenix-squadron:before,.um-icon-within .fa-phoenix-squadron:before{content:"\f511"}.um .fa-pagelines:before,.um-icon-within .fa-pagelines:before{content:"\f18c"}.um .fa-algolia:before,.um-icon-within .fa-algolia:before{content:"\f36c"}.um .fa-red-river:before,.um-icon-within .fa-red-river:before{content:"\f3e3"}.um .fa-creative-commons-sa:before,.um-icon-within .fa-creative-commons-sa:before{content:"\f4ef"}.um .fa-safari:before,.um-icon-within .fa-safari:before{content:"\f267"}.um .fa-google:before,.um-icon-within .fa-google:before{content:"\f1a0"}.um .fa-square-font-awesome-stroke:before,.um-icon-within .fa-square-font-awesome-stroke:before{content:"\f35c"}.um .fa-font-awesome-alt:before,.um-icon-within .fa-font-awesome-alt:before{content:"\f35c"}.um .fa-atlassian:before,.um-icon-within .fa-atlassian:before{content:"\f77b"}.um .fa-linkedin-in:before,.um-icon-within .fa-linkedin-in:before{content:"\f0e1"}.um .fa-digital-ocean:before,.um-icon-within .fa-digital-ocean:before{content:"\f391"}.um .fa-nimblr:before,.um-icon-within .fa-nimblr:before{content:"\f5a8"}.um .fa-chromecast:before,.um-icon-within .fa-chromecast:before{content:"\f838"}.um .fa-evernote:before,.um-icon-within .fa-evernote:before{content:"\f839"}.um .fa-hacker-news:before,.um-icon-within .fa-hacker-news:before{content:"\f1d4"}.um .fa-creative-commons-sampling:before,.um-icon-within .fa-creative-commons-sampling:before{content:"\f4f0"}.um .fa-adversal:before,.um-icon-within .fa-adversal:before{content:"\f36a"}.um .fa-creative-commons:before,.um-icon-within .fa-creative-commons:before{content:"\f25e"}.um .fa-watchman-monitoring:before,.um-icon-within .fa-watchman-monitoring:before{content:"\e087"}.um .fa-fonticons:before,.um-icon-within .fa-fonticons:before{content:"\f280"}.um .fa-weixin:before,.um-icon-within .fa-weixin:before{content:"\f1d7"}.um .fa-shirtsinbulk:before,.um-icon-within .fa-shirtsinbulk:before{content:"\f214"}.um .fa-codepen:before,.um-icon-within .fa-codepen:before{content:"\f1cb"}.um .fa-git-alt:before,.um-icon-within .fa-git-alt:before{content:"\f841"}.um .fa-lyft:before,.um-icon-within .fa-lyft:before{content:"\f3c3"}.um .fa-rev:before,.um-icon-within .fa-rev:before{content:"\f5b2"}.um .fa-windows:before,.um-icon-within .fa-windows:before{content:"\f17a"}.um .fa-wizards-of-the-coast:before,.um-icon-within .fa-wizards-of-the-coast:before{content:"\f730"}.um .fa-square-viadeo:before,.um-icon-within .fa-square-viadeo:before{content:"\f2aa"}.um .fa-viadeo-square:before,.um-icon-within .fa-viadeo-square:before{content:"\f2aa"}.um .fa-meetup:before,.um-icon-within .fa-meetup:before{content:"\f2e0"}.um .fa-centos:before,.um-icon-within .fa-centos:before{content:"\f789"}.um .fa-adn:before,.um-icon-within .fa-adn:before{content:"\f170"}.um .fa-cloudsmith:before,.um-icon-within .fa-cloudsmith:before{content:"\f384"}.um .fa-opensuse:before,.um-icon-within .fa-opensuse:before{content:"\e62b"}.um .fa-pied-piper-alt:before,.um-icon-within .fa-pied-piper-alt:before{content:"\f1a8"}.um .fa-square-dribbble:before,.um-icon-within .fa-square-dribbble:before{content:"\f397"}.um .fa-dribbble-square:before,.um-icon-within .fa-dribbble-square:before{content:"\f397"}.um .fa-codiepie:before,.um-icon-within .fa-codiepie:before{content:"\f284"}.um .fa-node:before,.um-icon-within .fa-node:before{content:"\f419"}.um .fa-mix:before,.um-icon-within .fa-mix:before{content:"\f3cb"}.um .fa-steam:before,.um-icon-within .fa-steam:before{content:"\f1b6"}.um .fa-cc-apple-pay:before,.um-icon-within .fa-cc-apple-pay:before{content:"\f416"}.um .fa-scribd:before,.um-icon-within .fa-scribd:before{content:"\f28a"}.um .fa-debian:before,.um-icon-within .fa-debian:before{content:"\e60b"}.um .fa-openid:before,.um-icon-within .fa-openid:before{content:"\f19b"}.um .fa-instalod:before,.um-icon-within .fa-instalod:before{content:"\e081"}.um .fa-expeditedssl:before,.um-icon-within .fa-expeditedssl:before{content:"\f23e"}.um .fa-sellcast:before,.um-icon-within .fa-sellcast:before{content:"\f2da"}.um .fa-square-twitter:before,.um-icon-within .fa-square-twitter:before{content:"\f081"}.um .fa-twitter-square:before,.um-icon-within .fa-twitter-square:before{content:"\f081"}.um .fa-r-project:before,.um-icon-within .fa-r-project:before{content:"\f4f7"}.um .fa-delicious:before,.um-icon-within .fa-delicious:before{content:"\f1a5"}.um .fa-freebsd:before,.um-icon-within .fa-freebsd:before{content:"\f3a4"}.um .fa-vuejs:before,.um-icon-within .fa-vuejs:before{content:"\f41f"}.um .fa-accusoft:before,.um-icon-within .fa-accusoft:before{content:"\f369"}.um .fa-ioxhost:before,.um-icon-within .fa-ioxhost:before{content:"\f208"}.um .fa-fonticons-fi:before,.um-icon-within .fa-fonticons-fi:before{content:"\f3a2"}.um .fa-app-store:before,.um-icon-within .fa-app-store:before{content:"\f36f"}.um .fa-cc-mastercard:before,.um-icon-within .fa-cc-mastercard:before{content:"\f1f1"}.um .fa-itunes-note:before,.um-icon-within .fa-itunes-note:before{content:"\f3b5"}.um .fa-golang:before,.um-icon-within .fa-golang:before{content:"\e40f"}.um .fa-kickstarter:before,.um-icon-within .fa-kickstarter:before{content:"\f3bb"}.um .fa-square-kickstarter:before,.um-icon-within .fa-square-kickstarter:before{content:"\f3bb"}.um .fa-grav:before,.um-icon-within .fa-grav:before{content:"\f2d6"}.um .fa-weibo:before,.um-icon-within .fa-weibo:before{content:"\f18a"}.um .fa-uncharted:before,.um-icon-within .fa-uncharted:before{content:"\e084"}.um .fa-firstdraft:before,.um-icon-within .fa-firstdraft:before{content:"\f3a1"}.um .fa-square-youtube:before,.um-icon-within .fa-square-youtube:before{content:"\f431"}.um .fa-youtube-square:before,.um-icon-within .fa-youtube-square:before{content:"\f431"}.um .fa-wikipedia-w:before,.um-icon-within .fa-wikipedia-w:before{content:"\f266"}.um .fa-wpressr:before,.um-icon-within .fa-wpressr:before{content:"\f3e4"}.um .fa-rendact:before,.um-icon-within .fa-rendact:before{content:"\f3e4"}.um .fa-angellist:before,.um-icon-within .fa-angellist:before{content:"\f209"}.um .fa-galactic-republic:before,.um-icon-within .fa-galactic-republic:before{content:"\f50c"}.um .fa-nfc-directional:before,.um-icon-within .fa-nfc-directional:before{content:"\e530"}.um .fa-skype:before,.um-icon-within .fa-skype:before{content:"\f17e"}.um .fa-joget:before,.um-icon-within .fa-joget:before{content:"\f3b7"}.um .fa-fedora:before,.um-icon-within .fa-fedora:before{content:"\f798"}.um .fa-stripe-s:before,.um-icon-within .fa-stripe-s:before{content:"\f42a"}.um .fa-meta:before,.um-icon-within .fa-meta:before{content:"\e49b"}.um .fa-laravel:before,.um-icon-within .fa-laravel:before{content:"\f3bd"}.um .fa-hotjar:before,.um-icon-within .fa-hotjar:before{content:"\f3b1"}.um .fa-bluetooth-b:before,.um-icon-within .fa-bluetooth-b:before{content:"\f294"}.um .fa-square-letterboxd:before,.um-icon-within .fa-square-letterboxd:before{content:"\e62e"}.um .fa-sticker-mule:before,.um-icon-within .fa-sticker-mule:before{content:"\f3f7"}.um .fa-creative-commons-zero:before,.um-icon-within .fa-creative-commons-zero:before{content:"\f4f3"}.um .fa-hips:before,.um-icon-within .fa-hips:before{content:"\f452"}.um .fa-behance:before,.um-icon-within .fa-behance:before{content:"\f1b4"}.um .fa-reddit:before,.um-icon-within .fa-reddit:before{content:"\f1a1"}.um .fa-discord:before,.um-icon-within .fa-discord:before{content:"\f392"}.um .fa-chrome:before,.um-icon-within .fa-chrome:before{content:"\f268"}.um .fa-app-store-ios:before,.um-icon-within .fa-app-store-ios:before{content:"\f370"}.um .fa-cc-discover:before,.um-icon-within .fa-cc-discover:before{content:"\f1f2"}.um .fa-wpbeginner:before,.um-icon-within .fa-wpbeginner:before{content:"\f297"}.um .fa-confluence:before,.um-icon-within .fa-confluence:before{content:"\f78d"}.um .fa-shoelace:before,.um-icon-within .fa-shoelace:before{content:"\e60c"}.um .fa-mdb:before,.um-icon-within .fa-mdb:before{content:"\f8ca"}.um .fa-dochub:before,.um-icon-within .fa-dochub:before{content:"\f394"}.um .fa-accessible-icon:before,.um-icon-within .fa-accessible-icon:before{content:"\f368"}.um .fa-ebay:before,.um-icon-within .fa-ebay:before{content:"\f4f4"}.um .fa-amazon:before,.um-icon-within .fa-amazon:before{content:"\f270"}.um .fa-unsplash:before,.um-icon-within .fa-unsplash:before{content:"\e07c"}.um .fa-yarn:before,.um-icon-within .fa-yarn:before{content:"\f7e3"}.um .fa-square-steam:before,.um-icon-within .fa-square-steam:before{content:"\f1b7"}.um .fa-steam-square:before,.um-icon-within .fa-steam-square:before{content:"\f1b7"}.um .fa-500px:before,.um-icon-within .fa-500px:before{content:"\f26e"}.um .fa-square-vimeo:before,.um-icon-within .fa-square-vimeo:before{content:"\f194"}.um .fa-vimeo-square:before,.um-icon-within .fa-vimeo-square:before{content:"\f194"}.um .fa-asymmetrik:before,.um-icon-within .fa-asymmetrik:before{content:"\f372"}.um .fa-font-awesome:before,.um-icon-within .fa-font-awesome:before{content:"\f2b4"}.um .fa-font-awesome-flag:before,.um-icon-within .fa-font-awesome-flag:before{content:"\f2b4"}.um .fa-font-awesome-logo-full:before,.um-icon-within .fa-font-awesome-logo-full:before{content:"\f2b4"}.um .fa-gratipay:before,.um-icon-within .fa-gratipay:before{content:"\f184"}.um .fa-apple:before,.um-icon-within .fa-apple:before{content:"\f179"}.um .fa-hive:before,.um-icon-within .fa-hive:before{content:"\e07f"}.um .fa-gitkraken:before,.um-icon-within .fa-gitkraken:before{content:"\f3a6"}.um .fa-keybase:before,.um-icon-within .fa-keybase:before{content:"\f4f5"}.um .fa-apple-pay:before,.um-icon-within .fa-apple-pay:before{content:"\f415"}.um .fa-padlet:before,.um-icon-within .fa-padlet:before{content:"\e4a0"}.um .fa-amazon-pay:before,.um-icon-within .fa-amazon-pay:before{content:"\f42c"}.um .fa-square-github:before,.um-icon-within .fa-square-github:before{content:"\f092"}.um .fa-github-square:before,.um-icon-within .fa-github-square:before{content:"\f092"}.um .fa-stumbleupon:before,.um-icon-within .fa-stumbleupon:before{content:"\f1a4"}.um .fa-fedex:before,.um-icon-within .fa-fedex:before{content:"\f797"}.um .fa-phoenix-framework:before,.um-icon-within .fa-phoenix-framework:before{content:"\f3dc"}.um .fa-shopify:before,.um-icon-within .fa-shopify:before{content:"\e057"}.um .fa-neos:before,.um-icon-within .fa-neos:before{content:"\f612"}.um .fa-square-threads:before,.um-icon-within .fa-square-threads:before{content:"\e619"}.um .fa-hackerrank:before,.um-icon-within .fa-hackerrank:before{content:"\f5f7"}.um .fa-researchgate:before,.um-icon-within .fa-researchgate:before{content:"\f4f8"}.um .fa-swift:before,.um-icon-within .fa-swift:before{content:"\f8e1"}.um .fa-angular:before,.um-icon-within .fa-angular:before{content:"\f420"}.um .fa-speakap:before,.um-icon-within .fa-speakap:before{content:"\f3f3"}.um .fa-angrycreative:before,.um-icon-within .fa-angrycreative:before{content:"\f36e"}.um .fa-y-combinator:before,.um-icon-within .fa-y-combinator:before{content:"\f23b"}.um .fa-empire:before,.um-icon-within .fa-empire:before{content:"\f1d1"}.um .fa-envira:before,.um-icon-within .fa-envira:before{content:"\f299"}.um .fa-google-scholar:before,.um-icon-within .fa-google-scholar:before{content:"\e63b"}.um .fa-square-gitlab:before,.um-icon-within .fa-square-gitlab:before{content:"\e5ae"}.um .fa-gitlab-square:before,.um-icon-within .fa-gitlab-square:before{content:"\e5ae"}.um .fa-studiovinari:before,.um-icon-within .fa-studiovinari:before{content:"\f3f8"}.um .fa-pied-piper:before,.um-icon-within .fa-pied-piper:before{content:"\f2ae"}.um .fa-wordpress:before,.um-icon-within .fa-wordpress:before{content:"\f19a"}.um .fa-product-hunt:before,.um-icon-within .fa-product-hunt:before{content:"\f288"}.um .fa-firefox:before,.um-icon-within .fa-firefox:before{content:"\f269"}.um .fa-linode:before,.um-icon-within .fa-linode:before{content:"\f2b8"}.um .fa-goodreads:before,.um-icon-within .fa-goodreads:before{content:"\f3a8"}.um .fa-square-odnoklassniki:before,.um-icon-within .fa-square-odnoklassniki:before{content:"\f264"}.um .fa-odnoklassniki-square:before,.um-icon-within .fa-odnoklassniki-square:before{content:"\f264"}.um .fa-jsfiddle:before,.um-icon-within .fa-jsfiddle:before{content:"\f1cc"}.um .fa-sith:before,.um-icon-within .fa-sith:before{content:"\f512"}.um .fa-themeisle:before,.um-icon-within .fa-themeisle:before{content:"\f2b2"}.um .fa-page4:before,.um-icon-within .fa-page4:before{content:"\f3d7"}.um .fa-hashnode:before,.um-icon-within .fa-hashnode:before{content:"\e499"}.um .fa-react:before,.um-icon-within .fa-react:before{content:"\f41b"}.um .fa-cc-paypal:before,.um-icon-within .fa-cc-paypal:before{content:"\f1f4"}.um .fa-squarespace:before,.um-icon-within .fa-squarespace:before{content:"\f5be"}.um .fa-cc-stripe:before,.um-icon-within .fa-cc-stripe:before{content:"\f1f5"}.um .fa-creative-commons-share:before,.um-icon-within .fa-creative-commons-share:before{content:"\f4f2"}.um .fa-bitcoin:before,.um-icon-within .fa-bitcoin:before{content:"\f379"}.um .fa-keycdn:before,.um-icon-within .fa-keycdn:before{content:"\f3ba"}.um .fa-opera:before,.um-icon-within .fa-opera:before{content:"\f26a"}.um .fa-itch-io:before,.um-icon-within .fa-itch-io:before{content:"\f83a"}.um .fa-umbraco:before,.um-icon-within .fa-umbraco:before{content:"\f8e8"}.um .fa-galactic-senate:before,.um-icon-within .fa-galactic-senate:before{content:"\f50d"}.um .fa-ubuntu:before,.um-icon-within .fa-ubuntu:before{content:"\f7df"}.um .fa-draft2digital:before,.um-icon-within .fa-draft2digital:before{content:"\f396"}.um .fa-stripe:before,.um-icon-within .fa-stripe:before{content:"\f429"}.um .fa-houzz:before,.um-icon-within .fa-houzz:before{content:"\f27c"}.um .fa-gg:before,.um-icon-within .fa-gg:before{content:"\f260"}.um .fa-dhl:before,.um-icon-within .fa-dhl:before{content:"\f790"}.um .fa-square-pinterest:before,.um-icon-within .fa-square-pinterest:before{content:"\f0d3"}.um .fa-pinterest-square:before,.um-icon-within .fa-pinterest-square:before{content:"\f0d3"}.um .fa-xing:before,.um-icon-within .fa-xing:before{content:"\f168"}.um .fa-blackberry:before,.um-icon-within .fa-blackberry:before{content:"\f37b"}.um .fa-creative-commons-pd:before,.um-icon-within .fa-creative-commons-pd:before{content:"\f4ec"}.um .fa-playstation:before,.um-icon-within .fa-playstation:before{content:"\f3df"}.um .fa-quinscape:before,.um-icon-within .fa-quinscape:before{content:"\f459"}.um .fa-less:before,.um-icon-within .fa-less:before{content:"\f41d"}.um .fa-blogger-b:before,.um-icon-within .fa-blogger-b:before{content:"\f37d"}.um .fa-opencart:before,.um-icon-within .fa-opencart:before{content:"\f23d"}.um .fa-vine:before,.um-icon-within .fa-vine:before{content:"\f1ca"}.um .fa-signal-messenger:before,.um-icon-within .fa-signal-messenger:before{content:"\e663"}.um .fa-paypal:before,.um-icon-within .fa-paypal:before{content:"\f1ed"}.um .fa-gitlab:before,.um-icon-within .fa-gitlab:before{content:"\f296"}.um .fa-typo3:before,.um-icon-within .fa-typo3:before{content:"\f42b"}.um .fa-reddit-alien:before,.um-icon-within .fa-reddit-alien:before{content:"\f281"}.um .fa-yahoo:before,.um-icon-within .fa-yahoo:before{content:"\f19e"}.um .fa-dailymotion:before,.um-icon-within .fa-dailymotion:before{content:"\e052"}.um .fa-affiliatetheme:before,.um-icon-within .fa-affiliatetheme:before{content:"\f36b"}.um .fa-pied-piper-pp:before,.um-icon-within .fa-pied-piper-pp:before{content:"\f1a7"}.um .fa-bootstrap:before,.um-icon-within .fa-bootstrap:before{content:"\f836"}.um .fa-odnoklassniki:before,.um-icon-within .fa-odnoklassniki:before{content:"\f263"}.um .fa-nfc-symbol:before,.um-icon-within .fa-nfc-symbol:before{content:"\e531"}.um .fa-mintbit:before,.um-icon-within .fa-mintbit:before{content:"\e62f"}.um .fa-ethereum:before,.um-icon-within .fa-ethereum:before{content:"\f42e"}.um .fa-speaker-deck:before,.um-icon-within .fa-speaker-deck:before{content:"\f83c"}.um .fa-creative-commons-nc-eu:before,.um-icon-within .fa-creative-commons-nc-eu:before{content:"\f4e9"}.um .fa-patreon:before,.um-icon-within .fa-patreon:before{content:"\f3d9"}.um .fa-avianex:before,.um-icon-within .fa-avianex:before{content:"\f374"}.um .fa-ello:before,.um-icon-within .fa-ello:before{content:"\f5f1"}.um .fa-gofore:before,.um-icon-within .fa-gofore:before{content:"\f3a7"}.um .fa-bimobject:before,.um-icon-within .fa-bimobject:before{content:"\f378"}.um .fa-brave-reverse:before,.um-icon-within .fa-brave-reverse:before{content:"\e63d"}.um .fa-facebook-f:before,.um-icon-within .fa-facebook-f:before{content:"\f39e"}.um .fa-square-google-plus:before,.um-icon-within .fa-square-google-plus:before{content:"\f0d4"}.um .fa-google-plus-square:before,.um-icon-within .fa-google-plus-square:before{content:"\f0d4"}.um .fa-web-awesome:before,.um-icon-within .fa-web-awesome:before{content:"\e682"}.um .fa-mandalorian:before,.um-icon-within .fa-mandalorian:before{content:"\f50f"}.um .fa-first-order-alt:before,.um-icon-within .fa-first-order-alt:before{content:"\f50a"}.um .fa-osi:before,.um-icon-within .fa-osi:before{content:"\f41a"}.um .fa-google-wallet:before,.um-icon-within .fa-google-wallet:before{content:"\f1ee"}.um .fa-d-and-d-beyond:before,.um-icon-within .fa-d-and-d-beyond:before{content:"\f6ca"}.um .fa-periscope:before,.um-icon-within .fa-periscope:before{content:"\f3da"}.um .fa-fulcrum:before,.um-icon-within .fa-fulcrum:before{content:"\f50b"}.um .fa-cloudscale:before,.um-icon-within .fa-cloudscale:before{content:"\f383"}.um .fa-forumbee:before,.um-icon-within .fa-forumbee:before{content:"\f211"}.um .fa-mizuni:before,.um-icon-within .fa-mizuni:before{content:"\f3cc"}.um .fa-schlix:before,.um-icon-within .fa-schlix:before{content:"\f3ea"}.um .fa-square-xing:before,.um-icon-within .fa-square-xing:before{content:"\f169"}.um .fa-xing-square:before,.um-icon-within .fa-xing-square:before{content:"\f169"}.um .fa-bandcamp:before,.um-icon-within .fa-bandcamp:before{content:"\f2d5"}.um .fa-wpforms:before,.um-icon-within .fa-wpforms:before{content:"\f298"}.um .fa-cloudversify:before,.um-icon-within .fa-cloudversify:before{content:"\f385"}.um .fa-usps:before,.um-icon-within .fa-usps:before{content:"\f7e1"}.um .fa-megaport:before,.um-icon-within .fa-megaport:before{content:"\f5a3"}.um .fa-magento:before,.um-icon-within .fa-magento:before{content:"\f3c4"}.um .fa-spotify:before,.um-icon-within .fa-spotify:before{content:"\f1bc"}.um .fa-optin-monster:before,.um-icon-within .fa-optin-monster:before{content:"\f23c"}.um .fa-fly:before,.um-icon-within .fa-fly:before{content:"\f417"}.um .fa-aviato:before,.um-icon-within .fa-aviato:before{content:"\f421"}.um .fa-itunes:before,.um-icon-within .fa-itunes:before{content:"\f3b4"}.um .fa-cuttlefish:before,.um-icon-within .fa-cuttlefish:before{content:"\f38c"}.um .fa-blogger:before,.um-icon-within .fa-blogger:before{content:"\f37c"}.um .fa-flickr:before,.um-icon-within .fa-flickr:before{content:"\f16e"}.um .fa-viber:before,.um-icon-within .fa-viber:before{content:"\f409"}.um .fa-soundcloud:before,.um-icon-within .fa-soundcloud:before{content:"\f1be"}.um .fa-digg:before,.um-icon-within .fa-digg:before{content:"\f1a6"}.um .fa-tencent-weibo:before,.um-icon-within .fa-tencent-weibo:before{content:"\f1d5"}.um .fa-letterboxd:before,.um-icon-within .fa-letterboxd:before{content:"\e62d"}.um .fa-symfony:before,.um-icon-within .fa-symfony:before{content:"\f83d"}.um .fa-maxcdn:before,.um-icon-within .fa-maxcdn:before{content:"\f136"}.um .fa-etsy:before,.um-icon-within .fa-etsy:before{content:"\f2d7"}.um .fa-facebook-messenger:before,.um-icon-within .fa-facebook-messenger:before{content:"\f39f"}.um .fa-audible:before,.um-icon-within .fa-audible:before{content:"\f373"}.um .fa-think-peaks:before,.um-icon-within .fa-think-peaks:before{content:"\f731"}.um .fa-bilibili:before,.um-icon-within .fa-bilibili:before{content:"\e3d9"}.um .fa-erlang:before,.um-icon-within .fa-erlang:before{content:"\f39d"}.um .fa-x-twitter:before,.um-icon-within .fa-x-twitter:before{content:"\e61b"}.um .fa-cotton-bureau:before,.um-icon-within .fa-cotton-bureau:before{content:"\f89e"}.um .fa-dashcube:before,.um-icon-within .fa-dashcube:before{content:"\f210"}.um .fa-42-group:before,.um-icon-within .fa-42-group:before{content:"\e080"}.um .fa-innosoft:before,.um-icon-within .fa-innosoft:before{content:"\e080"}.um .fa-stack-exchange:before,.um-icon-within .fa-stack-exchange:before{content:"\f18d"}.um .fa-elementor:before,.um-icon-within .fa-elementor:before{content:"\f430"}.um .fa-square-pied-piper:before,.um-icon-within .fa-square-pied-piper:before{content:"\e01e"}.um .fa-pied-piper-square:before,.um-icon-within .fa-pied-piper-square:before{content:"\e01e"}.um .fa-creative-commons-nd:before,.um-icon-within .fa-creative-commons-nd:before{content:"\f4eb"}.um .fa-palfed:before,.um-icon-within .fa-palfed:before{content:"\f3d8"}.um .fa-superpowers:before,.um-icon-within .fa-superpowers:before{content:"\f2dd"}.um .fa-resolving:before,.um-icon-within .fa-resolving:before{content:"\f3e7"}.um .fa-xbox:before,.um-icon-within .fa-xbox:before{content:"\f412"}.um .fa-square-web-awesome-stroke:before,.um-icon-within .fa-square-web-awesome-stroke:before{content:"\e684"}.um .fa-searchengin:before,.um-icon-within .fa-searchengin:before{content:"\f3eb"}.um .fa-tiktok:before,.um-icon-within .fa-tiktok:before{content:"\e07b"}.um .fa-square-facebook:before,.um-icon-within .fa-square-facebook:before{content:"\f082"}.um .fa-facebook-square:before,.um-icon-within .fa-facebook-square:before{content:"\f082"}.um .fa-renren:before,.um-icon-within .fa-renren:before{content:"\f18b"}.um .fa-linux:before,.um-icon-within .fa-linux:before{content:"\f17c"}.um .fa-glide:before,.um-icon-within .fa-glide:before{content:"\f2a5"}.um .fa-linkedin:before,.um-icon-within .fa-linkedin:before{content:"\f08c"}.um .fa-hubspot:before,.um-icon-within .fa-hubspot:before{content:"\f3b2"}.um .fa-deploydog:before,.um-icon-within .fa-deploydog:before{content:"\f38e"}.um .fa-twitch:before,.um-icon-within .fa-twitch:before{content:"\f1e8"}.um .fa-ravelry:before,.um-icon-within .fa-ravelry:before{content:"\f2d9"}.um .fa-mixer:before,.um-icon-within .fa-mixer:before{content:"\e056"}.um .fa-square-lastfm:before,.um-icon-within .fa-square-lastfm:before{content:"\f203"}.um .fa-lastfm-square:before,.um-icon-within .fa-lastfm-square:before{content:"\f203"}.um .fa-vimeo:before,.um-icon-within .fa-vimeo:before{content:"\f40a"}.um .fa-mendeley:before,.um-icon-within .fa-mendeley:before{content:"\f7b3"}.um .fa-uniregistry:before,.um-icon-within .fa-uniregistry:before{content:"\f404"}.um .fa-figma:before,.um-icon-within .fa-figma:before{content:"\f799"}.um .fa-creative-commons-remix:before,.um-icon-within .fa-creative-commons-remix:before{content:"\f4ee"}.um .fa-cc-amazon-pay:before,.um-icon-within .fa-cc-amazon-pay:before{content:"\f42d"}.um .fa-dropbox:before,.um-icon-within .fa-dropbox:before{content:"\f16b"}.um .fa-instagram:before,.um-icon-within .fa-instagram:before{content:"\f16d"}.um .fa-cmplid:before,.um-icon-within .fa-cmplid:before{content:"\e360"}.um .fa-upwork:before,.um-icon-within .fa-upwork:before{content:"\e641"}.um .fa-facebook:before,.um-icon-within .fa-facebook:before{content:"\f09a"}.um .fa-gripfire:before,.um-icon-within .fa-gripfire:before{content:"\f3ac"}.um .fa-jedi-order:before,.um-icon-within .fa-jedi-order:before{content:"\f50e"}.um .fa-uikit:before,.um-icon-within .fa-uikit:before{content:"\f403"}.um .fa-fort-awesome-alt:before,.um-icon-within .fa-fort-awesome-alt:before{content:"\f3a3"}.um .fa-phabricator:before,.um-icon-within .fa-phabricator:before{content:"\f3db"}.um .fa-ussunnah:before,.um-icon-within .fa-ussunnah:before{content:"\f407"}.um .fa-earlybirds:before,.um-icon-within .fa-earlybirds:before{content:"\f39a"}.um .fa-trade-federation:before,.um-icon-within .fa-trade-federation:before{content:"\f513"}.um .fa-autoprefixer:before,.um-icon-within .fa-autoprefixer:before{content:"\f41c"}.um .fa-whatsapp:before,.um-icon-within .fa-whatsapp:before{content:"\f232"}.um .fa-square-upwork:before,.um-icon-within .fa-square-upwork:before{content:"\e67c"}.um .fa-slideshare:before,.um-icon-within .fa-slideshare:before{content:"\f1e7"}.um .fa-google-play:before,.um-icon-within .fa-google-play:before{content:"\f3ab"}.um .fa-viadeo:before,.um-icon-within .fa-viadeo:before{content:"\f2a9"}.um .fa-line:before,.um-icon-within .fa-line:before{content:"\f3c0"}.um .fa-google-drive:before,.um-icon-within .fa-google-drive:before{content:"\f3aa"}.um .fa-servicestack:before,.um-icon-within .fa-servicestack:before{content:"\f3ec"}.um .fa-simplybuilt:before,.um-icon-within .fa-simplybuilt:before{content:"\f215"}.um .fa-bitbucket:before,.um-icon-within .fa-bitbucket:before{content:"\f171"}.um .fa-imdb:before,.um-icon-within .fa-imdb:before{content:"\f2d8"}.um .fa-deezer:before,.um-icon-within .fa-deezer:before{content:"\e077"}.um .fa-raspberry-pi:before,.um-icon-within .fa-raspberry-pi:before{content:"\f7bb"}.um .fa-jira:before,.um-icon-within .fa-jira:before{content:"\f7b1"}.um .fa-docker:before,.um-icon-within .fa-docker:before{content:"\f395"}.um .fa-screenpal:before,.um-icon-within .fa-screenpal:before{content:"\e570"}.um .fa-bluetooth:before,.um-icon-within .fa-bluetooth:before{content:"\f293"}.um .fa-gitter:before,.um-icon-within .fa-gitter:before{content:"\f426"}.um .fa-d-and-d:before,.um-icon-within .fa-d-and-d:before{content:"\f38d"}.um .fa-microblog:before,.um-icon-within .fa-microblog:before{content:"\e01a"}.um .fa-cc-diners-club:before,.um-icon-within .fa-cc-diners-club:before{content:"\f24c"}.um .fa-gg-circle:before,.um-icon-within .fa-gg-circle:before{content:"\f261"}.um .fa-pied-piper-hat:before,.um-icon-within .fa-pied-piper-hat:before{content:"\f4e5"}.um .fa-kickstarter-k:before,.um-icon-within .fa-kickstarter-k:before{content:"\f3bc"}.um .fa-yandex:before,.um-icon-within .fa-yandex:before{content:"\f413"}.um .fa-readme:before,.um-icon-within .fa-readme:before{content:"\f4d5"}.um .fa-html5:before,.um-icon-within .fa-html5:before{content:"\f13b"}.um .fa-sellsy:before,.um-icon-within .fa-sellsy:before{content:"\f213"}.um .fa-square-web-awesome:before,.um-icon-within .fa-square-web-awesome:before{content:"\e683"}.um .fa-sass:before,.um-icon-within .fa-sass:before{content:"\f41e"}.um .fa-wirsindhandwerk:before,.um-icon-within .fa-wirsindhandwerk:before{content:"\e2d0"}.um .fa-wsh:before,.um-icon-within .fa-wsh:before{content:"\e2d0"}.um .fa-buromobelexperte:before,.um-icon-within .fa-buromobelexperte:before{content:"\f37f"}.um .fa-salesforce:before,.um-icon-within .fa-salesforce:before{content:"\f83b"}.um .fa-octopus-deploy:before,.um-icon-within .fa-octopus-deploy:before{content:"\e082"}.um .fa-medapps:before,.um-icon-within .fa-medapps:before{content:"\f3c6"}.um .fa-ns8:before,.um-icon-within .fa-ns8:before{content:"\f3d5"}.um .fa-pinterest-p:before,.um-icon-within .fa-pinterest-p:before{content:"\f231"}.um .fa-apper:before,.um-icon-within .fa-apper:before{content:"\f371"}.um .fa-fort-awesome:before,.um-icon-within .fa-fort-awesome:before{content:"\f286"}.um .fa-waze:before,.um-icon-within .fa-waze:before{content:"\f83f"}.um .fa-bluesky:before,.um-icon-within .fa-bluesky:before{content:"\e671"}.um .fa-cc-jcb:before,.um-icon-within .fa-cc-jcb:before{content:"\f24b"}.um .fa-snapchat:before,.um-icon-within .fa-snapchat:before{content:"\f2ab"}.um .fa-snapchat-ghost:before,.um-icon-within .fa-snapchat-ghost:before{content:"\f2ab"}.um .fa-fantasy-flight-games:before,.um-icon-within .fa-fantasy-flight-games:before{content:"\f6dc"}.um .fa-rust:before,.um-icon-within .fa-rust:before{content:"\e07a"}.um .fa-wix:before,.um-icon-within .fa-wix:before{content:"\f5cf"}.um .fa-square-behance:before,.um-icon-within .fa-square-behance:before{content:"\f1b5"}.um .fa-behance-square:before,.um-icon-within .fa-behance-square:before{content:"\f1b5"}.um .fa-supple:before,.um-icon-within .fa-supple:before{content:"\f3f9"}.um .fa-webflow:before,.um-icon-within .fa-webflow:before{content:"\e65c"}.um .fa-rebel:before,.um-icon-within .fa-rebel:before{content:"\f1d0"}.um .fa-css3:before,.um-icon-within .fa-css3:before{content:"\f13c"}.um .fa-staylinked:before,.um-icon-within .fa-staylinked:before{content:"\f3f5"}.um .fa-kaggle:before,.um-icon-within .fa-kaggle:before{content:"\f5fa"}.um .fa-space-awesome:before,.um-icon-within .fa-space-awesome:before{content:"\e5ac"}.um .fa-deviantart:before,.um-icon-within .fa-deviantart:before{content:"\f1bd"}.um .fa-cpanel:before,.um-icon-within .fa-cpanel:before{content:"\f388"}.um .fa-goodreads-g:before,.um-icon-within .fa-goodreads-g:before{content:"\f3a9"}.um .fa-square-git:before,.um-icon-within .fa-square-git:before{content:"\f1d2"}.um .fa-git-square:before,.um-icon-within .fa-git-square:before{content:"\f1d2"}.um .fa-square-tumblr:before,.um-icon-within .fa-square-tumblr:before{content:"\f174"}.um .fa-tumblr-square:before,.um-icon-within .fa-tumblr-square:before{content:"\f174"}.um .fa-trello:before,.um-icon-within .fa-trello:before{content:"\f181"}.um .fa-creative-commons-nc-jp:before,.um-icon-within .fa-creative-commons-nc-jp:before{content:"\f4ea"}.um .fa-get-pocket:before,.um-icon-within .fa-get-pocket:before{content:"\f265"}.um .fa-perbyte:before,.um-icon-within .fa-perbyte:before{content:"\e083"}.um .fa-grunt:before,.um-icon-within .fa-grunt:before{content:"\f3ad"}.um .fa-weebly:before,.um-icon-within .fa-weebly:before{content:"\f5cc"}.um .fa-connectdevelop:before,.um-icon-within .fa-connectdevelop:before{content:"\f20e"}.um .fa-leanpub:before,.um-icon-within .fa-leanpub:before{content:"\f212"}.um .fa-black-tie:before,.um-icon-within .fa-black-tie:before{content:"\f27e"}.um .fa-themeco:before,.um-icon-within .fa-themeco:before{content:"\f5c6"}.um .fa-python:before,.um-icon-within .fa-python:before{content:"\f3e2"}.um .fa-android:before,.um-icon-within .fa-android:before{content:"\f17b"}.um .fa-bots:before,.um-icon-within .fa-bots:before{content:"\e340"}.um .fa-free-code-camp:before,.um-icon-within .fa-free-code-camp:before{content:"\f2c5"}.um .fa-hornbill:before,.um-icon-within .fa-hornbill:before{content:"\f592"}.um .fa-js:before,.um-icon-within .fa-js:before{content:"\f3b8"}.um .fa-ideal:before,.um-icon-within .fa-ideal:before{content:"\e013"}.um .fa-git:before,.um-icon-within .fa-git:before{content:"\f1d3"}.um .fa-dev:before,.um-icon-within .fa-dev:before{content:"\f6cc"}.um .fa-sketch:before,.um-icon-within .fa-sketch:before{content:"\f7c6"}.um .fa-yandex-international:before,.um-icon-within .fa-yandex-international:before{content:"\f414"}.um .fa-cc-amex:before,.um-icon-within .fa-cc-amex:before{content:"\f1f3"}.um .fa-uber:before,.um-icon-within .fa-uber:before{content:"\f402"}.um .fa-github:before,.um-icon-within .fa-github:before{content:"\f09b"}.um .fa-php:before,.um-icon-within .fa-php:before{content:"\f457"}.um .fa-alipay:before,.um-icon-within .fa-alipay:before{content:"\f642"}.um .fa-youtube:before,.um-icon-within .fa-youtube:before{content:"\f167"}.um .fa-skyatlas:before,.um-icon-within .fa-skyatlas:before{content:"\f216"}.um .fa-firefox-browser:before,.um-icon-within .fa-firefox-browser:before{content:"\e007"}.um .fa-replyd:before,.um-icon-within .fa-replyd:before{content:"\f3e6"}.um .fa-suse:before,.um-icon-within .fa-suse:before{content:"\f7d6"}.um .fa-jenkins:before,.um-icon-within .fa-jenkins:before{content:"\f3b6"}.um .fa-twitter:before,.um-icon-within .fa-twitter:before{content:"\f099"}.um .fa-rockrms:before,.um-icon-within .fa-rockrms:before{content:"\f3e9"}.um .fa-pinterest:before,.um-icon-within .fa-pinterest:before{content:"\f0d2"}.um .fa-buffer:before,.um-icon-within .fa-buffer:before{content:"\f837"}.um .fa-npm:before,.um-icon-within .fa-npm:before{content:"\f3d4"}.um .fa-yammer:before,.um-icon-within .fa-yammer:before{content:"\f840"}.um .fa-btc:before,.um-icon-within .fa-btc:before{content:"\f15a"}.um .fa-dribbble:before,.um-icon-within .fa-dribbble:before{content:"\f17d"}.um .fa-stumbleupon-circle:before,.um-icon-within .fa-stumbleupon-circle:before{content:"\f1a3"}.um .fa-internet-explorer:before,.um-icon-within .fa-internet-explorer:before{content:"\f26b"}.um .fa-stubber:before,.um-icon-within .fa-stubber:before{content:"\e5c7"}.um .fa-telegram:before,.um-icon-within .fa-telegram:before{content:"\f2c6"}.um .fa-telegram-plane:before,.um-icon-within .fa-telegram-plane:before{content:"\f2c6"}.um .fa-old-republic:before,.um-icon-within .fa-old-republic:before{content:"\f510"}.um .fa-odysee:before,.um-icon-within .fa-odysee:before{content:"\e5c6"}.um .fa-square-whatsapp:before,.um-icon-within .fa-square-whatsapp:before{content:"\f40c"}.um .fa-whatsapp-square:before,.um-icon-within .fa-whatsapp-square:before{content:"\f40c"}.um .fa-node-js:before,.um-icon-within .fa-node-js:before{content:"\f3d3"}.um .fa-edge-legacy:before,.um-icon-within .fa-edge-legacy:before{content:"\e078"}.um .fa-slack:before,.um-icon-within .fa-slack:before{content:"\f198"}.um .fa-slack-hash:before,.um-icon-within .fa-slack-hash:before{content:"\f198"}.um .fa-medrt:before,.um-icon-within .fa-medrt:before{content:"\f3c8"}.um .fa-usb:before,.um-icon-within .fa-usb:before{content:"\f287"}.um .fa-tumblr:before,.um-icon-within .fa-tumblr:before{content:"\f173"}.um .fa-vaadin:before,.um-icon-within .fa-vaadin:before{content:"\f408"}.um .fa-quora:before,.um-icon-within .fa-quora:before{content:"\f2c4"}.um .fa-square-x-twitter:before,.um-icon-within .fa-square-x-twitter:before{content:"\e61a"}.um .fa-reacteurope:before,.um-icon-within .fa-reacteurope:before{content:"\f75d"}.um .fa-medium:before,.um-icon-within .fa-medium:before{content:"\f23a"}.um .fa-medium-m:before,.um-icon-within .fa-medium-m:before{content:"\f23a"}.um .fa-amilia:before,.um-icon-within .fa-amilia:before{content:"\f36d"}.um .fa-mixcloud:before,.um-icon-within .fa-mixcloud:before{content:"\f289"}.um .fa-flipboard:before,.um-icon-within .fa-flipboard:before{content:"\f44d"}.um .fa-viacoin:before,.um-icon-within .fa-viacoin:before{content:"\f237"}.um .fa-critical-role:before,.um-icon-within .fa-critical-role:before{content:"\f6c9"}.um .fa-sitrox:before,.um-icon-within .fa-sitrox:before{content:"\e44a"}.um .fa-discourse:before,.um-icon-within .fa-discourse:before{content:"\f393"}.um .fa-joomla:before,.um-icon-within .fa-joomla:before{content:"\f1aa"}.um .fa-mastodon:before,.um-icon-within .fa-mastodon:before{content:"\f4f6"}.um .fa-airbnb:before,.um-icon-within .fa-airbnb:before{content:"\f834"}.um .fa-wolf-pack-battalion:before,.um-icon-within .fa-wolf-pack-battalion:before{content:"\f514"}.um .fa-buy-n-large:before,.um-icon-within .fa-buy-n-large:before{content:"\f8a6"}.um .fa-gulp:before,.um-icon-within .fa-gulp:before{content:"\f3ae"}.um .fa-creative-commons-sampling-plus:before,.um-icon-within .fa-creative-commons-sampling-plus:before{content:"\f4f1"}.um .fa-strava:before,.um-icon-within .fa-strava:before{content:"\f428"}.um .fa-ember:before,.um-icon-within .fa-ember:before{content:"\f423"}.um .fa-canadian-maple-leaf:before,.um-icon-within .fa-canadian-maple-leaf:before{content:"\f785"}.um .fa-teamspeak:before,.um-icon-within .fa-teamspeak:before{content:"\f4f9"}.um .fa-pushed:before,.um-icon-within .fa-pushed:before{content:"\f3e1"}.um .fa-wordpress-simple:before,.um-icon-within .fa-wordpress-simple:before{content:"\f411"}.um .fa-nutritionix:before,.um-icon-within .fa-nutritionix:before{content:"\f3d6"}.um .fa-wodu:before,.um-icon-within .fa-wodu:before{content:"\e088"}.um .fa-google-pay:before,.um-icon-within .fa-google-pay:before{content:"\e079"}.um .fa-intercom:before,.um-icon-within .fa-intercom:before{content:"\f7af"}.um .fa-zhihu:before,.um-icon-within .fa-zhihu:before{content:"\f63f"}.um .fa-korvue:before,.um-icon-within .fa-korvue:before{content:"\f42f"}.um .fa-pix:before,.um-icon-within .fa-pix:before{content:"\e43a"}.um .fa-steam-symbol:before,.um-icon-within .fa-steam-symbol:before{content:"\f3f6"}.um :host,.um :root,.um-icon-within :host,.um-icon-within :root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}.um .fa-regular,.um .far,.um-icon-within .fa-regular,.um-icon-within .far{font-weight:400}.um :host,.um :root,.um-icon-within :host,.um-icon-within :root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}.um .fa-solid,.um .fas,.um-icon-within .fa-solid,.um-icon-within .fas{font-weight:900}.um .fa.fa-glass:before,.um-icon-within .fa.fa-glass:before{content:"\f000"}.um .fa.fa-envelope-o,.um-icon-within .fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-envelope-o:before,.um-icon-within .fa.fa-envelope-o:before{content:"\f0e0"}.um .fa.fa-star-o,.um-icon-within .fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-o:before,.um-icon-within .fa.fa-star-o:before{content:"\f005"}.um .fa.fa-remove:before,.um-icon-within .fa.fa-remove:before{content:"\f00d"}.um .fa.fa-close:before,.um-icon-within .fa.fa-close:before{content:"\f00d"}.um .fa.fa-gear:before,.um-icon-within .fa.fa-gear:before{content:"\f013"}.um .fa.fa-trash-o,.um-icon-within .fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-trash-o:before,.um-icon-within .fa.fa-trash-o:before{content:"\f2ed"}.um .fa.fa-home:before,.um-icon-within .fa.fa-home:before{content:"\f015"}.um .fa.fa-file-o,.um-icon-within .fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-o:before,.um-icon-within .fa.fa-file-o:before{content:"\f15b"}.um .fa.fa-clock-o,.um-icon-within .fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-clock-o:before,.um-icon-within .fa.fa-clock-o:before{content:"\f017"}.um .fa.fa-arrow-circle-o-down,.um-icon-within .fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-down:before,.um-icon-within .fa.fa-arrow-circle-o-down:before{content:"\f358"}.um .fa.fa-arrow-circle-o-up,.um-icon-within .fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-up:before,.um-icon-within .fa.fa-arrow-circle-o-up:before{content:"\f35b"}.um .fa.fa-play-circle-o,.um-icon-within .fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-play-circle-o:before,.um-icon-within .fa.fa-play-circle-o:before{content:"\f144"}.um .fa.fa-repeat:before,.um-icon-within .fa.fa-repeat:before{content:"\f01e"}.um .fa.fa-rotate-right:before,.um-icon-within .fa.fa-rotate-right:before{content:"\f01e"}.um .fa.fa-refresh:before,.um-icon-within .fa.fa-refresh:before{content:"\f021"}.um .fa.fa-list-alt,.um-icon-within .fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-list-alt:before,.um-icon-within .fa.fa-list-alt:before{content:"\f022"}.um .fa.fa-dedent:before,.um-icon-within .fa.fa-dedent:before{content:"\f03b"}.um .fa.fa-video-camera:before,.um-icon-within .fa.fa-video-camera:before{content:"\f03d"}.um .fa.fa-picture-o,.um-icon-within .fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-picture-o:before,.um-icon-within .fa.fa-picture-o:before{content:"\f03e"}.um .fa.fa-photo,.um-icon-within .fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-photo:before,.um-icon-within .fa.fa-photo:before{content:"\f03e"}.um .fa.fa-image,.um-icon-within .fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-image:before,.um-icon-within .fa.fa-image:before{content:"\f03e"}.um .fa.fa-map-marker:before,.um-icon-within .fa.fa-map-marker:before{content:"\f3c5"}.um .fa.fa-pencil-square-o,.um-icon-within .fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-pencil-square-o:before,.um-icon-within .fa.fa-pencil-square-o:before{content:"\f044"}.um .fa.fa-edit,.um-icon-within .fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-edit:before,.um-icon-within .fa.fa-edit:before{content:"\f044"}.um .fa.fa-share-square-o:before,.um-icon-within .fa.fa-share-square-o:before{content:"\f14d"}.um .fa.fa-check-square-o,.um-icon-within .fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-check-square-o:before,.um-icon-within .fa.fa-check-square-o:before{content:"\f14a"}.um .fa.fa-arrows:before,.um-icon-within .fa.fa-arrows:before{content:"\f0b2"}.um .fa.fa-times-circle-o,.um-icon-within .fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-circle-o:before,.um-icon-within .fa.fa-times-circle-o:before{content:"\f057"}.um .fa.fa-check-circle-o,.um-icon-within .fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-check-circle-o:before,.um-icon-within .fa.fa-check-circle-o:before{content:"\f058"}.um .fa.fa-mail-forward:before,.um-icon-within .fa.fa-mail-forward:before{content:"\f064"}.um .fa.fa-expand:before,.um-icon-within .fa.fa-expand:before{content:"\f424"}.um .fa.fa-compress:before,.um-icon-within .fa.fa-compress:before{content:"\f422"}.um .fa.fa-eye,.um-icon-within .fa.fa-eye{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-eye-slash,.um-icon-within .fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-warning:before,.um-icon-within .fa.fa-warning:before{content:"\f071"}.um .fa.fa-calendar:before,.um-icon-within .fa.fa-calendar:before{content:"\f073"}.um .fa.fa-arrows-v:before,.um-icon-within .fa.fa-arrows-v:before{content:"\f338"}.um .fa.fa-arrows-h:before,.um-icon-within .fa.fa-arrows-h:before{content:"\f337"}.um .fa.fa-bar-chart:before,.um-icon-within .fa.fa-bar-chart:before{content:"\e0e3"}.um .fa.fa-bar-chart-o:before,.um-icon-within .fa.fa-bar-chart-o:before{content:"\e0e3"}.um .fa.fa-twitter-square,.um-icon-within .fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-twitter-square:before,.um-icon-within .fa.fa-twitter-square:before{content:"\f081"}.um .fa.fa-facebook-square,.um-icon-within .fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-square:before,.um-icon-within .fa.fa-facebook-square:before{content:"\f082"}.um .fa.fa-gears:before,.um-icon-within .fa.fa-gears:before{content:"\f085"}.um .fa.fa-thumbs-o-up,.um-icon-within .fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-thumbs-o-up:before,.um-icon-within .fa.fa-thumbs-o-up:before{content:"\f164"}.um .fa.fa-thumbs-o-down,.um-icon-within .fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-thumbs-o-down:before,.um-icon-within .fa.fa-thumbs-o-down:before{content:"\f165"}.um .fa.fa-heart-o,.um-icon-within .fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-heart-o:before,.um-icon-within .fa.fa-heart-o:before{content:"\f004"}.um .fa.fa-sign-out:before,.um-icon-within .fa.fa-sign-out:before{content:"\f2f5"}.um .fa.fa-linkedin-square,.um-icon-within .fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linkedin-square:before,.um-icon-within .fa.fa-linkedin-square:before{content:"\f08c"}.um .fa.fa-thumb-tack:before,.um-icon-within .fa.fa-thumb-tack:before{content:"\f08d"}.um .fa.fa-external-link:before,.um-icon-within .fa.fa-external-link:before{content:"\f35d"}.um .fa.fa-sign-in:before,.um-icon-within .fa.fa-sign-in:before{content:"\f2f6"}.um .fa.fa-github-square,.um-icon-within .fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-github-square:before,.um-icon-within .fa.fa-github-square:before{content:"\f092"}.um .fa.fa-lemon-o,.um-icon-within .fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-lemon-o:before,.um-icon-within .fa.fa-lemon-o:before{content:"\f094"}.um .fa.fa-square-o,.um-icon-within .fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-square-o:before,.um-icon-within .fa.fa-square-o:before{content:"\f0c8"}.um .fa.fa-bookmark-o,.um-icon-within .fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bookmark-o:before,.um-icon-within .fa.fa-bookmark-o:before{content:"\f02e"}.um .fa.fa-twitter,.um-icon-within .fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook,.um-icon-within .fa.fa-facebook{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook:before,.um-icon-within .fa.fa-facebook:before{content:"\f39e"}.um .fa.fa-facebook-f,.um-icon-within .fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-f:before,.um-icon-within .fa.fa-facebook-f:before{content:"\f39e"}.um .fa.fa-github,.um-icon-within .fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-credit-card,.um-icon-within .fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-feed:before,.um-icon-within .fa.fa-feed:before{content:"\f09e"}.um .fa.fa-hdd-o,.um-icon-within .fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hdd-o:before,.um-icon-within .fa.fa-hdd-o:before{content:"\f0a0"}.um .fa.fa-hand-o-right,.um-icon-within .fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-right:before,.um-icon-within .fa.fa-hand-o-right:before{content:"\f0a4"}.um .fa.fa-hand-o-left,.um-icon-within .fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-left:before,.um-icon-within .fa.fa-hand-o-left:before{content:"\f0a5"}.um .fa.fa-hand-o-up,.um-icon-within .fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-up:before,.um-icon-within .fa.fa-hand-o-up:before{content:"\f0a6"}.um .fa.fa-hand-o-down,.um-icon-within .fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-down:before,.um-icon-within .fa.fa-hand-o-down:before{content:"\f0a7"}.um .fa.fa-globe:before,.um-icon-within .fa.fa-globe:before{content:"\f57d"}.um .fa.fa-tasks:before,.um-icon-within .fa.fa-tasks:before{content:"\f828"}.um .fa.fa-arrows-alt:before,.um-icon-within .fa.fa-arrows-alt:before{content:"\f31e"}.um .fa.fa-group:before,.um-icon-within .fa.fa-group:before{content:"\f0c0"}.um .fa.fa-chain:before,.um-icon-within .fa.fa-chain:before{content:"\f0c1"}.um .fa.fa-cut:before,.um-icon-within .fa.fa-cut:before{content:"\f0c4"}.um .fa.fa-files-o,.um-icon-within .fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-files-o:before,.um-icon-within .fa.fa-files-o:before{content:"\f0c5"}.um .fa.fa-floppy-o,.um-icon-within .fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-floppy-o:before,.um-icon-within .fa.fa-floppy-o:before{content:"\f0c7"}.um .fa.fa-save,.um-icon-within .fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-save:before,.um-icon-within .fa.fa-save:before{content:"\f0c7"}.um .fa.fa-navicon:before,.um-icon-within .fa.fa-navicon:before{content:"\f0c9"}.um .fa.fa-reorder:before,.um-icon-within .fa.fa-reorder:before{content:"\f0c9"}.um .fa.fa-magic:before,.um-icon-within .fa.fa-magic:before{content:"\e2ca"}.um .fa.fa-pinterest,.um-icon-within .fa.fa-pinterest{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pinterest-square,.um-icon-within .fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pinterest-square:before,.um-icon-within .fa.fa-pinterest-square:before{content:"\f0d3"}.um .fa.fa-google-plus-square,.um-icon-within .fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-square:before,.um-icon-within .fa.fa-google-plus-square:before{content:"\f0d4"}.um .fa.fa-google-plus,.um-icon-within .fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus:before,.um-icon-within .fa.fa-google-plus:before{content:"\f0d5"}.um .fa.fa-money:before,.um-icon-within .fa.fa-money:before{content:"\f3d1"}.um .fa.fa-unsorted:before,.um-icon-within .fa.fa-unsorted:before{content:"\f0dc"}.um .fa.fa-sort-desc:before,.um-icon-within .fa.fa-sort-desc:before{content:"\f0dd"}.um .fa.fa-sort-asc:before,.um-icon-within .fa.fa-sort-asc:before{content:"\f0de"}.um .fa.fa-linkedin,.um-icon-within .fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linkedin:before,.um-icon-within .fa.fa-linkedin:before{content:"\f0e1"}.um .fa.fa-rotate-left:before,.um-icon-within .fa.fa-rotate-left:before{content:"\f0e2"}.um .fa.fa-legal:before,.um-icon-within .fa.fa-legal:before{content:"\f0e3"}.um .fa.fa-tachometer:before,.um-icon-within .fa.fa-tachometer:before{content:"\f625"}.um .fa.fa-dashboard:before,.um-icon-within .fa.fa-dashboard:before{content:"\f625"}.um .fa.fa-comment-o,.um-icon-within .fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-comment-o:before,.um-icon-within .fa.fa-comment-o:before{content:"\f075"}.um .fa.fa-comments-o,.um-icon-within .fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-comments-o:before,.um-icon-within .fa.fa-comments-o:before{content:"\f086"}.um .fa.fa-flash:before,.um-icon-within .fa.fa-flash:before{content:"\f0e7"}.um .fa.fa-clipboard:before,.um-icon-within .fa.fa-clipboard:before{content:"\f0ea"}.um .fa.fa-lightbulb-o,.um-icon-within .fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-lightbulb-o:before,.um-icon-within .fa.fa-lightbulb-o:before{content:"\f0eb"}.um .fa.fa-exchange:before,.um-icon-within .fa.fa-exchange:before{content:"\f362"}.um .fa.fa-cloud-download:before,.um-icon-within .fa.fa-cloud-download:before{content:"\f0ed"}.um .fa.fa-cloud-upload:before,.um-icon-within .fa.fa-cloud-upload:before{content:"\f0ee"}.um .fa.fa-bell-o,.um-icon-within .fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bell-o:before,.um-icon-within .fa.fa-bell-o:before{content:"\f0f3"}.um .fa.fa-cutlery:before,.um-icon-within .fa.fa-cutlery:before{content:"\f2e7"}.um .fa.fa-file-text-o,.um-icon-within .fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-text-o:before,.um-icon-within .fa.fa-file-text-o:before{content:"\f15c"}.um .fa.fa-building-o,.um-icon-within .fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-building-o:before,.um-icon-within .fa.fa-building-o:before{content:"\f1ad"}.um .fa.fa-hospital-o,.um-icon-within .fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hospital-o:before,.um-icon-within .fa.fa-hospital-o:before{content:"\f0f8"}.um .fa.fa-tablet:before,.um-icon-within .fa.fa-tablet:before{content:"\f3fa"}.um .fa.fa-mobile:before,.um-icon-within .fa.fa-mobile:before{content:"\f3cd"}.um .fa.fa-mobile-phone:before,.um-icon-within .fa.fa-mobile-phone:before{content:"\f3cd"}.um .fa.fa-circle-o,.um-icon-within .fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-circle-o:before,.um-icon-within .fa.fa-circle-o:before{content:"\f111"}.um .fa.fa-mail-reply:before,.um-icon-within .fa.fa-mail-reply:before{content:"\f3e5"}.um .fa.fa-github-alt,.um-icon-within .fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-folder-o,.um-icon-within .fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-folder-o:before,.um-icon-within .fa.fa-folder-o:before{content:"\f07b"}.um .fa.fa-folder-open-o,.um-icon-within .fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-folder-open-o:before,.um-icon-within .fa.fa-folder-open-o:before{content:"\f07c"}.um .fa.fa-smile-o,.um-icon-within .fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-smile-o:before,.um-icon-within .fa.fa-smile-o:before{content:"\f118"}.um .fa.fa-frown-o,.um-icon-within .fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-frown-o:before,.um-icon-within .fa.fa-frown-o:before{content:"\f119"}.um .fa.fa-meh-o,.um-icon-within .fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-meh-o:before,.um-icon-within .fa.fa-meh-o:before{content:"\f11a"}.um .fa.fa-keyboard-o,.um-icon-within .fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-keyboard-o:before,.um-icon-within .fa.fa-keyboard-o:before{content:"\f11c"}.um .fa.fa-flag-o,.um-icon-within .fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-flag-o:before,.um-icon-within .fa.fa-flag-o:before{content:"\f024"}.um .fa.fa-mail-reply-all:before,.um-icon-within .fa.fa-mail-reply-all:before{content:"\f122"}.um .fa.fa-star-half-o,.um-icon-within .fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-o:before,.um-icon-within .fa.fa-star-half-o:before{content:"\f5c0"}.um .fa.fa-star-half-empty,.um-icon-within .fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-empty:before,.um-icon-within .fa.fa-star-half-empty:before{content:"\f5c0"}.um .fa.fa-star-half-full,.um-icon-within .fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-full:before,.um-icon-within .fa.fa-star-half-full:before{content:"\f5c0"}.um .fa.fa-code-fork:before,.um-icon-within .fa.fa-code-fork:before{content:"\f126"}.um .fa.fa-chain-broken:before,.um-icon-within .fa.fa-chain-broken:before{content:"\f127"}.um .fa.fa-unlink:before,.um-icon-within .fa.fa-unlink:before{content:"\f127"}.um .fa.fa-calendar-o,.um-icon-within .fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-o:before,.um-icon-within .fa.fa-calendar-o:before{content:"\f133"}.um .fa.fa-maxcdn,.um-icon-within .fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-html5,.um-icon-within .fa.fa-html5{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-css3,.um-icon-within .fa.fa-css3{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-unlock-alt:before,.um-icon-within .fa.fa-unlock-alt:before{content:"\f09c"}.um .fa.fa-minus-square-o,.um-icon-within .fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-minus-square-o:before,.um-icon-within .fa.fa-minus-square-o:before{content:"\f146"}.um .fa.fa-level-up:before,.um-icon-within .fa.fa-level-up:before{content:"\f3bf"}.um .fa.fa-level-down:before,.um-icon-within .fa.fa-level-down:before{content:"\f3be"}.um .fa.fa-pencil-square:before,.um-icon-within .fa.fa-pencil-square:before{content:"\f14b"}.um .fa.fa-external-link-square:before,.um-icon-within .fa.fa-external-link-square:before{content:"\f360"}.um .fa.fa-compass,.um-icon-within .fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-down,.um-icon-within .fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-down:before,.um-icon-within .fa.fa-caret-square-o-down:before{content:"\f150"}.um .fa.fa-toggle-down,.um-icon-within .fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-down:before,.um-icon-within .fa.fa-toggle-down:before{content:"\f150"}.um .fa.fa-caret-square-o-up,.um-icon-within .fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-up:before,.um-icon-within .fa.fa-caret-square-o-up:before{content:"\f151"}.um .fa.fa-toggle-up,.um-icon-within .fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-up:before,.um-icon-within .fa.fa-toggle-up:before{content:"\f151"}.um .fa.fa-caret-square-o-right,.um-icon-within .fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-right:before,.um-icon-within .fa.fa-caret-square-o-right:before{content:"\f152"}.um .fa.fa-toggle-right,.um-icon-within .fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-right:before,.um-icon-within .fa.fa-toggle-right:before{content:"\f152"}.um .fa.fa-eur:before,.um-icon-within .fa.fa-eur:before{content:"\f153"}.um .fa.fa-euro:before,.um-icon-within .fa.fa-euro:before{content:"\f153"}.um .fa.fa-gbp:before,.um-icon-within .fa.fa-gbp:before{content:"\f154"}.um .fa.fa-usd:before,.um-icon-within .fa.fa-usd:before{content:"\$"}.um .fa.fa-dollar:before,.um-icon-within .fa.fa-dollar:before{content:"\$"}.um .fa.fa-inr:before,.um-icon-within .fa.fa-inr:before{content:"\e1bc"}.um .fa.fa-rupee:before,.um-icon-within .fa.fa-rupee:before{content:"\e1bc"}.um .fa.fa-jpy:before,.um-icon-within .fa.fa-jpy:before{content:"\f157"}.um .fa.fa-cny:before,.um-icon-within .fa.fa-cny:before{content:"\f157"}.um .fa.fa-rmb:before,.um-icon-within .fa.fa-rmb:before{content:"\f157"}.um .fa.fa-yen:before,.um-icon-within .fa.fa-yen:before{content:"\f157"}.um .fa.fa-rub:before,.um-icon-within .fa.fa-rub:before{content:"\f158"}.um .fa.fa-ruble:before,.um-icon-within .fa.fa-ruble:before{content:"\f158"}.um .fa.fa-rouble:before,.um-icon-within .fa.fa-rouble:before{content:"\f158"}.um .fa.fa-krw:before,.um-icon-within .fa.fa-krw:before{content:"\f159"}.um .fa.fa-won:before,.um-icon-within .fa.fa-won:before{content:"\f159"}.um .fa.fa-btc,.um-icon-within .fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitcoin,.um-icon-within .fa.fa-bitcoin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitcoin:before,.um-icon-within .fa.fa-bitcoin:before{content:"\f15a"}.um .fa.fa-file-text:before,.um-icon-within .fa.fa-file-text:before{content:"\f15c"}.um .fa.fa-sort-alpha-asc:before,.um-icon-within .fa.fa-sort-alpha-asc:before{content:"\f15d"}.um .fa.fa-sort-alpha-desc:before,.um-icon-within .fa.fa-sort-alpha-desc:before{content:"\f881"}.um .fa.fa-sort-amount-asc:before,.um-icon-within .fa.fa-sort-amount-asc:before{content:"\f884"}.um .fa.fa-sort-amount-desc:before,.um-icon-within .fa.fa-sort-amount-desc:before{content:"\f160"}.um .fa.fa-sort-numeric-asc:before,.um-icon-within .fa.fa-sort-numeric-asc:before{content:"\f162"}.um .fa.fa-sort-numeric-desc:before,.um-icon-within .fa.fa-sort-numeric-desc:before{content:"\f886"}.um .fa.fa-youtube-square,.um-icon-within .fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-youtube-square:before,.um-icon-within .fa.fa-youtube-square:before{content:"\f431"}.um .fa.fa-youtube,.um-icon-within .fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing,.um-icon-within .fa.fa-xing{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing-square,.um-icon-within .fa.fa-xing-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing-square:before,.um-icon-within .fa.fa-xing-square:before{content:"\f169"}.um .fa.fa-youtube-play,.um-icon-within .fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-youtube-play:before,.um-icon-within .fa.fa-youtube-play:before{content:"\f167"}.um .fa.fa-dropbox,.um-icon-within .fa.fa-dropbox{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stack-overflow,.um-icon-within .fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-instagram,.um-icon-within .fa.fa-instagram{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-flickr,.um-icon-within .fa.fa-flickr{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-adn,.um-icon-within .fa.fa-adn{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket,.um-icon-within .fa.fa-bitbucket{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket-square,.um-icon-within .fa.fa-bitbucket-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket-square:before,.um-icon-within .fa.fa-bitbucket-square:before{content:"\f171"}.um .fa.fa-tumblr,.um-icon-within .fa.fa-tumblr{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-tumblr-square,.um-icon-within .fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-tumblr-square:before,.um-icon-within .fa.fa-tumblr-square:before{content:"\f174"}.um .fa.fa-long-arrow-down:before,.um-icon-within .fa.fa-long-arrow-down:before{content:"\f309"}.um .fa.fa-long-arrow-up:before,.um-icon-within .fa.fa-long-arrow-up:before{content:"\f30c"}.um .fa.fa-long-arrow-left:before,.um-icon-within .fa.fa-long-arrow-left:before{content:"\f30a"}.um .fa.fa-long-arrow-right:before,.um-icon-within .fa.fa-long-arrow-right:before{content:"\f30b"}.um .fa.fa-apple,.um-icon-within .fa.fa-apple{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-windows,.um-icon-within .fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-android,.um-icon-within .fa.fa-android{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linux,.um-icon-within .fa.fa-linux{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-dribbble,.um-icon-within .fa.fa-dribbble{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-skype,.um-icon-within .fa.fa-skype{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-foursquare,.um-icon-within .fa.fa-foursquare{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-trello,.um-icon-within .fa.fa-trello{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gratipay,.um-icon-within .fa.fa-gratipay{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gittip,.um-icon-within .fa.fa-gittip{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gittip:before,.um-icon-within .fa.fa-gittip:before{content:"\f184"}.um .fa.fa-sun-o,.um-icon-within .fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sun-o:before,.um-icon-within .fa.fa-sun-o:before{content:"\f185"}.um .fa.fa-moon-o,.um-icon-within .fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-moon-o:before,.um-icon-within .fa.fa-moon-o:before{content:"\f186"}.um .fa.fa-vk,.um-icon-within .fa.fa-vk{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-weibo,.um-icon-within .fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-renren,.um-icon-within .fa.fa-renren{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pagelines,.um-icon-within .fa.fa-pagelines{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stack-exchange,.um-icon-within .fa.fa-stack-exchange{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-arrow-circle-o-right,.um-icon-within .fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-right:before,.um-icon-within .fa.fa-arrow-circle-o-right:before{content:"\f35a"}.um .fa.fa-arrow-circle-o-left,.um-icon-within .fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-left:before,.um-icon-within .fa.fa-arrow-circle-o-left:before{content:"\f359"}.um .fa.fa-caret-square-o-left,.um-icon-within .fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-left:before,.um-icon-within .fa.fa-caret-square-o-left:before{content:"\f191"}.um .fa.fa-toggle-left,.um-icon-within .fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-left:before,.um-icon-within .fa.fa-toggle-left:before{content:"\f191"}.um .fa.fa-dot-circle-o,.um-icon-within .fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-dot-circle-o:before,.um-icon-within .fa.fa-dot-circle-o:before{content:"\f192"}.um .fa.fa-vimeo-square,.um-icon-within .fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo-square:before,.um-icon-within .fa.fa-vimeo-square:before{content:"\f194"}.um .fa.fa-try:before,.um-icon-within .fa.fa-try:before{content:"\e2bb"}.um .fa.fa-turkish-lira:before,.um-icon-within .fa.fa-turkish-lira:before{content:"\e2bb"}.um .fa.fa-plus-square-o,.um-icon-within .fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-plus-square-o:before,.um-icon-within .fa.fa-plus-square-o:before{content:"\f0fe"}.um .fa.fa-slack,.um-icon-within .fa.fa-slack{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wordpress,.um-icon-within .fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-openid,.um-icon-within .fa.fa-openid{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-institution:before,.um-icon-within .fa.fa-institution:before{content:"\f19c"}.um .fa.fa-bank:before,.um-icon-within .fa.fa-bank:before{content:"\f19c"}.um .fa.fa-mortar-board:before,.um-icon-within .fa.fa-mortar-board:before{content:"\f19d"}.um .fa.fa-yahoo,.um-icon-within .fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google,.um-icon-within .fa.fa-google{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit,.um-icon-within .fa.fa-reddit{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-square,.um-icon-within .fa.fa-reddit-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-square:before,.um-icon-within .fa.fa-reddit-square:before{content:"\f1a2"}.um .fa.fa-stumbleupon-circle,.um-icon-within .fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stumbleupon,.um-icon-within .fa.fa-stumbleupon{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-delicious,.um-icon-within .fa.fa-delicious{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-digg,.um-icon-within .fa.fa-digg{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pied-piper-pp,.um-icon-within .fa.fa-pied-piper-pp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pied-piper-alt,.um-icon-within .fa.fa-pied-piper-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-drupal,.um-icon-within .fa.fa-drupal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-joomla,.um-icon-within .fa.fa-joomla{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance,.um-icon-within .fa.fa-behance{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance-square,.um-icon-within .fa.fa-behance-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance-square:before,.um-icon-within .fa.fa-behance-square:before{content:"\f1b5"}.um .fa.fa-steam,.um-icon-within .fa.fa-steam{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-steam-square,.um-icon-within .fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-steam-square:before,.um-icon-within .fa.fa-steam-square:before{content:"\f1b7"}.um .fa.fa-automobile:before,.um-icon-within .fa.fa-automobile:before{content:"\f1b9"}.um .fa.fa-cab:before,.um-icon-within .fa.fa-cab:before{content:"\f1ba"}.um .fa.fa-spotify,.um-icon-within .fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-deviantart,.um-icon-within .fa.fa-deviantart{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-soundcloud,.um-icon-within .fa.fa-soundcloud{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-file-pdf-o,.um-icon-within .fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-pdf-o:before,.um-icon-within .fa.fa-file-pdf-o:before{content:"\f1c1"}.um .fa.fa-file-word-o,.um-icon-within .fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-word-o:before,.um-icon-within .fa.fa-file-word-o:before{content:"\f1c2"}.um .fa.fa-file-excel-o,.um-icon-within .fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-excel-o:before,.um-icon-within .fa.fa-file-excel-o:before{content:"\f1c3"}.um .fa.fa-file-powerpoint-o,.um-icon-within .fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-powerpoint-o:before,.um-icon-within .fa.fa-file-powerpoint-o:before{content:"\f1c4"}.um .fa.fa-file-image-o,.um-icon-within .fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-image-o:before,.um-icon-within .fa.fa-file-image-o:before{content:"\f1c5"}.um .fa.fa-file-photo-o,.um-icon-within .fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-photo-o:before,.um-icon-within .fa.fa-file-photo-o:before{content:"\f1c5"}.um .fa.fa-file-picture-o,.um-icon-within .fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-picture-o:before,.um-icon-within .fa.fa-file-picture-o:before{content:"\f1c5"}.um .fa.fa-file-archive-o,.um-icon-within .fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-archive-o:before,.um-icon-within .fa.fa-file-archive-o:before{content:"\f1c6"}.um .fa.fa-file-zip-o,.um-icon-within .fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-zip-o:before,.um-icon-within .fa.fa-file-zip-o:before{content:"\f1c6"}.um .fa.fa-file-audio-o,.um-icon-within .fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-audio-o:before,.um-icon-within .fa.fa-file-audio-o:before{content:"\f1c7"}.um .fa.fa-file-sound-o,.um-icon-within .fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-sound-o:before,.um-icon-within .fa.fa-file-sound-o:before{content:"\f1c7"}.um .fa.fa-file-video-o,.um-icon-within .fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-video-o:before,.um-icon-within .fa.fa-file-video-o:before{content:"\f1c8"}.um .fa.fa-file-movie-o,.um-icon-within .fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-movie-o:before,.um-icon-within .fa.fa-file-movie-o:before{content:"\f1c8"}.um .fa.fa-file-code-o,.um-icon-within .fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-code-o:before,.um-icon-within .fa.fa-file-code-o:before{content:"\f1c9"}.um .fa.fa-vine,.um-icon-within .fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-codepen,.um-icon-within .fa.fa-codepen{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-jsfiddle,.um-icon-within .fa.fa-jsfiddle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-life-bouy:before,.um-icon-within .fa.fa-life-bouy:before{content:"\f1cd"}.um .fa.fa-life-buoy:before,.um-icon-within .fa.fa-life-buoy:before{content:"\f1cd"}.um .fa.fa-life-saver:before,.um-icon-within .fa.fa-life-saver:before{content:"\f1cd"}.um .fa.fa-support:before,.um-icon-within .fa.fa-support:before{content:"\f1cd"}.um .fa.fa-circle-o-notch:before,.um-icon-within .fa.fa-circle-o-notch:before{content:"\f1ce"}.um .fa.fa-rebel,.um-icon-within .fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ra,.um-icon-within .fa.fa-ra{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ra:before,.um-icon-within .fa.fa-ra:before{content:"\f1d0"}.um .fa.fa-resistance,.um-icon-within .fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-resistance:before,.um-icon-within .fa.fa-resistance:before{content:"\f1d0"}.um .fa.fa-empire,.um-icon-within .fa.fa-empire{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ge,.um-icon-within .fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ge:before,.um-icon-within .fa.fa-ge:before{content:"\f1d1"}.um .fa.fa-git-square,.um-icon-within .fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-git-square:before,.um-icon-within .fa.fa-git-square:before{content:"\f1d2"}.um .fa.fa-git,.um-icon-within .fa.fa-git{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-hacker-news,.um-icon-within .fa.fa-hacker-news{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator-square,.um-icon-within .fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator-square:before,.um-icon-within .fa.fa-y-combinator-square:before{content:"\f1d4"}.um .fa.fa-yc-square,.um-icon-within .fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc-square:before,.um-icon-within .fa.fa-yc-square:before{content:"\f1d4"}.um .fa.fa-tencent-weibo,.um-icon-within .fa.fa-tencent-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-qq,.um-icon-within .fa.fa-qq{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-weixin,.um-icon-within .fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wechat,.um-icon-within .fa.fa-wechat{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wechat:before,.um-icon-within .fa.fa-wechat:before{content:"\f1d7"}.um .fa.fa-send:before,.um-icon-within .fa.fa-send:before{content:"\f1d8"}.um .fa.fa-paper-plane-o,.um-icon-within .fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-paper-plane-o:before,.um-icon-within .fa.fa-paper-plane-o:before{content:"\f1d8"}.um .fa.fa-send-o,.um-icon-within .fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-send-o:before,.um-icon-within .fa.fa-send-o:before{content:"\f1d8"}.um .fa.fa-circle-thin,.um-icon-within .fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-circle-thin:before,.um-icon-within .fa.fa-circle-thin:before{content:"\f111"}.um .fa.fa-header:before,.um-icon-within .fa.fa-header:before{content:"\f1dc"}.um .fa.fa-futbol-o,.um-icon-within .fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-futbol-o:before,.um-icon-within .fa.fa-futbol-o:before{content:"\f1e3"}.um .fa.fa-soccer-ball-o,.um-icon-within .fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-soccer-ball-o:before,.um-icon-within .fa.fa-soccer-ball-o:before{content:"\f1e3"}.um .fa.fa-slideshare,.um-icon-within .fa.fa-slideshare{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-twitch,.um-icon-within .fa.fa-twitch{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yelp,.um-icon-within .fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-newspaper-o,.um-icon-within .fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-newspaper-o:before,.um-icon-within .fa.fa-newspaper-o:before{content:"\f1ea"}.um .fa.fa-paypal,.um-icon-within .fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-wallet,.um-icon-within .fa.fa-google-wallet{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-visa,.um-icon-within .fa.fa-cc-visa{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-mastercard,.um-icon-within .fa.fa-cc-mastercard{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-discover,.um-icon-within .fa.fa-cc-discover{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-amex,.um-icon-within .fa.fa-cc-amex{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-paypal,.um-icon-within .fa.fa-cc-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-stripe,.um-icon-within .fa.fa-cc-stripe{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bell-slash-o,.um-icon-within .fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bell-slash-o:before,.um-icon-within .fa.fa-bell-slash-o:before{content:"\f1f6"}.um .fa.fa-trash:before,.um-icon-within .fa.fa-trash:before{content:"\f2ed"}.um .fa.fa-copyright,.um-icon-within .fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-eyedropper:before,.um-icon-within .fa.fa-eyedropper:before{content:"\f1fb"}.um .fa.fa-area-chart:before,.um-icon-within .fa.fa-area-chart:before{content:"\f1fe"}.um .fa.fa-pie-chart:before,.um-icon-within .fa.fa-pie-chart:before{content:"\f200"}.um .fa.fa-line-chart:before,.um-icon-within .fa.fa-line-chart:before{content:"\f201"}.um .fa.fa-lastfm,.um-icon-within .fa.fa-lastfm{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-lastfm-square,.um-icon-within .fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-lastfm-square:before,.um-icon-within .fa.fa-lastfm-square:before{content:"\f203"}.um .fa.fa-ioxhost,.um-icon-within .fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-angellist,.um-icon-within .fa.fa-angellist{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc,.um-icon-within .fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-cc:before,.um-icon-within .fa.fa-cc:before{content:"\f20a"}.um .fa.fa-ils:before,.um-icon-within .fa.fa-ils:before{content:"\f20b"}.um .fa.fa-shekel:before,.um-icon-within .fa.fa-shekel:before{content:"\f20b"}.um .fa.fa-sheqel:before,.um-icon-within .fa.fa-sheqel:before{content:"\f20b"}.um .fa.fa-buysellads,.um-icon-within .fa.fa-buysellads{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-connectdevelop,.um-icon-within .fa.fa-connectdevelop{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-dashcube,.um-icon-within .fa.fa-dashcube{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-forumbee,.um-icon-within .fa.fa-forumbee{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-leanpub,.um-icon-within .fa.fa-leanpub{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-sellsy,.um-icon-within .fa.fa-sellsy{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-shirtsinbulk,.um-icon-within .fa.fa-shirtsinbulk{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-simplybuilt,.um-icon-within .fa.fa-simplybuilt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-skyatlas,.um-icon-within .fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-diamond,.um-icon-within .fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-diamond:before,.um-icon-within .fa.fa-diamond:before{content:"\f3a5"}.um .fa.fa-transgender:before,.um-icon-within .fa.fa-transgender:before{content:"\f224"}.um .fa.fa-intersex:before,.um-icon-within .fa.fa-intersex:before{content:"\f224"}.um .fa.fa-transgender-alt:before,.um-icon-within .fa.fa-transgender-alt:before{content:"\f225"}.um .fa.fa-facebook-official,.um-icon-within .fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-official:before,.um-icon-within .fa.fa-facebook-official:before{content:"\f09a"}.um .fa.fa-pinterest-p,.um-icon-within .fa.fa-pinterest-p{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-whatsapp,.um-icon-within .fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-hotel:before,.um-icon-within .fa.fa-hotel:before{content:"\f236"}.um .fa.fa-viacoin,.um-icon-within .fa.fa-viacoin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-medium,.um-icon-within .fa.fa-medium{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator,.um-icon-within .fa.fa-y-combinator{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc,.um-icon-within .fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc:before,.um-icon-within .fa.fa-yc:before{content:"\f23b"}.um .fa.fa-optin-monster,.um-icon-within .fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-opencart,.um-icon-within .fa.fa-opencart{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-expeditedssl,.um-icon-within .fa.fa-expeditedssl{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-battery-4:before,.um-icon-within .fa.fa-battery-4:before{content:"\f240"}.um .fa.fa-battery:before,.um-icon-within .fa.fa-battery:before{content:"\f240"}.um .fa.fa-battery-3:before,.um-icon-within .fa.fa-battery-3:before{content:"\f241"}.um .fa.fa-battery-2:before,.um-icon-within .fa.fa-battery-2:before{content:"\f242"}.um .fa.fa-battery-1:before,.um-icon-within .fa.fa-battery-1:before{content:"\f243"}.um .fa.fa-battery-0:before,.um-icon-within .fa.fa-battery-0:before{content:"\f244"}.um .fa.fa-object-group,.um-icon-within .fa.fa-object-group{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-object-ungroup,.um-icon-within .fa.fa-object-ungroup{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sticky-note-o,.um-icon-within .fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sticky-note-o:before,.um-icon-within .fa.fa-sticky-note-o:before{content:"\f249"}.um .fa.fa-cc-jcb,.um-icon-within .fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-diners-club,.um-icon-within .fa.fa-cc-diners-club{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-clone,.um-icon-within .fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hourglass-o:before,.um-icon-within .fa.fa-hourglass-o:before{content:"\f254"}.um .fa.fa-hourglass-1:before,.um-icon-within .fa.fa-hourglass-1:before{content:"\f251"}.um .fa.fa-hourglass-2:before,.um-icon-within .fa.fa-hourglass-2:before{content:"\f252"}.um .fa.fa-hourglass-3:before,.um-icon-within .fa.fa-hourglass-3:before{content:"\f253"}.um .fa.fa-hand-rock-o,.um-icon-within .fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-rock-o:before,.um-icon-within .fa.fa-hand-rock-o:before{content:"\f255"}.um .fa.fa-hand-grab-o,.um-icon-within .fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-grab-o:before,.um-icon-within .fa.fa-hand-grab-o:before{content:"\f255"}.um .fa.fa-hand-paper-o,.um-icon-within .fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-paper-o:before,.um-icon-within .fa.fa-hand-paper-o:before{content:"\f256"}.um .fa.fa-hand-stop-o,.um-icon-within .fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-stop-o:before,.um-icon-within .fa.fa-hand-stop-o:before{content:"\f256"}.um .fa.fa-hand-scissors-o,.um-icon-within .fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-scissors-o:before,.um-icon-within .fa.fa-hand-scissors-o:before{content:"\f257"}.um .fa.fa-hand-lizard-o,.um-icon-within .fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-lizard-o:before,.um-icon-within .fa.fa-hand-lizard-o:before{content:"\f258"}.um .fa.fa-hand-spock-o,.um-icon-within .fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-spock-o:before,.um-icon-within .fa.fa-hand-spock-o:before{content:"\f259"}.um .fa.fa-hand-pointer-o,.um-icon-within .fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-pointer-o:before,.um-icon-within .fa.fa-hand-pointer-o:before{content:"\f25a"}.um .fa.fa-hand-peace-o,.um-icon-within .fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-peace-o:before,.um-icon-within .fa.fa-hand-peace-o:before{content:"\f25b"}.um .fa.fa-registered,.um-icon-within .fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-creative-commons,.um-icon-within .fa.fa-creative-commons{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gg,.um-icon-within .fa.fa-gg{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gg-circle,.um-icon-within .fa.fa-gg-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki,.um-icon-within .fa.fa-odnoklassniki{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki-square,.um-icon-within .fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki-square:before,.um-icon-within .fa.fa-odnoklassniki-square:before{content:"\f264"}.um .fa.fa-get-pocket,.um-icon-within .fa.fa-get-pocket{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wikipedia-w,.um-icon-within .fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-safari,.um-icon-within .fa.fa-safari{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-chrome,.um-icon-within .fa.fa-chrome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-firefox,.um-icon-within .fa.fa-firefox{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-opera,.um-icon-within .fa.fa-opera{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-internet-explorer,.um-icon-within .fa.fa-internet-explorer{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-television:before,.um-icon-within .fa.fa-television:before{content:"\f26c"}.um .fa.fa-contao,.um-icon-within .fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-500px,.um-icon-within .fa.fa-500px{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-amazon,.um-icon-within .fa.fa-amazon{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-calendar-plus-o,.um-icon-within .fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-plus-o:before,.um-icon-within .fa.fa-calendar-plus-o:before{content:"\f271"}.um .fa.fa-calendar-minus-o,.um-icon-within .fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-minus-o:before,.um-icon-within .fa.fa-calendar-minus-o:before{content:"\f272"}.um .fa.fa-calendar-times-o,.um-icon-within .fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-times-o:before,.um-icon-within .fa.fa-calendar-times-o:before{content:"\f273"}.um .fa.fa-calendar-check-o,.um-icon-within .fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-check-o:before,.um-icon-within .fa.fa-calendar-check-o:before{content:"\f274"}.um .fa.fa-map-o,.um-icon-within .fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-map-o:before,.um-icon-within .fa.fa-map-o:before{content:"\f279"}.um .fa.fa-commenting:before,.um-icon-within .fa.fa-commenting:before{content:"\f4ad"}.um .fa.fa-commenting-o,.um-icon-within .fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-commenting-o:before,.um-icon-within .fa.fa-commenting-o:before{content:"\f4ad"}.um .fa.fa-houzz,.um-icon-within .fa.fa-houzz{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo,.um-icon-within .fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo:before,.um-icon-within .fa.fa-vimeo:before{content:"\f27d"}.um .fa.fa-black-tie,.um-icon-within .fa.fa-black-tie{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fonticons,.um-icon-within .fa.fa-fonticons{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-alien,.um-icon-within .fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-edge,.um-icon-within .fa.fa-edge{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-credit-card-alt:before,.um-icon-within .fa.fa-credit-card-alt:before{content:"\f09d"}.um .fa.fa-codiepie,.um-icon-within .fa.fa-codiepie{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-modx,.um-icon-within .fa.fa-modx{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fort-awesome,.um-icon-within .fa.fa-fort-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-usb,.um-icon-within .fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-product-hunt,.um-icon-within .fa.fa-product-hunt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-mixcloud,.um-icon-within .fa.fa-mixcloud{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-scribd,.um-icon-within .fa.fa-scribd{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pause-circle-o,.um-icon-within .fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-pause-circle-o:before,.um-icon-within .fa.fa-pause-circle-o:before{content:"\f28b"}.um .fa.fa-stop-circle-o,.um-icon-within .fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-stop-circle-o:before,.um-icon-within .fa.fa-stop-circle-o:before{content:"\f28d"}.um .fa.fa-bluetooth,.um-icon-within .fa.fa-bluetooth{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bluetooth-b,.um-icon-within .fa.fa-bluetooth-b{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gitlab,.um-icon-within .fa.fa-gitlab{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpbeginner,.um-icon-within .fa.fa-wpbeginner{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpforms,.um-icon-within .fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-envira,.um-icon-within .fa.fa-envira{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wheelchair-alt,.um-icon-within .fa.fa-wheelchair-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wheelchair-alt:before,.um-icon-within .fa.fa-wheelchair-alt:before{content:"\f368"}.um .fa.fa-question-circle-o,.um-icon-within .fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-question-circle-o:before,.um-icon-within .fa.fa-question-circle-o:before{content:"\f059"}.um .fa.fa-volume-control-phone:before,.um-icon-within .fa.fa-volume-control-phone:before{content:"\f2a0"}.um .fa.fa-asl-interpreting:before,.um-icon-within .fa.fa-asl-interpreting:before{content:"\f2a3"}.um .fa.fa-deafness:before,.um-icon-within .fa.fa-deafness:before{content:"\f2a4"}.um .fa.fa-hard-of-hearing:before,.um-icon-within .fa.fa-hard-of-hearing:before{content:"\f2a4"}.um .fa.fa-glide,.um-icon-within .fa.fa-glide{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-glide-g,.um-icon-within .fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-signing:before,.um-icon-within .fa.fa-signing:before{content:"\f2a7"}.um .fa.fa-viadeo,.um-icon-within .fa.fa-viadeo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-viadeo-square,.um-icon-within .fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-viadeo-square:before,.um-icon-within .fa.fa-viadeo-square:before{content:"\f2aa"}.um .fa.fa-snapchat,.um-icon-within .fa.fa-snapchat{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-ghost,.um-icon-within .fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-ghost:before,.um-icon-within .fa.fa-snapchat-ghost:before{content:"\f2ab"}.um .fa.fa-snapchat-square,.um-icon-within .fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-square:before,.um-icon-within .fa.fa-snapchat-square:before{content:"\f2ad"}.um .fa.fa-pied-piper,.um-icon-within .fa.fa-pied-piper{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-first-order,.um-icon-within .fa.fa-first-order{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yoast,.um-icon-within .fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-themeisle,.um-icon-within .fa.fa-themeisle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-official,.um-icon-within .fa.fa-google-plus-official{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-official:before,.um-icon-within .fa.fa-google-plus-official:before{content:"\f2b3"}.um .fa.fa-google-plus-circle,.um-icon-within .fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-circle:before,.um-icon-within .fa.fa-google-plus-circle:before{content:"\f2b3"}.um .fa.fa-font-awesome,.um-icon-within .fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fa,.um-icon-within .fa.fa-fa{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fa:before,.um-icon-within .fa.fa-fa:before{content:"\f2b4"}.um .fa.fa-handshake-o,.um-icon-within .fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-handshake-o:before,.um-icon-within .fa.fa-handshake-o:before{content:"\f2b5"}.um .fa.fa-envelope-open-o,.um-icon-within .fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-envelope-open-o:before,.um-icon-within .fa.fa-envelope-open-o:before{content:"\f2b6"}.um .fa.fa-linode,.um-icon-within .fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-address-book-o,.um-icon-within .fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-address-book-o:before,.um-icon-within .fa.fa-address-book-o:before{content:"\f2b9"}.um .fa.fa-vcard:before,.um-icon-within .fa.fa-vcard:before{content:"\f2bb"}.um .fa.fa-address-card-o,.um-icon-within .fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-address-card-o:before,.um-icon-within .fa.fa-address-card-o:before{content:"\f2bb"}.um .fa.fa-vcard-o,.um-icon-within .fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-vcard-o:before,.um-icon-within .fa.fa-vcard-o:before{content:"\f2bb"}.um .fa.fa-user-circle-o,.um-icon-within .fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-user-circle-o:before,.um-icon-within .fa.fa-user-circle-o:before{content:"\f2bd"}.um .fa.fa-user-o,.um-icon-within .fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-user-o:before,.um-icon-within .fa.fa-user-o:before{content:"\f007"}.um .fa.fa-id-badge,.um-icon-within .fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-drivers-license:before,.um-icon-within .fa.fa-drivers-license:before{content:"\f2c2"}.um .fa.fa-id-card-o,.um-icon-within .fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-id-card-o:before,.um-icon-within .fa.fa-id-card-o:before{content:"\f2c2"}.um .fa.fa-drivers-license-o,.um-icon-within .fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-drivers-license-o:before,.um-icon-within .fa.fa-drivers-license-o:before{content:"\f2c2"}.um .fa.fa-quora,.um-icon-within .fa.fa-quora{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-free-code-camp,.um-icon-within .fa.fa-free-code-camp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-telegram,.um-icon-within .fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-thermometer-4:before,.um-icon-within .fa.fa-thermometer-4:before{content:"\f2c7"}.um .fa.fa-thermometer:before,.um-icon-within .fa.fa-thermometer:before{content:"\f2c7"}.um .fa.fa-thermometer-3:before,.um-icon-within .fa.fa-thermometer-3:before{content:"\f2c8"}.um .fa.fa-thermometer-2:before,.um-icon-within .fa.fa-thermometer-2:before{content:"\f2c9"}.um .fa.fa-thermometer-1:before,.um-icon-within .fa.fa-thermometer-1:before{content:"\f2ca"}.um .fa.fa-thermometer-0:before,.um-icon-within .fa.fa-thermometer-0:before{content:"\f2cb"}.um .fa.fa-bathtub:before,.um-icon-within .fa.fa-bathtub:before{content:"\f2cd"}.um .fa.fa-s15:before,.um-icon-within .fa.fa-s15:before{content:"\f2cd"}.um .fa.fa-window-maximize,.um-icon-within .fa.fa-window-maximize{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-window-restore,.um-icon-within .fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-rectangle:before,.um-icon-within .fa.fa-times-rectangle:before{content:"\f410"}.um .fa.fa-window-close-o,.um-icon-within .fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-window-close-o:before,.um-icon-within .fa.fa-window-close-o:before{content:"\f410"}.um .fa.fa-times-rectangle-o,.um-icon-within .fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-rectangle-o:before,.um-icon-within .fa.fa-times-rectangle-o:before{content:"\f410"}.um .fa.fa-bandcamp,.um-icon-within .fa.fa-bandcamp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-grav,.um-icon-within .fa.fa-grav{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-etsy,.um-icon-within .fa.fa-etsy{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-imdb,.um-icon-within .fa.fa-imdb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ravelry,.um-icon-within .fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-eercast,.um-icon-within .fa.fa-eercast{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-eercast:before,.um-icon-within .fa.fa-eercast:before{content:"\f2da"}.um .fa.fa-snowflake-o,.um-icon-within .fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-snowflake-o:before,.um-icon-within .fa.fa-snowflake-o:before{content:"\f2dc"}.um .fa.fa-superpowers,.um-icon-within .fa.fa-superpowers{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpexplorer,.um-icon-within .fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-meetup,.um-icon-within .fa.fa-meetup{font-family:"Font Awesome 6 Brands";font-weight:400}
.um .tipsy,.um-page .tipsy{z-index:9999999999;font-size:inherit}.um .tipsy-inner,.um-page .tipsy-inner{background-color:#333;color:#fff;max-width:250px;padding:6px 10px;text-align:left;font-size:13px;line-height:17px;word-wrap:break-word;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um .tipsy-arrow-n,.um-page .tipsy-arrow-n{border-bottom-color:#333}.um .tipsy-arrow-s,.um-page .tipsy-arrow-s{border-top-color:#333}.um .tipsy-arrow-e,.um-page .tipsy-arrow-e{border-left-color:#333}.um .tipsy-arrow-w,.um-page .tipsy-arrow-w{border-right-color:#333}.um .um-display-none,.um-page .um-display-none{display:none!important}
.uimob340-show,.uimob500-show,.uimob800-show,.uimob960-show{display:none}.um-profile-nav-item a.uimob340-show,.um-profile-nav-item a.uimob500-show,.um-profile-nav-item a.uimob800-show,.um-profile-nav-item a.uimob960-show{display:none}div.uimob340 .uimob340-show,div.uimob500 .uimob500-show,div.uimob800 .uimob800-show,div.uimob960 .uimob960-show{display:block}div.uimob340 .uimob340-hide,div.uimob500 .uimob500-hide,div.uimob800 .uimob800-hide,div.uimob960 .uimob960-hide{display:none}div.uimob340 .um-item-link a{font-size:14px}div.uimob340 .um-item-meta span{font-size:13px}div.uimob340 .um-load-items a{width:100%!important;max-width:100%!important}div.uimob340 .um-profile-nav{padding:0}div.uimob340 .um-profile-nav-item a{padding:10px 16px;margin-left:0;border-radius:0}div.uimob340 .um-profile-nav-item i{display:block;position:static;top:auto;left:auto}div.uimob340 .um-profile-subnav{padding:8px 15px}div.uimob340 .um-profile-subnav a{display:block;text-align:left;font-size:13px;margin:0;padding:6px 0}div.uimob340 .um-profile-subnav span{font-size:12px;padding:1px 6px}div.uimob340 .um-cover-overlay span.um-cover-overlay-t{display:none!important}div.uimob340 .um-cover-overlay{padding:0}div.uimob340 .um-cover-overlay i,div.uimob340 .um-profile-photo-overlay i{margin-bottom:0;font-size:30px}.um-modal.uimob340{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.uimob340,.um-modal.uimob340 .um-modal-body,.um-modal.uimob340 .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.uimob340 .um-modal-header{text-align:center}.um-modal.uimob340 .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.uimob340 .um-modal-right{width:100%;float:none}.um-modal.uimob340 .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}.um-modal.uimob340 .ajax-upload-dragdrop span.icon{font-size:40px;line-height:40px}div.uimob340 .um-profile-body{padding-left:0;padding-right:0}div.uimob340 .um-profile-photo{width:100%!important;text-align:center!important;position:absolute;top:-40px;left:0;margin:0}div.uimob340 .um-header.no-cover .um-profile-photo{position:static;top:auto;left:auto}div.uimob340 .um-profile-photo a.um-profile-photo-img{width:100px!important;height:100px!important;margin:0 auto!important;float:none!important;display:inline-block!important;position:relative!important;top:auto!important;left:auto!important}div.uimob340 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{width:120px!important;height:120px!important}div.uimob340 .um-header .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important;padding-top:60px!important}div.uimob340 .um-header.no-cover .um-profile-meta{padding-top:0!important}div.uimob340 .um-header .um-name{float:none!important;margin-right:0!important;font-size:18px}div.uimob340 .um-header .um-meta-text{padding:0 20px}div.uimob340 .um-header .um-meta{padding:0 10px;display:inline-block}div.uimob340 .um-col-121,div.uimob340 .um-col-122,div.uimob340 .um-col-131,div.uimob340 .um-col-132,div.uimob340 .um-col-133{float:none;width:100%;margin:0}div.uimob340 .um-field-half{float:none;width:100%}div.uimob340 .um-account-main{float:none;width:100%;padding:0;box-sizing:border-box}div.uimob340 .um-account-tab{padding-bottom:20px;border-bottom:1px solid #eee}div.uimob340 .um-account-meta{margin-bottom:0}.uimob340 .um-half{float:none;width:100%;margin:0 0 10px 0}.uimob340 .um-button.um-btn-auto-width{min-width:auto;max-width:auto;width:100%}.uimob340 .um-col-alt-s{padding-top:0}div.uimob500 .um-profile-nav{padding:0}div.uimob500 .um-profile-nav-item a{padding:10px 16px;margin-left:0;border-radius:0}div.uimob500 .um-profile-nav-item i{display:block;position:static;top:auto;left:auto;font-size:22px;height:22px;line-height:22px}div.uimob500 .um-profile-subnav{padding:8px 15px}div.uimob500 .um-profile-subnav a{display:block;text-align:left;font-size:13px;margin:0;padding:6px 0}div.uimob500 .um-profile-subnav span{font-size:12px;padding:1px 6px}div.uimob500 .um-cover-overlay span.um-cover-overlay-t{display:none!important}div.uimob500 .um-cover-overlay{padding:0}div.uimob500 .um-cover-overlay i,div.uimob500 .um-profile-photo-overlay i{margin-bottom:0;font-size:30px}.um-modal.uimob500{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.uimob500,.um-modal.uimob500 .um-modal-body,.um-modal.uimob500 .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.uimob500 .um-modal-header{text-align:center}.um-modal.uimob500 .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.uimob500 .um-modal-right{width:100%;float:none}.um-modal.uimob500 .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}.um-modal.uimob500 .ajax-upload-dragdrop span.icon{font-size:40px;line-height:40px}div.uimob500 .um-profile-body{padding-left:0;padding-right:0}div.uimob500 .um-profile-photo{width:100%!important;text-align:center!important;position:absolute;top:-40px;left:0;margin:0}div.uimob500 .um-header.no-cover .um-profile-photo{position:static;top:auto;left:auto}div.uimob500 .um-profile-photo a.um-profile-photo-img{width:100px!important;height:100px!important;margin:0 auto!important;float:none!important;display:inline-block!important;position:relative!important;top:auto!important;left:auto!important}div.uimob500 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{width:120px!important;height:120px!important}div.uimob500 .um-header .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important;padding-top:60px!important}div.uimob500 .um-header.no-cover .um-profile-meta{padding-top:0!important}div.uimob500 .um-header .um-name{float:none!important;margin-right:0!important;font-size:21px}div.uimob500 .um-header .um-meta-text{padding:0 20px}div.uimob500 .um-header .um-meta{padding:0 20px;display:block}div.uimob500 .um-col-121,div.uimob500 .um-col-122,div.uimob500 .um-col-131,div.uimob500 .um-col-132,div.uimob500 .um-col-133{float:none;width:100%;margin:0}div.uimob500 .um-field-half{float:none;width:100%}div.uimob500 .um-account-main{float:none;width:100%;padding:0;box-sizing:border-box}div.uimob500 .um-account-tab{padding-bottom:20px;border-bottom:1px solid #eee}div.uimob500 .um-account-meta{margin-bottom:0}div.uimob800 .um-profile-nav{padding:0}div.uimob800 .um-profile-nav-item a{padding:10px 20px;margin-left:0;border-radius:0}div.uimob800 .um-profile-nav-item i{display:block;position:static;top:auto;left:auto;font-size:26px;height:26px;line-height:26px}div.uimob800 .um-profile-subnav{padding:8px 15px}div.uimob800 .um-profile-subnav a{display:block;text-align:left;font-size:14px;margin:0;padding:6px 0}div.uimob800 .um-profile-subnav span{font-size:12px;padding:2px 8px}div.uimob800 .um-account-main{width:90%;max-width:450px}div.uimob800 .um-account-side{padding:0;width:10%}div.uimob800 .um-account-side ul{border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.uimob800 .um-account-side li{margin-bottom:0!important;background:0 0}div.uimob800 .um-account-side li a{display:block;padding:0!important;height:44px;line-height:44px;color:#666!important;text-align:center;text-decoration:none!important;background:0 0;transition:all .2s linear}div.uimob800 .um-account-side li:first-child a{-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}div.uimob800 .um-account-side li:last-child a{-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}div.uimob800 .um-account-side li a span.um-account-icontip{display:block;float:left;text-align:center;width:100%;height:100%;font-size:22px;line-height:44px}div.uimob800 .um-account-side li a span.um-account-icontip i{position:relative;text-align:center;width:100%}div.uimob800 .um-account-side li a.current,div.uimob800 .um-account-side li a.current:hover{color:#fff!important}div.uimob800 .um-account-meta a{border:1px solid #ddd}div.uimob800 .um-account-meta a,div.uimob800 .um-account-meta img{display:block;overflow:hidden;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;max-width:100%;height:auto}div.uimob800 .um-account-meta img{width:100%}div.uimob800 .um-profile-photo{width:150px!important}div.uimob800 .um-profile-photo a.um-profile-photo-img{width:140px!important;height:140px!important;top:-70px!important}div.uimob800 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{top:auto!important}div.uimob800 .um-header .um-profile-meta{padding-left:200px}div.uimob800 .um-cover-overlay{padding:0}div.uimob960 .um-profile-photo{width:200px!important}div.uimob960 .um-profile-photo a.um-profile-photo-img{width:140px!important;height:140px!important;top:-70px!important}@media screen and (max-height:400px){.ajax-upload-dragdrop span.icon{display:none}.um-modal.no-photo{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.no-photo,.um-modal.no-photo .um-modal-body,.um-modal.no-photo .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.no-photo .um-modal-header{text-align:center;font-size:14px}.um-modal.no-photo .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.no-photo .um-modal-right{width:100%;float:none}.um-modal.no-photo .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}}@media screen and (max-height:300px){.um-modal.no-photo .um-modal-header{display:none}.ajax-upload-dragdrop span.icon,.ajax-upload-dragdrop span.str{display:none}}@media screen and (max-width:600px){.um-popup{width:96%!important;margin-left:2%!important;left:0!important;top:15px!important}}
.um:not(.um-admin){width:100%;text-align:left;box-sizing:border-box;color:#666;font-size:15px;margin-bottom:30px!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;opacity:0}.um-s1,.um-s2{display:none}.um:not(.um-admin) :after,.um:not(.um-admin) :before{box-sizing:content-box}.um-account-side li a,.um-cover a,.um-field-value a,.um-header a,.um-member-less a,.um-member-more a,.um-member-name a,.um-member-photo a,.um-members a,.um-members-pagi a,.um-members-pagi span{border-bottom:0!important}.um-modal a:focus,.um:not(.um-admin) a:focus{outline:0!important}.um:not(.um-admin) a .image-overlay,.um:not(.um-admin) a:hover .image-overlay,.um:not(.um-admin) a:hover .image-overlay *{display:none!important;width:0!important;height:0!important;position:static!important}.um.um-in-admin{padding-top:0}.um.um-in-admin .um-tip{display:none!important}.um:not(.um-admin):not(.um-directory) input,.um:not(.um-admin):not(.um-directory) select,.um:not(.um-admin):not(.um-directory) textarea{font-size:15px}.um:not(.um-admin) *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-left{float:left}.um-right{float:right}.um-clear{clear:both}.um-center{text-align:center}.um-center .um-button{display:inline-block!important;width:auto!important;min-width:250px!important}.um-half{width:48%}.um-field-half{width:48%;float:left}.um-field-half.right{float:right}.um-field-tri{width:30%;float:left;margin-right:3%}.um img{box-shadow:none!important}.um-col{padding-bottom:20px}.um-col-alt{margin:15px 0 5px 0}.um-col-alt-s{padding-top:10px}.um-col-alt-b{padding-top:20px}.um-col-121{float:left;width:48%}.um-col-122{float:right;width:48%}.um-col-131{float:left;width:30%}.um-col-132{float:left;width:30%;margin:0 5%}.um-col-133{float:left;width:30%}.um-raty i{font-size:26px}.um-field-half .um-raty i{font-size:21px}.um-field-tri .um-raty i{font-size:21px}.um-button i{font-size:22px;width:22px;height:12px!important;display:inline-block;line-height:12px!important;vertical-align:middle!important;position:relative;top:-6px;margin-right:8px}.um-row-heading{padding:5px 0;font-size:16px}.um-row-heading i{font-size:24px;height:24px;line-height:24px;margin:0 12px 0 0;display:inline-block;width:30px;text-align:center}.um-row-heading i:before{vertical-align:middle!important}p.um-notice{width:auto;color:#fff;box-sizing:border-box;font-size:15px;padding:12px!important;margin:12px 0 0 0!important;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:relative}p.um-notice a{color:#fff;text-decoration:underline}p.um-notice i{position:absolute;right:14px;font-size:36px;cursor:pointer;top:7px;display:block;height:30px;line-height:30px}p.um-notice.success{background:#7acf58}p.um-notice.err{background:#c74a4a}p.um-notice.warning{background:#f9f9d1;color:#666;border:1px solid #efe4a2;padding:8px 15px!important}p.um-notice.warning a{color:#666;text-decoration:underline}.um-field-error{width:auto;max-width:100%;background:#c74a4a;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:20px!important;margin:12px 0 0 0}.um-field-error a{color:#fff!important;text-decoration:underline!important}.um-field-arrow{top:-17px;left:10px;position:absolute;z-index:1;color:#c74a4a;font-size:28px;line-height:1em!important}.um-error-block{width:auto;max-width:100%;background:#c74a4a;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:1em!important;margin:12px 0 0 0}.um-field-notice{width:auto;max-width:100%;background:#497bc7;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:20px!important;margin:5px 0 0 0}.um-field-notice a{color:#fff!important;text-decoration:underline!important}.um-field-notice .um-field-arrow{top:-17px;left:10px;position:absolute;z-index:1;color:#497bc7!important;font-size:28px;line-height:1em!important}.um-notice-block{width:auto;max-width:100%;background:#497bc7;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:1em!important;margin:12px 0 0 0}.um-tip{margin:0 0 0 8px;cursor:pointer;display:inline-block;position:relative;top:3px}.um-tip i{font-size:22px;height:22px;line-height:22px;display:block;position:relative}.um-tip-text{display:block;font-size:13px;line-height:15px;color:#999}.um-form button::-moz-focus-inner,.um-form input::-moz-focus-inner{border:0!important;padding:0!important}.um-field{position:relative;padding:15px 0 0 0}.um-field-b,.um-field-c{padding-top:0!important}.um-field-label{display:block;margin:0 0 8px 0}.um-field-label .um-field-label-icon{float:left;margin:0 8px 0 0;height:22px;line-height:18px;display:inline-block;width:24px;text-align:center}.um-field-label .um-field-label-icon i{font-size:22px;position:relative;top:1px}.um-field-label label{font-size:15px!important;line-height:22px!important;font-weight:600}.um-field-area{position:relative;word-wrap:break-word}.um-field-area-password{position:relative}.um-toggle-password{cursor:pointer;display:block;position:absolute;right:0;top:0;height:100%;width:40px;text-align:center;box-sizing:border-box;font-size:20px;line-height:2}.um-toggle-password i{transition:all .2s linear}.um-toggle-password:hover i{color:#44b0ec}.um-field-value p{margin:0 0 6px 0!important;padding:0}.um-field-block{color:#777;font-size:17px}.um-field-spacing{width:100%}.um-field-divider{width:100%;margin:0 0 12px 0;height:24px;position:relative}.um-field-divider-text{position:absolute;width:100%;text-align:center;bottom:-24px;left:0;font-size:16px;padding:10px 0}.um-field-divider-text span{background:#fff;color:#555;display:inline-block;padding:0 15px}.um-field-icon{position:absolute;cursor:default;text-align:center!important;top:2px;left:0;width:44px;font-size:22px;line-height:1.7em;z-index:1}.um-form input[type=number],.um-form input[type=password],.um-form input[type=search],.um-form input[type=tel],.um-form input[type=text],.um-form input[type=url]{padding:0 12px!important;width:100%;display:block!important;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;outline:0!important;cursor:text!important;font-size:15px!important;height:40px!important;box-sizing:border-box!important;box-shadow:none!important;margin:0!important;position:static}.um-form .um-field-area-password input[type=password]{padding-right:40px!important}.um-form .um-field-area-password input[type=password]::-ms-clear,.um-form .um-field-area-password input[type=password]::-ms-reveal{display:none}.um-form input[type=number]{width:auto;padding:0 0 0 5px!important;height:30px!important}.um-form input[type=number]:focus,.um-form input[type=password]:focus,.um-form input[type=search]:focus,.um-form input[type=tel]:focus,.um-form input[type=text]:focus,.um-form input[type=url]:focus,.um-form textarea:focus{box-shadow:none!important;outline:0!important}.um-form input[type=password].um-iconed,.um-form input[type=tel].um-iconed,.um-form input[type=text].um-iconed,.um-form input[type=url].um-iconed{padding-left:44px!important}.um-form input[type=password].um-error,.um-form input[type=tel].um-error,.um-form input[type=text].um-error,.um-form input[type=url].um-error{border-color:#c74a4a!important}.um-form textarea{width:100%;padding:8px 12px!important;display:block;font-size:15px!important;line-height:22px!important;background:#fff;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;box-sizing:border-box;min-height:80px!important;box-shadow:none;outline:0!important}.um-form .um-meta-text textarea{max-width:100%}.um-form .wp-editor-container{border:1px solid #ddd}.um-form .wp-editor-container textarea{background:#ddd!important;color:#222!important;border-radius:0}.um-field-c .um-field-checkbox{margin-bottom:14px;margin-top:0!important;position:relative}.um-field-checkbox:not(.um-field),.um-field-radio:not(.um-field){display:block;margin:8px 0;position:relative}.um-profile.um-editing .um-field-checkbox,.um-profile.um-editing .um-field-radio{cursor:pointer!important}.um-field-checkbox:hover i,.um-field-radio:hover i{color:#666}.um-field-checkbox input,.um-field-radio input{opacity:0!important;display:inline!important;width:0!important;float:left}.um-field-checkbox-state,.um-field-radio-state{position:absolute;top:0;left:1px;width:24px;height:24px}.um-field-checkbox-state i,.um-field-radio-state i{font-size:24px;line-height:24px;height:24px;color:#aaa;transition:all .2s linear}.um-field-checkbox-option,.um-field-radio-option{margin:0 0 0 36px;line-height:24px;color:#888!important;display:block}.um-field-group{margin-top:20px}.um-field-group-head{cursor:pointer;color:#fff;font-size:16px;line-height:22px;padding:10px 20px;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;border-top:1px solid transparent!important;border-bottom:2px solid rgba(0,0,0,.1)!important}.um-field-group-head i{font-size:20px;margin:0 8px 0 0}.um-field-group-head i:before{vertical-align:middle!important}.um-field-group-body{display:none;margin:15px 0 0 0;padding:15px 20px 5px 20px;background:#f9f9f9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:relative;box-sizing:border-box;width:100%}.um-field-group-body div.um-field{padding:0 0 15px 0}.um-field-group-cancel{font-size:18px;position:absolute;z-index:800;right:8px;top:8px;color:#ccc!important;text-decoration:none!important}.um-field-group-cancel:hover{color:#777!important}.um div.disabled,.um input[type=number]:disabled,.um input[type=submit]:disabled,.um input[type=text]:disabled,.um input[type=url]:disabled,.um-disabled{opacity:.6!important;cursor:no-drop!important}input[type=submit].um-button,input[type=submit].um-button:focus{vertical-align:middle!important;height:auto!important;font-size:15px;cursor:pointer!important;width:100%;box-shadow:none;text-shadow:none;font-family:inherit;outline:0!important;margin:0;opacity:1;-webkit-appearance:none}input[type=submit].um-button:hover{opacity:1}.um-button{font-size:15px;border:none!important;display:block;width:100%;line-height:1em!important;padding:16px 20px!important;text-decoration:none!important;text-align:center;text-transform:none!important;font-weight:400!important;overflow:hidden;position:relative;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;-webkit-box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);opacity:1}a.um-button{font-size:15px;border:none!important;display:block;width:100%;line-height:1em!important;padding:16px 20px!important;text-decoration:none!important;text-align:center;text-transform:none!important;font-weight:400!important;overflow:hidden;position:relative;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;-webkit-box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);opacity:1}a.um-button:hover{-webkit-box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08)}.um-button.um-btn-auto-width{width:auto;display:inline-block;padding:14px 20px!important;min-width:200px;max-width:450px}a.um-link-alt{line-height:22px;color:#888!important;display:block!important;text-decoration:none!important;font-weight:400;text-align:center;border-bottom:none!important}a.um-link-alt:hover{text-decoration:underline!important}.um-dropdown{position:absolute;height:auto;background:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;z-index:55;display:none;border:1px solid #e5e5e5;box-sizing:border-box;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1);box-shadow:0 0 1px rgba(0,0,0,.1)}.um-dropdown li,.um-dropdown ul{list-style-type:none!important;padding:0!important;margin:0!important}.um-dropdown ul{background:#fff;position:relative;z-index:16}.um-dropdown li a{display:block;padding:8px 12px;color:#666;font-size:14px;line-height:18px}.um-dropdown li:last-child a{border-top:1px solid #e5e5e5;padding:12px}.um-dropdown-b{position:relative}.um-dropdown-arr{position:absolute;font-size:24px;width:24px;height:24px;overflow:hidden;z-index:15;color:#eee}.um-dropdown-arr *{display:block!important;width:24px!important;height:24px!important;vertical-align:bottom!important;overflow:hidden!important;line-height:24px!important}div.um-photo{margin:20px auto 0 auto;text-align:center;box-sizing:border-box;max-width:100%}div.um-photo,div.um-photo a,div.um-photo img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.um-photo a{border:1px solid #e5e5e5;padding:5px;box-sizing:border-box;display:inline-block;box-shadow:0 1px 1px #eee;margin:0 auto;max-width:100%}div.um-photo img{max-height:300px;max-width:100%}span.um-req{margin:0 0 0 8px;font-size:14px;display:inline-block}small.um-max-filesize{display:block;color:#999;padding-top:5px}small.um-max-filesize span{font-size:12px}.um-form .um-field .um-field-area input.um-form-field.um-validate-not-matched,.um-form .um-field .um-field-area input.um-form-field.um-validate-not-matched:focus,.um-form .um-field .um-field-area input.um-form-field.um-validate-username-exists,.um-form .um-field .um-field-area input.um-form-field.um-validate-username-exists:focus{border-color:#db2929!important}.um-form .um-field .um-field-area input.um-searching-username{background-image:url(https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/img/loading.gif);background-position:right center;background-repeat:no-repeat;background-size:24px 24px}.um-search-area{position:relative;max-width:300px}.um .um-form.um-search-area .um-search-field{width:100%;margin:0;padding-left:25px!important}.rtl .um .um-form.um-search-area .um-search-field{padding-right:25px!important;padding-left:initial}.um-search-area .um-search-icon{position:absolute;height:100%;left:6px;top:0}.rtl .um-search-area .um-search-icon{right:6px;left:initial}.um-faicon-search:before{display:flex;align-items:center;justify-content:center;height:100%}.um-field .select2-container.select2-container--open,.um-search-filter .select2-container.select2-container--open{z-index:9999999}.um-field .select2.select2-container .select2-selection,.um-search-filter .select2.select2-container .select2-selection{display:block!important;height:40px;padding:0 0 0 12px!important;overflow:hidden!important;position:relative!important;white-space:nowrap!important;line-height:35px!important;color:#666!important;font-size:15px!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;background-clip:padding-box!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:#fff!important;border:1px solid #ddd!important}.rtl .um-field .select2.select2-container .select2-selection,.rtl .um-search-filter .select2.select2-container .select2-selection{padding:0 12px 0 0!important}.um-field .select2.select2-container .select2-selection .select2-selection__arrow,.um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow{display:inline-block!important;width:34px!important;height:100%!important;position:absolute;right:0;top:0;text-align:center;background:0 0!important;border:none!important}.rtl .um-field .select2.select2-container .select2-selection .select2-selection__arrow,.rtl .um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow{right:initial;left:0}.um-field .select2.select2-container .select2-selection .select2-selection__arrow:before,.um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow:before{content:"\f3d0"!important;font-size:28px!important;font-family:Ionicons!important;display:block;height:100%;line-height:40px;min-width:1em;text-align:center;color:#aaa}.um-field .select2.select2-container .select2-selection .select2-selection__arrow b[role=presentation],.um-search-filter .select2.select2-container .select2-selection .select2-selection__arrow b[role=presentation]{display:none}.um-field .select2-container.select2-container--open .select2-dropdown,.um-search-filter .select2-container.select2-container--open .select2-dropdown{border:1px solid #ddd!important;border-radius:0}.um-field .select2-container.select2-container--open .select2-dropdown .select2-results li,.um-search-filter .select2-container.select2-container--open .select2-dropdown .select2-results li{list-style:none;display:list-item;background:0 0;font-size:15px;margin:5px!important;color:#666!important;padding:3px 7px 4px!important;cursor:pointer;min-height:1em}.um-field .select2.select2-container .select2-selection.select2-selection--multiple,.um-search-filter .select2.select2-container .select2-selection.select2-selection--multiple{height:auto!important;line-height:.8!important;min-height:40px;padding-bottom:4px!important}.um-field .select2-container--default .select2-selection--single .select2-selection__rendered,.um-search-filter .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:37px;padding-left:0;padding-right:24px}.rtl .um-field .select2-container--default .select2-selection--single .select2-selection__rendered,.rtl .um-search-filter .select2-container--default .select2-selection--single .select2-selection__rendered{padding-left:24px;padding-right:0}.um-field .select2-container--default .select2-selection--multiple .select2-selection__rendered,.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered{line-height:37px;box-sizing:border-box;list-style:none;margin:0;padding-left:0;padding-right:30px;width:100%;font-size:13px}.rtl .um-field .select2-container--default .select2-selection--multiple .select2-selection__rendered,.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered{padding-left:30px;padding-right:0}.um-field .select2-dropdown .select2-results li.select2-results__option.select2-results__option--highlighted,.um-search-filter .select2-dropdown .select2-results li.select2-results__option.select2-results__option--highlighted{background:#f4f4f4;color:#666}.um-field .select2-dropdown .select2-results li.select2-results__option[aria-selected=true],.um-search-filter .select2-dropdown .select2-results li.select2-results__option[aria-selected=true]{background-color:#ddd}.um-field .select2-container--default .select2-selection--multiple .select2-selection__clear,.um-field .select2-container--default .select2-selection--single .select2-selection__clear,.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__clear,.um-search-filter .select2-container--default .select2-selection--single .select2-selection__clear{color:#aaa;font-size:28px;font-weight:400;line-height:34px;margin:0!important;right:0;text-align:center;width:1em}.rtl .um-field .select2-container--default .select2-selection--multiple .select2-selection__clear,.rtl .um-field .select2-container--default .select2-selection--single .select2-selection__clear,.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__clear,.rtl .um-search-filter .select2-container--default .select2-selection--single .select2-selection__clear{left:0;right:initial}.um-field .select2-container--default .select2-selection--multiple .select2-selection__clear,.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__clear{position:absolute}.um-field .select2-container--default .select2-selection--multiple .select2-selection__choice,.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__choice{margin:5px 5px 0 0;max-height:28px;padding:3px 3px 3px 5px}.rtl .um-field .select2-container--default .select2-selection--multiple .select2-selection__choice,.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__choice{margin:5px 0 0 5px;padding:3px 5px 3px 3px}.um-field .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline,.um-search-filter .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline{margin:5px 5px 0 0;padding:0}.rtl .um-field .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline,.rtl .um-search-filter .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline{margin:5px 0 0 5px}.um-field .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline>input,.um-search-filter .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline>input{border:none!important;padding:0!important;max-height:28px}.um-field .select2-container--default .select2-selection--multiple .select2-selection__rendered li,.um-search-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered li{overflow-x:hidden;text-overflow:ellipsis;max-width:100%;box-sizing:border-box;line-height:20px}.um-field-multiselect .um-field-area .um-field-icon,.um-field-select .um-field-area .um-field-icon{z-index:99999999}.um-field-select .um-field-area.um-field-area-has-icon .select2-selection__rendered{text-indent:20px}.um-field-multiselect .um-field-area.um-field-area-has-icon ul:first-child{margin-left:30px!important}.um-field-area .wp-switch-editor{float:none;height:auto}.um_request_name{display:none!important}
/*!
 * Cropper.js v1.6.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2023-09-17T03:44:17.565Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{backface-visibility:hidden;display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
.um-profile{box-sizing:border-box}.um-profile .um-cover-overlay{display:none}.um-profile.um-editing .um-cover.has-cover .um-cover-overlay{display:block}.um-profile.um-viewing .um-profile-photo-overlay{display:none}.um-profile img{display:block;overflow:hidden;border-radius:0;margin:0!important}.um-profile a,.um-profile a:hover{text-decoration:none!important}.um-profile .um-profile-body{padding-top:15px;padding-bottom:15px;max-width:600px;margin:auto}.um-profile.um-editing{padding-bottom:15px}.um-profile.um-viewing{padding-bottom:1px}.um-profile.um-viewing .um-field-label{display:block;margin:0 0 8px 0;border-bottom:solid 2px #eee;padding-bottom:4px}.um-cover{background-color:#eee;box-sizing:border-box;position:relative}.um-cover-add{color:#aaa;font-size:36px;width:100%;display:table}.um-cover-add i{font-size:36px}.um-cover-add span{display:table-cell;vertical-align:middle}.um-cover-e{text-align:center;box-sizing:border-box;overflow:hidden}.um-cover-e img{width:100%!important}.um-cover-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.5);text-align:center;box-sizing:border-box;padding:0 40px;color:#fff;text-shadow:0 1px #666;cursor:pointer!important;line-height:21px;font-size:16px;height:100%;width:100%}.um-cover-overlay:hover{background:rgba(0,0,0,.55)}.um-cover-overlay span.um-cover-overlay-s{display:table;height:100%;width:100%}.um-cover-overlay ins{display:table-cell;vertical-align:middle;height:100%;text-decoration:none!important;background:0 0!important;color:#fff!important;border-bottom:none!important}.um-cover-overlay i{font-size:46px;display:block;margin-bottom:6px}.um-header{position:relative;padding:0 0 25px 0;border-bottom:solid 2px #eee;min-height:85px;box-sizing:content-box!important}.um-profile-edit{position:absolute;top:15px;right:0;vertical-align:middle;font-size:30px;height:30px;line-height:30px;z-index:66;margin-right:10px}.um-profile-edit i{font-size:30px}.um-header.no-cover .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important}.um-header.no-cover .um-name{float:none!important;margin-right:0!important}.um-header.no-cover .um-profile-photo{float:none!important;margin:0 auto!important;text-align:center!important}.um-header.no-cover a.um-profile-photo-img{position:relative!important;top:auto!important;left:auto!important;float:none!important;display:inline-block!important;text-align:center!important}.um-header.no-cover .um-main-meta{padding:0}.um-profile .gravatar{position:static}.um-profile-photo{float:left;position:relative;width:200px;margin:0 0 0 30px;box-sizing:border-box}.um-profile-photo a.um-profile-photo-img{float:left;position:absolute;background:#fff;border-radius:100%;border:5px solid #fff;border-bottom:5px solid #fff!important;overflow:hidden;left:0}.um-profile-photo a.um-profile-photo-img img{width:100%;height:auto}.um-profile-photo-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.5);text-align:center;box-sizing:border-box;padding:0;color:#fff;text-shadow:0 1px #666;cursor:pointer!important;line-height:21px;font-size:16px;height:100%;width:100%}.um-profile-photo-overlay:hover{background:rgba(0,0,0,.55)}.um-profile-photo-overlay span.um-profile-photo-overlay-s{display:table;height:100%;width:100%}.um-profile-photo-overlay ins{display:table-cell;vertical-align:middle;height:100%;text-decoration:none!important;background:0 0!important;color:#fff!important;border-bottom:none!important}.um-profile-photo-overlay i{font-size:46px;display:block}.um-profile-meta{padding-right:30px;-ms-word-break:break-all;word-break:break-word;word-wrap:break-word}.um-main-meta{padding:10px 0 0 0}.um-name{float:left;font-size:24px;font-weight:700;margin-right:30px;line-height:1.7em}.um-name a{font-size:24px}.um-meta{font-size:15px}.um-meta span a{font-weight:400}.um-meta span:first-child{margin:0 5px 0 0}.um-meta span{margin:0 5px;font-size:14px;display:inline-block}.um-meta span i{font-size:16px;margin:0 5px 0 0}.um-meta-text{margin:6px 0 0 0;color:#666;line-height:1.4em;font-size:13px}.um-meta-text p{margin:0 0 6px 0!important;padding:0!important}.um-profile-status{display:none}.um-profile-status.awaiting_admin_review,.um-profile-status.inactive,.um-profile-status.rejected{display:inline-block;margin:6px 0 0 0;border-left:3px solid #c74a4a;padding-left:10px;font-size:14px;color:#777}.um-profile-note{display:none;text-align:center!important;padding-top:20px;color:#666}.um-profile-note i{display:inline-block;font-size:70px;height:70px;line-height:70px}.um-profile-note i.um-faicon-lock{position:relative;top:2px;display:inline-block;font-size:24px;height:auto;line-height:24px;margin-right:10px}.um-profile-note span{margin-top:10px;display:block;font-size:16px;color:#888}.um-profile-note a{border:none!important}.um-profile-note a:hover{text-decoration:underline!important}.um-profile-nav{padding:10px;background:#444;text-align:center}.um-profile-nav-item.active a,.um-profile-nav-item.active a:hover{color:#fff!important}.um-profile-nav-item.active a span.count{background:0 0;padding:4px 0;color:#fff}.um-profile-nav-item a{color:#fff!important;font-size:14px;font-weight:600;padding:6px 10px 6px 28px;display:block;float:left;border-radius:4px;margin-left:5px;position:relative;border-bottom:0!important}.um-profile-nav-item.without-icon a{padding-left:10px}.um-profile-nav-item.without-icon span.title{padding-left:0}.um-profile-nav-item.without-icon i{display:none}.um-profile-nav-item a:hover{background:#555}.um-profile-nav-item i{font-size:18px;height:18px;line-height:18px;position:absolute;display:block;top:8px;left:10px}.um-profile-nav-item span.title{padding-left:5px}.um-profile-nav-item span.count{font-size:12px;font-weight:300;background:#ddd;color:#666;border-radius:3px;padding:4px 8px;margin-left:3px}.um-profile-subnav{background:#eee;padding:15px;text-align:center}.um-profile-subnav a{display:inline-block;color:#555;font-size:15px;font-weight:600;margin:0 20px;border-bottom:none!important}.um-profile-subnav a:hover{color:#333}.um-profile-subnav span{display:inline-block;margin:0 0 0 8px;background:#ddd;padding:1px 8px;color:#aaa!important;border-radius:2px}.um-item{padding:20px 0;border-bottom:1px solid #eee;position:relative}.um-item-action{position:absolute;right:0;top:16px;width:20px;height:20px;font-size:20px;text-align:center}.um-item-action a{color:#ccc}.um-item-action a:hover{color:#999}.um-item-link{padding-right:40px}.um-item-link a{color:#333;font-size:16px;line-height:20px}.um-item-link a:hover{text-decoration:underline!important}.um-item-link i{font-size:24px;color:#666;margin-right:10px;position:relative;top:3px}.um-item-img{padding:10px 0 0 0}.um-item-img a{display:inline-block;padding:8px;border-radius:3px;border:1px solid #ddd}.um-item-img a:hover{border-color:#bbb}.um-item-img img{max-width:100%;border-radius:3px}.um-item-meta{color:#888}.um-item-meta span{font-size:13px;font-weight:400;font-style:italic}.um-item-meta span:not(:last-child):after{position:relative;padding:0 4px 0 7px;content:"•"}.um-item-meta a{font-weight:700;border-bottom:1px solid #e0e0e0}.um-item-meta a:hover{border-bottom-color:#bbb}.um-load-items{text-align:center;margin-top:12px;padding-top:30px}.um-load-items.loading{background:url(https://coralgablesclassof82.com/wp-content/plugins/ultimate-member/assets/img/loading-dots.gif) no-repeat top center}.um-load-items a{max-width:250px;display:inline-block;margin:0 auto}.um-tab-notifier{position:absolute;background:none repeat scroll 0 0 #c65151;width:18px;height:18px;border-radius:999px;line-height:18px;top:-3px;right:-7px;font-size:11px;font-weight:400}.um-tab-notifier.uimob800-show.uimob500-show.uimob340-show{top:2px;right:8px}.um-profile.um-viewing .um-field-checkbox,.um-profile.um-viewing .um-field-radio{cursor:default!important}
.um-account i{vertical-align:baseline!important}.um-account p.um-notice{margin:0 0 20px 0!important;padding:12px 15px!important}.um-account a:focus{outline:0!important}.um-account-side{float:left;width:30%;padding:0;box-sizing:border-box}.um-account-main{float:left;width:70%;padding:0 0 0 1.5em;box-sizing:border-box}.um-account-main a{border-bottom:none!important}.um-account-tab{display:none}.um-account-tab .um-field .um-field-label{display:flex;flex-direction:row;align-items:baseline;flex-wrap:nowrap;justify-content:flex-start}.um-account-main div.um-account-heading{display:flex;flex-wrap:nowrap;flex-direction:row;justify-content:flex-start;align-items:baseline;margin:0!important;font-size:18px;line-height:18px;font-weight:700;color:#555}div.uimob340 .um-account-main div.um-account-heading.uimob340-hide,div.uimob500 .um-account-main div.um-account-heading.uimob500-hide{display:none}.um-account-side .um-account-link{box-sizing:content-box}.um-account-main div.um-account-heading i{margin-right:10px;font-size:26px;position:relative;top:2px}.um-account-main p{margin:20px 0 0 0!important;padding:0!important}.um-account-main label{font-size:15px}.um-account-meta{text-align:center;margin-bottom:20px}.um-account-meta img{margin:0!important;position:static!important;float:none!important;display:inline-block}.um-account-meta.radius-1 img{-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px}.um-account-meta.radius-2 img{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.um-account-meta.radius-3 img{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-account-name{padding-top:12px}.um-account-name a{font-weight:700;color:#555;text-decoration:none!important;font-size:18px;line-height:1.4em}.um-account-profile-link a{font-size:13px;font-weight:400}.um-account-nav a{display:block;height:44px;line-height:44px;color:#666!important;text-decoration:none!important;position:relative;padding-left:40px;border-bottom:1px solid #eee!important;transition:all .2s linear;font-size:14px}.um-account-nav a.current{font-weight:700}.um-account-nav span.arr{position:absolute;right:0;top:1px;font-size:28px}.um-account-nav span.ico{position:absolute;left:0;top:0;font-size:21px;width:21px;text-align:center}.um-account-side li,.um-account-side ul{margin:0!important;padding:0!important;list-style-type:none!important}.um-account-side li{margin-bottom:1px!important;background:#eee}.um-account-side li a{display:block;padding:4px 0;font-size:14px;height:30px;line-height:20px;color:#999;position:relative}.um-account-side li a span.um-account-arrow{position:absolute;right:10px;top:6px;font-size:26px;opacity:.6}.um-account-side li a span.um-account-icon,.um-account-side li a.current span.um-account-icon,.um-account-side li a.current:hover span.um-account-icon{text-align:center;font-size:20px;width:20px;height:30px;border-right:1px solid #ccc;color:#444;float:left;padding:0 15px;font-weight:400!important;box-sizing:content-box}.um-account-side li a span.um-account-icon i{display:block;height:30px;line-height:30px}.um-account-side li a span.um-account-title{padding-left:20px;float:left;height:30px;line-height:30px;color:#555}.um-account-side li a:hover{color:#444;background:#ddd}.um-account-side li a.current,.um-account-side li a.current:hover{color:#444;font-weight:700;text-decoration:none!important}.um-field-export_data .um-field-error{display:none}.um-field-export_data .um-field-area-response{display:none;line-height:1.5;padding:10px 0}.um-request-button{display:inline-block;background-color:#3ba1da;border-radius:5px;color:#fff;margin:10px 0 0;padding:5px 10px;text-decoration:none}.um-request-button:hover{background-color:#44b0ec;color:#fff;text-decoration:none}
.um-login.um-logout{max-width:300px!important}.um-misc-with-img{position:relative;font-size:15px;border-bottom:3px solid #eee;text-align:center;margin-bottom:14px;padding-top:4px;padding-bottom:14px}.um-misc-img{text-align:center}.um-misc-img img{border-radius:999px;height:auto!important;display:inline-block!important}.um-misc-ul,.um-misc-ul li{font-size:14px}.um-googlemap,.um-vimeo,.um-youtube{position:relative;height:0;overflow:hidden}.um-youtube{padding-bottom:56.25%}.um-vimeo{padding-bottom:56.25%}.um-googlemap{padding-bottom:75%}.um-googlemap iframe,.um-vimeo iframe,.um-youtube iframe{position:absolute;top:0;left:0;width:100%!important;height:100%!important}.um-profile-connect.um-member-connect{padding:5px 0 10px 0}.um-profile-connect.um-member-connect a{text-align:center;width:36px;line-height:36px;height:36px;font-size:20px;border-radius:999px;color:#fff!important;opacity:.85;margin:0 1px;transition:.25s;display:inline-block}.um-profile-connect.um-member-connect a:hover{opacity:1}@-webkit-keyframes um-effect-pop{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}@keyframes um-effect-pop{50%{-webkit-transform:scale(1.2);transform:scale(1.2)}}.um-effect-pop{-webkit-animation-name:um-effect-pop;animation-name:um-effect-pop;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:1;animation-iteration-count:1}.um-locked-content{width:100%;box-sizing:border-box;border:2px dotted #cc3000;color:#333;background:#fff;font-size:14px;padding:20px;border-radius:4px;margin-bottom:20px}.um-locked-content a{border:none!important}
.um .um-cover-add:hover,.um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i,.um .um-field-radio.active:not(.um-field-radio-state-disabled) i,.um .um-item-meta a,.um .um-member-less a:hover,.um .um-member-more a:hover,.um .um-member-name a:hover,.um .um-members-pagi a:hover,.um .um-profile-subnav a.active,.um .um-tip:hover,.um-account-name a:hover,.um-account-nav a.current,.um-account-side li a.current span.um-account-icon,.um-account-side li a.current:hover span.um-account-icon,.um-dropdown li a:hover,i.um-active-color,span.um-active-color{color:#3ba1da}.picker__box,.picker__nav--next:hover,.picker__nav--prev:hover,.um .um-field-group-head,.um .um-members-pagi span.current,.um .um-members-pagi span.current:hover,.um .um-profile-nav-item.active a,.um .um-profile-nav-item.active a:hover,.um-modal-btn,.um-modal-btn.disabled,.um-modal-btn.disabled:hover,.um-modal-header,.upload,div.uimob800 .um-account-side li a.current,div.uimob800 .um-account-side li a.current:hover{background:#3ba1da}.picker--focused .picker__day--highlighted,.picker--focused .picker__list-item--highlighted,.picker--focused .picker__list-item--selected,.picker__day--highlighted:hover,.picker__day--infocus:hover,.picker__day--outfocus:hover,.picker__footer,.picker__header,.picker__list-item--highlighted:hover,.picker__list-item--selected,.picker__list-item--selected:hover,.picker__list-item:hover,.um .um-field-group-head:hover{background:#44b0ec}.um{margin-left:auto!important;margin-right:auto!important}.um input[type=submit]:disabled:hover{background:#3ba1da}.um a.um-button,.um a.um-button.um-disabled:active,.um a.um-button.um-disabled:focus,.um a.um-button.um-disabled:hover,.um input[type=submit].um-button,.um input[type=submit].um-button:focus{background:#3ba1da}.um a.um-link{color:#3ba1da}.um a.um-button:hover,.um input[type=submit].um-button:hover{background-color:#44b0ec}.um a.um-link-hvr:hover,.um a.um-link:hover{color:#44b0ec}.um .um-button{color:#fff}.um .um-button:before{color:#fff}.um .um-button.um-alt,.um input[type=submit].um-button.um-alt{background:#eee}.um .um-button.um-alt:hover,.um input[type=submit].um-button.um-alt:hover{background:#e5e5e5}.um .um-button.um-alt,.um input[type=submit].um-button.um-alt{color:#666}.um .um-button.um-alt:before,.um input[type=submit].um-button.um-alt:before{color:#666}.um .um-tip{color:#ccc}.um .um-field-label{color:#555}.um .um-row.um-customized-row .um-field-label{color:inherit}.select2-container .select2-choice,.select2-container-multi .select2-choices,.select2-drop,.select2-drop-active,.select2-drop.select2-drop-above,.um .um-form input[type=number],.um .um-form input[type=password],.um .um-form input[type=search],.um .um-form input[type=tel],.um .um-form input[type=text],.um .um-form input[type=url],.um .um-form textarea,.um .upload-progress{border:1px solid #ddd!important}.um .um-form .select2-container-multi .select2-choices .select2-search-field input[type=text]{border:none!important}.um .um-form .um-datepicker.picker__input.picker__input--active,.um .um-form .um-datepicker.picker__input.picker__input--target,.um .um-form input[type=number]:focus,.um .um-form input[type=password]:focus,.um .um-form input[type=search]:focus,.um .um-form input[type=tel]:focus,.um .um-form input[type=text]:focus,.um .um-form input[type=url]:focus,.um .um-form textarea:focus{border:1px solid #bbb!important}.select2-container .select2-choice,.select2-container-multi .select2-choices,.um .um-form input[type=number],.um .um-form input[type=password],.um .um-form input[type=search],.um .um-form input[type=tel],.um .um-form input[type=text],.um .um-form input[type=url],.um .um-form textarea{background-color:#fff}.um .um-form input[type=number]:focus,.um .um-form input[type=password]:focus,.um .um-form input[type=search]:focus,.um .um-form input[type=tel]:focus,.um .um-form input[type=text]:focus,.um .um-form input[type=url]:focus,.um .um-form textarea:focus{background-color:#fff}.um .um-form input[type=password],.um .um-form input[type=search],.um .um-form input[type=tel],.um .um-form input[type=text],.um .um-form input[type=url],.um .um-form textarea{color:#666}.um .um-form input:-webkit-autofill{-webkit-box-shadow:0 0 0 50px #fff inset;-webkit-text-fill-color:#666}.um .um-form input:-webkit-autofill:focus{-webkit-box-shadow:none,0 0 0 50px #fff inset;-webkit-text-fill-color:#666}.um .um-form ::-webkit-input-placeholder{color:#aaa;opacity:1!important}.um .um-form ::-moz-placeholder{color:#aaa;opacity:1!important}.um .um-form ::-moz-placeholder{color:#aaa;opacity:1!important}.um .um-form ::-ms-input-placeholder{color:#aaa;opacity:1!important}.select2-container-multi .select2-choices .select2-search-field input,.select2-default,.select2-default *{color:#aaa}.select2-container .select2-choice .select2-arrow:before,.select2-search-choice-close:before,.select2-search:before,.um .um-field-icon i{color:#aaa}.um span.um-req{color:#aaa}.um .um-profile-photo a.um-profile-photo-img,.um .um-profile-photo img,.um .um-profile-photo span.um-profile-photo-overlay{-moz-border-radius:999px!important;-webkit-border-radius:999px!important;border-radius:999px!important}.um-profile.um .um-profile-meta{color:#999}.um-profile.um .um-name a{color:#555}.um-profile.um .um-name a:hover{color:#444}.um-profile.um .um-profile-headericon a{color:#aaa}.um-profile.um .um-profile-edit-a.active,.um-profile.um .um-profile-headericon a:hover{color:#3ba1da}



























@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}body.wc-block-product-gallery-modal-open,body.wc-modal--open{overflow:hidden}.wc-block-grid__products .wc-block-grid__product-image{display:block;position:relative;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image a{border:0;box-shadow:none;outline:0;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image img{height:auto;max-width:100%;width:100%}.wc-block-grid__products .wc-block-grid__product-image img[hidden]{display:none}.wc-block-grid__products .wc-block-grid__product-image img[alt=""]{border:1px solid #f2f2f2}.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,.editor-styles-wrapper .wc-block-grid__product-title,.wc-block-grid__product-title{color:inherit;display:block;font-family:inherit;font-size:inherit;font-weight:700;line-height:1.2;padding:0}.wc-block-grid__product-price{display:block}.wc-block-grid__product-price .wc-block-grid__product-price__regular{margin-right:.5em}.wc-block-grid__product-add-to-cart.wp-block-button{white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{display:inline-flex;font-size:1em;justify-content:center;text-align:center;white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading{opacity:.25}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.added:after{content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading:after{animation:spin 2s linear infinite;content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.has-5-columns:not(.alignfull) .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-6-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-7-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-8-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-9-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after{content:"";margin:0}.wc-block-grid__product-rating,.wp-block-woocommerce-product-review-rating{display:block}.wc-block-grid__product-rating .star-rating,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars,.wc-block-grid__product-rating .wc-block-product-review-rating__stars,.wp-block-woocommerce-product-review-rating .star-rating,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars{font-family:WooCommerce;font-size:1em;font-weight:400;height:1.618em;line-height:1.618;margin:0 auto;overflow:hidden;position:relative;text-align:left;width:5.3em}.wc-block-grid__product-rating .star-rating:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars:before,.wp-block-woocommerce-product-review-rating .star-rating:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars:before{content:"SSSSS";left:0;opacity:.5;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid__product-rating .star-rating span,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span,.wp-block-woocommerce-product-review-rating .star-rating span,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span{left:0;overflow:hidden;padding-top:1.5em;position:absolute;right:0;top:0}.wc-block-grid__product-rating .star-rating span:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span:before,.wp-block-woocommerce-product-review-rating .star-rating span:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span:before{color:inherit;content:"SSSSS";left:0;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid .wc-block-grid__product-onsale,.wc-block-grid__product-image .wc-block-grid__product-onsale{background:#fff;border:1px solid #43454b;border-radius:4px;color:#43454b;display:inline-block;font-size:.875em;font-weight:600;left:auto;padding:.25em .75em;position:absolute;right:4px;text-align:center;text-transform:uppercase;top:4px;width:auto;z-index:9}.wc-block-grid__product .wc-block-grid__product-image,.wc-block-grid__product .wc-block-grid__product-link{display:inline-block;position:relative}.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image),.wc-block-grid__product .wc-block-grid__product-title{margin:0 0 12px}.wc-block-grid__product .wc-block-grid__product-add-to-cart,.wc-block-grid__product .wc-block-grid__product-onsale,.wc-block-grid__product .wc-block-grid__product-price,.wc-block-grid__product .wc-block-grid__product-rating{margin:0 auto 12px}.theme-twentysixteen .wc-block-grid .price ins{color:#77a464}.theme-twentynineteen .wc-block-grid__product{font-size:.88889em}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-components-product-title,.theme-twentynineteen .wc-block-grid__product-onsale,.theme-twentynineteen .wc-block-grid__product-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}.theme-twentynineteen .wc-block-grid__product-title:before{display:none}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-grid__product-onsale{line-height:1}.theme-twentynineteen .editor-styles-wrapper .wp-block-button .wp-block-button__link:not(.has-text-color){color:#fff}.theme-twentytwenty .wc-block-grid__product-link{color:#000}.theme-twentytwenty .wc-block-components-product-title,.theme-twentytwenty .wc-block-grid__product-title{color:#cd2653;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:1em}.theme-twentytwenty .wp-block-columns .wc-block-components-product-title{margin-top:0}.theme-twentytwenty .wc-block-components-product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-components-product-price__value,.theme-twentytwenty .wc-block-grid__product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-grid__product-price__value{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:.9em}.theme-twentytwenty .wc-block-components-product-price del,.theme-twentytwenty .wc-block-grid__product-price del{opacity:.7}.theme-twentytwenty .wc-block-components-product-price ins,.theme-twentytwenty .wc-block-grid__product-price ins{text-decoration:none}.theme-twentytwenty .star-rating,.theme-twentytwenty .wc-block-grid__product-rating{font-size:.7em}.theme-twentytwenty .star-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .star-rating .wc-block-grid__product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-grid__product-rating__stars{line-height:1}.theme-twentytwenty .wc-block-components-product-button>.wp-block-button__link,.theme-twentytwenty .wc-block-grid__product-add-to-cart>.wp-block-button__link{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif}.theme-twentytwenty .wc-block-components-product-sale-badge,.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{background:#cd2653;color:#fff;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-weight:700;letter-spacing:-.02em;line-height:1.2;text-transform:uppercase}.theme-twentytwenty .wc-block-grid__products .wc-block-components-product-sale-badge{position:static}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-image .wc-block-components-product-sale-badge{position:absolute}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale:not(.wc-block-components-product-sale-badge){position:absolute;right:4px;top:4px;z-index:1}.theme-twentytwenty .wc-block-active-filters__title,.theme-twentytwenty .wc-block-attribute-filter__title,.theme-twentytwenty .wc-block-price-filter__title,.theme-twentytwenty .wc-block-stock-filter__title{font-size:1em}.theme-twentytwenty .wc-block-active-filters .wc-block-active-filters__clear-all,.theme-twentytwenty .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{font-size:.75em}@media only screen and (min-width:768px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}@media only screen and (min-width:1168px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}.theme-twentytwentytwo .wc-block-grid__product-add-to-cart .added_to_cart{display:block;margin-top:12px}.theme-twentytwentytwo .wc-block-components-product-price ins,.theme-twentytwentytwo .wc-block-grid__product-price ins{text-decoration:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute!important;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#fff;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip-path:none;color:#2b2d2f;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.wp-block-group.woocommerce.product .up-sells.upsells.products{max-width:var(--wp--style--global--wide-size)}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.wc-block-components-notice-banner{align-content:flex-start;align-items:stretch;background-color:#fff;border:1px solid #2f2f2f;border-radius:4px;box-sizing:border-box;color:#2f2f2f;display:flex;font-size:.875em;font-weight:400;gap:12px;line-height:1.5;margin:16px 0;padding:16px!important}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content{align-self:center;flex-basis:100%;padding-right:16px;white-space:normal}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content:last-child{padding-right:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary{font-weight:600;margin:0 0 8px}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul{margin:0 0 0 24px;padding:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol li:after,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul li:after{clear:both;content:"";display:block}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward{appearance:none;background:transparent!important;border:0;color:#2f2f2f!important;float:right;margin:0 0 0 20px;opacity:.7;padding:0!important;text-decoration-line:underline;text-underline-position:under;transition:all .2s ease-in-out}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:active,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:focus,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover{opacity:1;text-decoration:none}.wc-block-components-notice-banner>svg{fill:#fff;background-color:#2f2f2f;border-radius:50%;flex-grow:0;flex-shrink:0;height:100%;padding:2px}.wc-block-components-notice-banner>.wc-block-components-button{background:transparent none!important;border:0!important;box-shadow:none!important;color:#2f2f2f!important;flex:0 0 16px;height:16px!important;margin:6px 0 0 auto!important;min-height:auto!important;min-width:0!important;opacity:.6;outline:none!important;padding:0!important;width:16px!important}.wc-block-components-notice-banner>.wc-block-components-button>svg{margin:0!important}.wc-block-components-notice-banner>.wc-block-components-button:active,.wc-block-components-notice-banner>.wc-block-components-button:focus,.wc-block-components-notice-banner>.wc-block-components-button:hover{opacity:1}.wc-block-components-notice-banner>.wc-block-components-button:focus{outline:2px solid currentColor!important;outline-offset:0}.wc-block-components-notice-banner.is-error{background-color:#fff0f0;border-color:#cc1818}.wc-block-components-notice-banner.is-error>svg{background-color:#cc1818;transform:rotate(180deg)}.wc-block-components-notice-banner.is-warning{background-color:#fffbf4;border-color:#f0b849}.wc-block-components-notice-banner.is-warning>svg{background-color:#f0b849;transform:rotate(180deg)}.wc-block-components-notice-banner.is-success{background-color:#f4fff7;border-color:#4ab866}.wc-block-components-notice-banner.is-success>svg{background-color:#4ab866}.wc-block-components-notice-banner.is-info{background-color:#f4f8ff;border-color:#007cba}.wc-block-components-notice-banner.is-info>svg{background-color:#007cba}.wc-block-components-notice-banner:focus{outline-width:0}.wc-block-components-notice-banner:focus-visible{outline-style:solid;outline-width:2px}.woocommerce.wc-block-store-notices.alignwide{max-width:var(--wp--style--global--wide-size)}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}body:has(.woocommerce-coming-soon-store-only) .woocommerce-breadcrumb{display:none}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.wp-site-blocks:has(>.wp-block-woocommerce-coming-soon){--wp--style--root--padding-top:0;--wp--style--root--padding-bottom:0}.woocommerce-coming-soon-default{--cover--color-background:var(--woocommerce-coming-soon-color);--wp--preset--color--background:var(--woocommerce-coming-soon-color);--responsive--aligndefault-width:1280px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;min-width:320px}.woocommerce-coming-soon-default h1.wp-block-heading.woocommerce-coming-soon-banner{text-wrap:balance}.woocommerce-coming-soon-default .wp-block-loginout a,.woocommerce-coming-soon-image-gallery .wp-block-loginout a,.woocommerce-coming-soon-minimal-left-image .wp-block-loginout a{text-decoration:none}.woocommerce-coming-soon-minimal-left-image{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.woocommerce-coming-soon-minimal-left-image__content .wp-block-columns-is-layout-flex{justify-content:center}.woocommerce-coming-soon-modern-black{--wp--preset--color--contrast:#fff}.woocommerce-coming-soon-split-right-image{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.woocommerce-coming-soon-split-right-image .woocommerce-split-right-image-content{width:100%}.woocommerce-coming-soon-split-right-image .woocommerce-split-right-image-cover{align-items:start}.woocommerce-coming-soon-split-right-image .is-size-fit-content{width:fit-content}.block-editor-block-preview__content-iframe .wp-block-woocommerce-coming-soon{aspect-ratio:1/1}