.tpb-message_not-available {
  display: none;
  color: #6370a7;
  margin-top: 10px;
  font-weight: 300;
  background: antiquewhite;
  padding: 2px 5px;
  font-size: 13px; }
  .tpb-message_not-available .dismiss {
    display: flex;
    align-items: center; }
    .tpb-message_not-available .dismiss svg {
      width: 14px;
      height: 14px;
      color: #6370a7;
      cursor: pointer; }

/* Slim Select */
.ss-main {
  position: relative;
  display: inline-block;
  user-select: none;
  color: #666;
  width: 100%; }

.ss-main .ss-single-selected {
  display: flex;
  cursor: pointer;
  width: 100%;
  height: 30px;
  padding: 6px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #fff;
  outline: 0;
  box-sizing: border-box;
  transition: background-color .2s; }

.ss-main .ss-single-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed; }

.ss-main .ss-single-selected.ss-open-above {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.ss-main .ss-single-selected.ss-open-below {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.ss-main .ss-single-selected .placeholder {
  flex: 1 1 100%;
  text-align: left;
  width: calc(100% - 30px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ss-main .ss-single-selected .placeholder, .ss-main .ss-single-selected .placeholder * {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.ss-main .ss-single-selected .placeholder * {
  width: auto; }

.ss-main .ss-single-selected .placeholder .ss-disabled {
  color: #dedede; }

.ss-main .ss-single-selected .ss-deselect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px;
  font-weight: 700; }

.ss-main .ss-single-selected .ss-deselect.ss-hide {
  display: none; }

.ss-main .ss-single-selected .ss-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px; }

.ss-main .ss-single-selected .ss-arrow span {
  border: solid #666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform .2s,margin .2s; }

.ss-main .ss-single-selected .ss-arrow span.arrow-up {
  transform: rotate(-135deg);
  margin: 3px 0 0; }

.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  transform: rotate(45deg);
  margin: -3px 0 0; }

.ss-main .ss-multi-selected {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  min-height: 30px;
  width: 100%;
  padding: 0 0 0 3px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #fff;
  outline: 0;
  box-sizing: border-box;
  transition: background-color .2s; }

.ss-main .ss-multi-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed; }

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
  color: #666; }

.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed; }

.ss-main .ss-multi-selected.ss-open-above {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.ss-main .ss-multi-selected.ss-open-below {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.ss-main .ss-multi-selected .ss-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1 1 100%;
  width: calc(100% - 30px); }

.ss-main .ss-multi-selected .ss-values .ss-disabled {
  display: flex;
  padding: 4px 5px;
  margin: 2px 0;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: #dedede;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0; }

  to {
    transform: scale(1);
    opacity: 1; } }

@keyframes scaleOut {
  0% {
    transform: scale(1);
    opacity: 1; }

  to {
    transform: scale(0);
    opacity: 0; } }

.ss-main .ss-multi-selected .ss-values .ss-value {
  display: flex;
  user-select: none;
  align-items: center;
  font-size: 12px;
  padding: 3px 5px;
  margin: 3px 5px 3px 0;
  color: #fff;
  background-color: #5897fb;
  border-radius: 4px;
  animation-name: scaleIn;
  animation-duration: .2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both; }

.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
  animation-name: scaleOut;
  animation-duration: .2s;
  animation-timing-function: ease-out; }

.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
  margin: 0 0 0 5px;
  cursor: pointer; }

.ss-main .ss-multi-selected .ss-add {
  display: flex;
  flex: 0 1 3px;
  margin: 9px 12px 0 5px; }

.ss-main .ss-multi-selected .ss-add .ss-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666;
  position: relative;
  height: 10px;
  width: 2px;
  transition: transform .2s; }

.ss-main .ss-multi-selected .ss-add .ss-plus:after {
  background: #666;
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  left: -4px;
  top: 4px; }

.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
  transform: rotate(45deg); }

.ss-main .ss-content {
  position: absolute;
  width: 100%;
  margin: -1px 0 0;
  box-sizing: border-box;
  border: 1px solid #dcdee2;
  z-index: 1010;
  background-color: #fff;
  transform-origin: center top;
  transition: transform .2s,opacity .2s;
  opacity: 0;
  transform: scaleY(0); }

.ss-main .ss-content.ss-open {
  display: block;
  opacity: 1;
  transform: scaleY(1); }

.ss-main .ss-content .ss-search {
  display: flex;
  flex-direction: row;
  padding: 8px 8px 6px; }

.ss-main .ss-content .ss-search.ss-hide, .ss-main .ss-content .ss-search.ss-hide input {
  height: 0;
  opacity: 0;
  padding: 0;
  margin: 0; }

.ss-main .ss-content .ss-search input {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 30px;
  padding: 6px 8px;
  margin: 0;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #fff;
  outline: 0;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: textfield; }

.ss-main .ss-content .ss-search input::placeholder {
  color: #8a8a8a;
  vertical-align: middle; }

.ss-main .ss-content .ss-search input:focus {
  box-shadow: 0 0 5px #5897fb; }

.ss-main .ss-content .ss-search .ss-addable {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  flex: 0 0 30px;
  height: 30px;
  margin: 0 0 0 8px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  box-sizing: border-box; }

.ss-main .ss-content .ss-addable {
  padding-top: 0; }

.ss-main .ss-content .ss-list {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left; }

.ss-main .ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: 6px 10px;
  font-weight: 700; }

.ss-main .ss-content .ss-list .ss-optgroup .ss-option {
  padding: 6px 6px 6px 25px; }

.ss-main .ss-content .ss-list .ss-optgroup-label-selectable {
  cursor: pointer; }

