.alert {
  position: relative;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.5s ease;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scalingOff {
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}
.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #49db69;
  background-color: var(--bg-color);
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: hsl(157, 100%, 50%);
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.closed {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

a {
  text-decoration: none;
}
</style > <style > .switch {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: start;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-inline-box;
  display: inline-flex;
  flex-flow: row nowrap;
  height: 36px;
  justify-content: flex-start;
  margin: 0;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}
.switch input {
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.switch .caption,
.switch .check {
  display: block;
  font-size: 14px;
  line-height: 38px;
  margin: 0 4px;
  position: relative;
}
.switch .check {
  background: transparent;
  border: 2px solid #1d1d1d;
  border-radius: 0.5625rem;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  height: 20px;
  position: relative;
  vertical-align: middle;
  width: 48px;
  z-index: 1;
}
.switch .check:after {
  background: #333;
  border: 2px solid #333;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: block;
  height: 0.75rem;
  left: 3px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.75rem;
  z-index: 2;
}
.switch input[type="checkbox"]:checked ~ .check {
  background: #3737df;
  border-color: #1d1d1d;
  color: #1d1d1d;
}
.switch input[type="checkbox"]:checked ~ .check:after {
  background-color: #fff;
  border-color: #fff;
  left: auto;
  -webkit-transform: translateX(30px) translateY(-50%);
  transform: translateX(30px) translateY(-50%);
}
.switch input[type="checkbox"]:disabled ~ .check {
  background-color: #e9e9e9;
  border-color: #e9e9e9;
}
.switch input[type="checkbox"]:disabled ~ .check:after {
  background-color: #d0d0d0;
  border-color: #d0d0d0;
}
.switch .check {
  -webkit-box-ordinal-group: 2;
  order: 1;
}
.switch .caption {
  -webkit-box-ordinal-group: 3;
  order: 2;
}
.switch.caption-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-flow: row-reverse nowrap;
}
.switch.invalid,
.switch.required,
.switch.valid {
  border: none !important;
}
.switch.invalid:after {
  display: none;
}
.switch.transition-on .check,
.switch.transition-on .check:after,
.switch.transition-on input[type="checkbox"]:checked ~ .check:after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.switch .check:before {
  color: inherit;
  content: attr(data-off);
  display: block;
  font-size: 10px;
  left: 16px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: -2px;
  width: 26px;
}
.switch input[type="checkbox"]:checked ~ .check:before {
  color: #fff;
  content: attr(data-on);
  left: 1px;
}
.switch input[type="checkbox"]:disabled ~ .check:before {
  display: none;
}
.switch-material {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: start;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-inline-box;
  display: inline-flex;
  flex-flow: row nowrap;
  height: 36px;
  justify-content: flex-start;
  margin: 0;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}
.switch-material input {
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.switch-material .caption,
.switch-material .check {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  margin: 0 4px;
  vertical-align: middle;
}
.switch-material .check {
  background-color: #929292;
  border-radius: 8px;
  height: 16px;
  margin: 0 4px;
  overflow: visible;
  position: relative;
  width: 48px;
}
.switch-material .check:after {
  background-color: #00aba9;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16),
    0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  content: "";
  display: block;
  height: 22px;
  margin-left: -3px;
  margin-top: -3px;
  position: absolute;
  width: 22px;
  z-index: 2;
}
.switch-material input:not(:checked) ~ .check:after {
  background-color: #fff;
}
.switch-material input:checked ~ .check {
  background-color: rgba(0, 150, 136, 0.5);
}
.switch-material input:checked ~ .check:after {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.switch-material input:disabled ~ .check {
  background-color: #d5d5d5;
}
.switch-material input:disabled ~ .check:after {
  background-color: #bdbdbd;
}
.switch-material .check {
  -webkit-box-ordinal-group: 2;
  order: 1;
}
.switch-material .caption {
  -webkit-box-ordinal-group: 3;
  order: 2;
}
.switch-material.caption-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-flow: row-reverse nowrap;
}
.switch-material.transition-on {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.switch-material.transition-on input:checked ~ .check:after,
.switch-material.transition-on input:not(:checked) ~ .check:after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.switch-material .check:before {
  color: inherit;
  content: attr(data-off);
  display: block;
  font-size: 10px;
  left: 19px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: -2px;
  width: 26px;
}
.switch-material input[type="checkbox"]:checked ~ .check:before {
  color: #fff;
  content: attr(data-on);
  left: 1px;
}
.switch-material input[type="checkbox"]:disabled ~ .check:before,
.t-menu {
  display: none;
}
