@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,700');
* {
  outline: 0;
  font-family: 'Poppins', '微軟正黑體', 'Microsoft JhengHei', sans-serif !important;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

*::-webkit-scrollbar {
  width: 0 !important
}

html, body, #root {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: '微軟正黑體', 'Microsoft JhengHei', sans-serif;
}

html[lang=zh-Hant] {
  font-size: 0.9em !important;
}

html[lang=en] {
  font-size: 0.8em !important;
}

p, h1, h2, h3 {
  margin: 0
}

a {
  text-decoration: none;
  color: #1F4C9B;
}

a:hover{
  color: #18315b;
}

.spinning {
  animation-name: spin1;
  animation-duration: 10s;
  animation-fill-mode: forwards;
  -webkit-animation-name: spin1;
  -webkit-animation-duration: 10s;
  -webkit-animation-fill-mode: forwards;
}

.clear{
  clear: both;
}

.hidegod{
  top: 200px;
}

.showgod{
  top: 35px;
}

.showmoregod{
  top: 0px;
}

.hide{
  visibility: hidden;
}
.show{
  visibility: visible;
}

input[type="text"]:disabled {
    background: #ffffff;
}

/* Date time picker */
.react-datepicker__time-list {
  padding: 0;
}

.react-datepicker__input-container,
.react-datepicker-wrapper {
  width: 100%
}

.react-datepicker-wrapper input {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  border: 1px solid lightgrey;
}

/* animation */
@keyframes flickerAnimation {
  0%   { opacity:0; }
  50%  { opacity:0; }
  75%  { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:0; }
  50%  { opacity:0; }
  75%  { opacity:1; }
  100% { opacity:0; }
}
/* The container */
.qrcheck {
  display: block;
  position: relative;
  padding-left: 70px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.qrcheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  border-color: #edeef0;
  -webkit-box-shadow: 1px 1px 1px #d8d8d8;
          box-shadow: 1px 1px 1px #d8d8d8;
  margin-right: 24px;
}

.checkmark.qrrecord {
  height: 20px;
  width: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: solid 1px black;
}

.checkmark.qrrecord.shadow {
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.38);
          box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.38);
}

.qrcheck:hover input ~ .checkmark {
  background-color: #ecf0f1;
}

.qrcheck input:checked ~ .checkmark {
  background-color: black;
  color: black;
}

