.eventbookings-loader {
  display: flex;
  gap: 0.5em;
}

.eventbookings-loader div {
  width: 2.5em;
  height: 2.5em;
  background-color: #1199c4;
  border-radius: 50%;
  animation: load7 1.8s infinite ease-in-out;
}

.eventbookings-loader div:nth-child(1) {
  animation-delay: -0.32s;
}

.eventbookings-loader div:nth-child(2) {
  animation-delay: -0.16s;
}

.eventbookings-loader div:nth-child(3) {
  animation-delay: 0s;
}

@keyframes load7 {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.event-list-wrap {}
.event-list-wrap h1 {
  font-size: 23px;
  font-weight: 600;
  margin: 0;
}
.event-list-wrap p {
  margin: 0 0 20px;
}
.event-list-wrap .meta-box {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.event-list-wrap .meta-box select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 5.24987L0 1.24987L0.716667 0.533203L4 3.8332L7.28333 0.54987L8 1.26654L4 5.24987Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: calc(100% - 10px) 50%;
  padding: 1px 30px 1px 16px;
  text-overflow: ellipsis;
  border: 1px solid #BDBDBD;
  border-radius: 60px;
  height: 36px;
  margin: 0;
  font-size: 14px;
}
.event-list-wrap .meta-box button {
  padding: 0px 24px;
  border-radius: 60px;
  background: #ffffff;
  font-size: 14px;
  height: 36px;
  margin: 0;
}
.event-list-wrap .meta-box .search-box {
  position: relative;
  margin: 0;
  min-width: 250px;
}
.event-list-wrap .meta-box .search-box input {
  padding: 1px 20px 1px 12px;
  border: 1px solid #BDBDBD;
  border-radius: 60px;
  height: 36px;
  margin: 0;
  width: 100%;
}
.event-list-wrap .meta-box .search-box span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
}

.table-wrap {
  overflow-x: auto;
}

table.event-lists {
  border: none;
}
table.event-lists tr th {
  padding: 8px 12px;
  background: #ffffff;
  border-bottom: none;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
table.event-lists tr th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #DDDDDD;
}
table.event-lists tr td {
  padding: 12px;
  color: #4F4F4F;
  background: #ffffff;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}
table.event-lists tr th:first-child,
table.event-lists tr td:first-child {
  width: 30px;
  max-width: 30px;
}
table.event-lists tr th:nth-child(2),
table.event-lists tr td:nth-child(2) {
  width: 300px;
}
table.event-lists tr th:nth-child(3),
table.event-lists tr td:nth-child(3) {
  width: 140px;
}
table.event-lists tr th:nth-child(4),
table.event-lists tr td:nth-child(4) {
  width: 90px;
}
table.event-lists tr th:nth-child(5),
table.event-lists tr td:nth-child(5) {
  width: 90px;
}
table.event-lists tr th:nth-child(6),
table.event-lists tr td:nth-child(6) {
  width: 180px;
}
table.event-lists tr th:nth-child(7),
table.event-lists tr td:nth-child(7) {
  width: 200px;
}
table.event-lists tr th:nth-child(8),
table.event-lists tr td:nth-child(8) {
  width: 350px;
}
table.event-lists tr th:last-child,
table.event-lists tr td:last-child {
  width: 100px;
}

.switch {
  position: relative;
}
.switch input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
.switch .slider {
  background: #cccccc;
  display: inline-flex;
  height: 14px;
  width: 34px;
  border-radius: 50px;
  position: relative;
}
.switch input[type="checkbox"]:checked + .slider {
  background: #98ccff;
}
.switch .slider::before {
  content: "";
  transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
  transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  position: absolute;
  left: 0;
  top: -3px;
  height: 20px;
  width: 20px;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12);
}
.switch input[type="checkbox"]:checked + .slider::before {
  left: auto;
  right: 0;
  background: #1976d2;
}
.bottom-pagination-wrap {
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-pagination-wrap select {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  height: 32px;
  min-width: 70px;
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
}
.bottom-pagination-wrap .bottom-pagination {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
}
.bottom-pagination-wrap .bottom-pagination a {
  height: 32px;
  width: 32px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #ffffff;
}

.event-settings-wrap {
  margin: 20px 0;
}
.event-settings-wrap button[name="disconnect"] {
  color: #FB3030;
  border-color: #FB3030;
  height: 38px;
}
.event-settings-wrap button[name="disconnect"]:hover {
  color: #ffffff;
  border-color: #FB3030;
  background-color: #FB3030;
}
.event-settings-wrap button[name="save_settings"] {
  background-color: #1976d2;
  border-color: #1976d2;
  height: 38px;
}
.connection-settings-display-table-wrap {
  max-width: 780px;
  width: 100%;
  margin: 0 0 20px;
}
table.connection-settings-display-table {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
}
table.connection-settings-display-table tbody {
  display: flex;
}
table.connection-settings-display-table tr {
  width: 100%;
}
table.connection-settings-display-table tr th,
table.connection-settings-display-table tr td {
  display: block;
  padding: 0;
}
table.connection-settings-display-table tr th {
  padding-bottom: 0;
}
table.connection-settings-display-table tr td {
  padding-top: 5px;
}
table.connection-settings-display-table label {
  line-height: 1.5;
  font-size: 12px;
  font-weight: 600;
}
table.connection-settings-display-table input {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  height: 38px;
}
.customize-event-display-table-wrap {
  max-width: 780px;
  width: 100%;
  margin: 0 0 20px;
}
table.customize-event-display-table {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 24px;
}
table.customize-event-display-table tr th,
table.customize-event-display-table tr td {
  padding: 10px 0;
}

.shortcode-input-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  display: inline-block;
  position: relative;
}
.shortcode-input-box label {
  line-height: 1.5;
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.shortcode-input-box input[type="text"] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  height: 38px;
  min-width: 280px;
}
.shortcode-input-box button {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 2.15384615;
  min-height: 30px;
  margin: 0;
  padding: 0 10px;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  -webkit-appearance: none;
  border-radius: 3px;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #1976d2;
  border-color: #1976d2;
  color: #ffffff;
  height: 38px;
}
.shortcode-input-box button:hover {
  background: #135e96;
  border-color: #135e96;
  color: #fff;
}
.shortcode-input-box .shortcode-copy-success {
  position: absolute;
  right: 27px;
  top: -5px;
  background: #1976d2;
  color: #ffffff;
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 12px;
  transition: 0.3s;
}
.shortcode-input-box .shortcode-copy-success::after {
  content: "";
  border-color: #1976d2 transparent transparent transparent;
  border-style: solid;
  border-width: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
}