/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* input[type='file'] {
  color: rgba(0, 0, 0, 0)
} */

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  min-height: 100%;
}

html {
  min-height: 100%;
}

h1 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 34px;
  line-height: 51px;
  font-style: normal;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #050505;
}

p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

h3 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
}

input::placeholder {
  color: #a9b0c3;
  font-size: 13.45px;
  font-weight: 400;
}

.container {
  padding: 0 20px;
  display: block;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  float: none;
}

button {
  border-radius: 31.8px;
  border: none;
  height: 45px;
  padding: 9px 21px;
  font-size: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

button.btn-green[disabled] {
  background: #e8ecfa;
  color: #9f9f9f;
  border: 6px solid #e8ecfa;
  padding: 3px 21px;
}

button.btn-green[disabled] i {
  background-image: url("/assets/img/arrow-right-gray.png");
}

.btn-green:hover {
  background-color: #4ab575;
  color: #fff;
}

.btn-green:focus {
  border: 6px solid #51c27e;
  padding: 3px 21px;
}

.body-wrapper-main {
  width: 100%;
  height: 100%;
  background-color: #293dad;
  min-height: 100vh;
}

.body-wrapper-password.body-color#logreg-forms {
  max-width: 730px;
}

.body-wrapper-main #logreg-forms .blue-btn i {
  background-image: url("../img/facebook.png");
}

.body-wrapper-main #logreg-forms .gray-btn .google {
  background-image: url("../img/google.png");
}

.body-wrapper-main #logreg-forms .gray-btn .facebook {
  background-image: url("../img/facebook.png");
}

.body-wrapper-main #logreg-forms .gray-btn .email {
  background-image: url("../img/email.png");
}

.body-wrapper-main #logreg-forms .gray-btn:last-child {
  margin-bottom: 25px;
}

.body-wrapper-main #logreg-forms .link-container a i {
  background-image: url("../img/arrow.png");
}

.body-wrapper-main #sign-up button a {
  color: #fff;
}

.body-wrapper-main #sign-up button i {
  background-image: url("../img/arrow-white-right.png");
}

.body-wrapper {
  width: 100%;
  background-color: #293dad;
  display: flex;
  flex-direction: column;
}

.body-wrapper-password .forgot-password {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  padding: 40px 0 34px 0;
  margin-bottom: 71px;
  margin-bottom: 0px;
}

.body-wrapper-password .forgot-password h1 {
  padding-left: 44px;
  margin-bottom: 5px;
}

.body-wrapper-password .forgot-password p {
  max-width: 530px;
  padding-left: 45px;
  margin-bottom: 63px;
  font-weight: 400;
}

.body-wrapper-password
  .forgot-password
  .input-wrapper-2
  .input-label-box-2
  input[type="email"] {
  margin: 0 283px 109px 45px;
}

.input-wrapper-2 {
  display: flex;
  flex-wrap: wrap;
}

.input-wrapper-2 .input-label-box-2 {
  display: flex;
  flex-direction: column;
}

.input-wrapper-2 .input-label-box-2 input[type="email"] {
  margin-left: 45px;
  margin-bottom: 127px;
  height: 43px;
  border: 2px solid #dce0ed;
  border-radius: 5.8852px;
  min-width: 402px;
  padding-left: 15px;
}

.input-wrapper-2 .input-label-box-2 label {
  display: block;
  margin-left: 50px;
  margin-bottom: 13px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.body-wrapper {
  width: 100%;
  background-color: #4055cc;
}

.input-wrapper-register {
  display: flex;
  flex-wrap: wrap;
}

.input-wrapper-register .input-label-box {
  display: flex;
  flex-direction: column;
}

.input-wrapper-register .input-label-box input[type="text"] {
  margin-left: 45px;
  margin-bottom: 127px;
  height: 43px;
  border: 2px solid #dce0ed;
  border-radius: 5.8852px;
  min-width: 272px;
  padding-left: 15px;
}

.input-wrapper-register .input-label-box input[type="email"] {
  margin-left: 45px;
  margin-bottom: 127px;
  height: 43px;
  border: 2px solid #dce0ed;
  border-radius: 5.8852px;
  min-width: 272px;
  padding-left: 15px;
}

.input-wrapper-register .input-label-box input[type="password"] {
  margin-left: 45px;
  margin-bottom: 127px;
  height: 43px;
  border: 2px solid #dce0ed;
  border-radius: 5.8852px;
  min-width: 272px;
  padding-left: 15px;
}

.input-wrapper-register .input-label-box label {
  display: block;
  margin-left: 50px;
  margin-bottom: 13px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.additional-info-2 {
  text-align: center;
  color: #ffffff;
}

.additional-info-2 small {
  display: block;
  line-height: 20px;
  font-size: 13.45px;
}

.additional-info-2 small:last-child {
  margin-top: 8px;
  padding-bottom: 25px;
}

.additional-info-2 small a {
  color: #ffffff;
  font-weight: 700;
}

.body-wrapper-email-check .check-mail .text-center {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.body-wrapper-email-check .check-mail .text-center h3 {
  color: #ffffff;
  margin-top: 74px;
  margin-bottom: 21px;
}

.body-wrapper-email-check .check-mail .text-center img {
  margin-bottom: 210px;
}

.body-wrapper-email-check .check-mail .text-center h1 {
  color: #ffffff;
  margin-bottom: 71px;
}

.body-wrapper-email-check .check-mail .check-your-email {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.body-wrapper-email-check .check-mail .check-your-email img {
  margin-bottom: 26px;
}

.body-wrapper-email-check .check-mail .check-your-email h1 {
  color: #ffffff;
  margin-bottom: 4px;
}

.body-wrapper-email-check .check-mail .check-your-email p {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 26px;
}

.body-wrapper-email-check .check-mail .check-your-email button {
  margin-bottom: 231px;
  background-color: #51c27e;
  color: #ffffff;
}

.body-wrapper-email-check .check-mail .check-your-email button a {
  color: #fff;
}

.centered-dots {
  text-align: center;
}

.body-color {
  background-color: #293dad;
}

.email-confirmed {
  background-color: #536dff;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 74px;
}

.email-confirmed .text-center h3 {
  margin-bottom: 21px;
}

.email-confirmed .text-center img {
  margin-bottom: 154px;
}

.email-confirmed .confirmation-info {
  margin: 0 auto;
}

.email-confirmed .confirmation-info p {
  width: 416px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 35px;
}

.email-confirmed .confirmation-info img {
  margin-bottom: 25px;
}

.email-confirmed .confirmation-info h1 {
  margin-bottom: 26px;
}

.email-confirmed .text-box {
  width: 311px;
  margin: 0 auto;
}

.email-confirmed .text-box h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 159px;
}

.email-confirmed .text-box button {
  background-color: #51c27e;
  padding: 9px 61px 9px 51px;
  font-weight: 500;
  margin-bottom: 25px;
}

.business-info-2 {
  background-color: #536dff;
  padding-top: 74px;
}

.business-info-2 .text-center {
  text-align: center;
  color: #ffffff;
}

.business-info-2 .text-center h3 {
  margin-bottom: 21px;
}

.business-info-2 .text-center img {
  margin-bottom: 20px;
}

.business-info-2 .text-center h1 {
  padding-bottom: 71px;
}

.business-info .business-info-container-2 {
  background-color: #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 730px;
  margin: auto;
}

.business-info .business-info-container-2 h1 {
  padding: 33px 455px 5px 44px;
}

.business-info .business-info-container-2 p {
  width: 506px;
  padding-left: 45px;
  padding-bottom: 54px;
}

.address .form-input-2 {
  padding-right: 60px;
  padding-left: 45px;
  padding-bottom: 25px;
}

.address .form-input-2 input {
  display: block;
  margin-top: 13px;
  border-radius: 5.8852px;
  border: 2px solid #dce0ed;
  width: 100%;
  padding: 7px 5px 7px 15px;
}

.business-form-2 .address .form-input-2 label {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-right: 13px;
}

.business-form-2 .address .form-input-2 img {
  position: relative;
  top: 2px;
  left: 13px;
}

.address .form-input-2 img:hover {
  cursor: pointer;
}

.business-form-2 .address-details {
  display: flex;
  padding-left: 44px;
  padding-right: 60px;
  padding-bottom: 32px;
  gap: 25px;
}

.address-details .form-input-3 input {
  border-radius: 5.8852px;
  border: 2px solid #dce0ed;
  width: 100%;
  padding: 7px 5px 7px 15px;
  margin-top: 13px;
}

.address-details .form-input-3 label {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  padding-left: 3px;
}

.address-details .form-input-3 img {
  position: relative;
  top: 2px;
  left: 13px;
}

.address-details .form-input-3 img:hover {
  cursor: pointer;
}

.phone-number .form-input-4 {
  padding-right: 414px;
  padding-left: 45px;
  padding-bottom: 44px;
}

.phone-number .form-input-4 input {
  display: block;
  margin-top: 13px;
  border-radius: 5.8852px;
  border: 2px solid #dce0ed;
  width: 100%;
  padding: 7px 5px 7px 15px;
}

.phone-number .form-input-4 label {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  padding-left: 3px;
}

.phone-number .form-input-4 img {
  position: relative;
  top: 2px;
  left: 13px;
}

.phone-number .form-input-4 img:hover {
  cursor: pointer;
}

.navigation-buttons-2 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 41px;
  padding-left: 44px;
  padding-right: 34px;
  align-items: center;
}

.input-container label {
  display: block;
}

.input-container.tooltip-container {
  position: relative;
}

.input-container.tooltip-container .tooltip {
  position: absolute;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  top: -73px;
  left: -300px;
  text-align: left;
  display: none;
}

.input-container.tooltip-container .tooltip:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  position: absolute;
  right: -10px;
  top: 70px;
}

.input-container-2 label {
  display: block;
}

.input-container-2.tooltip-container-2 {
  position: relative;
}

.input-container-2.tooltip-container-2 .tooltip-2 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  top: -5px;
  left: 455px;
  text-align: left;
  display: none;
}

.input-container-2.tooltip-container-2 .tooltip-2:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
  position: absolute;
  right: 271px;
  top: 37px;
}

.input-container-3 input {
  border: 1px solid black;
  display: block;
}

.input-container-3 label {
  display: block;
}

.input-container-3.tooltip-container-3 {
  position: relative;
}

.input-container-3.tooltip-container-3 .tooltip-3 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  top: -20px;
  left: -300px;
  text-align: left;
  display: none;
}

.input-container-3.tooltip-container-3 .tooltip-3:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  position: absolute;
  left: 270px;
  top: 73px;
}

.input-container-4 input {
  border: 1px solid black;
  display: block;
}

.input-container-4 label {
}

.input-container-4.tooltip-container-4 {
  position: relative;
}

.input-container-4.tooltip-container-4 .tooltip-4 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  top: 40px;
  left: -330px;
  text-align: left;
  display: none;
}

.input-container-4.tooltip-container-4 .tooltip-4:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  position: absolute;
  left: 300px;
  top: 60px;
}

.input-container-5 input {
  border: 1px solid black;
  display: block;
}

.input-container-5 label {
  display: block;
}

.input-container-5.tooltip-container-5 {
  position: relative;
}

.input-container-5.tooltip-container-5 .tooltip-5 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  top: 40px;
  left: -330px;
  text-align: left;
  display: none;
}

.input-container-5.tooltip-container-5 .tooltip-5:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  position: absolute;
  left: 300px;
  top: 60px;
}

.input-container-6 label {
  display: block;
}

.input-container-6.tooltip-container-6 {
  position: relative;
}

.input-container-6.tooltip-container-6 .tooltip-6 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  top: -73px;
  left: -300px;
  text-align: left;
  display: none;
}

.input-container-6.tooltip-container-6 .tooltip-6:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  position: absolute;
  right: -10px;
  top: 70px;
}