.qrcheck input:checked ~ .checkmark.qrrecord {
  background-color: white;
  color: white;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.qrcheck input:checked ~ .checkmark:after {
  display: block;
}

.qrcheck input:disabled ~ .checkmark {
  cursor: no-drop;
}

.qrcheck input:disabled ~ .checkmark:after{
  background-image: url('./img/close.png');
  background-size: 20px 20px;
  display: block;
  position: absolute;
  border: none;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  -webkit-transform: none;
          transform: none;
}

.qrcheck .checkmark:after {
  left: 10px;
  top: 0px;
  width: 8px;
  height: 20px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.smallcheck .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
 }

.qrcheck .checkmark.qrrecord:after {
  left: 6px;
  width: 5px;
  height: 15px;
  border: solid black;
  border-width: 0 2px 2px 0;
}

.qrcheck .checkmark.qrrecord.shadow:after {
  left: 6px;
  border-width: 0 3px 3px 0;
}

.pdf {
  max-height: 75vh;
  overflow: auto;
}


button:focus {
  outline:0;
}

.blank {
  display: inline-block;
  margin: -5px 5px 0px 5px;
  width: 25px;
  height: 25px;
}

.previous {
  display: inline-block;
  margin-right: 5px;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  margin-top: -5px;
  background-color: grey;
}

.next {
  display: inline-block;
  margin-left: 5px;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  margin-top: -5px;
  background-color: grey;
}

.page_number {
  display: inline-block;
  margin-top: 0;
  font-size: 0.9em;
}

.wrapper {
  background-color: rgba(255, 255, 255, 0);
  /* position: fixed;
  bottom: 0px; */
}

.flexWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

iframe {
  width: 100%;
  height: 70vh;
}

.analytics-nav {
  font-weight: bold;
  color: #2d2d2d;
  max-width: 1280px;
  margin: 15px auto 60px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  text-decoration: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.analytics-banner {
  height: 90px;
  width: 100%;
  background: url(./img/a_banner.png) no-repeat center center;
  background-size: cover;
}

.analytics-dotted-line {
  width: 100%;
  background: url(./img/dotted.png) repeat left center;
  /* -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
}

.analytics-arrow-line {
  width: 100%;
  background: url(./img/arrow.png) no-repeat left center;
  background-size: auto 100%;
}

.analytics-arrow-small-line {
  width: 100%;
  background: url(./img/arrow_small.png) no-repeat left center;
  background-size: auto 100%;
}

.analytics-tab {
  min-width: 70px;
  color: black;
  background-color: rgb(246, 246, 246);
  border-radius: 0px;
  border: 1px rgb(240, 240, 240) solid;
  line-height: 10px;
  padding: 10px 10px;
}

.analytics-flex-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.analytics-tab:hover {
  background-color: rgb(220, 220, 220);
}

.analytics-tab.analytics-tab-active {
  background-color: #0051ff;
  color: white;
  border: 1px #0051ff solid;
}

.analytics-tab.analytics-tab-active:hover {
  background-color: #0041cc;
  border: 1px #0041cc solid;
}

.analytics-filter {
  list-style-type: none;
  -webkit-padding-start: 0px;
}

ul.analytics-filter {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}

.analytics-filter li {
  cursor: pointer;
  color: grey;
  background-color: #e3e3e3;
  line-height: 20px;
  padding: 5px 10px;
  text-align: center;
  font-weight: normal;
}

.analytics-filter li:hover {
  cursor: pointer;
  color: grey;
  background-color: lightgrey;
}

.analytics-filter li.active {
  color: white;
  background-color: #0051ff;
}

.analytics-filter li.active:hover {
  background-color: #0041cc;
}

.analytics-filter-data {
  flex: 1;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -moz-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  text-align: center;
}

.analytics-filter-data .analytics-filter-title {
  border-right: 1px rgb(240, 240, 240) solid;
  font-weight: normal;
}

.analytics-filter-data:last-child .analytics-filter-title  {
  border-right: none;
}

.analytics-filter-data .analytics-filter-title h1 {
  font-size: 6rem;
}

.analytics-filter-data table {
  width: 85%;
  text-align: center;
  margin: 10px auto 0px auto;
}

.analytics-col {
  width: 100%;
}

.analytics-card-toggle {
  font-size: 1.2em;
  cursor: pointer;
  line-height: 45px;
  margin-top: 30px;
  padding: 0px 15px;
  background-color: rgba(231, 232, 234, .7);
  border-bottom: 2px rgb(5, 114, 252) solid;
}

.analytics-card-toggle.analytics-card-toggle-active {
  background-color: rgba(255, 255, 255, 0);
}

.analytics-card-toggle.analytics-card-toggle-active:hover {
  background-color: rgba(231, 232, 234, .7);
}

.analytics-card-body {
  padding: 0px 15px 20px 15px;
  border: 2px rgba(231, 232, 234, .7) solid;
  border-top: none;
}

.analytics-card-tab > div {
  background-color: rgba(255, 255, 255, 0) !important;
}

.analytics-card-tab > div > button {
  font-size: 12px !important;
  letter-spacing: 1px;
  padding: 0 0 !important;
  border-bottom: 2px rgb(230, 230, 230) solid !important;
  text-transform: capitalize !important;
}

.long-tabs > div > button > div {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
}

/* .analytics-common-tabs.long-tabs > div > button > div {
  padding-bottom: 5px;
} */

.analytics-common-tabs > div > button {
  text-transform: none !important;
}

.analytics-card-content {
  margin-top: 15px;
}

.analytics-card-content > div > * {
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
}

.analytics-card-table {
  width: 100% !important;
}

.analytics-card-table tbody tr td {
  line-height: 20px;
  border-bottom: 1px lightgrey solid;
}

.analytics-card-table tbody tr td:nth-child(even) {
  text-align: right;
}

.analytics-card-table tbody tr td:nth-child(odd) {
  text-align: left;
}

.analytics-card-table tbody tr:last-child td{
  border-bottom: none
}

.male {
  width: 100%;
  background: url(./img/male.png) no-repeat center center;
  background-size: cover;
}

.female {
  width: 100%;
  background: url(./img/female.png) no-repeat center center;
  background-size: cover;
}

.analytics-menu {
  padding-right: 10px;
  border-radius: 0 0 15% 0;
  border-bottom: 1px #585858 solid;
  border-right: 1px #585858 solid;
}

.ios-body {
  min-height: 160px;
  border-bottom: 1px lightgrey solid;
}

.ios-home-button {
  width: 40px;
  height: 40px;
  margin: 10px auto;
  border-radius: 50%;
  border: 1px lightgrey solid;
}

.analytics-menu-bar {
  width: 98%;
  padding: 7px 0px;
  margin: 1px auto 0px auto;
  font-size: 10px;
  text-align: center;
  color: grey;
  background-color: #efefef;
}

.analytics-menu-bar.active {
  background-color: rgb(237, 126, 15);
  color: white;
}

input {
  outline-width: 0;
}

textarea:focus, input:focus{
  outline: none;
}

input[type=date]::-webkit-inner-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: none;
}

input[type=date]::-webkit-clear-button {
  display: none; /* Hide the button */
  -webkit-appearance: none; /* turn off default browser styling */
  -moz-appearance: none;
}

input[type=date]::-moz-clear {
  display: none; /* Hide the button */
  -webkit-appearance: none; /* turn off default browser styling */
  -moz-appearance: none;
}

input[type=date]::-ms-clear {
  display: none; /* Hide the button */
  -webkit-appearance: none; /* turn off default browser styling */
  -moz-appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  padding-left: 10px;
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0);
  position: absolute;
}

input[type=date].analytics-input-date::-webkit-calendar-picker-indicator {
  width: 60px;
  height: 12px;
  color: rgba(0, 0, 0, 0);
  position: absolute;
}

input[type=date]::-webkit-calendar-picker-indicator:hover {
  background: rgba(0, 0, 0, 0);
}

input[type=date]::-webkit-datetime-edit-month-field,
input[type=date]::-webkit-datetime-edit-day-field,
input[type=date]::-webkit-datetime-edit-year-field {
  color: white;
  background: rgba(0, 0, 0, 0) !important;
}

input[type=date].analytics-input-date::-webkit-datetime-edit-month-field,
input[type=date].analytics-input-date::-webkit-datetime-edit-day-field,
input[type=date].analytics-input-date::-webkit-datetime-edit-year-field {
  color: black;
  background: rgba(0, 0, 0, 0) !important;
}

.analytics-chart-filter {
  width: 25px !important;
  height: 20px !important;
  color: lightgrey;
  cursor: pointer;
}

.analytics-chart-filter.disable {
  width: 25px !important;
  height: 20px !important;
  cursor: default !important;
  opacity: .7 !important;
}

.analytics-chart-filter.disable:hover path {
  opacity: 1 !important;
}

.analytics-dropdown {
  margin-top: -3px;
}

.analytics-dropdown.full-width .Dropdown-control  {
  width: 100%;
}

.analytics-dropdown .Dropdown-control {
  width: 130px;
  padding: 2px;
  border-radius: 0px;
  border-color: black;
  border-style: solid;
  border-width: 0px 0px 3px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.analytics-dropdown .Dropdown-placeholder {
  color: grey;
  font-size: 12px;
}

.analytics-dropdown .Dropdown-arrow {
  top: 10px;
  right: 2px;
  border-color: black transparent transparent;
  border-width: 4px 4px 0;
}

.analytics-dropdown.is-open .Dropdown-arrow {
  border-color: transparent transparent black;
  border-width: 0 4px 4px;
}

.analytics-dropdown .Dropdown-menu {
  opacity: .85;
}

.analytics-dropdown .Dropdown-menu .Dropdown-option {
  color: black;
  padding: 2px;
  font-size: 12px;
  border-bottom: 1px lightgrey solid !important;
}

.analytics-dropdown.white {
  margin-top: 0px;
}

.analytics-dropdown.white .Dropdown-control {
  width: 165px;
  padding: 2px 10px;
  overflow: initial;
  border-radius: 0px;
  border-color: white;
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.analytics-dropdown.white .Dropdown-placeholder {
  color: white;
  font-size: 14px;
}

.analytics-dropdown.white .Dropdown-arrow {
  top: 15px;
  right: 5px;
  border-color: white transparent transparent;
  border-width: 4px 4px 0;
}

.analytics-dropdown.white.is-open .Dropdown-arrow {
  border-color: transparent transparent white;
  border-width: 0 4px 4px;
}

.analytics-dropdown.white .Dropdown-menu .Dropdown-option {
  color: black;
  padding: 4px 6px;
  font-size: 14px;
}

path, circle {
  pointer-events: all;
}

path:hover, circle:hover {
  opacity: .7;
}

.analytics-title-box {
  background-color: rgb(133, 133, 133);
  color: white;
  padding: 3px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.analytics-title-hr {
  flex: 1;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -moz-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  height: 0px;
  margin-top: 14px;
  border-width: 1px;
  border-color: rgba(246, 246, 246, .2);
}

.tr-last {
  border-bottom: 1px solid lightgrey;
}

.tr-last:last-child {
  border-bottom: 0px solid rgba(0, 0, 0, 0);
}

tr.tr-last.tr-hover:hover {
  background-color: rgba(150, 150, 150, .15) !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.analytics-filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  background-color: #0051ff;
  font-weight: normal;
}

.analytics-filter-bar div {
  flex: 1;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  -moz-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  cursor: pointer;
  min-width: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5px 12px;
  font-size: 11px;
  color: #b1b1b1;
  border-right: 2px #b1b1b1 solid;
  text-align: center;
}

.analytics-filter-bar div:last-child {
  border-right: none;
}


.analytics-filter-bar div:hover {
  color: white;
  background-color: #0041cc;
}

.analytics-filter-bar div.active {
  color: white;
}

input[type="text"]:disabled {
    cursor: no-drop;
}

input[type="checkbox"]:disabled {
    cursor: no-drop;
}

textarea:disabled {
    cursor: no-drop;
}

.react-bs-container-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  width: calc(100% - 5px);
  background-color: white;
}

.react-bs-container-body table, .react-bs-container-header table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  line-height: 30px;
}

.react-bs-container-body table tr,  .react-bs-container-header table tr {
  border-bottom: 1px solid lightgrey;
}

.react-bs-container-body table tr:last-child,  .react-bs-container-header table tr:last-child {
  border-bottom: 0px solid rgba(0, 0, 0, 0);
}

.react-bs-container-body table tr td,  .react-bs-container-header table tr th {
  text-align: center;
  font-size: 12px;
}

.analytics-follower-tabs .react-tabs__tab-list {
  margin: 0px 0px 20px 45px !important;
}

.analytics-follower-tabs .react-tabs__tab {
  letter-spacing: 2px;
  font-size: 10px !important;
  font-weight: normal !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 10px 10px 0 0 !important;
  margin: 0px 10px;
  background-color: lightgrey;
  color: grey !important;
}

.analytics-follower-tabs .react-tabs__tab--selected {
  height: 23px;
  border-color: lightgrey !important;
  color: grey !important;
  background-color: transparent;
  border-bottom: 1px white solid !important;
}

.rc-slider {
  border-radius: 0px !important;
  height: 60%;
  border-left: 3px solid #e9e9e9;
  border-right: 3px solid #e9e9e9;
}

.analytics-number-1 .rc-slider-handle {
  width: 10px;
  height: 15px;
  border: none;
  border-radius: 0px;
  background-color: #363a97;
}

.analytics-number-1 .rc-slider-track {
  background-color: #363a97;
}

.analytics-number-2 .rc-slider-handle {
  width: 10px;
  height: 15px;
  border: none;
  border-radius: 0px;
  background-color: #ed7f10;
}

.analytics-number-2 .rc-slider-track {
  background-color: #ed7f10;
}

.analytics-span-1, .analytics-span-2 {
  font-size: 10px;
  line-height: 12px;
  border-radius: 5px;
  padding: 2px 10px;
  margin: 0 5px;
}

.analytics-span-1 {
  border: 1px solid #363a97;
}

.analytics-span-2 {
  border: 1px solid #ed7f10;
}

.analytics-vertical-hr {
  margin: 0px 20px;
  border-color: rgb(0, 81, 255);
  border-style: solid;
  border-width: 0px 2px;
}

.analytics-input-date {
  color: black;
  line-height: 10px;
  text-align: center;
  width: 65px;
  border: none;
}

.triangle {
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  border-top: 1px solid lightgrey;
  border-left: 1px solid lightgrey;
}

.autoreply-table {
  border: none !important;
}

.autoreply-table:first-child {
  border-top: 2px solid black !important;
}

.autoreply-table:last-child {
  border-bottom: 2px solid black !important;
}

.autoreply-table-body {
  min-height: 414px !important;
  display: table;
}

.page-button {
  width: 40px;
  height: 35px;
  margin: 0 10px;
  font-size: 10px;
  line-height: 10px;
  cursor: pointer;
  background-color: #eef0f2;
  border: 1px solid #eef0f2;
}

.page-button:disabled {
  cursor: not-allowed !important;
  filter: brightness(105%) !important;
  -webkit-filter: brightness(105%) !important;
}

.page-button:hover {
  filter: brightness(85%);
  -webkit-filter: brightness(85%);
}

.basic-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.basic-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.basic-checkmark {
  position: absolute;
  top: -3px;
  left: 10px;
  height: 18px;
  width: 18px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid black;
}

.basic-checkbox:hover input ~ .basic-checkmark {
  background-color: #eeeeee;
}

.basic-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.basic-checkbox input:checked ~ .basic-checkmark:after {
  display: block;
}

.basic-checkbox .basic-checkmark:after {
 	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: black;
}

.thumb-container {
  position: relative;
}

.thumb-container:hover .bubble {
  display: block;
}

.bubble {
  position: absolute;
  display: none;
  padding: 5px;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
  border-radius: 3px;
  z-index: 50;
  top: -55px;
  left: 70px;
}

.bubble .back {
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 60;
  top: 50%;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-top: -7px;
  left: -10px;
  border-right: 10px solid rgb(255, 255, 255);
}

.bubble .up {
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 55;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  top: 50%;
  margin-top: -8px;
  left: -11px;
  border-right: 11px solid lightgrey;
}

.autoreply-tabs .react-tabs__tab-list {
  margin: 0px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  line-height: 16px;
}

.autoreply-tabs .react-tabs__tab {
  border-radius: 0px;
  background-color: lightgrey;
  border: 1px #f5f5f5 solid;
  border-bottom: 1px #aaa solid;
  width: auto;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0px;
  font-size: 12px;
}

.autoreply-tabs .react-tabs__tab input {
  line-height: 14px;
  padding: 8px 20px 8px 20px;
  background-color: transparent;
  border: none;
}

.autoreply-tabs .react-tabs__tab.react-tabs__tab--selected {
  padding: 0px;
  background-color: #f5f5f5;
  border: 1px #aaa solid;
  border-bottom: 1px #f5f5f5 solid;
}

.autoreply-tabs .react-tabs__tab.react-tabs__tab--selected input {
  line-height: 14px;
  padding: 10px 30px 8px 20px;
}

.autoreply-tab-keywords-container {
  padding: 20px 30px;
  border: 1px #aaa solid !important;
  border-top: none !important;
}

.autoreply-tab-keywords-container .react-tagsinput-tag {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  line-height: 18px;
  padding: 5px 30px 5px 10px;
  margin: 5px;
  background-color: #d6d5d5;
  display: inline-block;
  border: none;
  border-radius: 0px;
  position: relative;
  color: black;
  word-break: break-word;
}

.autoreply-tab-keywords-container .react-tagsinput-remove {
  position: absolute;
  right: 10px;
  top: 7px;
  color: black;
}

.autoreply-tab-keywords-container .react-tagsinput-input {
  padding: 8px 10px;
  margin: 0 5px;
  line-height: 18px;
}

.autoreply-tab-keywords-container .react-tagsinput-input:focus {
  background-color: #f5f5f5;
}

.language-dropdown {
  height: 40px;
  width: 250px;
  margin: 20px auto 0px auto;
}

.language-dropdown .Dropdown-control {
  height: 40px;
  line-height: 25px;
}

.language-dropdown .Dropdown-placeholder {
  text-align: left;
  padding-left: 5px;
}

.language-dropdown .Dropdown-menu .Dropdown-option {
  text-align: left;
  padding-left: 15px;
}

.chips-container div div {
  padding: 5px 10px !important;
  background: #e6e6e6 !important;
  font-size: 12px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
}

.chips-container div div span:hover {
  color: black !important;
  opacity: .7 !important;
}

.chips-container div div:last-child {
  padding: 0px !important;
  background: transparent !important;
}

.menu-preview {
  background: no-repeat bottom center;
  background-size: cover;
}

.emoji {
  width: 16px;
}

.skip {
  position: relative;
}

.skip:after {
  bottom: 0;
  right: -7px;
  content: "...";
  position: absolute;
}

.qr-logo {
  cursor: not-allowed;
  display: inline-block;
  -webkit-transform: scale(.35);
  transform: scale(.35);
}

.qr-logo.active {
  cursor: pointer;
}

.qr-dropzone div, .qr-dropzone div div {
  display: inline;
}

.upload-svg {
  height: 14px;
  display: inline-block;
  padding-right: 5px;
  width: auto !important;
  vertical-align: middle;
}

.qr-dropzone.active:hover div div svg path {
  fill: rgb(112, 112, 112);
}

.qr-dropzone.active:hover div div svg path {
  fill: #0051ff;
}

.qr-dropzone-holder {
  font-size: 14px;
  color: #707070;
  margin: 20px 0;
  text-align: center;
}

.qr-dropzone.active {
  cursor: pointer;
}

.qr-dropzone {
  cursor: not-allowed;
  display: inline;
  text-decoration: underline;
}

.qr-dropzone.active:hover {
  color: #0051ff;
}

.upload-icon-holder {
  position: relative;
}

.upload-icon {
  -moz-filter: opacity(40%);
  -webkit-filter: opacity(40%);
  -o-filter: opacity(40%);
  -ms-filter: opacity(40%);
  filter: opacity(40%);
}

.upload-icon-holder:hover .upload-icon {
  -moz-filter: none;
  -webkit-filter: none;
  -o-filter: none;
  -ms-filter: none;
  filter: none;
}

.upload-icon-text {
  display: none;
  left: 0px;
  width: 100%;
  font-size: 45px;
  position: absolute;
  color: white;
  text-shadow: 5px 5px 10px #808080,-5px -5px 10px #808080,5px -5px 10px #808080,-5px 5px 10px #808080,0px 0px 25px #000000;
  letter-spacing: .2em;
}

.upload-icon-holder:hover .upload-icon-text {
  display: block;
}

.draggable-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.draggable-list-item-container {
  width: 100%;
  margin-left: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.draggable-list-item-container:first-child {
  width: 100%;
  margin-left: 0px;
}

.draggable-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  margin-bottom: 10px;
}

.draggable-list-item.active {
  opacity: .7;
}

.draggable-list-item-img {
  width: 45px;
  height: 45px;
}

.draggable-list-item-img img {
  width: 45px;
  height: 45px;
}

.draggable-list-item-title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px;
  margin-left: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #e6e6e6;
  background-color: white;
  height: 45px;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.draggable-list-item-title div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 30px;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
}

.draggable-list-item-title div:first-child {
  width: auto;
  padding-left: 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.draggable-list-item-title div img {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.switch.on {
  background: #7fb85c !important;
}

.switch.disabled {
  cursor: not-allowed;
  background: #ccc;
}

.blasting-timepicker {
  margin-top: 5px;
  border-radius: 0px;
  border: 1px solid #e6e6e6;
  height: 25px;
  padding: 0px 10px;
  margin-top: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input#blasting-timepicker {
  border-radius: 0px;
  border: none;
  height: auto;
  padding-left: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.blasting-target {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1
}

.blasting-select .Select-control {
  min-height: 120px;
  border-radius: 0px;
  border: 1px solid #e3e4e7;
  background-color: white !important;
}

.blasting-select.disabled {
  opacity: 0.6;
  cursor: no-drop;
}

.blasting-select .Select-arrow-zone,
.blasting-select .Select-clear-zone {
  display: none;
}

.blasting-select .Select-clear-zone {
  width: 20px !important;
}

.blasting-select .Select-value {
  color: black !important;
  background-color: #e6e6e6 !important;
  border: 0px !important;
  padding: 5px 10px !important;
  border-radius: 10px !important;
  font-size: 10px !important;
}

.blasting-select:not(.is-disabled) .Select-value:hover {
  opacity: .8;
}

.blasting-select .Select-value:hover .Select-value-icon {
  opacity: 1;
  padding: 1px 2px 3px 2px !important;
  -webkit-transition: padding .5s, opacity .5s;
  transition: padding .5s, opacity .5s;
}

.blasting-select .Select-value-label {
  float: left !important;
}

.blasting-select .Select-value-icon {
  border-right: none !important;
  float: right !important;
  padding: 1px 0px 3px 0px !important;
  opacity: 0;
  -webkit-transition: padding .5s, opacity .5s;
  transition: padding .5s, opacity .5s;
}

.blasting-select .Select-value-icon:hover {
  color: black !important;
  background-color: transparent !important;
}

.blasting-select .Select-input > input {
  line-height: 18px;
}

.preview-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.preview-select .Select-input > input {
  padding: 5px 0px;
}

.preview-select .Select-control {
  width: 90%;
  height: 30px;
  border-radius: 0px;
  border: 1px solid #e3e4e7;
  background-color: white !important;
}

.preview-select.disabled {
  opacity: 0.6;
  cursor: no-drop;
}

.preview-select .Select-loading-zone {
  padding-right: 10px;
}

.preview-select .Select-arrow-zone,
.preview-select .Select-clear-zone {
  display: none;
}

.preview-select .Select-menu-outer {
  width: 90%;
}

.preview-select .Select-menu {
  max-height: 180px !important;
}

.preview-select .Select-option {
  padding: 0px !important;
}

.auto-width {
  width: -webkit-fill-available;
}

.fit-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.flex-full {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tags-history {
  color: black;
  border: 0px;
  font-size: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  padding: 5px 10px;
  background-color: #e6e6e6;
  border-radius: 10px;
  cursor: default;
}

.tags-history.disabled,
.tags-history-img.disabled {
  cursor: no-drop;
}

.tags-history:not(.disabled):hover,
.tags-history-img:not(.disabled):hover {
  opacity: .8;
}

.tags-history-img {
  margin: 5px 8px;
  height: auto;
  width: calc(33.33% - 16px);
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.history-tags-delete {
  line-height: 28px;
  padding: 0px 5px;
  font-weight: 500;
  cursor: pointer;
}

.preview-tags:not(.disabled)hover {
  opacity: .8;
}

.preview-tags.disabled {
  cursor: no-drop;
}

.preview-tags:hover .preview-tags-delete {
  padding: 0px 5px;
  opacity: 1;
  -webkit-transition: padding .5s, opacity .5s;
  transition: padding .5s, opacity .5s;
}

.preview-tags .preview-tags-delete {
  line-height: 28px;
  font-weight: 500;
  cursor: pointer;
  padding: 0px;
  opacity: 0;
  -webkit-transition: padding .5s, opacity .5s;
  transition: padding .5s, opacity .5s;
}

.blasting-target small {
  font-size: 12px;
}

.template-message-tabs {
  position: relative;
}

.template-message-tab {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 200px;
  height: 32px;
  border: 1px solid #C4C4C6;
  background-color: transparent;
  color: #C4C4C6;
  text-transform: uppercase;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 1;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-tab.active {
  border: none;
  color: white;
  border: 1px solid transparent;
}

.template-message-tab-bg {
  width: 200px;
  position: absolute;
  background-color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  top: 0px;
  height: 32px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-list {
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-list:last-child {
  padding: 10px 0px;
}

.template-message-list-item {
  font-size: 12px;
  color: #6E6E6E;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
}

.template-message-list-item.active, .template-message-list-item:hover {
  background-color: #E2E6EC;
}

.template-message-list-item-tri {
  width: 5px;
  height: 48px;
  position: relative;
}

.template-message-list-item-tri::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0 0px 0px;
  left: -12px;
  border-color: transparent transparent transparent #E2E6EC;
  position: absolute;
  top: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.template-message-list-item-tri.active::after {
  left: -2px;
  border-width: 10px 0 10px 10px;
}

.template-message-detail {
  width: 46%;
  padding: 0px 40px 0px 10px;
  border-right: 1px solid #E2E6EC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-preview {
  width: 54%;
  text-align: center;
}

.template-message-preview .mobile {
  height: 93%;
  width: 70%;
  min-width: 250px;
  background: url('/img/mobile_bg.png') center center no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  padding: 40% 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-preview .mobile .card {
  background-color: #FFFFFF;
  border: 1px #E2E6EC solid;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
  padding: 10px 0px;
}

.template-message-preview .mobile .card .title {
  white-space: pre-line;
  text-align: left;
  color: #4D4D4D;
  font-size: 16px;
  padding: 5px 20px 0px 20px;
  word-break: break-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-preview .mobile .card .date {
  white-space: pre-line;
  text-align: left;
  color: #AAAAAA;
  font-size: 12px;
  padding: 0px 20px 5px 20px;
  word-break: break-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-preview .mobile .card .content {
  white-space: pre-line;
  text-align: left;
  color: #4D4D4D;
  font-size: 12px;
  padding: 0px 20px 5px 20px;
  word-break: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-message-preview .mobile .card .content .arrow {
  height: 14px;
  margin-top: 4px;
  float: right;
  -webkit-filter: grayscale(1) brightness(3);
          filter: grayscale(1) brightness(3);
}

.template-message-detail-arrow {
  height: 22px;
  padding: 0px 10px;
}

.template-message-detail-tab {
  font-size: 12px;
  line-height: 18px;
  color: #2B2E34;
  padding: 2px 5px;
  background-color: transparent;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}

.template-message-detail-tab.active {
  color: white;
  background-color: #0051FF;
}

.template-message-detail-tab::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0px;
  height: 2px;
  width: 0px;
  background-color: #0051FF;
  -webkit-transition: .3s;
  transition: .3s;
}

.template-message-detail-tab.active::after {
  width: 30%;
}

.template-message-detail-container {
  width: 100%;
}

.template-message-detail-target {
  width: 100%;
}

.template-message-detail-holder {
  max-height: 640px;
  overflow-y: scroll;
}

.template-message-detail-label {
  font-size: 12px;
  color: #2B2E34;
}

.template-message-detail-input,
.template-message-detail-textarea,
.template-container {
  width: 100%;
  height: auto;
  padding: 8px 20px;
  margin: 5px 0px 10px 0px;
  border-radius: 0px;
  border: 1px solid #E2E6EC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
}

.template-message-detail-textarea {
  resize: vertical;
}

.template-container {
  padding: 8px 15px;
  position: relative;
}

.template-container > div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0px 10px;
}

.template-icon {
  width: auto;
  font-size: 14px;
  color: #C4C4C6;
  margin-top: 2px;
  height: 14px;
}

.template-container .react-datepicker-popper {
  top: 25px !important;
  width: calc(100% - 2px) !important;
  -webkit-transform: none !important;
          transform: none !important;
}

.template-container .react-datepicker {
  width: 100% !important;
  border-radius: 0px !important;
}

.template-container .react-datepicker__triangle{
  display: none;
}

.template-container .react-datepicker__month-container {
  width: 70%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-container .react-datepicker__time-container  {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-container .react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: calc(20% + 45px);
}

.template-container .react-datepicker__time-box {
  width: auto !important;
}

#template-timepicker {
  border: none;
  border-radius: 0px;
  padding: 0px;
  height: auto;
}

.template-country .Select-control,
.template-tag .Select-control {
  border-radius: 0px  !important;
  border: 1px solid #E2E6EC !important;
  outline: none  !important;
  margin: 5px 0px 10px 0px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.template-country .Select-arrow-zone,
.template-country .Select-clear-zone,
.template-country .Select-loading-zone,
.template-tag .Select-arrow-zone,
.template-tag .Select-clear-zone,
.template-tag .Select-loading-zone {
  display: none  !important;
}

.template-country .Select-input {
  width: 100%  !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.template-country .Select-input > input {
  padding: 8px 30px 12px 30px !important;
  width: 100% !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-tag .Select-input > input {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-country .Select-value,
.template-country .Select-placeholder {
  padding-left: 40px !important;
  padding-right: 40px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-tag .Select-value,
.template-tag .Select-placeholder {
  padding-left: 15px !important;
  padding-right: 15px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-country.sub code {
  opacity: 0;
}

.template-country.sub .Select-input > input {
  padding: 8px 30px 12px 10px !important;
  width: 100% !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-country.sub .Select-value,
.template-country.sub .Select-placeholder {
  padding-left: 20px !important;
  padding-right: 40px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-tag .Select-multi-value-wrapper {
  width: 100%;
  padding: 0px 5px;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

.template-tag .Select-value {
  color: black !important;
  background-color: #e3e4e7 !important;
  border: 0px !important;
  padding: 2px 10px !important;
  border-radius: 20px !important;
  font-size: 10px !important;
  margin: 5px 0px 5px;
}

.template-tag:not(.is-disabled) .Select-value:hover {
  opacity: .8;
}

.template-tag .Select-value-label {
  float: left !important;
}

.template-tag .Select-value-icon {
  cursor: pointer;
  border-right: none !important;
  float: right !important;
  padding: 2px 1px 0px 1px !important;
}

.template-tag .Select-value-icon:hover {
  color: black !important;
  background-color: transparent !important;
}

.template-tag .Select-input > input {
  line-height: 18px;
}

.basic-checkbox.small {
  display: block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.basic-checkbox.small input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.basic-checkmark.small {
  position: absolute;
  top: 3px;
  left: 0px;
  height: 10px;
  width: 10px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid #C4C4C6;
}

.basic-checkbox.small:hover input ~ .basic-checkmark {
  background-color: #eeeeee;
}

.basic-checkmark.small:after {
  content: "";
  position: absolute;
  display: none;
}

.basic-checkbox.small input:checked ~ .basic-checkmark.small:after {
  display: block;
}

.basic-checkbox.small .basic-checkmark.small:after {
 	top: 2px;
	left: 2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: black;
}

.template-message-detail-label ::-webkit-input-placeholder {
  color: #aaa;
  line-height: 34px;
  font-size: 12px;
}

.template-message-detail-label :-ms-input-placeholder {
  color: #aaa;
  line-height: 34px;
  font-size: 12px;
}

.template-message-detail-label ::-ms-input-placeholder {
  color: #aaa;
  line-height: 34px;
  font-size: 12px;
}

.template-message-detail-label ::placeholder {
  color: #aaa;
  line-height: 34px;
  font-size: 12px;
}

.template-message-detail-label :-ms-input-placeholder {
  color: #aaa;
  line-height: 34px;
  font-size: 12px;
}

.template-message-detail-label ::-ms-input-placeholder {
  color: #aaa;
  line-height: 34px;
  font-size: 12px;
}

.combine-bubble-holder {
  opacity: 1;
  z-index: 1;
  position: fixed;
  margin-top: 20px;
  margin-left: -22px;
  cursor: auto;
  transition: .2s;
  -webkit-transition: .2s;
}

.combine-bubble {
  position: relative;
  width: 660px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: black;
  padding: 0px;
  background-color: white;
  border: 1px #E6E6E6 solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px;
}

.combine-bubble .top {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.combine-bubble .bottom {
  text-align: left;
  margin-top: 5px;
}

.combine-bubble .bottom button {
  font-size: 12px;
  padding: 5px;
  min-width: 80px;
}

.combine-bubble .top .row {
  margin: 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.combine-bubble .top .row .col {
  width: 100%;
  padding: 5px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  height: 30px;
  border-bottom: 1px #E6E6E6 solid;
  opacity: 1;
  transition: .3s;
  -webkit-transition: .3s;
}

.media-index {
  width: 20px;
  background-color: #E6E6E6;
}

.media-title {
  text-align: left;
  font-weight: normal;
  padding-left: 5px;
}

.media-cross {
  color: #2B2E34;
  font-size: 12px;
  float: right;
  cursor: pointer
}

.combind-list-0-enter-appear {
  opacity: 0.01;
}

.combind-list-0-enter-appear.combind-list-enter-appear-active {
  opacity: 1;
  transition: opacity .5s ease-in;
}
