.bg-primary {
  background-color: #008ffd;
}

.bg-primary {
  background-color: #008ffd;
}

.ripple, .btn {
  background-position: center;
  transition: background 0.8s;
}

.ripple:hover, .btn:hover {
  background: #126fda radial-gradient(circle, transparent 1%, #126fda 1%) center/15000%;
  color: white;
}

.ripple:active, .btn:active {
  background-color: #008ffd;
  background-size: 100%;
  transition: background 0s;
}

.ripple-orange {
  background-position: center;
  transition: background 0.8s;
}

.ripple-orange:hover {
  background: #fd8e00 radial-gradient(circle, transparent 1%, #fd8e00 1%) center/15000%;
}

.ripple-orange:active {
  background-color: #fd6e00;
  background-size: 100%;
  transition: background 0s;
}

.btn {
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.btn .active {
  background: #008ffd;
}

.btn-primary {
  background-color: #008ffd;
}

html {
  background-color: #e2f1ff;
}

body {
  background-color: #e2f1ff;
}

textarea {
  resize: none;
}

.white-text {
  color: white;
}

.page-title {
  border-radius: 16px 16px 0 0;
}
.page-title h1 {
  font-weight: bold;
}

::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.app-loader .loading {
  border: solid 2px #008ffd;
  border-top-color: white;
}

.table-loader .loading {
  border: solid 2px #008ffd;
  border-top-color: white;
}

#bodyContent p {
  font-size: 14px;
  color: #008ffd;
}
#bodyContent p a {
  font-size: 18px;
}

#wall-timeline-container {
  background-color: #e2f1ff;
  padding: 0;
}

#pre-loader {
  background-color: #e2f1ff;
}

.default-shadow {
  -webkit-box-shadow: 0 0 20px 0 #97a5ad;
  -moz-box-shadow: 0px 0px 20px 0px #97a5ad;
  box-shadow: 0px 0px 20px 0px #97a5ad;
}

.primary-shadow {
  -webkit-box-shadow: 0px 0px 20px 0px #008ffd;
  -moz-box-shadow: 0px 0px 20px 0px #008ffd;
  box-shadow: 0px 0px 20px 0px #008ffd;
}

.orange-shadow {
  -webkit-box-shadow: 0px 0px 20px 0px #fd9e00;
  -moz-box-shadow: 0px 0px 20px 0px #fd9e00;
  box-shadow: 0px 0px 20px 0px #fd9e00;
}

.bg-primary {
  background-color: #008ffd;
}

.dropdown-menu {
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
}

.dropdown-menu > li > a {
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  padding: 7px 20px;
  color: #7988A2;
}

.bg-primary {
  background-color: #008ffd;
}

.panel {
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
}

.panel-heading {
  border-radius: 16px 16px 0 0;
  -moz-border-radius: 16px 16px 0 0;
  -webkit-border-radius: 16px 16px 0 0;
}

.panel-blue {
  background-color: #008ffd;
}

.panel-orange {
  background-color: #fd9e00;
}

.sticky-note {
  background: transparent;
}

.bg-primary {
  background-color: #008ffd;
}

.bg-profile {
  background-color: #008ffd;
}

.inputGroup {
  background-color: white;
  display: block;
  margin: 10px 0;
  position: relative;
}
.inputGroup label {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
}
.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #008ffd;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
  color: #fff;
}
.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}
.inputGroup input:checked ~ label:after {
  background-color: #8cc7fe;
  border-color: #8cc7fe;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

code {
  background-color: #9AA3AC;
  padding: 0 8px;
}

.bg-primary {
  background-color: #008ffd;
}

#sidebar {
  background-color: #143ea9;
}
#sidebar li a {
  color: white;
}
#sidebar li a:hover {
  background-color: #126fda;
  color: white;
}
#sidebar .badge {
  font-weight: bold;
  background-color: #5cb0fe;
}

#sidebar-menu > li.active > a {
  border-left: 8px solid #b9dcfe;
  background-color: #008ffd;
}

#sidebar-menu li ul > li > a {
  background-color: #008ffd;
}
#sidebar-menu li.expand > a:before {
  color: white;
}
#sidebar-menu li:hover {
  background-color: #359ffe;
}
#sidebar-menu span {
  font-weight: normal;
}

.bg-primary {
  background-color: #008ffd;
}

.nav-tabs > li:not(.title-tab):after {
  background-color: #008ffd;
}

.nav-tabs > li > a:hover {
  color: #008ffd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:active,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #008ffd;
  border-bottom: 2px solid #008ffd;
  border-radius: 0;
}

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