@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);
body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 0.9rem;
  line-height: 1.6;
}
body.hidescroll {
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
}
.page.centered-element {
  align-items: center;
  justify-content: center;
}

.overlay-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 890;
  display: none;
  transition: all 0.3s ease;
}
.overlay-mobile.show {
  display: block;
}

.topbar {
  position: fixed;
  display: flex;
  width: 100%;
  height: 71px;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.app-title.with-bg {
  padding: 20px 30px;
  width: 300px;
  background-color: #f9f9f9;
}
.app-title.for-login,
.app-title.common-element {
  display: flex;
  margin: 0 0 30px 0;
}
.app-title.for-login {
  justify-content: center;
}
.app-title a {
  display: flex;
  text-decoration: none;
}
.app-title .icon {
  font-size: 25px;
  color: #999;
  line-height: 30px;
}
.app-title.for-login .icon,
.app-title.common-element .icon {
  font-size: 35px;
}
.app-title a .heading {
  color: #111;
}
.app-title .heading {
  font-weight: 900;
  margin: 0 0 0 10px;
  font-size: 1.575rem;
}
.app-title.for-login .heading,
.app-title.common-element .heading {
  font-size: 2rem;
}
.app-title .heading span {
  font-weight: 300;
}

.top-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}
.top-nav .mm-nav {
  color: #222;
  display: inline-block;
  border: 1px solid transparent;
  padding: 0 5px;
  border-radius: 3px;
}
.top-nav .mm-nav.emboss {
  border: 1px solid #e8edff;
  background-color: #e8edff;
}
.top-nav .mm-nav:hover {
  border: 1px solid #e8edff;
}

.top-right-nav,
.mm-right-nav {
  text-align: right;
  display: flex;
  justify-content: right;
}
.top-right-nav.show .dropdown-toggle,
.mm-right-nav.show .dropdown-toggle {
  background-color: #e8edff;
}
.top-right-nav .dropdown-toggle,
.mm-right-nav .dropdown-toggle {
  border: 1px solid transparent;
  background-color: transparent;
  display: flex;
  padding: 7px 15px;
  border-radius: 5px;
}
.top-right-nav .dropdown-toggle:after,
.mm-right-nav .dropdown-toggle:after {
  margin-top: 10px;
  margin-left: 10px;
}
.top-right-nav .dropdown-toggle:hover,
.mm-right-nav .dropdown-toggle:hover {
  border: 1px solid #e8edff;
}
.top-right-nav .dropdown-toggle .icon,
.mm-right-nav .dropdown-toggle .icon {
  margin: 0 10px 0 0;
}
.top-right-nav .dropdown-toggle .name,
.mm-right-nav .dropdown-toggle .name {
  font-weight: 700;
}
.mm-right-nav {
  display: none;
}

.sidebar {
  position: fixed;
  width: 300px;
  background-color: #f9f9f9;
  left: 0;
  bottom: 0;
  height: calc(100% - 71px);
  overflow-y: auto;
  z-index: 990;
  transition: all 0.3s ease;
}
.sidebar.hide {
  left: -300px;
}

.mm-mobile {
  display: none;
}
.main-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px 0;
}
.main-menu > li a {
  color: #111;
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.main-menu > li a:hover {
  text-decoration: none;
}
.main-menu > li a .fa,
.main-menu > li a .fas,
.main-menu > li a .far,
.main-menu > li a .fab {
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.35);
}
.main-menu > li a[data-toggle="collapse"] {
  position: relative;
}
.main-menu > li a[data-toggle="collapse"]:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 30px;
  top: 10px;
}
.main-menu > li a[data-toggle="collapse"][aria-expanded="true"]:after {
  content: "\f107";
}
.main-menu > li a[data-toggle="collapse"][aria-expanded="false"]:after {
  content: "\f105";
}
.main-menu > li ul {
  padding: 0;
  list-style: none;
}
.main-menu > li ul > li a {
  padding: 5px 20px 5px 58px;
  position: relative;
}
.main-menu > li ul > li a:hover,
.main-menu > li ul > li.active a {
  background-color: #e8edff;
}
.main-menu > li ul > li a:before {
  position: absolute;
  left: 35px;
  color: #999;
  top: 4px;
  content: "•";
}
.main-menu > li > a {
  font-weight: 500;
  padding: 10px 30px;
}
.main-menu > li > a:hover {
  background-color: #e8edff;
}
.main-menu > .active a {
  background-color: #e8edff;
}