.ss-main .ss-content .ss-list .ss-optgroup-label-selectable:hover {
  color: #fff;
  background-color: #5897fb; }

.ss-main .ss-content .ss-list .ss-option {
  padding: 6px 10px;
  cursor: pointer;
  user-select: none; }

.ss-main .ss-content .ss-list .ss-option * {
  display: inline-block; }

.ss-main .ss-content .ss-list .ss-option.ss-highlighted, .ss-main .ss-content .ss-list .ss-option:hover {
  color: #fff;
  background-color: #5897fb; }

.ss-main .ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  color: #dedede;
  background-color: #fff; }

.ss-main .ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
  color: #666;
  background-color: rgba(88, 151, 251, 0.1); }

.ss-main .ss-content .ss-list .ss-option.ss-hide {
  display: none; }

.ss-main .ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: #fffb8c; }

/* Custom */
.ss-main .ss-single-selected .ss-arrow span {
  border-color: #9f89e8; }

.ss-main .ss-content.ss-open {
  border: none;
  box-shadow: 0 3px 25px rgba(108, 125, 198, 0.12);
  border-radius: 4px;
  overflow: hidden;
  top: calc(100% + 5px); }

.ss-main .ss-content .ss-list .ss-option {
  height: 36px;
  font-size: 14px;
  color: #6370a7;
  line-height: 36px;
  padding: 0 23px;
  background: #FFF;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }

.ss-main .ss-content .ss-list .ss-option:hover {
  background: #F9FAFD;
  color: #6370A7; }

.ss-main .ss-content .ss-list {
  max-height: 110px; }

.ss-main .ss-content .ss-search {
  display: none; }

.ss-main .ss-single-selected .placeholder {
  display: block; }

.ss-main .ss-content .ss-list {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */ }
  .ss-main .ss-content .ss-list::-webkit-scrollbar {
    width: 4px; }
  .ss-main .ss-content .ss-list::-webkit-scrollbar-track {
    background: none; }
  .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb {
    background: #D0D5E8;
    border-radius: 4px; }
  .ss-main .ss-content .ss-list::-webkit-scrollbar-thumb:hover {
    background: #C1C8E2; }

/* End Slim Select */
/* DatePicker  */
/*!
 * Datepicker v1.0.7
 * https://fengyuanchen.github.io/datepicker  Copyright 2014-present Chen Fengyuan */
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 210px;
  z-index: -1; }

.datepicker-container:after, .datepicker-container:before {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0; }

.datepicker-dropdown {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 3px 6px #ccc;
  box-shadow: 0 3px 6px #ccc;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  z-index: 1; }

.datepicker-inline {
  position: static; }

.datepicker-top-left, .datepicker-top-right {
  border-top-color: #39f; }

.datepicker-top-left:after, .datepicker-top-left:before, .datepicker-top-right:after, .datepicker-top-right:before {
  border-top: 0;
  left: 10px;
  top: -5px; }

.datepicker-top-left:before, .datepicker-top-right:before {
  border-bottom-color: #39f; }

.datepicker-top-left:after, .datepicker-top-right:after {
  border-bottom-color: #fff;
  top: -4px; }

.datepicker-bottom-left, .datepicker-bottom-right {
  border-bottom-color: #39f; }

.datepicker-bottom-left:after, .datepicker-bottom-left:before, .datepicker-bottom-right:after, .datepicker-bottom-right:before {
  border-bottom: 0;
  bottom: -5px;
  left: 10px; }

.datepicker-bottom-left:before, .datepicker-bottom-right:before {
  border-top-color: #39f; }

.datepicker-bottom-left:after, .datepicker-bottom-right:after {
  border-top-color: #fff;
  bottom: -4px; }

.datepicker-bottom-right:after, .datepicker-bottom-right:before, .datepicker-top-right:after, .datepicker-top-right:before {
  left: auto;
  right: 10px; }

.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%; }

.datepicker-panel > ul:after, .datepicker-panel > ul:before {
  content: " ";
  display: table; }

.datepicker-panel > ul:after {
  clear: both; }

.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px; }

.datepicker-panel > ul > li:hover {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li.muted, .datepicker-panel > ul > li.muted:hover {
  color: #999; }

.datepicker-panel > ul > li.highlighted {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li.highlighted:hover {
  background-color: #cce5ff; }

.datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
  color: #39f; }

.datepicker-panel > ul > li.disabled, .datepicker-panel > ul > li.disabled:hover {
  background-color: #fff;
  color: #ccc;
  cursor: default; }

.datepicker-panel > ul > li.disabled.highlighted, .datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li[data-view="month next"], .datepicker-panel > ul > li[data-view="month prev"], .datepicker-panel > ul > li[data-view="year next"], .datepicker-panel > ul > li[data-view="year prev"], .datepicker-panel > ul > li[data-view="years next"], .datepicker-panel > ul > li[data-view="years prev"], .datepicker-panel > ul > li[data-view=next] {
  font-size: 18px; }

.datepicker-panel > ul > li[data-view="month current"], .datepicker-panel > ul > li[data-view="year current"], .datepicker-panel > ul > li[data-view="years current"] {
  width: 150px; }

.datepicker-panel > ul[data-view=months] > li, .datepicker-panel > ul[data-view=years] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 52.5px; }

.datepicker-panel > ul[data-view=week] > li, .datepicker-panel > ul[data-view=week] > li:hover {
  background-color: #fff;
  cursor: default; }

.datepicker-hide {
  display: none; }

/* EndDatePicker */
/* Spinner */
.tpb-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 999;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */ }

.tpb-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  border-radius: 13px; }
  @media only screen and (max-width: 640px) and (orientation: portrait) {
    .tpb-modal-content {
      width: 90%; } }

.tpb-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold; }

.tpb-close:hover,
.tpb-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer; }

.tpb-box .spinner {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #ffffffc9;
  z-index: 9; }
  .tpb-box .spinner.loading {
    display: flex; }
  .tpb-box .spinner .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px; }
  .tpb-box .spinner .lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #464646;
    animation-timing-function: cubic-bezier(0, 1, 1, 0); }
  .tpb-box .spinner .lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite; }
  .tpb-box .spinner .lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite; }
  .tpb-box .spinner .lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite; }
  .tpb-box .spinner .lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite; }

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0); }

  100% {
    transform: scale(1); } }

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1); }

  100% {
    transform: scale(0); } }

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0); }

  100% {
    transform: translate(19px, 0); } }

