/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Admin UI
        - Global
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Safari 13 bug fix https://github.com/jgthms/bulma/issues/2626 */
select {
    text-rendering: auto !important;
}

.wrapper {
  padding-bottom: 56px;
}

/* Shopify new layout fix if applicable */
/*.wrapper {*/
  /*padding-bottom: 116px;*/
/*}*/

.content-wrapper {
  margin-left: 0;
}

.main-footer {
  margin-left: 0;
}

/* iOS Safari iframe fix begin */
@media (max-width: 550px) {
  .ht-config-wrapper + .main-footer {
    display: none;
  }
}
/* iOS Safari iframe fix end */

.in-app-notification {
  margin-top: 2rem;
}

.htusb-ui-review dl dd {
  line-height: 1.4;
  color: rgba(49, 55, 61, 0.85);
  margin: 1.0rem 0 0 0;
}

pre {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: .5rem 1.2rem;
  background: #F1F1F1;
  border: .1rem solid #c4cdd5;
  font-size: 0.75em;
  line-height: 1.2;
}

.divider-top {
  border-top: 1px dashed grey;
  padding-top: 2em;
}

/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Admin UI
        - Form element
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group > input {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group .append.append--icon {
  padding: .5rem 2rem;
  font-size: 0;
}

.input-group .append label {
  margin-bottom: 0;
  cursor: pointer;
}

.input-group .append input[type="checkbox"] {
  margin-right: 0;
}

.input-group .append.append--button {
  background: -webkit-linear-gradient(top, #6371c7, #5563c1);
  background: linear-gradient(180deg, #6371c7, #5563c1);
  color: #fff;
  -webkit-transition-property: background,border,box-shadow;
  transition-property: background,border,box-shadow;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: cubic-bezier(0.64, 0, 0.35, 1);
  transition-timing-function: cubic-bezier(0.64, 0, 0.35, 1);
  cursor: pointer;
}

.input-group .append.append--button:hover {
  background: -webkit-linear-gradient(top, #5c6ac4, #4959bd);
  background: linear-gradient(180deg, #5c6ac4, #4959bd);
  color: #fff;
}

section .card p.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  color: #dc3545;
}

input[type="number"].ng-invalid {
  border-color: #bf0711;
}

input[type="number"].ng-invalid-max ~ .invalid-feedback--max,
input[type="number"].ng-invalid-min ~ .invalid-feedback--min {
  display: block;
}

input[type="text"].input--display-only {
  cursor: default;
  background-color: #fff;
  border: none;
  color: #31373d;
  box-shadow: none;
  padding-left: 0;
}

.form-element--display-only {
  position: relative;
  padding: .5rem 1rem .5rem 0;
  background-color: #fff;
  color: #31373d;
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 7.5rem;
  vertical-align: baseline;
  height: auto;
  margin: 0;
  max-width: 100%;
  font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
  min-height: 3.4rem;
}


/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Admin UI
        - Components
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Tag */
.tag--shopify-plus {
  color: #d09d26;
}

/* Date and time picker
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.flatpickr-current-month {
  padding-top: 0;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #6371c7;
  border-color: #5563c1;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@supports (display: flex) {
  .button-group {
    margin: 0;
    display: flex;
    flex-flow: row wrap;
  }

  .button-group button {
    flex: 1 0 auto;
  }
}

button.button--inline {
  margin: 0 0.5em;
}


/* FontAwesome
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-products .fa {
  width: 20px;
  height: 20px;
}

.fa-spinner {
  -webkit-animation: rotate 1s infinite linear;
  -o-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
  transform-origin: center;
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fa-mobile-phone:before,
.fa-mobile:before,
.fa-globe:before {
  font-size: 20px;
  position: relative;
  top: 2px;
}

/* Uptown CSS overwritten
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h5 {
  margin-bottom: 1rem;
}

h6 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: initial;
}

.error, .danger {
  color: #bf0711;
}

.success {
  color: #50b83c;
  font-weight: 600;
}

section .card p.error {
  color: #bf0711;
}

section {
  margin-top: 2rem;
}

.row {
  margin-bottom: 2rem;
}

.error-msg {
  margin-bottom: 0;
}

label {
  margin-bottom: 4px;
}

label.label--inline {
  display: inline-block;
}

[class^="icon-"], [class*=" icon-"] {
  margin-left: 0.5em;
  vertical-align: super;
}

.alert dd img.inline-icon {
  max-width: 100%;
  width: 26px;
  vertical-align: middle;
  border: 1px solid lightgrey;
  position: relative;
  top: -2px;
}

.alert.notice {
  margin: 0;
}

.alert button.secondary.warning,
.htusb-ui-review button.secondary.warning {
  background: -webkit-linear-gradient(top, #ee6b50, #ec5b3e);
  background: linear-gradient(180deg, #ee6b50, #ec5b3e);
  border-color: #e83c19;
  box-shadow: inset 0 1px 0 0 #ee6f55, 0 1px 0 0 rgba(22, 29, 37, 0.05), 0 0 0 0 transparent;
  color: #fff;
  fill: #fff;
}

.alert button.secondary.warning:hover,
.alert button.secondary.warning:active,
.alert button.secondary.warning:focus,
.htusb-ui-review button.secondary.warning:hover,
.htusb-ui-review button.secondary.warning:active,
.htusb-ui-review button.secondary.warning:focus {
  background: -webkit-linear-gradient(top, #ed6347, #eb4f30);
  background: linear-gradient(180deg, #ed6347, #eb4f30);
  border-color: #e83c19;
  color: #fff !important;
  fill: #fff;
}

@media (min-width: 550px) {
  .column.one-third {
    width: 32%;
  }

  .column.three {
    width: 23.5%;
  }

  .one-third--full-width {
    width: 32%;
  }
}

@media (max-width: 550px) {
  .column, .columns {
    float: none;
  }

  section .card {
    margin-bottom: 1.5rem;
  }

  section + section {
    border-top: none;
    padding-top: 0;
  }
}

.form-control--radio {
  margin-top: 3rem;
}

h5 + .form-control--radio {
  margin-top: 0;
}

.form-control--radio label {
  margin-bottom: 10px;
  cursor: pointer;
}

.ht-config-targeting__option-details {
  padding-left: 3rem;
}

table th:hover {
  cursor: text;
}

.tag.tag--small {
  padding: 0 0.75rem;
  line-height: 1.75rem;
}

.divTableCell {
  vertical-align: middle;
}


/* Dashboard templates
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.dashboard article .card {
  border-top: .5rem solid #c4cdd5;
}

.templates ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 550px) {
  section article.templates {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .templates .columns {
    margin-left: 0;
  }
}

.templates__content {
  width: 50%;
  float: left;
  position: relative;
  z-index: 3;
}

.templates__images {
  width: 50%;
  float: right;
  position: relative;
}

.templates__img {
  width: 100%;
  display: block;
}

.templates__img--alt {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity ease-in-out 0.2s;
  opacity: 0;
}

.templates_template:hover .templates__img--alt {
  opacity: 1;
}

/* Color picker
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.color-picker {
  position: relative;
}

.color-picker__preview {
  background-color: transparent;
  border: .1rem solid #c4cdd5;
  border-radius: .3rem;
  width: 43px;
  height: 34px;
  margin-right: 1px;
}

.colorpicker.dropdown {
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: .3rem;
  box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
}

.colorpicker .dropdown-menu button {
  fill: #637381;
  color: #212b36;
  background: -webkit-linear-gradient(top, #fff, #f9fafb);
  background: linear-gradient(180deg, #fff, #f9fafb);
  border: 1px solid #c4cdd5;
  box-shadow: 0 1px 0 0 rgba(22, 29, 37, 0.05);
  margin-top: 0.5rem;
  line-height: 1;
}

/* Sticky top message
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.sticky-message {
  z-index: 3;
  position: fixed;
  width: 100%;
}

.sticky-message table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* iOS Safari iframe fix begin */
@media (max-width: 550px) {
  .ht-config {
    /*padding: 24px 15px 0;*/
    padding: 30px 15px 56px;
    display: block;
    /*overflow-y: auto;*/
    /*-webkit-overflow-scrolling: touch;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    background: #f4f6f8;
  }
}
/* iOS Safari iframe fix end */

.ht-config .alert {
  margin: 2.0rem 0;
}

.ht-config-header + section {
  border-top: none;
}

@supports (display: flex) {
  .context-bar {
    padding-top: 0;
    /*position: relative;*/
    /*z-index: 19;*/
    /*top: auto;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /* Shopify new layout fix if applicable */
    /*bottom: 53px; !* Shopify seems test a new layout of admin which inserting a new top block outside of the iframe with a height of 53px - 2018-10-18 *!*/
    /*left: 0;*/
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 5.6rem;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
    will-change: opacity, box-shadow;
    transition: opacity 0.2s;
    opacity: 1;
  }

  .context-bar__contents {
    box-sizing: content-box;
    max-width: 103.2rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 1px;
  }

  .context-bar__message {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.4rem;
    color: #637381;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 1.6rem 0 0;
  }
}

/* Breadcrumbs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.breadcrumbs {
  margin: 1rem 0;
  color: #798c9c;
  overflow: hidden;
  display: block;
  white-space: nowrap;
}

.breadcrumb {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  text-transform: initial;
  letter-spacing: initial;
  color: #637381;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  will-change: background;
  transition: background 200ms cubic-bezier(0.64, 0, 0.35, 1);
  padding: 0.4rem 0.4rem 0.4rem 0;
}

.breadcrumb:hover {
  color: #212b35;
}

.breadcrumb .fa {
  margin-right: 5px;
}

/* ON OFF switch
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.onoffswitch {
  position: relative;
  width: 80px;
  float: right;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input.onoffswitch-checkbox {
  display: none;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #999999;
  border-radius: 20px;
  margin-bottom: 0;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #E3F1DF;
  color: #212B35;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #EEEEEE;
  color: #999999;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 46px;
  border: 1px solid #999999;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0;
}


/* Feature lock
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.feature-lock .onoffswitch-label {
  border: .1rem solid #3f4eae;
}

.feature-lock .onoffswitch-inner::before,
.feature-lock .onoffswitch-inner::after {
  background-color: #DFE1F1;
  color: #5563c1;
  fill: #5563c1;
}

.feature-lock .onoffswitch-switch {
  background: none;
  border: none;
}

.feature-lock .onoffswitch-switch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  min-width: 1.6rem;
  min-height: 1.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M3 9h14v10H3V9z'/%3E%3Cpath fill='rgb(145,158,171)' d='M17 8c.553 0 1 .447 1 1v10c0 .553-.447 1-1 1H3c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1h1V6c0-3.31 2.69-6 6-6s6 2.69 6 6v2h1zM4 18h12v-8H4v8zM6 6v2h8V6c0-2.206-1.794-4-4-4S6 3.794 6 6zm4 10c.553 0 1-.447 1-1v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 .553.447 1 1 1z'/%3E%3C/svg%3E");
}

.feature-lock .icon-locked {
  margin-left: 1rem;
}

.feature-lock .upgrade-with-icon {
  margin-left: 1rem;
  font-size: 1.4rem;
  vertical-align: middle;
}

/* Sticky sidebar
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.sidebar {
  will-change: min-height;
}

.sidebar__inner {
  transform: translate(0, 0); /* For browsers don't support translate3d. */
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

@media (max-width: 550px) {
  .container-sticky-sidebar--prod,
  .container-sticky-sidebar--coll,
  .container-sticky-sidebar--cart {
    height: inherit !important;
  }

  .inner-container-sticky-sidebar--prod,
  .inner-container-sticky-sidebar--coll,
  .inner-container-sticky-sidebar--cart {
    position: relative !important;
    transform: translate3d(0px, 0px, 0px) !important;
    top: 0 !important;
    left: 0 !important;
  }
}

/* Selected products
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.selected-products__results {
  width: 100%;
  max-height: 275px;
  overflow: scroll;
}

.selected-products__results table {
  width: calc(100% - 1px);
}

.selected-products__image-cell {
  width: 55px;
}

.selected-products__image {
  min-height: 30px;
  vertical-align: middle;
  border: 1px solid #d3dbe2;
}

.selected-products__edit {
  width: 60px;
  position: relative;
}

.selected-products__edit-button {
  padding: 10px 0 10px 30px;
  position: absolute;
  right: 15px;
  top: 2px;
}

.selected-products__edit-button .icon {
  position: absolute;
  right: 45px;
  top: 50%;
}

.selected-products__remove {
  padding: 10px 0 10px 10px;
}

/* Time picker and dat picker
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.ui-timepicker-wrapper .ui-timepicker-list li.ui-timepicker-selected {
  background: -webkit-linear-gradient(top, #6371c7, #5563c1);
  background: linear-gradient(180deg, #6371c7, #5563c1);
  color: white;
}

.ui-timepicker-wrapper .ui-timepicker-list li:hover, .ui-timepicker-list .ui-timepicker-selected:hover {
  background: #D3D8F8;
  color: #000;
}


/* Chosen multi selector
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.chosen-container-multi .chosen-choices li.search-choice{
  padding: 8px 28px 8px 12px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 9px;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #D3D8F8;
  background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#D3D8F8),color-stop(90%,#D3D8F8));
  background-image: -webkit-linear-gradient(#D3D8F8 20%,#D3D8F8 90%);
  background-image: -moz-linear-gradient(#D3D8F8 20%,#D3D8F8 90%);
  background-image: -o-linear-gradient(#D3D8F8 20%,#D3D8F8 90%);
  background-image: linear-gradient(#D3D8F8 20%,#D3D8F8 90%);
  color: #1a1919;
}

.chosen-container .chosen-results li em {
  font-weight: 600;
}


/* Upload
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.badge-upload {
  position: relative;
}

.badge__upload {
  position: relative;
  z-index: 3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.2rem 0;
  width: 100%;
  display: block;
  color: #40444f;
  border: .2rem dashed #616778;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: color 0.2s ease-out, border-color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, border-color 0.2s ease-out;
  -o-transition: color 0.2s ease-out, border-color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out, border-color 0.2s ease-out;
  transition: color 0.2s ease-out, border-color 0.2s ease-out;
}

.badge__upload:hover {
  color: #616778;
  border-color: #9a9fad;
}

.badge__upload.disabled {
  opacity: 0.1;
}

.badge__upload i.fa {
  margin: 1rem 0;
  display: block;
  font-size: 3rem;
  text-align: center;
}

.badge__upload .badge__upload__notes {
  display: block;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 0;
}

.badge__upload input[type="file"] {
  position: absolute;
  left: -100rem;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.badge__upload__notes--remove {
  font-size: 1.75rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.badge__upload__notes--remove .icon {
  position: absolute;
  left: -25px;
  top: 50%;
}


/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Admin UI
        - Animation
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* fade in bottom*/
.fadein-bottom.ng-hide {
  opacity: 0;
  transform: translateY(50%);
}

.fadein-bottom.ng-enter {
  /*transition: 0.8s ease-in-out all;*/
  transition: opacity ease-in-out 0.8s, transform ease-in-out 0.8s;
  opacity: 0;
  transform: translateY(50%);
}

.fadein-bottom.ng-enter.ng-enter-active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-bottom.ng-leave {
  /*transition: 0.3s ease-in-out all;*/
  transition: opacity ease-in-out 0.5s, transform ease-in-out 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.fadein-bottom.ng-leave.ng-leave-active {
  opacity: 0;
  transform: translateY(50%);
}

/* fade in top*/
.fadein-top.ng-hide {
  opacity: 0;
  transform: translateY(-50%);
}

.fadein-top.ng-enter {
  transition: opacity ease-in-out 0.8s, transform ease-in-out 0.8s;
  opacity: 0;
  transform: translateY(-50%);
}

.fadein-top.ng-enter.ng-enter-active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-top.ng-leave {
  transition: opacity ease-in-out 0.3s, transform ease-in-out 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.fadein-top.ng-leave.ng-leave-active {
  opacity: 0;
  transform: translateY(-50%);
}

/* fade in */
.fadein.ng-hide {
  opacity: 0;
}

.fadein.ng-enter {
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.fadein-init .fade-element-in.ng-enter {
  opacity: 1;
}

.fadein.ng-enter.ng-enter-active {
  opacity: 1;
}

.fadein.ng-leave {
  transition: 0.3s ease-in-out all;
  opacity: 1;
}

.fadein.ng-leave.ng-leave-active {
  opacity: 0;
}

.htusb-animate, .htusb-animate * {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.highlight-element {
  -webkit-animation-duration:4s;
  animation-duration:4s;;
  -webkit-animation-fill-mode:both;
  animation-fill-mode:both;;
  -webkit-animation-delay:1s;
  animation-delay:1s;
  -webkit-animation-iteration-count:2;
  animation-iteration-count:2;
  -webkit-animation-name: emitting;
  animation-name: emitting;
  -webkit-transform-origin:center bottom;
  transform-origin:center bottom
}

@-webkit-keyframes emitting {
  13% {box-shadow:0 0 5px 5px #5c6ac4}
  100%,25%{box-shadow:0 0 0 0 #5c6ac4}
}

@keyframes emitting {
  13% {box-shadow:0 0 5px 5px #5c6ac4}
  100%,25% {box-shadow:0 0 0 0 #5c6ac4}
}

/* Sweet Alert
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.sweet-alert button.cancel {
  fill: #637381;
  color: #212b36;
  background: -webkit-linear-gradient(top, #fff, #f9fafb);
  background: linear-gradient(180deg, #fff, #f9fafb);
  border: 1px solid #c4cdd5;
  box-shadow: 0 1px 0 0 rgba(22, 29, 37, 0.05);
}

.sweet-alert.usb-swal--review .confirm {
  background: #ec5b3e;
}

/* Range Slider
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.range-slider__extra-controls {
  margin-top: 1rem;
  margin-bottom: 0;
}

.range-slider__extra-controls:after {
  content: '';
  display: table;
  clear: both;
}

.range-slider__error-msg {
  opacity: 0;
  margin-bottom: 0;
}

/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Admin UI
        - Config page
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.pf {
  vertical-align: middle;
  font-size: 35px;
}

.scrolling-container {
  padding: 1.5rem 1rem;
  z-index: auto;
  position: relative;
  background: transparent;
  border: .1rem solid #c4cdd5;
  border-radius: .3rem;
  color: #31373d;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 7.5rem;
  vertical-align: baseline;
  height: auto;
  margin: 0;
  max-width: 100%;
  font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
  box-shadow: 0 0 0 1px transparent, 0 1px 0 0 rgba(22, 29, 37, 0.05);
  box-sizing: border-box;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.64, 0, 0.35, 1);
  transition: box-shadow 0.2s cubic-bezier(0.64, 0, 0.35, 1);
}

.scrolling-container--badges {
  height: 400px;
  overflow: auto;
}

.badge {
  text-align: center;
  width: 25%;
  float: left;
  margin: 12px 0;
}

@media screen and (max-width: 768px) {
  .badge {
    width: 33.333333%;
  }
}

input.badge-input {
  margin: 1rem 0 0 0
}

.badge-icon {
  display: block;
}

.badges-order__item {
  padding: 0.4rem 0;
  cursor: move;
  cursor: -webkit-grabbing;
}

.prod-advanced-badges,
.checkout-advanced-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.prod-advanced-badges .js-sortable-advanced-badges-ignore-elements,
.checkout-advanced-badges .js-sortable-advanced-badges-ignore-elements {
  cursor: default;
}

.prod-advanced-badges__edit-button,
.checkout-advanced-badges__edit-button {
  padding: 10px 0 10px 30px;
  display: block;
  text-align: center;
}

.prod-advanced-badges__edit-button .icon,
.checkout-advanced-badges__edit-button .icon {
  right: 15px;
}

.prod-advanced-badges .badge.prod-advanced-badges-disable,
.checkout-advanced-badges .badge.checkout-advanced-badges-disable {
  opacity: 0.2;
}

@supports (display: grid) {
  .prod-advanced-badges {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1rem;
  }

  .checkout-advanced-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
  }

  .prod-advanced-badges .badge,
  .checkout-advanced-badges .badge {
    margin: 0;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 20px;
    grid-gap: 1rem;
    align-items: center;
    align-self: stretch;
    justify-items: center;
    cursor: move;
    cursor: -webkit-grab;
  }

  .prod-advanced-badges .badge.sortable-chosen,
  .checkout-advanced-badges .badge.sortable-chosen {
    cursor: -webkit-grabbing;
  }

  .prod-advanced-badges input.badge-input,
  .checkout-advanced-badges input.badge-input {
    margin: 0;
    justify-self: center;
  }
}

.badge-image {
  width: auto;
  max-width: 100%;
  max-height: 120px;
  display: block;
  -webkit-transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -moz-transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -ms-transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -o-transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.badge-image.uploading {
  opacity: 0.2;
}

.prod-advanced-badges .badge:hover .badge-image,
.checkout-advanced-badges .badge:hover .badge-image {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.prod-advanced-badges .badge.prod-advanced-badges-disable:hover .badge-image,
.checkout-advanced-badges .badge.checkout-advanced-badges-disable:hover .badge-image {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.prod-advanced-badges .badge.prod-advanced-badges-on-edit:hover .badge-image,
.checkout-advanced-badges .badge.checkout-advanced-badges-on-edit:hover .badge-image {
  cursor: default;
}

.badge-remove {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
}

.badge-remove .icon-trash {
  position: absolute;
  right: 74px;
  top: 50%;
}

.section--v-spacious {
  margin-top: 3rem;
}

.section--v-spacious-lvl2 {
  margin-top: 5rem;
}

.ht-config-targeting h5 i {
  margin-right: 6px;
}


/* Preview - General
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.htusb-ui-fake-line {
  background-color: #F1F1F2;
  height: 12px;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0;
}

.htusb-ui-fake-select {
  width: 100%;
}

.htusb-ui-fake-select select:disabled {
  background-color: #F1F1F2;
  border-radius: 3px;
  border: 1px solid #BBBDBF;
  color: #BBBDBF;
  font-weight: 600;
  cursor: auto;
}

.htusb-ui-fake-input input:disabled {
  background-color: #F1F1F2;
  border-radius: 3px;
  border: 1px solid #BBBDBF;
  color: #BBBDBF;
  font-weight: bold;
  cursor: auto;
}

.htusb-ui-fake-form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.htusb-ui-fake-form-inline .htusb-ui-fake-input,
.htusb-ui-fake-form-inline .htusb-ui-fake-select,
.htusb-ui-fake-form-inline .htusb-ui-fake-line {
  margin: 0 1rem;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}

.htusb-ui-fake-form-inline .htusb-ui-fake-input:first-child,
.htusb-ui-fake-form-inline .htusb-ui-fake-select:first-child,
.htusb-ui-fake-form-inline .htusb-ui-fake-line:first-child {
  margin-left: 0;
}

.htusb-ui-fake-form-inline .htusb-ui-fake-input:last-child,
.htusb-ui-fake-form-inline .htusb-ui-fake-select:last-child,
.htusb-ui-fake-form-inline .htusb-ui-fake-line:last-child {
  margin-right: 0;
}

.htusb-ui-fake-button {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  background-color: #F1F1F2;
  border-radius: 3px;
  border: 1px solid #BBBDBF;
  color: #BBBDBF;
  width: 100%;
  padding: 6px 0;
  text-align: center;
  font-weight: bold;
}

.htusb-ui-fake-image {
  width: 100%;
  display: block;
}

.htusb-ui-fake-price {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  color: #BBBDBF;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
}

.htusb-ui-fake-price span {
  text-decoration: line-through;
  color: #D7D9DA;
}

.htusb-ui-fake-product-grid {
  position: relative;
}

.htusb-ui-fake-breadcrumbs {
  display: flex;
  align-items: center;
}

.htusb-ui-fake-arrow {
  color: #D7D9DA;
  font-size: 20px;
  line-height: 1;
  margin: 0 0.25em;
}

.htusb-ui-cart-preview__row {
  margin-bottom: 20px;
}

.htusb-ui-cart-preview__row::after {
  content: '';
  display: table;
  clear: both;
}

.htusb-ui-cart-preview__product-image {
  width: 25%;
  float: left;
}

.htusb-ui-cart-preview__product-details {
  width: 70%;
  float: right;
}

.htusb-ui-cart-preview__product-details__top::after {
  content: '';
  display: table;
  clear: both;
}

.htusb-ui-cart-preview__product-name {
  width: 70%;
  float: left;
}

.htusb-ui-cart-preview__product-price {
  width: 20%;
  float: right;
}

.htusb-ui-cart-preview__product-price .htusb-ui-fake-price {
  font-size: 18px;
}

.htusb-ui-cart-preview__product-name .htusb-ui-fake-line {
  margin-top: 0;
}

/* Overall Customization
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button-list button {
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.button-list button.button-selected,
.button-list button.button-selected:hover {
  background: -webkit-linear-gradient(top, #6371c7, #5563c1);
  background: linear-gradient(180deg, #6371c7, #5563c1);
  border: .1rem solid #3f4eae;
  color: #fff;
  fill: #fff;
}

/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Dashboard
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* USB list
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.htusb-ui__boost-table__name,
.htusb-ui__boost-table__products,
.htusb-ui__boost-table__action {
  width: 33.333333%;
}

tbody .htusb-ui__boost-table__products {
  font-weight: 400;
  line-height: 1.5;
}

.htusb-ui__boost-table__products img {
  width: 50px;
  max-width: 50px;
  font-size: 0;
  margin: 0 5px 5px 0;
}

.htusb-ui__boost-table__products .highlighted {
  font-weight: 600;
}

.htusb-ui__boost-table__delete {
  line-height: 36px;
  float: right;
}

@media screen and (max-width: 768px) {
  table tbody tr {
    border: .1rem solid #d3dbe2;
    background: #fafbfc;
    margin-bottom: 1.5rem;
    border-radius: .3rem;
  }

  .htusb-ui__boost-table thead {
    display: none;
  }

  .htusb-ui__boost-table tbody tr {
    position: relative;
    display: block;
    padding-top: 10px;
  }

  .htusb-ui__boost-table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .htusb-ui__boost-table__action button {
    display: block;
    margin-bottom: 12px;
    width: 100%;
  }

  .htusb-ui__boost-table__delete {
    float: none;
    display: block;
    text-align: center;
  }
}

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */

header {
  background-color: #43467F;
  color: white;
}

@media (max-width: 550px) {
  header {
    min-height: 16rem;
    padding: 2rem;
  }
}

header h1 {
  font-weight: 400;
}

@media (max-width: 550px) {
  header h1 {
    font-size: 2rem;
  }
}

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

.header-note h2 {
  margin: 2rem 0;
}

/* Apps referral
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 550px) {
  .column.htusb-ui-referral-app {
    margin: 4px;
    width: calc(25% - 8px);
  }
}

.htusb-ui-referral-app img {
  width: 100%;
  display: block;
}

/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    Pricing
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pricing-content {
  width: 100%;
}

@media only screen and (max-width: 769px) {
  .htusb-ui-long-right-button {
    position: static !important;
  }
}

.hextom-plans .divTableCell h3 {
  font-size: 2rem;
}

.hextom-plans h4 {
  line-height: 1.5;
}

/*––––––––––––––––––––––––––––––––––––––––––––––––––
****************************************************
    FAQ
****************************************************
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.faq-header {
  padding-top: 2rem;
  text-align: left;
}

.faq-section {
  display: block;
}

.faq-section img {
  max-width: 100%;
  border: 1px solid lightgrey;
}

.faq__list {
  margin-bottom: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
  border: 1px solid #cccccc;
  border-radius: 4px;
  flex-wrap: wrap;
}

.faq__list:hover {
  box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
}

.faq__trigger {
  margin: 0;
  padding: 24px 72px 24px 24px;
  width: 100%;
  position: relative;
  display: block;
  flex: auto;
  font-size: 2rem;
  line-height: 2.4rem;
  background-color: white;
  color: #1a1919;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}

.faq__trigger:hover,
.faq__trigger:focus {
  color: #6371c7;
}

.faq__trigger::before, .faq__trigger::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  height: 2px;
  width: 13px;
  background: #6371c7;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.faq__trigger::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 32px;
}

.faq__trigger::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faq__content {
  padding: 24px 24px 30px;
  display: none;
  background-color: white;
  flex: auto;
}

.faq__content p,
.faq__content ol li {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
}

.faq__content ol {
  margin-bottom: 1.5rem;
}

.faq__content h3 {
  font-weight: 600;
}

.faq__content__group {
  margin-bottom: 6rem;
}

.faq__content__group:last-child {
  margin-bottom: 0;
}

.faq-visible .faq__trigger::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faq-visible .faq__trigger::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}