.form-control {
  font-size: inherit;
}

.content {
  padding: 0 20px 30px 20px;
  min-height: calc(100vh - 170px);
}

.page-title {
  margin: 40px 0;
  padding: 0 0 15px 0;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
.page-subtitle {
  margin: 0 0 30px 0;
  padding: 0 0 15px 0;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  padding: 7px 15px;
  margin: 10px 0 0 0;
  background-color: #f9f9f9;
  color: rgba(0, 0, 0, 0.5);
}

.centered-box-wrapper {
  width: 650px;
}
.centered-box-wrapper .checker-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.centered-box-wrapper .checker-list li {
  margin: 0 0 10px 0;
}
.centered-box-wrapper .checker-list .msg .alert,
.centered-box-wrapper .checker-list .msg-assets .alert {
  margin: 0 0 2px;
  padding: 5px 10px;
  font-size: 90%;
}
.centered-box-wrapper .checker-list li {
  position: relative;
  padding: 0 0 0 25px;
  font-weight: 500;
}
.centered-box-wrapper .checker-list li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  content: "\f058";
}
.login-wrapper {
  width: 450px;
}
.login-wrapper .additional-info,
.centered-box-wrapper .additional-info {
  font-size: 13px;
  color: #888;
}
.login-wrapper .additional-info p,
.centered-box-wrapper .additional-info p {
  margin: 0 0 5px 0;
}
.login-wrapper .copyright,
.centered-box-wrapper .copyright {
  font-size: 90%;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 20px 0 0 0;
}
.login-box,
.setup-box {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 5px;
}
.login-box h2,
.setup-box h2 {
  margin: 0 0 30px 0;
  padding: 0;
  font-weight: 700;
  font-size: 22px;
}
.setup-box .item:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f055";
  font-weight: 900;
  color: rgba(0,0,0,.3);
}
.setup-box .item {
  position: relative;
}
.setup-box .item h3 {
  color: rgba(0,0,0,.5);
  display: inline-block;
  font-size: 20px;
  margin: 0;
  padding: 0 0 0 25px;
}
.setup-box .item h3.done {
  color: rgba(0, 0, 0, .85);
}
.setup-box .item .spinner-icon,
.setup-box .item .success-state,
.setup-box .item .fail-state {
  margin-left: 10px;
  display: none;
}
.setup-box .item .spinner-icon.show,
.setup-box .item .success-state.show,
.setup-box .item .fail-state.show {
  display: inline-block;
}

.content-wrapper {
  margin: 71px 0 0 0;
  width: calc(100% - 300px);
  margin-left: 300px;
  transition: all 0.3s ease;
}
.content-wrapper.hide {
  width: 100%;
  margin-left: 0;
}