.input-container-7.tooltip-container-7 {
  position: relative;
}

.input-container-7.tooltip-container-7 .tooltip-7 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  min-width: 300px;
  top: -70px;
  left: -370px;
}

.input-container-7.tooltip-container-7 .tooltip-7:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  left: 300px;
  top: 73px;
}

.input-container-8.tooltip-container-8 {
  position: relative;
}

.input-container-8.tooltip-container-8 .tooltip-8 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  min-width: 300px;
  top: -190px;
  left: -50px;
}

.input-container-8.tooltip-container-8 .tooltip-8:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  left: 140px;
  top: 165px;
}

.input-container-9.tooltip-container-9 {
  position: relative;
}

.input-container-9.tooltip-container-9 .tooltip-9 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  min-width: 300px;
  top: -60px;
  left: 280px;
}

.input-container-9.tooltip-container-9 .tooltip-9:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
  left: -10px;
  top: 70px;
}

.input-container-10.tooltip-container-10 {
  position: relative;
}

.input-container-10.tooltip-container-10 .tooltip-10 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  min-width: 300px;
  top: -50px;
  left: 710px;
}

.input-container-10.tooltip-container-10 .tooltip-10:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
  left: -10px;
  top: 70px;
}

.input-container-11.tooltip-container-11 {
  position: relative;
}

.input-container-11.tooltip-container-11 .tooltip-11 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -73px;
  left: -370px;
}

.input-container-11.tooltip-container-11 .tooltip-11:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 70px;
}

.input-container-12.tooltip-container-12 {
  position: relative;
}

.input-container-12.tooltip-container-12 .tooltip-12 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -37px;
  left: -370px;
}

.input-container-12.tooltip-container-12 .tooltip-12:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 47px;
}

.input-container-13.tooltip-container-13 {
  position: relative;
}

.input-container-13.tooltip-container-13 .tooltip-13 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -37px;
  left: -370px;
}

.input-container-13.tooltip-container-13 .tooltip-13:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 47px;
}

.input-container-14.tooltip-container-14 {
  position: relative;
}

.input-container-14.tooltip-container-14 .tooltip-14 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -5px;
  left: 705px;
}

.input-container-14.tooltip-container-14 .tooltip-14:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
  right: 300px;
  top: 37px;
}

.input-container-15.tooltip-container-15 {
  position: relative;
}

.input-container-15.tooltip-container-15 .tooltip-15 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -37px;
  left: -360px;
}

.input-container-15.tooltip-container-15 .tooltip-15:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 47px;
}

.input-container-16.tooltip-container-16 {
  position: relative;
}

.input-container-16.tooltip-container-16 .tooltip-16 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -5px;
  left: 380px;
}

.input-container-16.tooltip-container-16 .tooltip-16:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffffff;
  left: -10px;
  top: 37px;
}

.input-container-17.tooltip-container-17 {
  position: relative;
}

.input-container-17.tooltip-container-17 .tooltip-17 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -37px;
  left: -380px;
}

.input-container-17.tooltip-container-17 .tooltip-17:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 47px;
}

.input-container-18.tooltip-container-18 {
  position: relative;
}

.input-container-18.tooltip-container-18 .tooltip-18 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -220px;
  left: 120px;
}

.input-container-18.tooltip-container-18 .tooltip-18:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  right: 140px;
  top: 190px;
}

.input-container-19.tooltip-container-19 {
  position: relative;
}

.input-container-19.tooltip-container-19 .tooltip-19 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -30px;
  left: -370px;
}

.input-container-19.tooltip-container-19 .tooltip-19:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 35px;
}

.input-container-20.tooltip-container-20 {
  position: relative;
}

.input-container-20.tooltip-container-20 .tooltip-20 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -30px;
  left: -370px;
}

.input-container-20.tooltip-container-20 .tooltip-20:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 35px;
}

.input-container-21.tooltip-container-21 {
  position: relative;
}

.input-container-21.tooltip-container-21 .tooltip-21 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -30px;
  left: -370px;
  z-index: 999;
}

.input-container-21.tooltip-container-21 .tooltip-21:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 35px;
}

.input-container-22.tooltip-container-22 {
  position: relative;
}

.input-container-22.tooltip-container-22 .tooltip-22 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -30px;
  left: -370px;
}

.input-container-22.tooltip-container-22 .tooltip-22:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 35px;
}

.input-container-23.tooltip-container-23 {
  position: relative;
}

.input-container-23.tooltip-container-23 .tooltip-23 {
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
  max-width: 300px;
  top: -30px;
  left: -370px;
}

.input-container-23.tooltip-container-23 .tooltip-23:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  right: -10px;
  top: 35px;
}

.input-container-24.tooltip-container-24 {
  position: relative;
}

.input-container-24.tooltip-container-24 .tooltip-24 {
  max-width: 300px;
  top: -20px;
  left: -300px;
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
}

.input-container-24.tooltip-container-24 .tooltip-24:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  left: 270px;
  top: 73px;
}

.input-container-25.tooltip-container-25 {
  position: relative;
}

.input-container-25.tooltip-container-25 .tooltip-25 {
  max-width: 300px;
  top: -20px;
  left: -300px;
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
}

.input-container-25.tooltip-container-25 .tooltip-25:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  left: 270px;
  top: 73px;
}

.input-container-26.tooltip-container-26 {
  position: relative;
}

.input-container-26.tooltip-container-26 .tooltip-26 {
  max-width: 300px;
  top: -20px;
  left: -300px;
  position: absolute;
  background: #ffffff;
  width: 100%;
  color: black;
  border-radius: 10px;
  padding: 20px 10px 20px 20px;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  text-align: left;
  display: none;
}

.input-container-26.tooltip-container-26 .tooltip-26:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  left: 270px;
  top: 73px;
}

.tip {
  position: relative;
}

.tip span {
  display: none;
  position: absolute;
  top: 100px;
  left: 150px;
  max-width: 300px;
  z-index: 100;
  color: #000000;
  text-align: left;
  background: white;
  padding: 18px 29px 18px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 3px 1px #dce0ed;
}

.tip span:hover {
  display: block;
}

.tip-2 {
  position: relative;
}

.tip-2 span {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  min-width: 280px;
  z-index: 100;
  color: #000000;
  text-align: left;
  background: white;
  padding: 18px 29px 18px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 3px 1px #dce0ed;
}

.tip-2 span:hover {
  display: block;
}

td:hover.tip span {
  display: block;
}

th:hover.tip-2 span {
  display: block;
}

.input-container-18.tooltip-container-18:hover .tooltip-18 {
  display: block;
}

.input-container-19.tooltip-container-19:hover .tooltip-19 {
  display: block;
}

.input-container-20.tooltip-container-20:hover .tooltip-20 {
  display: block;
}

.input-container-21.tooltip-container-21:hover .tooltip-21 {
  display: block;
}

.input-container-22.tooltip-container-22:hover .tooltip-22 {
  display: block;
}

.input-container-23.tooltip-container-23:hover .tooltip-23 {
  display: block;
}

.input-container-24.tooltip-container-24:hover .tooltip-24 {
  display: block;
}

.input-container-25.tooltip-container-25:hover .tooltip-25 {
  display: block;
}

.input-container-26.tooltip-container-26:hover .tooltip-26 {
  display: block;
}

.tip-container-1.tip-box-1:hover .tip-content-1 {
  display: block;
}

.form-login-account input[type="email"],
.form-login-account input[type="password"] {
  margin-left: 45px;
  margin-bottom: 25px;
  height: 43px;
  border: 2px solid #dce0ed;
  border-radius: 5.8852px;
  min-width: 200px;
  padding-left: 15px;
}