/* EndSpinner */
#tpb-history-booking {
  position: relative;
  background: #ffffff;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
  max-width: 1170px;
  border: 1px solid #e2e6ec;
  /* border-radius: 10px; */
  -moz-box-shadow: 0 10px 50px rgba(37, 49, 98, 0.15);
  -webkit-box-shadow: 0 10px 50px rgba(37, 49, 98, 0.15);
  box-shadow: -8px 4px 20px 0px rgba(183, 183, 183, 0.15);
  /* The Close Button */
  /* -----
  SVG Icons - svgicons.sparkk.fr
  ----- */ }
  #tpb-history-booking * {
    font-family: Arial; }
  #tpb-history-booking .tpb-list-history {
    margin-top: 20px;
    position: relative; }
  #tpb-history-booking .tpb-table-fixed {
    position: absolute; }
  #tpb-history-booking .tpb-table-fixed td, #tpb-history-booking .tpb-table-fixed th {
    opacity: 0;
    border: none; }
  #tpb-history-booking .tpb-column-scroll {
    position: sticky !important;
    left: 0;
    z-index: 21;
    background: white; }
  #tpb-history-booking .tpb-table-fixed .tpb-column-fixed {
    position: relative;
    z-index: 1;
    opacity: 1;
    border-bottom: .1rem solid #E7EAF4; }
  #tpb-history-booking .tpb-table-scroll td {
    position: relative; }
  #tpb-history-booking .tpb-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold; }
  #tpb-history-booking .tpb-close:hover,
  #tpb-history-booking .tpb-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer; }
  #tpb-history-booking .tpb-header {
    font-size: 36px;
    text-align: center; }
  #tpb-history-booking .text-center {
    text-align: center; }
  #tpb-history-booking .tpb-table {
    font-family: arial, sans-serif;
    width: auto;
    border-collapse: collapse;
    border-radius: 4px;
    overflow: visible;
    border: none; }
  #tpb-history-booking .tpb-table tbody tr:hover {
    background-color: #F9FAFD; }
  #tpb-history-booking .tpb-table tr td, #tpb-history-booking .tpb-table tr th {
    text-align: left;
    border: none;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    background: #ffffff;
    color: #6370a7;
    background-clip: padding-box;
    border-bottom: .1rem solid transparent; }
  #tpb-history-booking .tpb-table-scroll .tpb-table tr td, #tpb-history-booking .tpb-table-scroll .tpb-table tr th {
    border-bottom: .1rem solid #E7EAF4; }
  #tpb-history-booking .tpb-table tr:first-child th:after, #tpb-history-booking .tpb-table tr:first-child td:after {
    border-bottom: none; }
  #tpb-history-booking .tpb-table_action button {
    border: none;
    background: transparent; }
  #tpb-history-booking .tpb-sub-scroll {
    display: none;
    justify-content: center;
    margin-bottom: 20px; }
  @media only screen and (max-width: 395px) {
    #tpb-history-booking .pagination > li > a, #tpb-history-booking .pagination > li > span {
      padding: 3px 6px !important; } }
  @media only screen and (max-width: 1134px) {
    #tpb-history-booking .tpb-table-scroll {
      overflow-y: hidden;
      overflow-x: scroll; }
    #tpb-history-booking .tpb-sub-scroll {
      display: flex; } }
  @media only screen and (max-width: 767px) {
    #tpb-history-booking .tpb-table tr td, #tpb-history-booking .tpb-table tr th {
      padding: 5px; } }
  #tpb-history-booking .svg-icon {
    width: 1.4em;
    height: 1.4em; }
  #tpb-history-booking .svg-icon path,
  #tpb-history-booking .svg-icon polygon,
  #tpb-history-booking .svg-icon rect {
    fill: #6370A7; }
  #tpb-history-booking .svg-icon circle {
    stroke: #6370A7;
    stroke-width: 1; }
  #tpb-history-booking .tpb-table_trainer {
    display: inline-flex;
    align-items: center;
    width: 100%; }
  #tpb-history-booking .tpb-table_trainer .tpb-table_avatar, #tpb-history-booking .tpb-table_trainer .tpb-table_avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%; }
  #tpb-history-booking .tpb-table_trainer .tpb-table_title {
    margin-left: 10px;
    overflow: hidden;
    width: 70%;
    word-break: break-all; }
  #tpb-history-booking .tpb-table-sub {
    opacity: 0.5;
    font-size: 12px;
    margin: 0;
    overflow: hidden;
    position: relative;
    max-height: 20px;
    padding-right: 20px;
    padding-bottom: 0; }
  #tpb-history-booking .tpb-table-sub:before {
    content: '...';
    position: absolute;
    right: 10px;
    bottom: 0; }
  #tpb-history-booking .tpb-table-sub:after {
    content: '';
    position: absolute;
    right: 10px;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: white; }
  #tpb-history-booking .tpb-context-table_time {
    display: flex;
    align-items: center; }
  #tpb-history-booking .tpb-context-table_status {
    color: white;
    padding: 5px 10px;
    border-radius: 26px; }
  #tpb-history-booking .tpb-context-table_status-rejected {
    background: #9193A7; }
  #tpb-history-booking .tpb-context-table_status-canceled {
    background: #F57070; }
  #tpb-history-booking .tpb-context-table_status-pending {
    background: #FFCF83; }
  #tpb-history-booking .tpb-context-table_status-accepted {
    background: #94DB5F; }
  #tpb-history-booking .tooltip {
    width: auto;
    visibility: hidden;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    z-index: 20; }
  #tpb-history-booking .tpb-context-table_time {
    cursor: pointer; }
  #tpb-history-booking .tpb-context-table_time:hover + .tooltip {
    visibility: visible;
    transition: opacity 0.5s ease;
    opacity: 1; }
  #tpb-history-booking .tpb-table_th-time, #tpb-history-booking .tpb-table_th-payment, #tpb-history-booking .tpb-table_th-status {
    min-width: 140px; }
  #tpb-history-booking .tpb-table_th-location, #tpb-history-booking .tpb-table_th-services, #tpb-history-booking .tpb-table_th-trainer {
    min-width: 180px; }
  #tpb-history-booking .tpb-table_th-view {
    min-width: 50px; }
  #tpb-history-booking .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    cursor: no-drop; }
  #tpb-history-booking .pagination > li {
    display: inline; }
  #tpb-history-booking .pagination .disabled {
    pointer-events: none;
    cursor: no-drop; }
  #tpb-history-booking .pagination > li > a, #tpb-history-booking .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
    cursor: pointer; }
  #tpb-history-booking .pagination > .active > a, #tpb-history-booking .pagination > .active > a:focus, #tpb-history-booking .pagination > .active > a:hover, #tpb-history-booking .pagination > .active > span, #tpb-history-booking .pagination > .active > span:focus, #tpb-history-booking .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default; }
  #tpb-history-booking .disabled {
    pointer-events: none;
    opacity: 0.4; }