.footer-wrapper {
  margin: 30px 0 0 0;
  padding: 0 20px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 90%;
}
.footer-wrapper .app-footer {
  border-top: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.form-box {
  border-radius: 5px;
  border: 1px solid #eee;
  padding: 35px;
  background-color: #f9f9f9;
}
.form-box .attch {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.form-box .schedule-form {
  display: flex;
  align-items: center;
}
.form-box .schedule-form .sch-check {
  margin: 0 15px 0 0;
}
.form-box .label {
  font-weight: 500;
}

.recipient_wrapper .recipient_type {
  display: flex;
  margin: 0 0 8px 0;
}
.recipient_wrapper .recipient_type .radio-form {
  margin: 0 7px 0 0;
}
.recipient_wrapper .recipient_type .main-form {
  width: 100%;
}

.mail-attachment-wrapper div {
  display: flex;
}
.mail-attachment-wrapper div .del-nav {
  width: 30px;
}
.draft-attachment {
  display: flex;
  margin: 0 0 30px 0;
}
.draft-attachment .item {
  position: relative;
  border: 1px solid #ccc;
  padding: 3px 10px;
  margin: 0 5px 0 0;
  background-color: #fff;
  max-width: 120px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.draft-attachment .item .del {
  position: absolute;
  top: -5px;
  right: 0;
  opacity: 0.5;
}
.draft-attachment .item .del:hover {
  opacity: 1;
}

.csv-upload-wrapper,
.logo-upload-wrapper,
.attch-upload-wrapper {
  display: flex;
  align-items: center;
}
.csv-upload-wrapper label:before,
.logo-upload-wrapper label:before,
.attch-upload-wrapper label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 10px;
  top: 3px;
  content: "\f093";
}
.csv-upload-wrapper label {
  background-color: #fff;
}
.logo-upload-wrapper label {
  background-color: #fff;
}
.attch-upload-wrapper label {
  background-color: #ddd;
}
.csv-upload-wrapper label,
.logo-upload-wrapper label,
.attch-upload-wrapper label {
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  padding: 5px 12px 5px 30px;
  font-weight: 500;
}
.csv-upload-wrapper label[aria-disabled="false"] {
  border: 1px solid #ccc;
  color: #222;
}
.logo-upload-wrapper label[aria-disabled="false"] {
  border: 1px solid #ccc;
  color: #222;
}
.attch-upload-wrapper label {
  border: 1px solid #fff;
  color: #222;
}
.csv-upload-wrapper label[aria-disabled="true"],
.logo-upload-wrapper label[aria-disabled="true"],
.attch-upload-wrapper label[aria-disabled="true"] {
  color: #ccc;
  background-color: #eee;
  border: 1px solid #ddd;
}
.csv-upload-wrapper label + input:disabled,
.logo-upload-wrapper label + input:disabled,
.attch-upload-wrapper label + input:disabled {
  color: #fff;
  opacity: 0.5;
}
.csv-upload-wrapper input,
.logo-upload-wrapper input,
.attch-upload-wrapper input {
  display: none;
}
.csv-upload-wrapper input:disabled + label,
.logo-upload-wrapper input:disabled + label,
.attch-upload-wrapper input:disabled + label {
  color: #999;
}
.attch-upload-wrapper .filename {
  margin: 0 0 0 10px;
}
.csv-upload-wrapper .filename {
  margin: 0 10px;
}
.logo-upload-wrapper .filename {
  margin: 0 10px;
}
.csv-upload-wrapper .filename.show {
  border: 1px solid #ddd;
  padding: 2px 10px;
  font-style: italic;
}
.csv-upload-wrapper .filename.show a {
  display: inline-block;
  margin: 0 0 0 10px;
}
.logo-upload-wrapper .filename.show {
  border: 1px solid #ddd;
  padding: 2px 10px;
  font-style: italic;
}
.logo-upload-wrapper .filename.show a {
  display: inline-block;
  margin: 0 0 0 10px;
}

.tooltip-icon {
  color: #ccc;
  font-size: 80%;
}
.tooltip-icon:hover {
  color: #999;
}

.ck-editor__editable_inline {
  min-height: 300px !important;
}
.ck.ck-editor__main > .ck-editor__editable.custom-disabled:not(.ck-focused),
.ck.ck-editor__main > .ck-editor__editable.custom-disabled {
  background-color: #eee;
}
.ck-read-only {
  background-color: #f4f4f4 !important;
}

.custom-card {
  background-color: rgba(0, 0, 0, 0.02);
}
.common-form label {
  text-align: right;
}
.common-form .form-with-unit {
  display: flex;
  align-items: center;
}
.common-form .form-with-unit .form-input {
  width: 80px;
  margin: 0 10px 0 0;
}
.common-form .form-with-unit .form-input input {
  text-align: right;
}
.common-form .form-with-unit .unit {
  color: #777;
  font-size: 85%;
}
.common-form small.text-muted {
  display: block;
  margin: 0;
  color: #aaa !important;
}

.user-profile .logs .date {
  display: inline-block;
  margin: 0 20px 0 0;
  color: #777;
}

.user-profile .photo {
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
}
.user-profile .no-image {
  font-size: 6em;
  text-align: center;
  color: #ccc;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #eee;
  width: 150px;
  height: 150px;
}
.user-profile.center .photo,
.user-profile.center .no-image {
  margin: 0 auto;
}

.form-control::-webkit-input-placeholder {
  /* Edge */
  color: rgba(0, 0, 0, 0.3);
}
.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.3);
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.mail-stats-wrapper .nav-pills {
  margin: 0 0 30px 0;
}
.mail-stats-wrapper .nav-pills a {
  color: #999;
  border: 1px solid transparent;
}
.mail-stats-wrapper .nav-pills .nav-link {
  margin: 0 2px 0 0;
}
.mail-stats-wrapper .nav-pills a:hover {
  border: 1px solid #e8edff;
}
.mail-stats-wrapper .nav-pills .nav-link.active {
  background-color: #e8edff;
  color: #111;
  font-weight: 700;
}

.stats-dept-setting .bg-wrapper {
  display: flex;
}
.stats-dept-setting .color-dropdown.show .dropdown-toggle {
  background-color: #e8edff;
}
.stats-dept-setting .color-dropdown .dropdown-toggle {
  border: 1px solid #e8edff;
  background-color: transparent;
  display: flex;
  padding: 5px 10px;
  border-radius: 3px;
}
.stats-dept-setting .color-dropdown .dropdown-toggle:after {
  margin-top: 10px;
  margin-left: 10px;
}
.stats-dept-setting .color-dropdown .dropdown-toggle:hover {
  border: 1px solid #ddd;
}
.stats-dept-setting .color-dropdown .color-wrapper {
  display: flex;
  align-items: center;
}
.stats-dept-setting .color-dropdown .color-wrapper .color {
  border: 1px solid #000;
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
}
.stats-dept-setting .color-dropdown .color-wrapper .red {
  background-color: #ff0000;
}
.stats-dept-setting .color-dropdown .color-wrapper .blue {
  background-color: blue;
}
.stats-dept-setting .color-dropdown .color-wrapper .green {
  background-color: green;
}
.stats-dept-setting .color-dropdown .color-wrapper .yellow {
  background-color: yellow;
}
.stats-dept-setting .color-dropdown .color-wrapper .teal {
  background-color: teal;
}
.stats-dept-setting .color-dropdown .color-wrapper .navy {
  background-color: navy;
}
.stats-dept-setting .color-dropdown .color-wrapper .orange {
  background-color: orange;
}
.stats-dept-setting .color-dropdown .color-wrapper .white {
  background-color: white;
}
.stats-dept-setting .color-dropdown .dropdown-item {
  padding: 2px 10px;
  position: relative;
}
.stats-dept-setting .color-dropdown .dropdown-item.selected {
  font-weight: 700;
}
.stats-dept-setting .color-dropdown .dropdown-item.selected:after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 700;
  top: 2px;
  right: 20px;
  content: "\f00c";
}