.form-login-account button {
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

.business-info .dot {
  margin-right: 30px;
}

.up-arrow {
  height: 0;
  background: transparent;
  position: absolute;
  right: -10px;
  bottom: 18px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.down-arrow {
  height: 0;
  background: transparent;
  position: absolute;
  right: -10px;
  top: 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.registration-complete {
  background-color: #536dff;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding-top: 74px;
  padding-top: 0px;
}

.registration-complete .congratulations {
  margin: 0 auto;
}

.registration-complete .congratulations p {
  width: 416px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 35px;
}

.registration-complete .congratulations img {
  margin-bottom: 25px;
}

.registration-complete .congratulations h1 {
  margin-bottom: 26px;
}

.registration-complete .register-info {
  width: 311px;
  margin: 0 auto;
  margin-bottom: 161px;
}

.registration-complete .register-info h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 34px;
}

.registration-complete .register-info button {
  background-color: #51c27e;

  font-weight: 500;
}

input::-webkit-input-placeholder {
  color: #a9b0c3;
  font-size: 13.45px;
  font-weight: 400;
}

input:-ms-input-placeholder {
  color: #a9b0c3;
  font-size: 13.45px;
  font-weight: 400;
}

input::-ms-input-placeholder {
  color: #a9b0c3;
  font-size: 13.45px;
  font-weight: 400;
}

.card {
  background-color: #ffffff;
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
  padding: 20px 19px 14px 19px;
  border-radius: 10px;
  width: 100%;
  display: block;
}

.main-card {
  margin: 20px 31px 44px 90px;
  margin: 33px 31px 55px 90px;
  margin: 33px 31px 55px 40px;
}

.up-arrow {
  height: 0;
  background: transparent;
  position: absolute;
  right: -10px;
  bottom: 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.down-arrow {
  height: 0;
  background: transparent;
  position: absolute;
  right: -10px;
  top: 15px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.up-arrow--position {
  position: absolute;
  top: 43px;
}

.down-arrow--position {
  position: absolute;
  top: 54px;
}

.btn-gray {
  background-color: #dce0ed;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}

.btn-gray i {
  display: inline-block;
  height: 12px;
  width: 8px;
  background-image: url("/assets/img/arrow-left-black.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 13.5px;
}

.btn-green {
  background-color: #51c27e;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
  border: 6px solid #51c27e;
  padding: 3px 21px;
}

.btn-green i {
  display: inline-block;
  height: 12px;
  width: 8px;
  background-image: url("/assets/img/arrow-white-right.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 11px;
}

.btn-lightblue {
  background-color: #68b4ff;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  cursor: pointer;
}

.text-center {
  text-align: center;
  color: #ffffff;
}

.text-center h3 {
  margin-bottom: 21px;
}

.text-center img {
  margin-bottom: 20px;
}

.text-center h1 {
  padding-bottom: 71px;
}

.text-center-final-page {
  margin-bottom: 129px;
}

.text-center-final-page h3 {
  margin-bottom: 21px;
}

@font-face {
  font-family: SFProText-Light;
  src: url(../fonts/sf-pro-text/SF-Pro-Text-Light.otf);
}

@font-face {
  font-family: SFProText-Light-Italic;
  src: url(../fonts/sf-pro-text/SF-Pro-Text-LightItalic.otf);
}

@font-face {
  font-family: SFProText-Bold;
  src: url(../fonts/sf-pro-text/SF-Pro-Text-Bold.otf);
}

@font-face {
  font-family: Segoe-UI;
  src: url(../fonts/Segoe-UI/UI.woff);
}

.grid-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  grid-template-areas:
    "header"
    "main"
    "footer";
  height: 100vh;
  background-color: #536dff;
  position: relative;
}

.grid-container .menu-icon-wrapper {
  padding: 10px;
  background-image: url(/assets/img/menu.svg);
  background-size: cover;
  width: 26px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid-container .menu-icon-wrapper .menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 5px;
  left: 10px;
  z-index: 1;
  cursor: pointer;
}

.grid-container .header .header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid-container .header .header__logo .logo-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.logo-small img
{
   height:55px;
}
.grid-container .header .header__logo .logo-small small {
  visibility: hidden;
  display: none;
}

.grid-container .header .header__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.grid-container .header .header__avatar .header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid-container .header .header__avatar .header-links .invite-link {
  background-color: #dce0ed;
  border-radius: 100px;
  padding: 10px 20px 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 17px;
  cursor: pointer;
}

.grid-container .header .header__avatar .header-links .invite-link .info-img {
  max-height: 17px;
  max-width: 17px;
  margin-right: 11px;
}

.grid-container .header .header__avatar .header-links .invite-link .link-img {
  max-height: 20px;
  max-width: 20px;
  margin-left: 13px;
}

.grid-container .header .header__avatar .header-links .bell {
  background-color: #dce0ed;
  padding: 4px 14px 3px 14px;
  margin-right: 28px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.grid-container .header .header__avatar .header-links .bell .bell-img {
  width: 22px;
  height: 25px;
  width: 18px;
  height: 40px;
}

.grid-container .header .header__avatar .profile-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #dce0ed;
  border-radius: 10px;
  padding: 12px 26px 11px 16px;
}

.grid-container .header .header__avatar .profile-div img {
  margin-right: 5px;
}

.grid-container .header .header__avatar .profile-div .profile-div-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-container .main .main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sidenav .menu-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 75px 80px 74px;
  gap: 17px;
  padding: 15px 75px 80px 74px;
}

.sidenav .sidenav__list {
  padding: 0;
  list-style-type: none;
}

.sidenav .sidenav__list .sidenav__list-item {
  color: #536dff;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
}

/* Moderation Sidebar */
.sidenav__list-item.dropdown {
  display: block !important;
}

.sidenav .sidenav__list .sidenav__list-item.list-item-gray.list-item-active {
  background-color: #676f71;
  color: #ffffff;
}

.sidenav
  .sidenav__list
  .sidenav__list-item.list-item-gray.list-item-active
  img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.sidenav .sidenav__list .sidenav__list-item:hover {
  cursor: pointer;
}

.sidenav .sidenav__list .sidenav__list-item:first-child img {
  padding-right: 58px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(2) img {
  padding-right: 48px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(3) img {
  padding-right: 58px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(4) img {
  padding-right: 45px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(5) {
  margin-bottom: 160px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(5) img {
  padding-right: 52px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(6) {
  color: #000000;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(6) img {
  padding-right: 22px;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(7) {
  color: #000000;
}

.sidenav .sidenav__list .sidenav__list-item:nth-child(7) img {
  padding-right: 20px;
}

.sidenav .sidenav__list .list-item-active {
  background-color: #536dff;
  color: #ffffff;
  position: relative;
  color: #536dff;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidenav .sidenav__list .list-item-active a {
  color: #ffffff;
}

.sidenav .sidenav__list .list-item-active .sidebar-link i::before {
  filter: brightness(0) invert(1);
}

.sidenav .sidenav__list .list-item-active:first-of-type::after {
  content: url(/assets/img/corner-bottom.svg);
  position: absolute;
  right: -9px;
  bottom: -14px;
}

.sidenav .sidenav__list .list-item-active:first-of-type::before {
  content: url(/assets/img/corner-top.svg);
  position: absolute;
  right: -2px;
  top: -18.1px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(2)::after {
  content: url(../img/corner-bottom.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(2)::before {
  content: url(../img/corner-top.svg);
  position: absolute;
  right: -2px;
  top: -19px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(3)::after {
  content: url(../img/corner-bottom.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(3)::before {
  content: url(../img/corner-top.svg);
  position: absolute;
  right: -2px;
  top: -18px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(4)::after {
  content: url(../img/corner-bottom.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(4)::before {
  content: url(../img/corner-top.svg);
  position: absolute;
  right: -2px;
  top: -19px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(5)::after {
  content: url(../img/corner-bottom.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(5)::before {
  content: url(../img/corner-top.svg);
  position: absolute;
  right: -2px;
  top: -19px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(6)::after {
  content: url(../img/corner-bottom-gray.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(6)::before {
  content: url(../img/corner-top-gray.svg);
  position: absolute;
  right: -2px;
  top: -19px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(7)::after {
  content: url(../img/corner-bottom-gray.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active:nth-of-type(7)::before {
  content: url(../img/corner-top-gray.svg);
  position: absolute;
  right: -2px;
  top: -19px;
}

.sidenav
  .sidenav__list.sidenav__list_two
  .main-gray
  .sidenav__list-item.active:first-of-type::before {
  content: url(../img/corner-top-gray.svg);
  position: absolute;
  right: -2px;
  top: -18px;
}

.sidenav
  .sidenav__list.sidenav__list_two
  .main-gray
  .sidenav__list-item.active:first-of-type::after {
  content: url(../img/corner-bottom-gray.svg);
  position: absolute;
  right: -9px;
  bottom: -13px;
}

.sidenav .sidenav__list .list-item-active img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.sidenav .main-gray li {
  background: #626b72;
}

.sidenav .main-gray.ng-star-inserted li i {
  filter: brightness(0) invert(1);
}

.sidenav .main-gray.ng-star-inserted li span {
  color: #fff;
}

.sidebar-end {
  display: grid;
  align-content: end;
  align-items: end;
}

.sidenav .download-app-btn {
  border-radius: 10px;
  border: 2px solid #dce0ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 20px 0px 20px;
  margin-left: 9px;
  margin-right: 8px;
}

.sidenav .download-app-btn .apple-store {
  margin-left: 15px;
  margin-right: 15px;
}

.sidenav.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.sidenav__close-icon {
  position: absolute;
  visibility: visible;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #ddd;
}

.grid-container .header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 40px 10px 43px;
  background-color: #ffffff;
  display: block;
  height: fit-content;
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  background: rgba(38, 38, 38, 0.9);
}

.cdk-global-scrollblock {
  top: 0 !important;
}

.grid-container .header gc-admin-header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 40px 10px 0px;
  background-color: #ffffff;
}

.sidenav {
  grid-area: sidenav;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 360px;
  position: fixed;
  overflow-y: auto;
  -webkit-transform: translateX(-360px);
  transform: translateX(-360px);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  z-index: 2;
  -webkit-box-shadow: 0px 25px 50px rgba(34, 50, 140, 0.2);
  box-shadow: 0px 25px 50px rgba(34, 50, 140, 0.2);
  background-color: #ffffff;
  overflow: hidden;
  position: fixed;
  width: 300px;
}

.grid-container .footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 16px;
  background-color: #536dff;
  color: #ffffff !important;
  position: absolute;
  bottom: 0;
  width: 95%;
}
@media (max-width: 425px) {
  .grid-container .footer {
    width: 95%;
  }
}
.grid-container .main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
  background-color: #536dff;
}

/*.grid-container .main-card-3 .card .notices-panel .notices-inputs .type::before {
  content: url(../img/up-arrow.png);
  position: absolute;
  right: 10px;
  top: 45px;
  cursor: pointer;
}

.grid-container .main-card-3 .card .notices-panel .notices-inputs .type::after {
  content: url(../img/down-arrow.png);
  position: absolute;
  right: 10px;
  top: 55px;
  cursor: pointer;
}
*/
.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-image
  .phone-img {
  width: 312px;
  height: 633px;
  background-image: url(../img/create-notice-phone-img.svg);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.main-gray .card {
  background-color: transparent;
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
  padding: 20px 19px 14px 19px;
  border-radius: 10px;
  width: 100%;
  display: block;
}

.grid-container .main-card .card .invite-subscription {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 21px;
  margin-bottom: 30px;
}

.grid-container .main-card .card .invite-subscription .invite-link {
  padding-top: 22px;
  padding-bottom: 14px;
  padding-left: 21px;
  padding-right: 19px;
  width: 100%;
}

.grid-container .main-card .card .invite-subscription .invite-link p {
  font-size: 14px;
  margin-bottom: 15px;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .invite-link
  .invite-link-input {
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .invite-link
  .invite-link-input::before {
  content: url(../img/copy-to-clipboard.svg);
  position: absolute;
  left: 13px;
  top: 6px;
  cursor: pointer;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .invite-link
  .invite-link-input
  input {
  border: none;
  border-radius: 5.88px;
  padding: 9px 5px 9px 50px;
  background-color: #dce0ed;
  min-width: 272px;
  font-size: 13.45px;
  color: #565656;
}

.grid-container .main-card .card .invite-subscription .invite-link small {
  font-size: 10px;
  color: #767980;
  font-weight: 400;
}

.grid-container .main-card .card .invite-subscription .subscription-settings {
  padding: 16px 13px 12px 21px;
  width: 100%;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .subscription-settings
  .subscription-settings-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .subscription-settings
  .subscription-settings-title
  h1 {
  font-size: 20px;
  font-weight: 700;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .subscription-settings
  .card-details {
  margin-bottom: 7px;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .subscription-settings
  .card-details
  p {
  font-weight: 600;
  font-size: 18px;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .subscription-settings
  .card-details
  p
  span {
  font-weight: 300;
  font-size: 16px;
}

.grid-container
  .main-card
  .card
  .invite-subscription
  .subscription-settings
  .subscription-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.grid-container .main-card .card .allow-email-notifications {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.grid-container .main-card .card .allow-email-notifications small {
  font-size: 12px;
}

.grid-container .main-card .card .allow-email-notifications p {
  font-weight: 400;
  font-size: 14px;
}

.grid-container .main-card .card .allow-chat-messages {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.grid-container .main-card .card .allow-chat-messages p {
  font-weight: 400;
  font-size: 14px;
}

.grid-container .main-card .card .welcome-msg .update-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .address-details-settings {
  padding-left: 0;
  padding-right: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .address-details-settings
  .input-width {
  width: 100%;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-website-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 45px;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-website-link
  input {
  width: 100%;
  margin-left: 0;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-website-link
  label {
  margin-left: 0;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-website-link
  .gift-card-link {
  width: 100%;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .short-description--settings
  textarea {
  margin-left: 0;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .tags-field--settings
  .tags-input--settings {
  padding-right: 0;
}

.grid-container .main-card .card .business-details--settings .upload-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .upload-section
  .side-image--settings {
  margin-right: 106px;
  position: relative;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .upload-section
  .side-image--settings
  .image-description-settings {
  position: absolute;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-name--settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-name--settings
  .form-input--settings
  label {
  margin-left: 0;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .business-name--settings
  .form-input--settings
  input {
  margin-left: 0;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .update-business-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.grid-container .footer-gray {
  background-color: #676f71 !important;
}

.grid-container .main-card .card-5 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
  padding: 36px 34px 14px 33px;
  border-radius: 10px;
}

.grid-container .main-card .card-5 .chats-title {
  margin-bottom: 29px;
}

.grid-container .main-card .card-5 .chats-title .chats-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}

.grid-container .main-card .card-5 .chats-title .chats-div img {
  margin-right: 12px;
}

.grid-container .main-card .card-5 .chats-title .chats-paragraph {
  color: #565656;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}

.inbox .table-row .user-info .avatar {
  min-width: 50px;
  min-height: 50px;
  background-image: url(../img/avatar-small.svg);
  position: relative;
  margin-right: 28.29px;
  background-repeat: no-repeat;
}

.main-card
  .chat-card
  .chat-container
  .chat-app
  .chat-app-head
  .chat-app-username
  .close-chat {
  min-width: 14px;
  min-height: 14px;
  display: inline-block;
  background-image: url(../img/close-btn.svg);
  background-size: contain;
  margin-right: 19px;
  cursor: pointer;
}

.custom-textarea {
  display: block;
  resize: none;
  margin-top: 13px;
  border-radius: 5.8852px;
  border: 2px solid #dce0ed;
  padding: 11px 15px 11px 15px;
  width: 100%;
}

.custom-textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #a9b0c3;
}

.custom-textarea:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #a9b0c3;
}

.custom-textarea::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #a9b0c3;
}

.custom-textarea::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #a9b0c3;
}

.custom-label {
  font-size: 18px;
  font-weight: 600;
}

.custom-label-tooltip {
  font-size: 18px;
  font-weight: 600;
}

.custom-label-tooltip img {
  position: relative;
  top: 2px;
  left: 9px;
}

.custom-label-tooltip img:hover {
  cursor: pointer;
}

.green-btn-smaller {
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  background-color: #51c27e;
  color: #ffffff;
  max-height: 34px;
  padding: 0 25px;
  font-size: 13.45px;
}

.gray-btn-smaller {
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  background-color: #dce0ed;
  color: #050505;
  height: 34px;
  padding: 0 25px;
  font-size: 13.45px;
}

.main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.main-title .title-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-title .title-div img {
  margin-right: 12px;
}

.rounded-container {
  border: 2px solid #dce0ed;
  border-radius: 10px;
}

.toggle-switch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 220px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.toggle-switch-container > label {
  display: inline-block;
  margin-right: 31px;
  font-size: 18px;
  font-weight: 600;
}

.toggle-switch-container .toggle-switch {
  display: inline-block;
  vertical-align: middle;
}

.toggle-switch-container .toggle-switch label {
  cursor: pointer;
  display: block;
  width: 80px;
  height: 45px;
}

.toggle-switch-container .toggle-switch span {
  position: relative;
  background: #c4c4c4;
  height: 45px;
  display: block;
  border-radius: 100px;
}

.toggle-switch-container .toggle-switch input {
  display: none;
}

.toggle-switch-container .toggle-switch a {
  position: absolute;
  right: 50%;
  pointer-events: none;
  height: 36px;
  width: 36px;
  top: 5px;
  display: block;
  background: white;
  border-radius: 50%;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}

.toggle-switch-container .toggle-switch input:checked + span {
  background-color: #51c27e;
  border-color: #51c27e;
}

.toggle-switch-container .toggle-switch input:checked + span a {
  right: 5px;
}

.faded {
  opacity: 0.5;
}

form-error {
  display: block;
  margin-left: 45px;
  margin-top: 5px;
  margin-left: 0px;
}

.business-info form-error {
  margin-left: 0px;
}

.form-error-control {
  display: block;
  margin-left: 45px;
  margin-top: 5px;
}

.fa-info-circle::before {
  content: " ";
  display: inline-block;
  height: 17px;
  width: 17px;
  background-image: url("/assets/img/information.svg");
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
}

.sidenav .sidenav-comp .sidebar-inner .fa-info-circle::before {
  content: " ";
  display: inline-block;
  background-image: url(" ");
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.tooltip.show {
  background: #fff;
  margin: 10px;
  padding: 10px;
  z-index: 10;
  border-radius: 10px;
}

.apple-store {
  display: inline-block;
  border-radius: 60px;
  padding: 8px 10px;
  margin-right: 30px;
  margin-left: 30px;
}

.google-play {
  display: inline-block;
  border-radius: 60px;
  width: 22px;
  height: 44px;
}

.step-1 p {
  opacity: 0.5;
}

.horizontal-line {
  display: block;
  width: 80%;
  margin-left: 10%;
  border-top: 2px solid #dce0ed;
}

.publish-btn {
  right: 0;
}

.publish-button-bottom {
  justify-content: flex-end;
}

.sidebar-link .ti-home::before {
  content: url(/assets/img/home.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.sidebar-link .ti-user::before {
  content: url(/assets/img/insiders.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.sidebar-link .ti-signal-create::before {
  content: url(/assets/img/create-notice.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.sidenav__list-item.active .sidebar-link .ti-signal-create::before {
  content: url(/assets/img/selected-notice.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.sidenav
  .sidenav__list
  .list-item-active
  .sidebar-link
  i.ti-signal-create::before {
  filter: none;
}

.sidebar-link .ti-signal::before {
  content: url(/assets/img/notices.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.sidebar-link .ti-comments::before {
  content: url(/assets/img/chats.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.ti-settings::before {
  content: url(/assets/img/settings.svg) !important;
  padding-right: 45px;
  width: 30px;
  display: block;
}

.main-gray .sidebar-link .ti-settings::before {
  filter: brightness(0) invert(1);
}

.main-gray .sidebar-link .title.c-gray-500 {
  color: #fff;
}

.sidebar-link .ti-help::before {
  content: url(/assets/img/help.svg);
  padding-right: 45px;
  width: 30px;
  display: block;
}

.sidenav__list-item a {
  display: flex;
  color: #007aff;
  width: 100%;
  padding: 24px 25px 25px 40px;
}

.sidenav__list_two a {
  color: #000;
}

.sidenav .sidenav__list sidebar-element:nth-child(5) {
  margin-bottom: 160px;
  display: block;
  margin-bottom: 0px;
}

gc-admin-sidebar {
  display: block;
  height: 100%;
}

.sidenav__list_two sidebar-element:nth-child(1)::after {
  border: 1px solid #dce0ed;
  content: "";
  width: 80%;
  display: block;
  margin: 0 auto;
}

select {
  background: #fff;
  border-radius: 5.8852px;
  border: 2px solid #dce0ed;
  width: 100%;
  padding: 7px 15px 7px 15px;
  margin-top: 13px;
}

.dot-active-last {
  margin-right: 0;
}

.menu-icon {
  visibility: hidden;
}

.grid-container .header {
  padding: 0;
}

.grid-container .header .header__avatar .header-links .invite-link input {
  background: #dce0ed;
  border: 1px solid #dce0ed;
  width: 100%;
  display: block;
}

.grid-container
  .header
  .header__avatar
  .header-links
  .invite-link
  input::focus-visible {
  border: 1px solid #dce0ed;
}

gc-sidebar {
  height: 100%;
  display: grid;
}

.sidenav-comp {
  display: grid;
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
}

.grid-container {
  display: grid;
}

.grid-container .main {
  width: 100%;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.side-image {
  width: 264px;
  height: 228px;
  background-image: url(../img/Phone.png);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-repeat: no-repeat;
}

.upload-section .side-image .image-description {
  position: absolute;
  top: 240px;
  text-align: center;
  left: 0;
  -webkit-transform: translate(17%, 0%);
  transform: translate(17%, 0%);
}

.upload-section .side-image {
  height: 280px;
}

.grid-container
  .main-card
  .card
  .business-details--settings
  .upload-section
  .side-image--settings {
  margin-top: 10px;
}

.menu-div h1 {
  align-self: center;
}

.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-form
  .upload-your-image
  .choose-img
  .upload-btn
  input {
  display: block;
}

.grid-container .header .header__avatar .profile-div {
  display: block;
  padding: 7px 10px !important;
}

.grid-container .header .header__avatar .profile-div .logout {
  font-size: 10px;
  text-align: right;
  display: block;
}

.grid-container .header .header__avatar .profile-div .logout:hover {
  background-color: #fff;
}

.main-card .inbox .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20.5px 15px 20.5px 10px;
  cursor: pointer;
  border: none;
}

.grid-container .main-card .inbox .table-row-border {
  border: 2px solid #dce0ed;
  border-top-color: rgb(220, 224, 237);
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: rgb(220, 224, 237);
  border-top-style: solid;
  border-top-width: 2px;
  border-top: none;
}

.inbox .table-row .user-info {
  display: flex;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.initials {
  background-image: url(/assets/img/avatar-small.svg);
  background-repeat: no-repeat;
  position: relative;
  margin-right: 28.29px;
  min-width: 51px;
  min-height: 51px;
  align-content: center;
  align-items: center;
  display: flex;
}

.initials p {
  display: block;
  margin: 0 auto;
  font-weight: 800;
}

.inbox .table-row .message-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}

.inbox .table-row .message-preview .name-date .sender-name {
  display: flex;
}

.grid-container .main-card .card .chatMobile .chat-message-simple-blue {
  position: relative;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-message-simple-blue
  .chat-bubble-blue {
  background-color: #536dff;
  color: #ffffff;
  max-width: 282px;
  padding: 8px 7px 5px 12px;
  margin-left: 40px;
  margin-bottom: 14px;
  border-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-left-radius: 8px;
}

.grid-container .main-card .card .chatMobile .chat-message-simple-white {
  float: right;
  background-color: #f2f2f2;
  padding: 8px 12px 5px 12px;
  border-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-right-radius: 5px;
  margin-right: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 282px;
  margin-bottom: 38px;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-message-simple-blue
  .chat-profile-img {
  position: absolute;
  width: 25px;
  height: 25px;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}

.col-sm-12.col-lg-6.px-0.chatMobile .px-4.pt-4.chat-box.bg-white {
  display: inline-grid;
  width: 100%;
  padding: 10px;
}

.grid-container .main-card .card .chatMobile .chat-head-panel .send-msg-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px;
  border-top: 1px solid #dce0ed;
  position: static;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-head-panel
  .send-msg-panel
  input[type="image"] {
  margin-right: 5px;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-head-panel
  .send-msg-panel
  .send-msg-input {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-head-panel
  .send-msg-panel
  .send-msg-input
  input[type="text"] {
  width: 100%;
  border: none;
  padding: 10px;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-head-panel
  .send-msg-panel
  .send-msg-btn {
  border: none;
  background-color: transparent;
  color: #536dff;
  font-weight: 600;
  padding: 4px 10px;
  cursor: pointer;
}

.grid-container .main-card .card .rounded-container-top-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rounded-container-top-only {
  border: 2px solid #dce0ed;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.grid-container .main-card .card .rounded-container-top-only .inbox-flex {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.inbox {
  margin-bottom: 23px;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .inbox-flex
  .table-head--no-border {
  border-top: none;
  border-left: none;
  border-right: none;
}

.inbox.inbox-flex .table-head {
  border-radius: 0px;
  border: 0px solid #dce0ed;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .inbox-flex
  .table-row--no-left-right-border {
  border-right: none;
  border-left: none;
}

.grid-container .main-card .card .rounded-container-top-only .chat-head {
  -ms-flex-preferred-size: 448px;
  flex-basis: 448px;
  min-width: 330px;
  min-width: 290px;
}

.index-chat .messages-box.overflow-scroll,
.index-chat .px-4.pt-4.chat-box.bg-white {
  scrollbar-width: none;
  scrollbar-color: #fff #fff;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .chat-head
  .chat-head-top
  .chat-head-username {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .chat-head
  .chat-head-top
  .chat-head-username
  h2 {
  font-size: 20px;
  font-weight: 800;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .chat-head
  .chat-head-top {
  border-bottom: 2px solid #dce0ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .chat-head
  .chat-head-top
  button {
  height: 29px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 13px;
  font-weight: 500;
  background-color: #ef3e3e;
  color: #ffffff;
}

.inbox .table-head p {
  padding: 3px;
}

.chat-head-username img {
  cursor: pointer;
}

.grid-container .main-card .card .rounded-container-top-only .inbox-flex {
  display: flex;
  border-right: 2px solid #dce0ed;
}

.clearfix {
  clear: both;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-message-simple-blue
  .chat-bubble-blue.chat-message-img {
  background: #fff;
  color: #000;
}

.grid-container
  .main-card
  .card
  .chatMobile
  .chat-message-simple-white
  .chat-bubble-white.chat-message-img {
  background: #fff;
  color: #000;
}

.chat-message-img img {
  border-radius: 10px;
}

.grid-container .main-card .card .chats-title {
  margin-bottom: 29px;
}

.grid-container .main-card .card .chats-title .chats-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}

.grid-container .main-card .card .chats-title .chats-div img {
  margin-right: 12px;
}

.tips-2 ngb-tooltip-window {
  color: #000;
}

.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-image {
  padding: 79px 10px 26px 10px;
}

.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-form
  .start-end-date
  .start-date,
.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-form
  .start-end-date
  .end-date,
.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-form
  .audience-type
  .audience,
.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-form
  .audience-type
  .type {
  min-width: auto !important;
  width: 50% !important;
}

.grid-container
  .main-card
  .card
  .table-container-main
  .table-container
  .tablerow
  .tablecell
  .table-buttons
  .vip-tablebtn
  .icon-hidden {
  display: none;
}

.tablecell .table-buttons .remove-vip-responsive {
  background-color: #ff0000;
  color: #fff;
}

.ngx-pagination {
  text-align: center;
}

.registration-form .form-row.input-label-box {
  display: flex;
  gap: 30px;
}

.notice-card-image img {
  object-fit: contain;
}

.start-end-date .end-date,
.start-end-date .start-date {
  position: relative;
}

.start-end-date input {
  opacity: 1;
}

.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-image {
  padding: 0 !important;
  display: block !important;
}

.text-notice {
  padding: 23px 50px 0px 45px;
  font-weight: 600;
  font-size: 18px;
}

.grid-container
  .main-card-4
  .card-4
  .create-notice-container
  .create-notice-image
  .phone-img {
  margin: 79px 50px 26px 45px;
}

.bg-white {
  width: 100%;
}

.grid-container .main {
}

.w-100 {
  width: 200px;
  height: 100%;
  margin: 0 auto;
  display: block;
}

.w-100 > img {
  width: 200px;
  height: 100%;
}

.w-100 .btn.btn-danger.btn-sm {
  float: right;
}

.text-success {
  position: absolute;
  background: #fff;
  padding: 10px;
  bottom: -30px;
  left: 50px;
}

.grid-container .header .header__avatar .header-links {
  position: relative;
}

.profile-div-content .logo {
  width: 40px;
  height: 40px;
  background-size: contain;
  border-radius: 50%;
  margin: 5px;
}

.grid-container .main .main-card,
.grid-container .main-card-3 {
}

.sidenav-comp .sidebar-inner {
  height: 84%;
}

.footer__signature {
  text-align: center;
  color: white;
  padding-bottom: 20px;
}

.grid-container .main-card .card .table-container-main .table-container {
  position: relative;
}

.grid-container
  .main-card
  .card
  .table-container-main
  .table-container
  .tablerow.empty {
  display: table-row;
}

.grid-container
  .main-card
  .card
  .table-container-main
  .table-container
  .tablerow.empty
  .tablecell {
  padding: 190px 0;
  border-color: transparent;
}

.grid-container
  .main-card
  .card
  .table-container-main
  .table-container
  .tablerow.empty
  .tablecell.empty-content {
  position: absolute;
  left: 0;
  width: 100%;
  border: 0;
  right: 0;
  top: 0;
}

.main-card-3 .empty-content {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.messages-box.overflow-scroll .empty-content {
  display: block;
  margin: 150px auto;
  text-align: center;
}

.header__avatar li::marker {
  content: "";
  color: transparent;
}

.header__avatar .dropdown-menu.fsz-sm {
  display: none;
}

.header__avatar .dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: 99;
}

.header__avatar .notifications.dropdown .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.0625);
}

.header__avatar .profile-div .dropdown .dropdown-menu.fsz-sm {
  position: relative;
}

.header__avatar .notifications.dropdown,
.header__avatar .profile-div .dropdown {
  position: relative;
}

.form-row.short-description label {
  margin-left: 0px;
}

.header__avatar .dropdown-menu.fsz-sm.show {
  display: block;
}

.tooltip.show.ng-star-inserted {
  font-weight: 400 !important;
  left: -100px !important;
  font-size: 13px !important;
  width: 300px !important;
}

.rounded-container.table-container-main
  .tablerow
  ngb-tooltip-window.tooltip.show.bs-tooltip-bottom {
  display: block !important;
  margin: 0 auto !important;
  padding: 10px;
  font-weight: 400 !important;
  font-size: 13px !important;
  width: 300px !important;
  text-align: left !important;
  left: -10px !important;
  -webkit-box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  box-shadow: 1px 5px 19px -3px rgba(0, 0, 0, 0.38);
  color: #000 !important;
  z-index: 9999999 !important;
  top: 20px !important;
}

.rounded-container.table-container-main
  .tablerow
  ngb-tooltip-window.tooltip.show.bs-tooltip-bottom:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  right: 150px;
  top: -10px;
}

.sidenav__list.sidenav__list_one,
.sidenav__list.sidenav__list_one sidebar-element,
.rounded-container.table-container-main .table-head-cell,
.rounded-container.table-container-main {
  position: relative;
  display: block;
}

.sidenav .sidenav__list .list-item-active {
  background-color: #4f67f4;
  color: #ffffff;
  position: relative;
}

.notifications.dropdown .peer {
  flex: auto;
}

.tags-field tag-input-form form {
  display: block;
  margin-top: 13px;
  border-radius: 5.8852px;
  border: 2px solid #dce0ed;
  width: 100%;
  padding: 7px 5px 7px 15px;
}

.tags-field tag-input-form form input {
  margin-bottom: 0px;
  padding: 0 !important;
  height: 100% !important;
}

.tags-field .ng2-tag-input.ng2-tag-input--focused,
.tags-field .ng2-tag-input {
  border-bottom: 0px !important;
}

.tags-field .ng2-tags-container {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
}

.tags-field form tag {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  box-ordinal-group: 2;
}

.tags-field form tag-input-form:last-child {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  box-ordinal-group: 1;
  width: 100%;
}

.main-chart .overlay {
  fill: none;
  pointer-events: all;
}

.body-wrapper-main .index-chat .text-center {
  color: #000;
}

.main-gray input:checked + .slider::before {
  transform: translateX(32px);
}

.main-chart .domain {
  fill: #fff;
}

.sidenav__list.sidenav__list_two {
  display: block;
  align-self: flex-end;
}

.sidenav .download-app-btn {
  align-self: flex-end;
}

.sidenav .download-app-btn a {
  align-content: center;
  display: flex;
  padding: 15px 0;
}

.pop-up-logout {
  position: absolute;
  top: 0px;
  display: block;
  border-radius: 10px;
  padding: 12px 26px 11px 16px;
  background: #fff;
  box-shadow: 0px 25px 50px rgba(34, 50, 140, 0.2);
  right: 0;
}

.business-details--settings.rounded-container
  .tags-field
  .tags-input.tags-input--settings
  tag-input-form:last-child {
  width: 100%;
}

input:focus-visible,
input:focus {
  outline: none;
}

#chart {
  position: relative;
}

#chart .tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
}

.chart-content {
  position: relative;
}

#chart .tooltip {
  opacity: 0;
  position: absolute;
  top: -14px;
  left: 0;
  padding: 0.6em 1em;
  background: #fff;
  text-align: center;
  line-height: 1.4em;
  font-size: 0.9em;
  z-index: 10;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  pointer-events: none;
  background: lightsteelblue;
  border: 0px;
}

#chart .tooltip:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid #ddd;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  z-index: 10;
}

#chart .axis path,
#chart .axis line {
  fill: none;
  stroke: #ececee;
  stroke-width: 2px;
  shape-rendering: crispEdges;
}

#chart .line {
  fill: none;
  stroke: #536dff;
  stroke-width: 5px;
}

#chart .overlay {
  fill: none;
  pointer-events: all;
}

#chart .focus circle {
  fill: #f1f3f3;
  stroke: #536dff;
  stroke-width: 5px;
}

#chart .hover-line {
  stroke: #ececee;
  stroke-width: 2px;
  stroke-dasharray: 3, 3;
}

#chart g {
  display: block;
}

.sidenav__list.sidenav__list_two .main-gray .sidenav__list-item.active {
  margin-bottom: 10px;
}

.main-card
  .card
  .rounded-container.table-container-main
  .table-container
  .tablerow
  .tablecell
  info-tool
  .fa-info-circle::before {
  background-image: url(" ");
  content: " " !important;
}

.main-card-3
  .card
  .notices-panel
  .notices-cards
  .notice-card
  .notice-buttons
  button:first-of-type {
  position: relative;
}

.main-card-3
  .card
  .notices-panel
  .notices-cards
  .notice-card
  .notice-buttons
  button:first-of-type
  info-tool
  .fa-info-circle::before {
  background-image: url(" ");
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1%;
  left: -1%;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .chat-head
  .chat-head-top
  .btn.btn-sm.btn-danger {
  position: relative;
}

.grid-container
  .main-card
  .card
  .rounded-container-top-only
  .chat-head
  .chat-head-top
  .btn.btn-sm.btn-danger
  info-tool
  .fa-info-circle::before {
  background-image: url(" ");
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1%;
  left: -1%;
}

.insiders-info-empty {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 60%;
  padding: 40px 0;
}

.insiders-info-empty p span {
  display: block;
  text-align: left;
  padding-left: 60px;
}

.insiders-info-empty p:first-child {
  padding-bottom: 30px;
}

.insiders-info-empty .list {
  padding-bottom: 30px;
}

.sidenav__list.sidenav__list_two info-tool {
  display: none;
}

@media screen and (max-width: 1400px) {
  .sidenav .menu-div {
    padding: 15px 75px 50px 74px;
  }

  .sidenav__list-item a {
    padding: 15px 25px 15px 40px;
  }
}
@media screen (max-width: 1025px) {
  .sidenav .sidenav__list .sidenav__list-item {
    padding: 25px 25px 24px 40px;
  }

  .sidenav .sidenav__list .list-item-active:first-of-type::before {
    top: 76px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(2)::after {
    top: -47px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(2)::before {
    top: 71.9px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(3)::after {
    top: -47px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(3)::before {
    top: 74.5px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(4)::after {
    top: -47px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(4)::before {
    top: 81px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(5)::after {
    top: -47px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(5)::before {
    top: 74px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(6)::after {
    top: -20px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(6)::before {
    top: 66px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(7)::after {
    top: -20px;
  }

  .sidenav .sidenav__list .list-item-active:nth-of-type(7)::before {
    top: 66px;
  }

  .sidenav
    .sidenav__list.sidenav__list_two
    .main-gray
    .sidenav__list-item.active:first-of-type::before {
    content: url(../img/corner-top-gray.svg);
    position: absolute;
    right: -7px;
    top: 66px;
  }

  .sidenav
    .sidenav__list.sidenav__list_two
    .main-gray
    .sidenav__list-item.active:first-of-type::after {
    content: url(../img/corner-bottom-gray.svg);
    position: absolute;
    right: -1px;
    top: -20px;
  }

  .sidenav .menu-div {
    padding: 15px 75px 80px 74px;
  }
}

@media screen and (max-width: 1320px) {
  .grid-container .header gc-admin-header {
    display: block;
    padding: 0 0 0 15px !important;
  }
}

@media screen and (max-width: 1220px) {
  .grid-container .main-card .card .rounded-container-top-only > div {
    width: 50%;
  }

  .inbox .table-row .user-info {
    width: 25%;
  }

  .inbox .table-row .message-preview {
    width: 70%;
  }
}

@media screen and (max-width: 1080px) {
  .registration-form .form-row.input-label-box {
    display: block;
  }

  .registration-form .form-row.input-label-box .reg-input {
    padding-top: 7px;
  }
}

@media screen and (max-width: 769px) {
  .registration-form .reg-navigation-buttons .dot {
    margin-right: 15px !important;
  }

  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .start-end-date
    .start-date,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .start-end-date
    .end-date,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .audience-type
    .audience,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .audience-type
    .type {
    width: 100% !important;
  }
}

@media screen and (max-width: 420px) {
  .tablecell {
    padding: 5px;
  }

  .grid-container
    .main-card
    .card
    .table-container-main
    .table-container
    .tablerow
    .tablecell
    .table-buttons {
    flex-direction: column;
  }

  .grid-container
    .main-card
    .card
    .table-container-main
    .table-container
    .tablerow
    .avatar-wrapper {
    padding: 5px;
  }

  .grid-container
    .main-card
    .card
    .table-container-main
    .table-container
    .tablehead
    .table-head-cell {
    padding: 17px 10px;
  }
}

@media screen and (max-width: 370px) {
  .grid-container .main-card-3 .card .notices-panel {
    padding: 10px;
  }
}

@media screen and (max-width: 1080px) {
  .body-wrapper-main {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .grid-container .header {
    display: block;
    padding: 10px 10px 10px 0 !important;
  }

  /*.grid-container .header gc-admin-header {
		display: block;
		padding: 10px 19px 10px 90px;
	}*/
  .sidenav.is-collapsed {
    transform: translateX(0);
  }

  .grid-container .main-card .card .rounded-container-top-only .inbox-flex {
    display: none;
    border-right: 2px solid #dce0ed;
  }

  .rounded-container.table-container-main .fa.fa-info-circle {
    visibility: hidden;
  }

  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-image {
    display: none !important;
  }

  .create-notice-title .publish-notice {
    display: none;
  }

  .grid-container .main-card-4 {
    margin: 20px !important;
  }

  .grid-container .main-card-4 .card-4 .create-notice-container,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .templates,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .start-end-date,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .audience-type {
    display: block !important;
  }

  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input,
  .grid-container
    .main-card-4
    .card-4
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container {
    width: 100% !important;
  }

  .templates-input .pull-right {
    float: none;
  }

  .grid-container .main-card .card .rounded-container-top-only > div {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header__search {
    margin-left: 0;
  }

  .sidenav__close-icon {
    visibility: hidden;
  }
}
@media screen and (max-width: 1025px) {
  .grid-container .main-card .card {
    border-radius: 0;
  }
}

/*@media screen and (max-width: 768px) {
  .grid-container .header gc-admin-header {
	  display: block;
	  padding: 10px 19px 10px 19px;
	}
}*/

@media only screen and (max-width: 600px) {
  .body-wrapper {
    padding-left: 21px;
    padding-right: 18px;
    height: 130vh;
  }

  .body-wrapper .additional-info-2 .hidden {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .body-wrapper {
    padding-left: 21px;
    padding-right: 18px;
  }

  .body-wrapper .additional-info-2 .hidden {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .body-wrapper {
    padding-left: 21px;
    padding-right: 18px;
    height: 118vh;
  }

  .body-wrapper .additional-info-2 .small-hidden {
    display: none;
  }

  .body-wrapper .additional-info-2 .small-bottom {
    padding-bottom: 16px !important;
  }
}

@media only screen and (max-width: 600px) {
  .body-wrapper-password {
    padding-left: 21px;
    padding-right: 18px;
    height: 90vh;
  }

  .body-wrapper-password .text-center img {
    width: 305px;
  }

  .body-wrapper-password .text-center h1 {
    font-size: 24.68px;
    margin-bottom: 33px;
  }

  .body-wrapper-password .additional-info-2 .small-hidden {
    display: none;
  }

  .body-wrapper-password .additional-info-2 .small-bottom {
    padding-bottom: 16px !important;
  }

  .body-wrapper-password .forgot-password {
    padding-top: 33px;
  }

  .body-wrapper-password .forgot-password h1 {
    margin-bottom: 18px;
    padding-left: 38px;
    font-size: 24px;
    font-weight: 700;
  }

  .body-wrapper-password .forgot-password p {
    margin-bottom: 22px;
    font-size: 12px;
    padding-left: 38px;
  }

  .body-wrapper-password
    .forgot-password
    .input-wrapper-2
    .input-label-box-2
    input[type="email"] {
    min-width: 282px;
    padding-right: 31px;
    margin-bottom: 40px;
    margin-left: 38px;
  }

  .body-wrapper-password
    .forgot-password
    .input-wrapper-2
    .input-label-box-2
    label {
    margin-left: 38px;
    font-size: 15px;
  }

  .body-wrapper-password .forgot-password .bottom-gap {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .body-wrapper-main .text-center img {
    width: 305px;
  }

  .body-wrapper-main .text-center h1 {
    font-size: 24.68px;
    margin-bottom: 33.93px;
  }

  .body-wrapper-main .additional-info .small-hidden {
    display: none;
  }

  .body-wrapper-main .additional-info .small-bottom {
    padding-bottom: 16px !important;
  }

  .body-wrapper-main #sign-up {
    margin-bottom: 87px;
  }

  .body-wrapper-main #sign-up h1 {
    font-size: 24.68px;
  }

  .body-wrapper-main #sign-up p {
    font-size: 12px;
    margin-bottom: 25px;
  }

  .body-wrapper-main #logreg-forms h1 {
    font-size: 24.68px;
  }

  .body-wrapper-main #logreg-forms p {
    font-size: 12px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .body-wrapper-email-check .check-mail .text-center img {
    width: 305px;
  }

  .body-wrapper-email-check .check-mail .check-your-email button {
    margin-bottom: 150px;
  }

  .body-wrapper-email-check .additional-info-2 .small-hidden {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .input-wrapper .input-label-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    width: 100%;
    background-color: aqua;
  }

  .input-wrapper .input-label-box input[type="email"] {
    margin-bottom: 30px;
  }

  .register {
    padding-right: 26px;
  }
}
@media only screen and (min-width: 1025px) {
  .grid-container {
    -ms-grid-columns: 300px 1fr;
    grid-template-columns: 300px 1fr;
    grid-template-areas:
      "sidenav header"
      "sidenav main"
      "sidenav footer";
  }

  .header__search {
    margin-left: 0;
  }

  .sidenav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .sidenav__close-icon {
    visibility: hidden;
  }
}

@media only screen and (max-width: 46.875em) {
  .grid-container {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-template-areas:
      "header"
      "main"
      "footer";
  }
}

@media screen and (max-width: 1320px) {
  .header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: header;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    padding: 10px 19px 10px 90px !important;
    padding: 10px 40px 10px 0px !important;
  }

  .header .header__logo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    margin-left: 0 !important;
  }

  .header .header__logo img {
    height: 20.77px;
    width: 88.12px;
  }

  .header .header__logo .menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 34px;
  }

  .header .header__logo .logo-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header .header__logo .logo-small small {
    font-size: 11px;
    display: block !important;
  }

  /*.header .header__avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }*/
  .header .header__avatar .header-links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .header__avatar .invite-link {
    background-color: #dce0ed;
    border-radius: 100px;
    padding: 6px 15px 6px 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 17px;
    font-size: 11px;
  }

  .header .header__avatar .profile-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #dce0ed;
    border-radius: 10px;
    padding: 3px 4px 3px 4px !important;
  }

  .header .header__avatar .profile-div img {
    margin-right: 26px;
    width: 27.5px;
    height: 27.5px;
  }

  .header .header__avatar .profile-div .profile-div-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .header__avatar .profile-div .profile-div-content p {
    font-size: 11px;
  }

  .header .header__avatar .bell {
    background-color: #dce0ed;
    /*padding: 7px 10px 3px 10px !important;*/
    border-radius: 100%;
  }

  .header .header__avatar .bell .bell-img {
    width: 20px;
    height: 25px;
  }

  .header .header__avatar {
    justify-content: space-between;
  }
}

@media screen and (max-width: 1025px) {
  .header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: header;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
    padding: 10px 19px 10px 19px !important;
  }

  .header .header__logo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    margin-left: 0 !important;
  }

  .header .header__logo img {
    height: 20.77px;
    width: 88.12px;
  }

  .header .header__logo .menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 34px;
    visibility: visible !important;
  }

  .header .header__logo .logo-small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header .header__logo .logo-small small {
    font-size: 11px;
    display: block !important;
  }

  .header .header__avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header .header__avatar .invite-link {
    background-color: #dce0ed;
    border-radius: 100px;
    padding: 2px 0 2px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 7px !important;
    font-size: 11px;
  }

  .header .header__avatar .invite-link .info-img {
    display: none;
  }

  .header .header__avatar .invite-link .link-img {
    max-height: 15px !important;
    margin-left: 13px;
  }

  .header .header__avatar .profile-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #dce0ed;
    border-radius: 10px;
    padding: 10px 4px 10px 4px !important;
  }

  .header .header__avatar .profile-div img {
    margin-right: 0px !important;
    width: 20px;
    height: 20px;
  }

  .header .header__avatar .profile-div .profile-div-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .header__avatar .profile-div .profile-div-content p {
    font-size: 11px;
  }

  .header .header__avatar .bell {
    background-color: #dce0ed;
    border-radius: 100%;
  }

  .header .header__avatar .bell .bell-img {
    width: 15px !important;
    height: 14px !important;
  }

  .header .header__avatar .bell {
    padding: 10px 10px 10px 10px !important;
  }
}

@media screen and (max-width: 1025px) {
  .main-card {
    margin: 8px 0 11px 0 !important;
  }
}

@media screen and (max-width: 1025px) {
  .card {
    padding: 20px 19px 13px 19px !important;
    border: none !important;
  }
}

@media screen and (max-width: 1320px) {
  .main-title .title img {
    width: 19px;
    height: 19px;
  }

  .main-title .title h1 {
    font-size: 24px;
  }

  .main-title .main-title-paragraph {
    display: none !important;
  }

  .progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-chart .chart-title .chart-welcome h1 {
    line-height: normal;
    margin-bottom: 17px;
  }

  .main-chart .chart-title .chart-welcome .merchant-name-hidden {
    display: none !important;
  }

  .main-chart .chart-title .chart-welcome button {
    padding-left: 9px;
    padding-right: 20px;
    position: relative;
    min-width: 129px;
  }

  .main-chart .chart-title .chart-welcome button span {
    position: absolute;
  }

  .main-chart .chart-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .main-chart .chart-content .chart-box {
    width: 100%;
    background-repeat: no-repeat;
  }

  .main-chart .chart-content .chart-box img {
    width: 100%;
  }
}

@media only screen and (max-width: 1320px) {
  .grid-container .main-card .card .notices-title h1 {
    font-size: 24px;
    line-height: normal;
    width: 100%;
  }

  .grid-container .main-card .card .notices-title img {
    width: 22px;
    height: 22px;
  }

  .grid-container .main-card .card .notices-title button {
    background-color: #51c27e;
    min-width: 143px;
  }

  .grid-container .main-card .card .notices-description {
    font-size: 12px;
  }

  .grid-container .main-card .card .notices-panel {
    border: 2px solid #dce0ed;
    border-radius: 10px;
    padding: 11px 12px 11px 13px;
  }

  .grid-container .main-card .card .notices-panel h2 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .grid-container .main-card .card .notices-panel .notices-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 27px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-container .main-card .card .notices-panel .notices-inputs input {
    display: block;
    border-radius: 5.8852px;
    border: 2px solid #dce0ed;
    width: 100%;
    padding: 7px 5px 7px 15px;
    margin-top: 13px;
  }

  .grid-container .main-card .card .notices-panel .notices-inputs label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .notice-title
    input {
    margin-top: 7px;
  }

  .grid-container .main-card .card .notices-panel .notices-inputs .audience {
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .audience
    input {
    margin-top: 7px;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .audience
    .responsive--up-arrow {
    position: absolute;
    top: 35px;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .audience
    .responsive--down-arrow {
    position: absolute;
    top: 47px;
  }

  .grid-container .main-card .card .notices-panel .notices-inputs .type {
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .type
    label
    img {
    display: none;
  }

  .grid-container .main-card .card .notices-panel .notices-inputs .type input {
    margin-top: 7px;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .type
    .responsive--up-arrow {
    position: absolute;
    top: 35px;
  }

  .grid-container
    .main-card
    .card
    .notices-panel
    .notices-inputs
    .type
    .responsive--down-arrow {
    position: absolute;
    top: 47px;
  }

  .grid-container .main-card .card .notices-panel .notices-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-container .main-card .card .notices-panel .future-notices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .grid-container .main-card .card .notices-panel .future-notices .notice-card {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

@media screen and (max-width: 1320px) {
  .grid-container .main-card .card .create-notice-title {
    margin-bottom: 29px;
  }

  .grid-container .main-card .card .create-notice-title .create-notice-div img {
    width: 22px;
    height: 22px;
  }

  .grid-container .main-card .card .create-notice-title .create-notice-div h1 {
    font-size: 24px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-title
    .create-notice-paragraph {
    color: #565656;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
  }

  .grid-container .main-card .card .create-notice-title .publish-notice {
    position: relative;
  }

  .grid-container
    .main-card
    .card
    .create-notice-title
    .publish-notice
    .publish-btn {
    position: absolute;
    display: none;
  }

  .grid-container .main-card .card .create-notice-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form {
    padding: 0;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    border: none;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 9px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .input-container-20
    label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .input-container-20
    label
    img {
    width: 17px;
    height: 18px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input {
    position: relative;
    min-width: 260px;
    width: 38.5%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input
    input {
    border-radius: 5.8852px;
    border: 2px solid #dce0ed;
    width: 100%;
    padding: 7px 5px 7px 15px;
    margin-top: 13px;
    margin-top: 0;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input
    input::-webkit-input-placeholder {
    color: #565656;
    opacity: 0.5;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input
    input:-ms-input-placeholder {
    color: #565656;
    opacity: 0.5;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input
    input::-ms-input-placeholder {
    color: #565656;
    opacity: 0.5;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .templates
    .templates-input
    input::placeholder {
    color: #565656;
    opacity: 0.5;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .mobile-container {
    border: 2px solid #dce0ed;
    border-radius: 10px;
    padding: 18px 12px 20px 13px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .mobile-container
    .notice-details
    label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .mobile-container
    .notice-details
    textarea {
    margin-top: 4px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .notice-title {
    margin-bottom: 15px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .notice-title
    input {
    margin-top: 4px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .notice-title
    label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 34px;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date
    label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date
    input {
    margin-top: 4px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date
    img {
    position: relative;
    top: 3px;
    left: 13px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date
    img:hover {
    cursor: pointer;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date
    .start-date {
    min-width: 260px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .start-end-date
    .end-date {
    min-width: 260px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    input {
    margin-top: 4px;
    background-color: #dce0ed;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    input::-webkit-input-placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    input:-ms-input-placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    input::-ms-input-placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    input::placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    .audience {
    position: relative;
    min-width: 260px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    .audience
    .responsive--up-arrow--adjust {
    position: absolute;
    top: 25px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    .audience
    .responsive--down-arrow--adjust {
    position: absolute;
    top: 37px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    .type {
    position: relative;
    min-width: 260px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    .type
    .responsive--up-arrow--adjust {
    position: absolute;
    top: 25px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .audience-type
    .type
    .responsive--down-arrow--adjust {
    position: absolute;
    top: 37px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 16px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-width: 97px;
    width: 80%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    label {
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    input {
    background-color: #dce0ed;
    margin-top: 4px;
    width: 20%;
    min-width: 87px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    input::-webkit-input-placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    input:-ms-input-placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    input::-ms-input-placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    input::placeholder {
    color: #565656;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    .responsive--up-arrow--reduced-width {
    position: absolute;
    top: 25px;
    right: 78%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .default-welcome-offer
    .default-welcome-offer-container
    .responsive--down-arrow--reduced-width {
    position: absolute;
    top: 37px;
    right: 78%;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image {
    margin-bottom: 11px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    input[type="file"] {
    width: 100%;
    max-width: 200px;
    display: none;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .choose-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .choose-img
    .upload-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .choose-img
    .upload-btn
    label {
    color: #050505;
    padding: 7px 10px 7px 10px;
    font-weight: 500;
    font-size: 13.45px;
    line-height: 20.18px;
    margin-right: 40px;
    margin-bottom: 12px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .choose-img
    .upload-btn
    .custom-btn {
    background: #ffffff;
    border: 2px solid #dce0ed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    white-space: nowrap;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .input-container-22
    label {
    font-size: 12px;
    padding-bottom: 0;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .input-container-22
    img {
    position: relative;
    top: 2px;
    left: 13px;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .input-container-22
    img:hover {
    cursor: pointer;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-form
    .upload-your-image
    .extra-paragraph
    p {
    font-weight: 400;
    color: #a9b0c3;
    font-size: 13px;
    margin-top: -20px;
    margin-left: 5px;
    margin-bottom: 0;
  }

  .grid-container
    .main-card
    .card
    .create-notice-container
    .create-notice-image {
    display: none;
  }

  .grid-container .main-card .card .publish-button-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 1320px) {
  .grid-container .main-gray {
    background-color: #676f71;
  }

  .grid-container .main-card .card .settings--header .settings-paragraph {
    max-width: 515px;
    width: 100%;
    font-size: 14px;
  }

  .grid-container .main-card .card .settings--header h1 {
    font-size: 24px;
  }

  .grid-container .main-card .card .settings--header img {
    height: 24px;
  }

  .grid-container .main-card .card .settings--header .title-div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .grid-container .main-card .card .invite-subscription {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 21px;
    margin-bottom: 30px;
  }

  .grid-container .main-card .card .invite-subscription .invite-link {
    padding-top: 22px;
    padding-bottom: 14px;
    padding-left: 21px;
    padding-right: 19px;
    width: 100%;
  }

  .grid-container .main-card .card .invite-subscription .invite-link p {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .grid-container .main-card .card .invite-subscription .invite-link label {
    font-size: 15px;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .invite-link
    .invite-link-input {
    max-width: 100%;
    position: relative;
    margin-bottom: 5px;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .invite-link
    .invite-link-input::before {
    content: url(../img/copy-to-clipboard.svg);
    position: absolute;
    left: 13px;
    top: 6px;
    cursor: pointer;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .invite-link
    .invite-link-input
    input {
    border: none;
    border-radius: 5.88px;
    padding: 9px 5px 9px 50px;
    background-color: #dce0ed;
    min-width: 272px;
    font-size: 13.45px;
    color: #565656;
  }

  .grid-container .main-card .card .invite-subscription .invite-link small {
    font-size: 10px;
    color: #767980;
    font-weight: 400;
  }

  .grid-container .main-card .card .invite-subscription .subscription-settings {
    padding: 16px 13px 12px 21px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .subscription-settings
    .subscription-settings-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .subscription-settings
    .subscription-settings-title
    h1 {
    font-size: 15px;
    line-height: normal;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .subscription-settings
    .card-details {
    margin-bottom: 7px;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .subscription-settings
    .card-details
    p {
    font-weight: 600;
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .subscription-settings
    .card-details
    p
    span {
    font-weight: 300;
    font-size: 12px;
  }

  .grid-container
    .main-card
    .card
    .invite-subscription
    .subscription-settings
    .subscription-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
  }

  .grid-container .main-card .card .permissions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .grid-container .main-card .card .permissions label {
    margin-bottom: 8px;
    margin-right: 0;
    font-size: 15px;
  }

  .grid-container .main-card .card .allow-email-notifications {
    padding: 22px 19px 22px 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }

  .grid-container .main-card .card .allow-email-notifications small {
    font-size: 12px;
  }

  .grid-container .main-card .card .allow-email-notifications p {
    font-size: 10px;
  }

  .grid-container .main-card .card .allow-chat-messages {
    padding: 22px 19px 22px 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
  }

  .grid-container .main-card .card .allow-chat-messages p {
    font-size: 10px;
  }

  .grid-container .main-card .card .welcome-msg {
    width: 100%;
    padding: 15px 22px 19px 22px;
    margin-bottom: 38px;
  }

  .grid-container .main-card .card .welcome-msg textarea {
    margin-bottom: 15px;
  }

  .grid-container .main-card .card .welcome-msg .update-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .grid-container .main-card .card .welcome-msg label {
    font-size: 15px;
  }

  .grid-container .main-card .card .business-details--settings {
    width: 100%;
    padding: 23px 17px 21px 22px;
    position: relative;
  }

  .grid-container .main-card .card .business-details--settings p {
    font-size: 10px !important;
  }

  .grid-container .main-card .card .business-details--settings h1 {
    font-size: 15px !important;
  }

  .grid-container .main-card .card .business-details--settings label {
    font-size: 15px !important;
  }

  .grid-container .main-card .card .business-details--settings input {
    margin-top: 4px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .address-details-settings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .address-details-settings
    .input-width {
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .inputwrapper--settings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px !important;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-website-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 45px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-website-link
    input {
    width: 100%;
    margin-left: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-website-link
    label {
    margin-left: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-website-link
    .business-website--settings {
    width: 100%;
    padding-bottom: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-website-link
    .gift-card-link {
    width: 100%;
    padding-bottom: 15px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .short-description--settings {
    margin-right: 0;
    padding-bottom: 15px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .short-description--settings
    textarea {
    margin-left: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .covid-message--settings
    .tags-input--settings {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 15px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .tags-field--settings
    .tags-input--settings {
    padding-right: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .upload--settings {
    margin-bottom: 0;
  }

  .grid-container .main-card .card .business-details--settings .upload-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .upload-section
    .side-image--settings {
    display: none;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .upload-section
    .side-image--settings
    .image-description-settings {
    display: none;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .upload-section
    .responsivebtn--settings {
    margin-right: 20px;
    font-size: 10px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .form-input--settings {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 15px;
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-name--settings {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 15px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-name--settings
    .form-input--settings {
    width: 100%;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-name--settings
    .form-input--settings
    label {
    margin-left: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-name--settings
    .form-input--settings
    input {
    margin-left: 0;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-info--settings {
    margin-bottom: 40px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-info--settings
    h1 {
    font-size: 20px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .business-info--settings
    p {
    font-size: 14px;
  }

  .grid-container
    .main-card
    .card
    .business-details--settings
    .update-business-info {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .grid-container
    .main-gray
    .main-card
    .card
    .business-details--settings
    .update-business-info {
    position: relative;
  }

  .grid-container .footer-gray {
    background-color: #676f71 !important;
  }
}

@media screen and (max-width: 1320px) {
  .grid-container .main-card .card .chats-title {
    margin-bottom: 29px;
  }

  .grid-container .main-card .card .chats-title .chats-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }

  .grid-container .main-card .card .chats-title .chats-div img {
    width: 25px;
    height: 21px;
  }

  .grid-container .main-card .card .chats-title .chats-div h1 {
    font-size: 24px;
  }

  .grid-container .main-card .card .chats-title .chats-paragraph {
    display: none;
  }
}

@media screen and (max-width: 1320px) {
  .inbox .table-row .user-info .avatar {
    min-width: 35px;
    min-height: 34px;
    background-image: url(../img/avatar-small.svg);
    background-size: contain;
    position: relative;
    margin-right: 15px;
  }
}

@media screen and (max-width: 800px) {
  .text-center-final-page {
    margin-bottom: 49.18px;
  }

  .text-center-final-page h3 {
    margin-bottom: 15.25px;
    font-size: 14.52px;
  }

  .text-center-final-page img {
    width: 305px;
  }
}

@media only screen and (max-width: 840px) {
  .register-page-wrapper {
    background-color: #4055cc;
    padding-top: 100px;
    padding-left: 21px;
    padding-right: 18px;
  }

  .register-page-wrapper .main-container .text-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .register-page-wrapper .main-container .text-center h3 {
    color: #ffffff;
    margin-bottom: 15.25px;
  }

  .register-page-wrapper .main-container .text-center img {
    width: 305px;
    margin-bottom: 14.52px;
  }

  .register-page-wrapper .main-container .text-center h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 38px;
  }

  .register-page-wrapper .main-container .registration-form {
    background-color: #ffffff;
    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;
    margin: 0 auto;
    margin-bottom: 89px;
    padding: 33px 31px 26px 38px;
    border-radius: 10px;
  }

  .register-page-wrapper .main-container .registration-form h1 {
    font-size: 24px;
  }

  .register-page-wrapper .main-container .registration-form p {
    font-size: 12px;
    padding-right: 10px;
    margin-bottom: 14px;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .registration-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 93px;
    gap: 16px;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .registration-inputs
    label {
    font-size: 15px;
    font-weight: 600;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .registration-inputs
    input {
    border-radius: 5.8852px;
    border: 2px solid #dce0ed;
    width: 100%;
    padding: 7px 5px 7px 15px;
    margin-top: 13px;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .reg-navigation-buttons {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 !important;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .reg-navigation-buttons
    .reg-navigation-dots {
    position: absolute;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 75px;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .reg-navigation-buttons
    button {
    padding-left: 10px;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .reg-navigation-buttons
    .btn-green {
    padding-left: 15px;
  }

  .register-page-wrapper
    .main-container
    .registration-form
    .reg-navigation-buttons
    .btn-gray {
    padding-left: 15px;
  }

  .register-page-wrapper .additional-info-2 .small-hidden {
    display: none;
  }

  .register-page-wrapper .additional-info-2 .small-bottom {
    padding-bottom: 16px;
  }
}

@media only screen and (max-width: 840px) {
  .register-page-wrapper-2 {
    background-color: #4055cc;
    padding-top: 100px;
    padding-left: 21px;
    padding-right: 18px;
    height: 100%;
  }

  .register-page-wrapper-2 .main-container-2 .text-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .register-page-wrapper-2 .main-container-2 .text-center h3 {
    color: #ffffff;
    margin-bottom: 15.25px;
  }

  .register-page-wrapper-2 .main-container-2 .text-center img {
    width: 305px;
    margin-bottom: 14.52px;
  }

  .register-page-wrapper-2 .main-container-2 .text-center h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 38px;
  }

  .register-page-wrapper-2 .main-container-2 .registration-form-2 {
    background-color: #ffffff;
    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;
    margin: 0 auto;
    margin-bottom: 89px;
    padding: 33px 31px 26px 38px;
    border-radius: 10px;
  }

  .register-page-wrapper-2 .main-container-2 .registration-form-2 h1 {
    font-size: 24px;
  }

  .register-page-wrapper-2 .main-container-2 .registration-form-2 p {
    font-size: 12px;
    padding-right: 10px;
    margin-bottom: 14px;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .registration-inputs-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 93px;
    gap: 16px;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .registration-inputs-2
    label {
    font-size: 15px;
    font-weight: 600;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .registration-inputs-2
    input {
    border-radius: 5.8852px;
    border: 2px solid #dce0ed;
    width: 100%;
    padding: 7px 5px 7px 15px;
    margin-top: 13px;
    margin-top: 9px;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .reg-navigation-buttons-2 {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 !important;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .reg-navigation-buttons-2
    .reg-navigation-dots-2 {
    position: absolute;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 75px;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .reg-navigation-buttons-2
    button {
    padding-left: 10px;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .reg-navigation-buttons-2
    .btn-green {
    padding-left: 15px;
  }

  .register-page-wrapper-2
    .main-container-2
    .registration-form-2
    .reg-navigation-buttons-2
    .btn-gray {
    padding-left: 15px;
  }

  .register-page-wrapper-2 .additional-info-2 .small-hidden {
    display: none;
  }

  .register-page-wrapper-2 .additional-info-2 .small-bottom {
    padding-bottom: 16px;
  }
}

@media only screen and (max-width: 800px) {
  .forgot-password {
    background-color: #293dad;
    padding-top: 100px;
    padding-left: 21px;
    padding-right: 18px;
  }

  .forgot-password .text-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .forgot-password .text-center h3 {
    color: #ffffff;
    margin-bottom: 15.25px;
    font-size: 14.52px;
  }

  .forgot-password .text-center img {
    width: 305px;
    margin-bottom: 14.52px;
  }

  .forgot-password .text-center h1 {
    color: #ffffff;
    font-size: 24.68px;
    margin-bottom: 34px;
  }

  .forgot-password .password-form {
    background-color: #ffffff;
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
    margin-bottom: 134px;
    padding: 33px 31px 39px 38px;
    border-radius: 10px;
  }

  .forgot-password .password-form h1 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .forgot-password .password-form p {
    padding-right: 0;
    margin-bottom: 22px;
    font-size: 12px;
  }

  .forgot-password .password-form .password-input {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .forgot-password .password-form .password-input label {
    font-size: 15px;
    font-weight: 600;
    padding-left: 5px;
  }

  .forgot-password .password-form .password-input input {
    border-radius: 5.8852px;
    border: 2px solid #dce0ed;
    width: 100%;
    padding: 7px 5px 7px 15px;
    margin-top: 13px;
  }

  .forgot-password .password-form .forgot-password-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .forgot-password .additional-info-2 .small-hidden {
    display: none;
  }

  .forgot-password .additional-info-2 .small-bottom {
    padding-bottom: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .body-wrapper-main {
    padding-left: 21px;
    padding-right: 18px;
  }

  .body-wrapper-main .text-center img {
    width: 305px;
  }

  .body-wrapper-main .text-center h1 {
    font-size: 24.68px;
    margin-bottom: 33.93px;
  }

  .body-wrapper-main .additional-info .small-hidden {
    display: none;
  }

  .body-wrapper-main .additional-info .small-bottom {
    padding-bottom: 16px !important;
  }

  .body-wrapper-main .sign-up {
    margin-bottom: 87px;
    padding-right: 60px;
  }

  .body-wrapper-main .sign-up h1 {
    font-size: 24.68px;
  }

  .body-wrapper-main .sign-up p {
    font-size: 12px;
    margin-bottom: 25px;
  }

  .body-wrapper-main .logreg-forms {
    padding-right: 44px;
  }

  .body-wrapper-main .logreg-forms h1 {
    font-size: 24.68px;
  }

  .body-wrapper-main .logreg-forms p {
    font-size: 12px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 800px) {
  .body-wrapper-email-check {
    background-color: #4055cc;
    padding-top: 100px;
  }

  .body-wrapper-email-check .check-mail .text-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .body-wrapper-email-check .check-mail .text-center h3 {
    color: #ffffff;
    margin-bottom: 15.25px;
    margin-top: 0;
    font-size: 14.52px;
  }

  .body-wrapper-email-check .check-mail .text-center img {
    margin-bottom: 87.45px;
    width: 305px;
  }

  .body-wrapper-email-check .check-mail .text-center h1 {
    color: #ffffff;
    margin-bottom: 71px;
  }

  .body-wrapper-email-check .check-mail .check-your-email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
  }

  .body-wrapper-email-check .check-mail .check-your-email img {
    margin-bottom: 26px;
  }

  .body-wrapper-email-check .check-mail .check-your-email h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 30px;
  }

  .body-wrapper-email-check .check-mail .check-your-email p {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 32px;
  }

  .body-wrapper-email-check .check-mail .check-your-email button {
    margin-bottom: 150px;
    background-color: #51c27e;
    color: #ffffff;
  }

  .body-wrapper-email-check .additional-info-2 .small-hidden {
    display: none;
  }

  .body-wrapper-email-check .additional-info-2 .small-bottom {
    padding-bottom: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .email-confirmed {
    padding-top: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .email-confirmed .text-center h3 {
    font-size: 14.5px;
    line-height: 17px;
    font-weight: 800;
  }

  .email-confirmed .text-center img {
    width: 305px;
    margin-bottom: 50px;
  }

  .email-confirmed .confirmation-info {
    width: 100%;
    margin: 0 auto;
  }

  .email-confirmed .confirmation-info h1 {
    margin-bottom: 38px;
  }

  .email-confirmed .confirmation-info p {
    font-size: 15px;
    font-weight: 600;
    line-height: 22.5px;
    padding-right: 47px;
    padding-left: 27px;
    margin-bottom: 47px;
    width: 100%;
  }

  .email-confirmed .confirmation-info img {
    width: 90px;
    height: 67px;
  }

  .email-confirmed .confirmation-info button {
    margin-bottom: 25px;
  }

  .email-confirmed .text-box {
    width: 100%;
    margin: 0 auto;
  }

  .email-confirmed .text-box h2 {
    font-weight: 400;
    line-height: 21px;
    padding-left: 40px;
    padding-right: 39px;
  }

  .email-confirmed .additional-info-2 .small-hidden {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .download-the-app {
    background-color: #536dff;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .download-the-app .store-info-2 {
    width: 100%;
    max-width: 410px;
    margin: auto;
  }

  .download-the-app .store-info-2 img {
    margin-bottom: 22px;
  }

  .download-the-app .store-info-2 h1 {
    margin-bottom: 13.33px;
    font-size: 26px;
  }

  .download-the-app .store-info-2 p {
    margin-bottom: 34px;
    font-size: 15px;
    font-weight: 600;
    padding-right: 50px;
    padding-left: 50px;
  }

  .download-the-app .download-buttons {
    margin-bottom: 24.3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10.31px;
  }

  .download-the-app .download-buttons .app-store {
    display: block;
    width: 122.28px;
    height: 40.76px;
    background-image: url("../img/appstore1.svg");
    background-size: contain;
  }

  .download-the-app .download-buttons .google-play {
    display: block;
    width: 137.57px;
    height: 40.76px;
    background-image: url("../img/googleplay.png");
    background-size: contain;
  }

  .download-the-app .download-extra {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }

  .download-the-app .download-extra p {
    margin-bottom: 44.27px;
  }

  .download-the-app .download-extra p a {
    text-decoration: underline;
    color: #ffffff;
  }

  .download-the-app .download-extra button {
    margin-bottom: 88px;
    background-color: #51c27e;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
  }

  .download-the-app .download-extra button i {
    display: inline-block;
    height: 12px;
    width: 8px;
    background-image: url("../img/arrow-white.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 11px;
  }

  .download-the-app .additional-info-2 .small-hidden {
    display: none;
  }

  .download-the-app .additional-info-2 .small-bottom {
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 800px) {
  .registration-complete {
    background-color: #536dff;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
  }

  .registration-complete .text-center {
    margin-bottom: 63.59px;
  }

  .registration-complete .text-center h3 {
    margin-bottom: 15.25px;
    font-size: 14.52px;
  }

  .registration-complete .text-center img {
    width: 305px;
    margin-bottom: 0;
  }

  .registration-complete .congratulations {
    margin: 0 auto;
  }

  .registration-complete .congratulations p {
    max-width: 339px;
    font-weight: 600;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 21.1px;
  }

  .registration-complete .congratulations img {
    margin-bottom: 22.54px;
  }

  .registration-complete .congratulations h1 {
    margin-bottom: 24.15px;
    font-size: 26px;
  }

  .registration-complete .register-info {
    width: 311px;
    margin: 0 auto;
    margin-bottom: 157px;
  }

  .registration-complete .register-info h2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 49px;
  }

  .registration-complete .register-info button {
    background-color: #51c27e;
    padding: 9px 17px 9px 17px;
    font-weight: 500;
  }

  .registration-complete .additional-info-2 .small-hidden {
    display: none;
  }

  .registration-complete .additional-info-2 .small-bottom {
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 770px) {
  .dot-active::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 4px;
    width: 7px !important;
  }

  .dot {
    margin-right: 13px;
  }

  .dot-inactive::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 4px;
    width: 7px !important;
  }


}

@media only screen and (max-width: 1320px) {
  .merchant-name-hidden {
    display: none;
  }
}

@media only screen and (max-width: 425px) {
  .grid-container .header .header__avatar .profile-div .peer.mR-10 {
    margin-right: 3px !important;
  }
  
}

@media only screen and (max-width: 600px) {
  .cdk-overlay-pane
  {
    width:100%;
    height:100%;
    top: 0 !important;
    left: 0 !important;
  }
  .owl-dt-inline-container, .owl-dt-popup-container {
    height: 100% !important;
    width: 100% !important;
  }
  .owl-dt-inline-container .owl-dt-calendar, .owl-dt-popup-container .owl-dt-calendar {
    height:auto !important
  }
}
