@forward './components/responsive';
@forward './components/tab-preview';
@forward './components/customize-submit';
@forward './components/customize-header';
@forward './components/customize-messages';
@forward './components/customize-icons';
@forward './components/fonts';

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

.tab-recall_page_tabrecall_customize_page #wpcontent {
  padding-left: 0;
}

:root {
  --primary: #1A1919;
  --secondary: #656575;
}

.font_inter {
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 800px;
  width: 100%;
  padding: 0 28px;
  margin: 0 auto;
}

.tabrecall-container {
  padding-inline: 0.5rem;
}

.tabrecall_heading_1,
.tabrecall_heading_2 {
  font-weight: 600;
  line-height: 24px;
  color: var(--primary);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

.tabrecall_heading_1 {
  font-size: 24px;
}

.tabrecall_heading_2 {
  font-size: 20px;
}

.tabrecall_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--secondary);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

.tabrecall_text_primary {
  color: var(--primary) !important;
}

.tabrecall_mb_20 {
  margin-bottom: 20px;
}

.tabrecall_mb_24 {
  margin-bottom: 24px;
}

.tabrecall_pb_24 {
  padding-bottom: 24px;
}

.tabrecall_header_time {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  gap: 12px;
}

.tabrecall_header_time :nth-child(3) {
  margin-left: 15px;
}

.tabrecall_note p {
  margin-top: 15px;
  margin-bottom: 0;
}


.tabrecall_app .msg_header_input {
  all: unset !important;
  max-width: 50px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--secondary) !important;
}




.tabrecall-container #snackbar-alert {
  color: #fff;
  text-align: center;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  border-radius: 5px;
  animation: fadeIn 0.5s, fadeOut 0.5s 2.5s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}