.mail-content-box {
  border: 1px solid #eee;
  padding: 20px 30px;
  min-height: 370px;
}
.mail-content-box .top-section {
  margin-bottom: 30px;
}
.mail-content-box .top-section .item {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 7px 0;
}
.mail-content-box .top-section .item .leftside {
  width: 160px;
}
.mail-content-box .body-section {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.mail-content-box .body-section img {
  max-width: 100%;
}
.mail-content-box .bottom-section h3 {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.mail-content-box .bottom-section .attachment-wrapper {
  display: flex;
  margin: 20px 0 0 0;
}
.mail-content-box .bottom-section .attachment-wrapper .icon {
  margin: 0 6px 0 0;
  color: rgba(0, 0, 0, 0.3);
}
.mail-content-box .bottom-section .attachment-wrapper a {
  color: rgba(0, 0, 0, 0.8);
}
.mail-content-box a.maillist {
  background-color: #eee;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-size: 90%;
  color: #444;
  padding: 2px 8px 0px 8px;
}
.mail-content-box a.maillist:hover {
  background-color: #ddd;
}
.icon-report {
  width: 40px;
}
.icon-report.on {
  color: green;
}
.icon-report.off {
  color: #999;
}
.dash__user-box {
  border: 1px solid #eee;
  padding: 20px;
}
.dash__user-box .caption {
  font-size: 80%;
  color: #999;
}
.dash__email-list .icon {
  color: #ccc;
  font-size: 90%;
}
.dash__email-list .main-subject h3 {
  font-size: 15px;
  font-weight: normal;
  margin: 0 0 2px 0;
  padding: 0;
}
.dash__email-list .main-subject .meta {
  font-size: 80%;
  color: #999;
}
.dash__email-list .muted {
  color: #999;
  font-style: italic;
  font-size: 90%;
}
.dash__user-box.num-stats {
  padding: 0;
  border-radius: 5px;
}
.dash__user-box.num-stats.red {
  background-color: red;
}
.dash__user-box.num-stats.navy {
  background-color: navy;
}
.dash__user-box.num-stats.blue {
  background-color: blue;
}
.dash__user-box.num-stats.orange {
  background-color: orange;
}
.dash__user-box.num-stats.white {
  background-color: white;
}
.dash__user-box.num-stats.teal {
  background-color: teal;
}
.dash__user-box.num-stats.green {
  background-color: green;
}
.dash__user-box.num-stats .title,
.dash__user-box.num-stats .number {
  color: #fff;
}
.dash__user-box.num-stats.white .title,
.dash__user-box.num-stats.white .number {
  color: #222;
}
.dash__user-box.num-stats .title {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
  padding: 12px 15px 5px;
}
.dash__user-box.num-stats .number {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.dash__user-box.num-stats .in-range {
  color: #ddd;
  font-size: 13px;
  text-align: right;
  padding: 10px 10px;
}
.dash__user-box.num-stats.white .in-range {
  color: #999;
}
.resetpassword-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: #007bff;
}

.btn-mail-send {
  padding: 0.375rem 70px;
  text-transform: uppercase;
  font-weight: 700;
}
.btn:disabled,
.btn-mail-send:disabled,
.btn-mail-preview:disabled,
.btn-mail-draft:disabled,
.addressbook_lookup:disabled,
.save_ab:disabled,
#set_password_submit:disabled,
.sync-table:disabled {
  background-color: #ccc;
  color: #999;
  border-color: #999;
}

.mailpreview {
  background-color: #f9f9f9;
}
.mailpreview .mp-container {
  margin: 30px auto 40px auto;
  width: 90%;
}
.mailpreview .mp-container .mp-content {
  background-color: #fff;
  padding: 20px;
  min-height: 300px;
}
.mailpreview .mp-container .mp-content img {
  max-width: 100%;
}
.mailpreview .mp-container .mp-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mailpreview .mp-container .mp-top-nav .thumb {
  width: 300px;
}
.mailpreview .mp-container .mp-top-nav .thumb img {
  width: 100%;
}

.floating-message {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1025;
  display: none;
}
.floating-message.show {
  display: block;
}

.notfound-wrapper {
  width: 720px;
}
.notfound-wrapper .app-title.common-element {
  margin: 0 0 10px 0;
}
.notfound-wrapper .title {
  font-size: 18px;
  margin: 0 0 20px 0;
}
.notfound-wrapper .giant-icon {
  font-size: 7.5em;
  color: rgba(0, 0, 0, 0.1);
  text-align: right;
}

.dataTables_info {
  font-size: 95%;
  color: #999;
}

#mailList_wrapper > .row {
  flex-wrap: nowrap;
}
#mailList_wrapper > .row > .col-md-6 {
  flex: 1;
  max-width: none;
}
#mailList_wrapper > .row > .col-md-6:first-child {
  flex: auto;
}
#mailList_wrapper #mailList .mail-invalid {
  font-style: italic;
  color: #ff0000;
}
#mailList_wrapper .valid-filter {
  font-size: 0.875rem;
}
#mailList .schd .far,
#mailList .crt .far,
#scheduledList .schd .far,
#scheduledList .crt .far {
  display: inline-block;
  width: 18px;
}
#mailList .schd,
#scheduledList .schd {
  font-style: italic;
  font-weight: 500;
}
#mailList .crt,
#scheduledList .crt {
  color: #777;
  font-size: 85%;
}