.tpb-booking-form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 840px;
  margin: 48px auto;
  border: 1px solid #e2e6ec;
  border-radius: 10px;
  -moz-box-shadow: 0 10px 50px rgba(37, 49, 98, 0.15);
  -webkit-box-shadow: 0 10px 50px rgba(37, 49, 98, 0.15);
  box-shadow: 0 10px 50px rgba(37, 49, 98, 0.15);
  position: relative;
  background: #fff; }
  @media only screen and (max-width: 768px) {
    .tpb-booking-form {
      margin: 20px 55px; } }
  @media only screen and (max-width: 640px) and (orientation: portrait) {
    .tpb-booking-form {
      margin: 20px; } }
  .tpb-booking-form * {
    font-family: Arial;
    box-sizing: border-box; }
  .tpb-booking-form .tpb-box-wrapper {
    width: 100%;
    height: 100%; }
  .tpb-booking-form .tpb-box {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px; }
    .tpb-booking-form .tpb-box h2 {
      color: #323a45;
      font-size: 27px;
      line-height: 60px;
      font-style: normal;
      font-weight: 400;
      letter-spacing: 0px;
      text-transform: none;
      text-align: center; }
    .tpb-booking-form .tpb-box .content {
      padding: 0;
      width: 300%;
      transition: all .5s; }
      .tpb-booking-form .tpb-box .content ul li:before {
        content: unset; }
      .tpb-booking-form .tpb-box .content .step1 {
        width: 33.3333333%;
        float: left;
        transition: all 0.5s;
        background: #fff;
        padding: 65px 40px 65px 30px;
        background-image: url("https://booking.tipo.io/storage/background-image/preset4.jpg");
        background-repeat: no-repeat; }
        @media only screen and (max-width: 640px) and (orientation: portrait) {
          .tpb-booking-form .tpb-box .content .step1 {
            padding: 25px; } }
        .tpb-booking-form .tpb-box .content .step1 .inner-step {
          width: 50%;
          margin: 0 auto;
          transition: all .5s;
          float: right; }
          @media only screen and (max-width: 640px) and (orientation: portrait) {
            .tpb-booking-form .tpb-box .content .step1 .inner-step {
              width: 100%; } }
          .tpb-booking-form .tpb-box .content .step1 .inner-step h5 {
            font-size: 24px;
            color: #6370a7;
            font-weight: 400; }
      .tpb-booking-form .tpb-box .content .step2 {
        width: 33.3333333%;
        float: left;
        transition: all 0.5s;
        background: #2b3360;
        padding: 65px 50px 65px 50px;
        z-index: 9; }
        @media only screen and (max-width: 640px) and (orientation: portrait) {
          .tpb-booking-form .tpb-box .content .step2 {
            padding: 25px; } }
      .tpb-booking-form .tpb-box .content .step3 {
        width: 33.333333%;
        float: left;
        transition: all 0.5s;
        background: #fff; }
      .tpb-booking-form .tpb-box .content[data-step="1"] .step2 {
        height: 0; }
      .tpb-booking-form .tpb-box .content[data-step="1"] .step3 {
        height: 0; }
      .tpb-booking-form .tpb-box .content[data-step="2"] {
        width: 200%; }
        .tpb-booking-form .tpb-box .content[data-step="2"] .step1 {
          width: 25%;
          height: 0;
          background-image: unset; }
          .tpb-booking-form .tpb-box .content[data-step="2"] .step1 .inner-step {
            width: 100%; }
        .tpb-booking-form .tpb-box .content[data-step="2"] .step2 {
          width: 25%; }
        .tpb-booking-form .tpb-box .content[data-step="2"] .step3 {
          width: 50%;
          height: 0; }
        @media only screen and (max-width: 640px) and (orientation: portrait) {
          .tpb-booking-form .tpb-box .content[data-step="2"] {
            width: 300%;
            transform: translate(-33.3333%); }
            .tpb-booking-form .tpb-box .content[data-step="2"] .step1 {
              width: 33.3333%;
              height: 0; }
            .tpb-booking-form .tpb-box .content[data-step="2"] .step2 {
              width: 33.3333%; }
            .tpb-booking-form .tpb-box .content[data-step="2"] .step3 {
              width: 33.3333%;
              height: 0; } }
      .tpb-booking-form .tpb-box .content[data-step="3"] {
        width: 200%;
        transform: translate(-50%); }
        .tpb-booking-form .tpb-box .content[data-step="3"] .step1 {
          width: 25%;
          height: 0; }
        .tpb-booking-form .tpb-box .content[data-step="3"] .step2 {
          width: 25%;
          height: 0; }
        .tpb-booking-form .tpb-box .content[data-step="3"] .step3 {
          width: 50%; }
        @media only screen and (max-width: 640px) and (orientation: portrait) {
          .tpb-booking-form .tpb-box .content[data-step="3"] {
            width: 300%;
            transform: translate(-66.6667%); }
            .tpb-booking-form .tpb-box .content[data-step="3"] .step1 {
              width: 33.3333%;
              height: 0; }
            .tpb-booking-form .tpb-box .content[data-step="3"] .step2 {
              width: 33.3333%;
              height: 0; }
            .tpb-booking-form .tpb-box .content[data-step="3"] .step3 {
              width: 33.3333%; } }

#tpb-history-booking .copyright,
.tpb-booking-form .copyright {
  display: block;
  position: absolute;
  bottom: calc(0% + 5px);
  right: 15px;
  font-size: 13px;
  z-index: 9999; }
  #tpb-history-booking .copyright a,
  .tpb-booking-form .copyright a {
    border: none;
    color: #000;
    font-family: sans-serif; }
  #tpb-history-booking .copyright .company,
  .tpb-booking-form .copyright .company {
    font-weight: 600; }

.confirm {
  height: 100%; }
  .confirm .product-info {
    text-align: center;
    padding: 30px 40px 32px 40px; }
    @media only screen and (max-width: 640px) and (orientation: portrait) {
      .confirm .product-info {
        padding: 15px; } }
    .confirm .product-info .thumb {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      display: inline-block;
      margin-bottom: 15px;
      box-shadow: 0 10px 50px rgba(37, 49, 98, 0.15); }
      .confirm .product-info .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .confirm .product-info .title {
      font-size: 24px;
      font-weight: 500;
      color: #6370a7; }
      @media only screen and (max-width: 640px) and (orientation: portrait) {
        .confirm .product-info .title {
          font-size: 18px; } }
  .confirm .booking-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-top: 1px solid #E7EAF4;
    border-bottom: .1rem solid #E7EAF4;
    color: #6370a7;
    font-size: 14px;
    font-weight: 400; }
    @media only screen and (max-width: 640px) and (orientation: portrait) {
      .confirm .booking-info {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start; }
        .confirm .booking-info > div {
          border-bottom: .1rem solid #E7EAF4;
          width: 100%;
          margin-bottom: 5px;
          padding-bottom: 5px;
          display: flex;
          justify-content: space-between; }
          .confirm .booking-info > div:last-child {
            margin-bottom: 0px;
            padding-bottom: 0px;
            border-bottom: none; } }
    .confirm .booking-info label {
      color: #6370a7;
      display: flex;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      padding-right: 20px; }
      .confirm .booking-info label svg {
        margin-right: 5px; }
  .confirm .extra-fields {
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 640px) and (orientation: portrait) {
      .confirm .extra-fields {
        padding: 15px; } }
    .confirm .extra-fields .required-mark {
      color: red; }
    .confirm .extra-fields .element {
      flex: 0 0 50%;
      color: #6370a7;
      border: 10px solid transparent; }
      .confirm .extra-fields .element * {
        color: #6370a7; }
      .confirm .extra-fields .element input, .confirm .extra-fields .element textarea, .confirm .extra-fields .element .ss-single-selected {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #E7EAF4;
        color: #6370a7;
        padding: 10px 16px;
        height: unset;
        background: #f8f9fd !important; }
      .confirm .extra-fields .element:nth-child(1), .confirm .extra-fields .element:nth-child(2) {
        border-top: none; }
      .confirm .extra-fields .element:nth-child(odd) {
        border-left: none;
        border-right-width: 15px; }
      .confirm .extra-fields .element:nth-child(even) {
        border-right: none;
        border-left-width: 15px; }
      @media only screen and (max-width: 640px) and (orientation: portrait) {
        .confirm .extra-fields .element {
          flex: 0 0 100%;
          border: none;
          margin-bottom: 10px; }
          .confirm .extra-fields .element:last-child {
            margin-bottom: 0px; } }
    .confirm .extra-fields .tpb-checkbox {
      display: inline-block; }
      @media only screen and (max-width: 640px) and (orientation: portrait) {
        .confirm .extra-fields .tpb-checkbox {
          display: block; } }
      .confirm .extra-fields .tpb-checkbox .ctx {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
        padding: 6px 8px;
        border-radius: 6px;
        overflow: hidden;
        transition: all 0.2s ease;
        display: inline-block;
        margin-left: -8px; }
      .confirm .extra-fields .tpb-checkbox .ctx:not(:last-child) {
        margin-right: 8px; }
      .confirm .extra-fields .tpb-checkbox .ctx:hover {
        background-color: rgba(125, 100, 247, 0.09); }
      .confirm .extra-fields .tpb-checkbox .ctx span {
        float: left;
        vertical-align: middle;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
      .confirm .extra-fields .tpb-checkbox .ctx span:first-child {
        position: relative;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
        border: 2px solid #c8ccd4;
        transition: all 0.2s ease; }
      .confirm .extra-fields .tpb-checkbox .ctx span:first-child svg {
        position: absolute;
        top: 2px;
        left: 1px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 16px;
        stroke-dashoffset: 16px;
        transition: all 0.3s ease;
        transition-delay: 0.1s;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
      .confirm .extra-fields .tpb-checkbox .ctx span:last-child {
        padding-left: 8px;
        line-height: 18px; }
      .confirm .extra-fields .tpb-checkbox .ctx:hover span:first-child {
        border-color: #6370a7; }
      .confirm .extra-fields .tpb-checkbox .inp-box:checked + .ctx span:first-child {
        background: #6370a7;
        border-color: #6370a7;
        -webkit-animation: wave 0.4s ease;
        animation: wave 0.4s ease; }
      .confirm .extra-fields .tpb-checkbox .inp-box:checked + .ctx span:first-child svg {
        stroke-dashoffset: 0; }
    .confirm .extra-fields .tpb-radio-group {
      color: #6370a7; }
      .confirm .extra-fields .tpb-radio-group [type="radio"]:checked,
      .confirm .extra-fields .tpb-radio-group [type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px; }
      .confirm .extra-fields .tpb-radio-group [type="radio"]:checked + label,
      .confirm .extra-fields .tpb-radio-group [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 28px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #6370a7; }
      .confirm .extra-fields .tpb-radio-group [type="radio"]:checked + label:before,
      .confirm .extra-fields .tpb-radio-group [type="radio"]:not(:checked) + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 18px;
        height: 18px;
        border: 1px solid #ddd;
        border-radius: 100%;
        background: #fff; }
      .confirm .extra-fields .tpb-radio-group [type="radio"]:checked + label:after,
      .confirm .extra-fields .tpb-radio-group [type="radio"]:not(:checked) + label:after {
        content: '';
        width: 12px;
        height: 12px;
        background: #6370a7;
        position: absolute;
        top: 3px;
        left: 3px;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease; }
      .confirm .extra-fields .tpb-radio-group [type="radio"]:not(:checked) + label:after {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0); }
      .confirm .extra-fields .tpb-radio-group [type="radio"]:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1); }
  .confirm .subtotal {
    background: #F8F9FD;
    padding: 15px 40px;
    margin-bottom: 30px; }
    @media only screen and (max-width: 640px) and (orientation: portrait) {
      .confirm .subtotal {
        padding: 15px; } }
    .confirm .subtotal > .g-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #6370a7;
      margin: 5px 0; }
      .confirm .subtotal > .g-row .label {
        font-weight: 500; }
      .confirm .subtotal > .g-row .value {
        color: #9f89e8; }

.tpb-form-control {
  color: #323a45;
  margin-bottom: 22px;
  display: none; }
  .tpb-form-control.visible {
    display: block;
    width: 100%;
    padding: 0; }
  .tpb-form-control .tpb-form-control-option {
    display: none; }
  .tpb-form-control .tpb-text-price {
    color: red; }
  .tpb-form-control label {
    float: none;
    display: inline-block;
    text-align: left;
    max-width: 100%;
    margin: 0 0 8px;
    font-weight: 300;
    padding: 0;
    font-size: 14px;
    color: #6370a7;
    line-height: 1; }
    .tpb-form-control label.inline {
      display: flex;
      align-items: center;
      justify-content: space-between; }
  .tpb-form-control #tpb-message-bring_qty {
    font-size: 14px;
    color: #6370a7;
    margin: 10px 0 0 10px;
    font-weight: 300; }
  .tpb-form-control .ss-single-selected {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6370a7;
    line-height: 1;
    width: 100%;
    height: 44px;
    background-color: #F8F9FD;
    background-image: none;
    border-radius: 4px;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    padding: 0 20px 0 17px;
    margin: 0;
    -webkit-appearance: none;
    -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: none;
    line-height: 44px; }
  .tpb-form-control .bringQty-input, .tpb-form-control #tpb-productTitle-input {
    display: block;
    width: 100%;
    height: 44px;
    border: none;
    background: #F8F9FD;
    padding: 0 20px 0 18px;
    color: #6370a7; }
  .tpb-form-control .bringQty-input:focus {
    outline: none; }
  .tpb-form-control .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin: 0; }
    .tpb-form-control .switch input {
      opacity: 0;
      width: 0;
      height: 0; }
    .tpb-form-control .switch input:checked + .slider {
      background-color: #2196F3; }
    .tpb-form-control .switch input:focus + .slider {
      box-shadow: 0 0 1px #2196F3; }
    .tpb-form-control .switch input:checked + .slider:before {
      -webkit-transform: translateX(18px);
      -ms-transform: translateX(18px);
      transform: translateX(18px); }
    .tpb-form-control .switch .slider {
      position: absolute !important;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 0 0 23px 0 !important;
      background-color: #cccccc !important;
      -webkit-transition: 0.4s !important;
      transition: .4s; }
      .tpb-form-control .switch .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 2px;
        bottom: 2px;
        background-color: white !important;
        -webkit-transition: .4s;
        transition: .4s; }
      .tpb-form-control .switch .slider.round {
        border-radius: 22px; }
      .tpb-form-control .switch .slider.round:before {
        border-radius: 50%; }

.tpb-datepicker {
  margin-bottom: 30px; }
  .tpb-datepicker .datepicker-container {
    background: none;
    color: #FFF;
    width: 100%; }
  .tpb-datepicker .datepicker-panel > ul {
    margin: 0;
    width: 100%; }
    .tpb-datepicker .datepicker-panel > ul > li {
      width: calc(100%/7.1);
      height: 45px;
      line-height: 45px;
      background: none;
      border-radius: 50%;
      font-size: 14px;
      font-weight: 300;
      color: white; }
      @media only screen and (max-width: 640px) and (orientation: portrait) {
        .tpb-datepicker .datepicker-panel > ul > li {
          height: 32.55px;
          line-height: 32.55px; } }
      .tpb-datepicker .datepicker-panel > ul > li:hover {
        background: #313d88;
        cursor: pointer; }
      .tpb-datepicker .datepicker-panel > ul > li.disabled {
        color: #a3a3a3;
        text-decoration: line-through; }
      .tpb-datepicker .datepicker-panel > ul > li.picked {
        background: #9f89e8; }
      .tpb-datepicker .datepicker-panel > ul > li[data-view*="month next"], .tpb-datepicker .datepicker-panel > ul > li[data-view*="month prev"], .tpb-datepicker .datepicker-panel > ul > li[data-view*="year next"], .tpb-datepicker .datepicker-panel > ul > li[data-view*="year prev"], .tpb-datepicker .datepicker-panel > ul > li[data-view*="years next"], .tpb-datepicker .datepicker-panel > ul > li[data-view*="years prev"] {
        font-size: 27px; }
    .tpb-datepicker .datepicker-panel > ul[data-view=week] > li, .tpb-datepicker .datepicker-panel > ul[data-view=week] > li:hover {
      font-weight: 400; }
  .tpb-datepicker .datepicker-panel:nth-child(1) > ul:nth-child(1), .tpb-datepicker .datepicker-panel:nth-child(2) > ul:nth-child(1), .tpb-datepicker .datepicker-panel:nth-child(3) > ul:nth-child(1) {
    display: flex; }
    .tpb-datepicker .datepicker-panel:nth-child(1) > ul:nth-child(1) li[data-view="years current"],
    .tpb-datepicker .datepicker-panel:nth-child(1) > ul:nth-child(1) li[data-view="year current"],
    .tpb-datepicker .datepicker-panel:nth-child(1) > ul:nth-child(1) li[data-view="month current"], .tpb-datepicker .datepicker-panel:nth-child(2) > ul:nth-child(1) li[data-view="years current"],
    .tpb-datepicker .datepicker-panel:nth-child(2) > ul:nth-child(1) li[data-view="year current"],
    .tpb-datepicker .datepicker-panel:nth-child(2) > ul:nth-child(1) li[data-view="month current"], .tpb-datepicker .datepicker-panel:nth-child(3) > ul:nth-child(1) li[data-view="years current"],
    .tpb-datepicker .datepicker-panel:nth-child(3) > ul:nth-child(1) li[data-view="year current"],
    .tpb-datepicker .datepicker-panel:nth-child(3) > ul:nth-child(1) li[data-view="month current"] {
      flex-grow: 1;
      border-radius: 0;
      font-weight: 500;
      font-size: 16px; }

.tpb-timepicker {
  display: none;
  flex-wrap: wrap;
  justify-content: space-around;
  max-height: 142px;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  /* Track */
  /* Handle */
  /* Handle on hover */ }
  .tpb-timepicker::-webkit-scrollbar {
    width: 5px;
    transition: all .3s; }
  .tpb-timepicker::-webkit-scrollbar-track {
    background: none; }
  .tpb-timepicker::-webkit-scrollbar-thumb {
    background: #9f89e8;
    border-radius: 5px; }
  .tpb-timepicker::-webkit-scrollbar-thumb:hover {
    background: #9f89e8; }
  .tpb-timepicker .radiobtn {
    position: relative;
    display: block;
    width: 50%;
    border: 2px solid transparent;
    color: white;
    font-size: 12px;
    font-weight: 300;
    cursor: pointer; }
    .tpb-timepicker .radiobtn:nth-child(1), .tpb-timepicker .radiobtn:nth-child(2) {
      border-top: none; }
    .tpb-timepicker .radiobtn .tooltip {
      width: auto;
      visibility: hidden;
      background-color: white;
      padding: 5px;
      box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: opacity 0.5s ease;
      position: absolute;
      z-index: 20;
      border-radius: 5px;
      color: black; }
    .tpb-timepicker .radiobtn.disabled:hover .tooltip {
      visibility: visible;
      transition: opacity 0.5s ease;
      opacity: 1;
      position: fixed; }
    .tpb-timepicker .radiobtn label {
      padding: 7px 10px;
      width: 100%;
      border-radius: 3px;
      text-align: center;
      background: #414c89;
      margin: 0;
      color: white;
      display: block;
      font-size: 12px;
      font-weight: 300;
      text-transform: none; }
      .tpb-timepicker .radiobtn label:hover {
        background: #313d88; }
      .tpb-timepicker .radiobtn label.disabled {
        background: #a3a3a3;
        pointer-events: none; }
    .tpb-timepicker .radiobtn input[type="radio"] {
      display: none;
      position: absolute;
      width: 100%;
      appearance: none; }
      .tpb-timepicker .radiobtn input[type="radio"]:checked + label {
        background: #ffd153; }
        .tpb-timepicker .radiobtn input[type="radio"]:checked + label:after {
          background: #ddd; }
        .tpb-timepicker .radiobtn input[type="radio"]:checked + label:before {
          width: 20px;
          height: 20px; }

.action {
  text-align: center;
  margin-bottom: 15px; }
  .action.fullwidth {
    padding: 15px; }
  @media only screen and (max-width: 640px) and (orientation: portrait) {
    .action {
      padding: 15px; } }
  .action button[disabled] {
    cursor: no-drop !important;
    opacity: 0.6; }
  .action .continue-button {
    width: 100%;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    -webkit-transition: .1s;
    transition: .1s;
    font-weight: 500;
    -ms-user-select: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #9f89e8;
    color: #ffffff;
    margin: 0 auto;
    line-height: initial; }
  .action .back-button {
    background: #F8F9FD;
    padding: 12px 37px;
    border: 1px solid #E7EAF4;
    border-radius: 4px;
    color: #6370a7;
    margin-bottom: 30px;
    line-height: initial; }
    .action .back-button.c2 {
      display: none; }
    @media only screen and (max-width: 640px) and (orientation: portrait) {
      .action .back-button {
        width: 100%;
        margin-bottom: 15px; }
        .action .back-button.c2 {
          display: block; } }
  .action .confirm-button {
    background: #9f89e8;
    border-radius: 4px;
    padding: 12px 37px;
    border: 1px solid transparent;
    color: #FFF;
    margin-bottom: 30px;
    line-height: initial; }
    @media only screen and (max-width: 640px) and (orientation: portrait) {
      .action .confirm-button {
        width: 100%;
        margin-bottom: 0; } }

@-webkit-keyframes wave {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8); } }

@keyframes wave {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8); } }

/* For view 480px */
.x480.tpb-booking-form {
  margin: 0px;
  width: 100%;
  padding: 0; }
  .x480.tpb-booking-form .content .step1 {
    padding: 25px;
    background: #FFF; }
    .x480.tpb-booking-form .content .step1 .inner-step {
      width: 100%; }
  .x480.tpb-booking-form .content .step2 {
    padding: 25px; }
  .x480.tpb-booking-form .content[data-step="2"] {
    width: 300%;
    transform: translate(-33.3333%); }
    .x480.tpb-booking-form .content[data-step="2"] .step1 {
      width: 33.3333%;
      height: 0; }
    .x480.tpb-booking-form .content[data-step="2"] .step2 {
      width: 33.3333%; }
    .x480.tpb-booking-form .content[data-step="2"] .step3 {
      width: 33.3333%;
      height: 0; }
  .x480.tpb-booking-form .content[data-step="3"] {
    width: 300%;
    transform: translate(-66.6667%); }
    .x480.tpb-booking-form .content[data-step="3"] .step1 {
      width: 33.3333%;
      height: 0; }
    .x480.tpb-booking-form .content[data-step="3"] .step2 {
      width: 33.3333%;
      height: 0; }
    .x480.tpb-booking-form .content[data-step="3"] .step3 {
      width: 33.3333%; }
  .x480.tpb-booking-form .content .confirm .product-info {
    padding: 15px; }
    .x480.tpb-booking-form .content .confirm .product-info .title {
      font-size: 18px; }
  .x480.tpb-booking-form .content .confirm .booking-info {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start; }
    .x480.tpb-booking-form .content .confirm .booking-info > div {
      border-bottom: .1rem solid #E7EAF4;
      width: 100%;
      margin-bottom: 5px;
      padding-bottom: 5px;
      display: flex;
      justify-content: space-between; }
      .x480.tpb-booking-form .content .confirm .booking-info > div:last-child {
        margin-bottom: 0px;
        padding-bottom: 0px;
        border-bottom: none; }
  .x480.tpb-booking-form .content .confirm .extra-fields {
    padding: 15px; }
    .x480.tpb-booking-form .content .confirm .extra-fields .element {
      flex: 0 0 100%;
      border: none;
      margin-bottom: 10px; }
      .x480.tpb-booking-form .content .confirm .extra-fields .element:last-child {
        margin-bottom: 0px; }
    .x480.tpb-booking-form .content .confirm .extra-fields .tpb-checkbox {
      display: block; }
    .x480.tpb-booking-form .content .confirm .extra-fields .tpb-radio-group_item {
      text-align: left; }
  .x480.tpb-booking-form .content .confirm .subtotal {
    padding: 15px; }
.x480 .tpb-datepicker .datepicker-panel > ul > li {
  height: 30px;
  line-height: 30px;
  border-radius: 0; }
.x480 .action {
  padding: 15px; }
  .x480 .action .back-button {
    width: 100%;
    margin-bottom: 15px; }
    .x480 .action .back-button.c2 {
      display: block; }
  .x480 .action .confirm-button {
    width: 100%;
    margin-bottom: 0; }

.tbp-hidden {
  display: none !important; }

.tpb-wrapper-btnExport {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  color: #6370a7; }
  .tpb-wrapper-btnExport .tpb-btnExport {
    border: navajowhite;
    background: transparent; }
    .tpb-wrapper-btnExport .tpb-btnExport .tpb-btnExport-title {
      display: flex;
      justify-content: center;
      align-items: center; }
      .tpb-wrapper-btnExport .tpb-btnExport .tpb-btnExport-title .tpb-btnExport-title_text {
        margin-left: 5px;
        height: 1.4em;
        color: #6370a7; }

.ss-main .ss-multi-selected {
  padding: 10px 16px;
  background: #f8f9fd !important; }

.tpb-form-control.price p {
  color: #6370a7; }
