#navbar {
  padding: 38.5px 80px 38.5px 80px;
}
#navbar button {
  padding: 20px 41px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 100px;
  line-height: 20px;
}
#navbar .d-flex {
  gap: 16px;
}
#navbar .d-flex #loginbutton {
  border: 1px #12141d solid;
}
#navbar .d-flex #signupbutton {
  background-color: #353ee7;
  color: white;
}

main {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #fafbfc;
}
main .row {
  justify-content: center;
}
main .row .col-12 {
  padding: 35px 64px;
  background-color: white;
  border-radius: 24px;
}
main .row .col-12 button {
  padding: 20px 41px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 100px;
  line-height: 20px;
  background-color: #353ee7;
  border: 0;
  color: white;
}

.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  height: 100%;
}
.wrapper #sidebar {
  padding: 31px 20px;
  max-width: 20%;
  background-color: #f6f6ff;
  min-height: 100vh;
}
.wrapper #sidebar .text {
  display: none;
}
.wrapper #sidebar .sidebaritems {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  color: black;
  position: relative;
}
.wrapper #sidebar .sidebaritems.soon {
  opacity: 0.5;
}
.wrapper #sidebar .sidebaritems.soon::before {
  content: "Soon";
  background-color: wheat;
  display: inline;
  font-size: 15px;
  padding: 0px 10px;
  position: absolute;
  transform: rotate(45deg);
  left: 75%;
  margin-right: -25px;
}
.wrapper #sidebar .sidebaritems .bi.sidebar {
  font-size: 24px;
  font-weight: 800;
  font-style: bold;
}
.wrapper #sidebar .sidebaritems:hover {
  background-color: #353ee7;
  color: #f6f6ff;
}
.wrapper #sidebar .sidebaritems:hover.soon::before {
  color: black;
}
.wrapper #sidebar .sidebaritems.active {
  background-color: #353ee7;
  color: #f6f6ff;
}
.wrapper #sidebar.slide .sidebaritems .text {
  display: block;
}

#Template #syncbutton {
  border: 1px solid #353ee7;
  border-radius: 55px;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 47px;
  color: #353ee7;
}
#Template table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
#Template table th {
  text-align: center;
}
#Template table td {
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
#Template table tr td:last-child {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

#main {
  padding: 31px;
}

.box {
  background: #ffffff;
  box-shadow: 2px 4px 24px rgba(37, 69, 199, 0.08);
  border-radius: 8px;
}
.box h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

#sendmessage .button {
  display: inline-block;
  margin: 20px auto;
  background: #f6f6ff;
  color: #353ee7;
  font-weight: 600;
  font-size: 20px;
  width: 100%;
  padding: 1em;
  border-radius: 25px;
  text-align: center;
  position: relative;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  transition: border-radius linear 0.05s, width linear 0.05s;
}
#sendmessage .button:focus {
  outline: 0;
}
#sendmessage .button.animate {
  width: 68.1818181818px;
  height: 68.1818181818px;
  min-width: 0;
  border-radius: 50%;
  color: transparent;
}
#sendmessage .button.animate:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border: 4px solid white;
  border-radius: 50%;
  border-left-color: transparent;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: spin ease-in 2.5s forwards;
  animation-name: spin;
  -webkit-animation-name: spin;
  transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
#sendmessage .button.animate.success:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 12.5px;
  border: 4px solid white;
  border-right: 0;
  border-top: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
  transform: translate(-50%, -50%) rotate(0deg) scale(0);
  -webkit-animation: success ease-in 0.15s forwards;
  animation: success ease-in 0.15s forwards;
  animation-delay: 2.5s;
}
#sendmessage .button.animate.error {
  position: relative;
  -webkit-animation: vibrate ease-in 0.5s forwards;
  animation: vibrate ease-in 0.5s forwards;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
#sendmessage .button.animate.error:before {
  color: #fff;
  position: absolute;
  content: "!";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-animation: error ease-in 0.5s forwards;
  animation: error ease-in 0.5s forwards;
  animation-delay: 2.5s;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  98% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
  }
}
@keyframes success {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}

#sendbulk #uploadbutton {
  border: 1px solid #353ee7;
  border-radius: 55px;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 47px;
  color: #353ee7;
}
#sendbulk #opensendbutton {
  border: 1px solid #f6f6ff;
  border-radius: 55px;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 47px;
  background: #f6f6ff;
  color: #353ee7;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #999;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  display: none;
  z-index: 100;
}

#sendBulkmessage {
  z-index: 200;
  justify-content: center;
  align-items: center;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  left: 0;
}
#sendBulkmessage > .box {
  min-width: 50%;
}
#sendBulkmessage .button {
  display: inline-block;
  margin: 20px auto;
  background: #f6f6ff;
  color: #353ee7;
  font-weight: 600;
  font-size: 20px;
  padding: 1em;
  border-radius: 25px;
  text-align: center;
  position: relative;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  transition: border-radius linear 0.05s, width linear 0.05s;
}
#sendBulkmessage .button:focus {
  outline: 0;
}
#sendBulkmessage .button.animate {
  width: 68.1818181818px;
  height: 68.1818181818px;
  min-width: 0;
  border-radius: 50%;
  color: transparent;
}
#sendBulkmessage .button.animate:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border: 4px solid white;
  border-radius: 50%;
  border-left-color: transparent;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: spin ease-in 2.5s forwards;
  animation-name: spin;
  -webkit-animation-name: spin;
  transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
#sendBulkmessage .button.animate.success:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 12.5px;
  border: 4px solid white;
  border-right: 0;
  border-top: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
  transform: translate(-50%, -50%) rotate(0deg) scale(0);
  -webkit-animation: success ease-in 0.15s forwards;
  animation: success ease-in 0.15s forwards;
  animation-delay: 2.5s;
}
#sendBulkmessage .button.animate.error {
  position: relative;
  -webkit-animation: vibrate ease-in 0.5s forwards;
  animation: vibrate ease-in 0.5s forwards;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
#sendBulkmessage .button.animate.error:before {
  color: #fff;
  position: absolute;
  content: "!";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-animation: error ease-in 0.5s forwards;
  animation: error ease-in 0.5s forwards;
  animation-delay: 2.5s;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  98% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
  }
}
@keyframes success {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}

/* === Dashboard === */
.boxoverview {
  padding: 19.12px 23px;
  flex-grow: 1;
  flex-basis: 0;
  border: 1px solid #020001;
  border-radius: 4px;
}
.boxoverview > h1 {
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
}
.boxoverview > p {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

#visitbox {
  background: rgba(37, 69, 199, 0.2);
}

#TotalClicks {
  background: #fff0ff;
}

#VisitorsSocial {
  background: rgba(255, 162, 58, 0.4);
}

#conversionrate {
  background: rgba(78, 208, 146, 0.4);
}

#currenttime {
  padding: 12px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.overviewtext {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #020001;
}

h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

p {
  margin: 0;
  font-weight: 500;
  font-size: 19px;
  line-height: 28px;
}

.charts {
  padding: 19.5px 35px;
  background: #ffffff;
  box-shadow: 2px 4px 24px rgba(37, 69, 199, 0.08);
  border-radius: 8px;
  height: 100%;
}

.productarea {
  background: #ffffff;
  box-shadow: 2px 4px 24px rgba(37, 69, 199, 0.08);
  border-radius: 8px;
}

.importantproduct {
  padding: 30px 24px 0px 24px;
}

.split {
  opacity: 0.5;
  border: 1px solid #7e7d8b;
}

.tasklink {
  border: 1px solid #2545c7;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  color: #2545c7;
}

/*# sourceMappingURL=style.css.map */