.btn-add:before,
.btn-save:before,
.btn-lookup:before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 700;
  font-size: 20px;
  top: 0;
  left: 10px;
}
.btn-add:before {
  content: "\f055";
}
.btn-save:before {
  content: "\f0c7";
}
.btn-lookup:before {
  content: "\f002";
  font-size: 16px;
  top: 4px;
}
.btn-add,
.btn-save,
.btn-lookup {
  position: relative;
  text-transform: uppercase;
  padding-left: 36px;
  font-size: 14px;
  font-weight: 500;
}

.password_strength {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.password_strength .strength_caption {
  color: #999;
  min-width: 130px;
}
.password_strength .bars {
  width: 180px;
  height: 10px;
  background-color: #ccc;
}
.password_strength .bars .bar {
  background-color: red;
  height: 100%;
  width: 30%;
}

/* .accordion.api-endpoint .card {
  border-radius: 0;
}
.accordion.api-endpoint .card-header {
  padding: 8px 12px;
}
.accordion.api-endpoint .card .card-header > a {
  display: block;
}
.accordion.api-endpoint .card .method-label {
  display: inline-block;
  padding: 2px 10px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-right: 10px;
  color: #fff;
  font-weight: 500;
} */

.endpoint-doc {
  border-bottom: 1px solid #eee;
  margin: 0 30px 30px 30px;
  line-height: 26px;
}
.endpoint-doc p {
  margin: 0 0 25px 0;
}
.endpoint-doc .title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
}
.endpoint-doc .api-endpoint {
  margin: 0 0 20px;
  font-size: 18px;
}
.endpoint-doc .api-endpoint .method {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 1px 10px;
  font-size: 15px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
}
.endpoint-doc .httpie {
  background-color: #efefef;
  padding: 8px 12px;
  margin: 0 0 20px 0;
  overflow-wrap: break-word;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}
.endpoint-doc .response-json {
  background-color: #efefef;
  padding: 10px 20px;
  margin: 0 0 30px 0;
}
.endpoint-doc .response-json pre {
  padding: 0;
  margin: 0;
  line-height: 22px;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

@media only screen and (max-width: 991px) {
  .common-form label {
    text-align: left;
  }
  .form-box {
    border-radius: 5px;
    padding: 15px;
  }
}

.stats-table .header-wrapper {
  display: flex;
  align-items: end;
}
.stats-table .header-wrapper .title-caption {
  flex: 1;
  font-weight: normal;
}
.stats-table .nav-row {
  background-color: #f9f9f9;
}
.stats-table .stats-nav {
  display: flex;
  align-items: end;
}
.stats-table .stats-nav .option,
.stats-table .stats-nav .period {
  margin-right: 10px;
}
.stats-table .form-group {
  margin-bottom: 0;
}
.stats-table .form-group .form-control,
.stats-table .form-group .input-group-text,
.stats-table .btn {
  font-size: inherit;
}
.stats-table .input-group > .form-control {
  width: 160px;
}
.stats-table .bootstrap-datetimepicker-widget table td.day {
  font-weight: normal;
  font-size: inherit;
}
.stats-table .bootstrap-datetimepicker-widget .timepicker-picker table {
  border: 0;
}
.stats-table .bootstrap-datetimepicker-widget .timepicker-picker table td {
  width: auto;
  padding: 0;
  height: auto;
  line-height: 0;
}
.stats-table
  .bootstrap-datetimepicker-widget
  .timepicker-picker
  table
  td.separator {
  padding: 25px 0 0 0;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: auto;
}

.error-server .alert-danger p {
  margin: 0 0 5px 0;
  padding: 0 0 0 25px;
  position: relative;
}
.error-server .alert-danger p::before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 900;
  top: 0;
  left: 0;
  opacity: 0.4;
  content: "\f057";
  /* content: "\f107"; */
}
.error-server .alert-danger p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 820px) {
  .app-title.with-bg {
    width: 220px;
  }
  .sidebar {
    left: -300px;
  }
  .content-wrapper {
    width: 100%;
    margin-left: 0;
  }
  .footer-wrapper {
    margin: 20px 0 0 0;
    padding: 0 10px;
  }
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tbody tr td::before {
    content: attr(data-label);
    float: left;
    text-transform: capitalize;
    font-weight: 500;
  }
  tbody tr td {
    display: block;
    text-align: right;
  }
  .users-action-form {
    text-align: right;
  }
  .smtp-setting table,
  .imap-setting table,
  .mail-stats-wrapper #mailDetailTabContent table {
    display: table;
  }
  .smtp-setting table tbody,
  .imap-setting table tbody,
  .mail-stats-wrapper #mailDetailTabContent table tbody {
    display: table-row-group;
  }
  .smtp-setting table tbody tr,
  .imap-setting table tbody tr,
  .mail-stats-wrapper #mailDetailTabContent table tbody tr {
    display: table-row;
  }
  .smtp-setting table tbody tr td,
  .imap-setting table tbody tr td,
  .mail-stats-wrapper #mailDetailTabContent table tbody tr td {
    width: auto !important;
    display: table-cell;
  }
  .smtp-setting tbody tr td:nth-child(2),
  .imap-setting tbody tr td:nth-child(2) {
    min-width: 50% !important;
  }
  .smtp-setting tbody tr td:nth-child(1),
  .imap-setting tbody tr td:nth-child(1) {
    text-align: left;
    font-weight: 500;
  }
  .smtp-setting .table-bordered td,
  .imap-setting .table-bordered td {
    border: 0;
  }
  .dash__email-list table {
    border-bottom: 2px solid #eee;
  }
  .dash__email-list table tr td,
  .mail-stats-wrapper #mailDetailTabContent table tr td {
    text-align: left;
  }
  .dash__email-list table tr td:nth-child(1) {
    display: none;
  }
  .dash__email-list table tr td:nth-child(2) {
    padding: 10px 0.3rem 0.3rem 15px;
  }
  .dash__email-list table tr td:nth-child(3) {
    padding: 0.3rem 0.3rem 0.3rem 15px;
  }
  .dash__email-list table tr td:nth-child(3),
  .dash__email-list table tr td:nth-child(4),
  .dash__email-list table tr td:nth-child(5) {
    display: inline-block;
    width: auto !important;
    border-top: 0;
  }
  .btn-mail-send {
    padding: 0.375rem 40px;
  }
  .mail-content-box {
    padding: 10px 15px;
  }
  .notfound-wrapper {
    width: 100%;
    padding: 0 30px;
    text-align: center;
  }
  .notfound-wrapper .app-title.common-element {
    justify-content: center;
  }
  .notfound-wrapper .giant-icon {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .topbar {
    background-color: #f9f9f9;
    align-items: center;
  }
  .app-title.with-bg {
    width: 100%;
    padding: 20px;
  }
  .top-nav {
    display: none;
  }
  .content {
    padding: 0 5px 20px 5px;
  }
  .mm-mobile,
  .mm-right-nav {
    display: block;
  }
  .mm-mobile {
    margin: 0 0 0 20px;
  }
  .mm-mobile a {
    color: #111;
  }
  .sidebar.showmobile {
    left: 0;
  }
}
