.switch-flat {
  padding: 0;
  background: #fff;
  background-image: none;
}
.switch-flat .switch-label {
  background: #fff;
  border: solid 2px #eceeef;
  box-shadow: none;
}
.switch-flat .switch-label:after {
  color: #0088cc;
}
.switch-flat .switch-handle {
  top: 6px;
  left: 6px;
  background: #dadada;
  width: 22px;
  height: 22px;
  box-shadow: none;
}
.switch-flat .switch-handle:before {
  background: #eceeef;
}
.switch-flat .switch-input:checked ~ .switch-label {
  background: #fff;
  border-color: #0088cc;
}
.switch-flat .switch-input:checked ~ .switch-handle {
  left: 154px;
  background: #0088cc;
  box-shadow: none;
}

.switch-left-right .switch-label {
  overflow: hidden;
}
.switch-left-right .switch-label:before,
.switch-left-right .switch-label:after {
  width: 0px;
  height: 30px;
  top: 6px;
  left: -51px;
  right: 0;
  bottom: 0;
  padding: 11px 0 0 0;
  text-indent: 0px;
  border-radius: 20px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2),
    inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.switch-left-right .switch-label:before {
  background: #eceeef;
  text-align: left;
  padding-left: 80px;
}
.switch-left-right .switch-label:after {
  text-align: left;
  text-indent: 9px;
  background: #00a65a;
  left: -180px;
  opacity: 1;
  width: 100%;
}
.switch-left-right .switch-input:checked ~ .switch-label:before {
  opacity: 1;
  left: 180px;
}
.switch-left-right .switch-input:checked ~ .switch-label:after {
  left: 0;
}
.switch-left-right .switch-input:checked ~ .switch-label {
  background: inherit;
}

.switch {
  position: relative;
  display: block;
  /* width: 180px; */
  height: 22px;
  /* padding: 3px; */
  margin: 5px 2px 7px 10px;
  background: linear-gradient(to bottom, #eeeeee, #ffffff 25px);
  background-image: -webkit-linear-gradient(top, #eeeeee, #ffffff 25px);
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch-input-sm {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch-label {
  position: relative;
  display: block;
  height: inherit;

  text-transform: uppercase;
  background: #dd4b39;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before,
.switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #eee;
  /*text-shadow: 0 1px rgba(255, 255, 255, 0.5);*/
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: #eee;
  /*text-shadow: 0 1px rgba(0, 0, 0, 0.2);*/
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #00a65a;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
.switch-input-sm:checked ~ .switch-label {
  background: #00a65a;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input-sm:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input-sm:checked ~ .switch-label:after {
  opacity: 1;
}
.switch-handle {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 19px;
  height: 17px;
  background: linear-gradient(to bottom, #ffffff 40%, #f0f0f0);
  background-image: -webkit-linear-gradient(top, #f39c12 40%, #f39c12);
  border-radius: 100%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: linear-gradient(to bottom, #eeeeee, #ffffff);
  background-image: -webkit-linear-gradient(top, #eeeeee, #ffffff);
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
  left: 154px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-input-sm:checked ~ .switch-handle {
  left: 100px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
/* Transition
        ========================== */
.switch-label,
.switch-handle {
  transition: All 0.9s cubic-bezier(1, 0.18, 0.46, 1.46);
  -webkit-transition: All 0.9s cubic-bezier(1, 0.18, 0.46, 1.46);
  -moz-transition: All 0.9s cubic-bezier(1, 0.18, 0.46, 1.46);
  -o-transition: All 0.9s cubic-bezier(1, 0.18, 0.46, 1.46);
}

.toggle.ios,
.toggle-on.ios,
.toggle-off.ios {
  border-radius: 20px;
}
.toggle.ios .toggle-handle {
  border-radius: 20px;
}

.blog_selected {
  box-shadow: 0 1px 5px rgb(0 0 0 / 70%) !important;
}

.luminaire {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 50px;
  border-radius: 50%;
  background-color: #000;
  box-shadow: 0 0 40px 20px #fff, 0 0 100px 50px #0ff;
  transition: box-shadow 4s ease-out;
  animation: spin 16s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.luminaire:hover {
  cursor: pointer;
}

.luminaire::before,
.luminaire::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 40px 20px #fff, 0 0 100px 50px #ff0;
  opacity: 0;
  transition: opacity 8s, transform 8s;
}

.on {
  background-color: #fff;
  box-shadow: 0 0 80px 40px #fff, 0 0 200px 100px #f0f;
}

.on::before {
  transform: translateX(-100px);
  opacity: 1;
}

.on::after {
  transform: translateX(100px);
  opacity: 1;
}

.char_item {
  width: 100%;
  height: 200px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
  border: solid 1px #e8e8e8;
  padding-left: 36px;
}

.char_title {
  font-size: 21px;
  font-weight: 500;
  color: #000;
}

.char_subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin-top: 3px;
}

.ninput-group {
  position: relative;
  display: flex;
  border-collapse: separate;
}
.wrap {
  width: 178px;
  height: 0px;
  background: #fff;
  position: relative;
  top: -14px;
  border-radius: 10px;
}

.stars {
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}

.star {
  color: #91a6ff !important;
}

.rate {
  height: 50px;
  margin-left: -5px;
  padding: 5px;
  font-size: 25px;
  position: relative;
  cursor: pointer;
}

.rate input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  pointer-events: none;
}

.star-over::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  content: "\f005";
  display: inline-block;
  color: #d3dcff;
  z-index: 1;
  position: absolute;
  top: 15px;
  left: 10px;
}

.rate:nth-child(1) .face::after {
  content: "\f119";
  /* ☹ */
}

.rate:nth-child(2) .face::after {
  content: "\f11a";
  /* 😐 */
}

.rate:nth-child(3) .face::after {
  content: "\f118";
  /* 🙂 */
}

.rate:nth-child(4) .face::after {
  content: "\f580";
  /* 😊 */
}

.rate:nth-child(5) .face::after {
  content: "\f59a";
  /* 😄 */
}

.face {
  opacity: 0;
  position: absolute;
  width: 35px;
  height: 35px;
  background: #91a6ff;
  border-radius: 5px;
  top: -50px;
  left: 2px;
  transition: 0.2s;
  pointer-events: none;
}

.face::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0dd";
  display: inline-block;
  color: #91a6ff;
  z-index: 1;
  position: absolute;
  left: 9px;
  bottom: -15px;
}

.face::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #fff;
  z-index: 1;
  position: absolute;
  left: 5px;
  top: -1px;
}

.rate:hover .face {
  opacity: 1;
}

.center {
  /* margin: auto;
  width: 50%;
  padding: 10px; */
  text-align: center;
}

.text-black {
  color: black;
}

.upload-btn:hover {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #999;
  cursor: copy;
}

.material-icons {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.p-img {
  position: absolute;
  top: 1%;
  right: 9%;
  color: #666666;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.material-icons::before {
  font-size: 24px;
  line-height: 14px;
}
.btn .material-icons::before {
  position: relative;
  top: 4px;
}
.btn-xs .material-icons::before {
  font-size: 18px;
  top: 3px;
}
.btn-sm .material-icons::before {
  font-size: 18px;
  top: 3px;
}
.dropdown-menu .material-icons {
  width: 18px;
}
.dropdown-menu .material-icons::before {
  position: relative;
  top: 4px;
  left: -8px;
}
.nav .material-icons::before {
  position: relative;
  top: 4px;
}
.navbar .navbar-toggle .material-icons::before {
  position: relative;
  top: 4px;
  color: #fff;
}
.breadcrumb .material-icons::before {
  position: relative;
  top: 4px;
}
.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb a:hover span {
  text-decoration: underline;
}
.alert .material-icons::before {
  position: relative;
  top: 4px;
  margin-right: 2px;
}
.input-group-addon .material-icons::before {
  position: relative;
  top: 3px;
}
.navbar-brand .material-icons::before {
  position: relative;
  top: 2px;
  margin-right: 2px;
}
.list-group-item .material-icons::before {
  position: relative;
  top: 3px;
  left: -3px;
}
/* .modal:nth-of-type(even) {
  z-index: 1052 !important;
}
.modal-backdrop.show:nth-of-type(even) {
  z-index: 1051 !important;
} */
.btn.btn-rounded {
  border-radius: 50px;
}

.remove_btn {
  z-index: 11;
  position: relative;
  left: 95%;
  top: 14px;
}

.pointer {
  cursor: pointer;
}

dfn {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: dashed 1px rgba(0, 0, 0, 0.8);
  padding: 0 0.4em;
  cursor: help;
  font-style: normal;
  position: relative;
}
dfn::after {
  content: attr(data-info);
  display: inline;
  position: absolute;
  top: 22px;
  left: 0;
  opacity: 0;
  width: 230px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5em;
  padding: 0.5em 0.8em;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  pointer-events: none; /* This prevents the box from apearing when hovered. */
  transition: opacity 250ms, top 250ms;
}
dfn::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0;
  width: 0;
  height: 0;
  border: solid transparent 5px;
  border-bottom-color: rgba(0, 0, 0, 0.8);
  transition: opacity 250ms, top 250ms;
}
dfn:hover {
  z-index: 10;
} /* Keeps the info boxes on top of other elements */
dfn:hover::after,
dfn:hover::before {
  opacity: 1;
}
dfn:hover::after {
  top: 30px;
}
dfn:hover::before {
  top: 20px;
}

.btn-5 {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-5:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgb(7 18 229 / 50%);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

button[class^="grow"]::after {
  transition: all 0.3s ease;
}
button[class^="grow"]:hover::after {
  transition: all 0.3s ease-out;
}
.box-btn:hover {
  color: #3498db !important;
}
.box-btn::after {
  content: "";
  background: #ecf0f1;
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
}

button.grow_skew_forward::after {
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
}
button.grow_skew_forward:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}
button.grow_skew_backward::after {
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(45deg) scale(0, 1);
}
button.grow_skew_backward:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
button.grow_spin::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: scale(0, 0) rotate(-180deg);
}
button.grow_spin:hover::after {
  transform: scale(1, 1) rotate(0deg);
}

.btn-three {
  color: #fff !important;
  transition: all 0.5s;
  position: relative;
}
.btn-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.btn-three:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.btn-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.2, 1.2);
}
.btn-three:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
.first {
  border: 2px solid #e74c3c;
  box-sizing: border-box;
  border-radius: 0.6em;
  background-color: transparent;
  -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.first:hover {
  box-shadow: 0 0 40px 40px #e74c3c inset;
}
.fourth {
  border-color: #f1c40f;
  color: #fff;
  background-image: -webkit-linear-gradient(
    45deg,
    #f1c40f 50%,
    transparent 50%
  );
  background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.fourth:hover {
  background-position: 0;
}
.third {
  border-color: #3498db;
  color: #fff;
  box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.third:hover {
  box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
}

.add-btn {
  position: fixed;
  z-index: 13;
  top: 140px;
  right: 84px;
}
.qr-btn {
  position: fixed;
  z-index: 1031;
  top: 72px;
  right: 84px;
}
#searchbox {
  top: 75px;
  left: 200px;
}
.grid-view {
  /* overflow-x: hidden;
  height: 600px;
  overflow: scroll; */
}

body.newframe-mode .main-sidebar {
  display: none;
}
body.newframe-mode .content-wrapper {
  margin-left: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
}
body.newframe-mode .main-footer,
body.newframe-mode .main-header {
  display: none;
}
body.newframe-mode-fullscreen {
  overflow: hidden;
}
.content-wrapper {
  height: 100%;
}
.content-wrapper.newframe-mode .btn-iframe-close {
  color: #dc3545;
  position: absolute;
  line-height: 1;
  right: 0.125rem;
  top: 0.125rem;
  z-index: 10;
  visibility: hidden;
}
.content-wrapper.newframe-mode .btn-iframe-close:focus,
.content-wrapper.newframe-mode .btn-iframe-close:hover {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}
@media (hover: none) and (pointer: coarse) {
  .content-wrapper.newframe-mode .btn-iframe-close {
    visibility: visible;
  }
}
.content-wrapper.newframe-mode .navbar-nav {
  overflow-y: auto;
  width: 100%;
}
.content-wrapper.newframe-mode .navbar-nav .nav-link {
  white-space: nowrap;
}
.content-wrapper.newframe-mode .navbar-nav .nav-item {
  position: relative;
}
.content-wrapper.newframe-mode .navbar-nav .nav-item:focus .btn-iframe-close,
.content-wrapper.newframe-mode .navbar-nav .nav-item:hover .btn-iframe-close {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  visibility: visible;
}
@media (hover: none) and (pointer: coarse) {
  .content-wrapper.newframe-mode .navbar-nav .nav-item:focus .btn-iframe-close,
  .content-wrapper.newframe-mode .navbar-nav .nav-item:hover .btn-iframe-close {
    visibility: visible;
  }
}
.content-wrapper.newframe-mode .tab-content {
  position: relative;
}
.content-wrapper.newframe-mode .tab-pane + .tab-empty {
  display: none;
}
.content-wrapper.newframe-mode .tab-empty {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-wrapper.newframe-mode .tab-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  background-color: #f4f6f9;
}
.content-wrapper.newframe-mode .tab-loading > div {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.content-wrapper.newframe-mode iframe {
  border: 0;
  width: 100%;
  height: 100%;
  margin-bottom: -8px;
}
.content-wrapper.newframe-mode iframe .content-wrapper {
  padding-bottom: 0 !important;
}
body.newframe-mode-fullscreen .content-wrapper.newframe-mode {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: 0 !important;
  height: 100%;
  min-height: 100%;
  z-index: 1048;
}
.permanent-btn-iframe-close .btn-iframe-close {
  -webkit-animation: none !important;
  animation: none !important;
  visibility: visible !important;
  opacity: 1;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}

div.arrow-down {
  position: relative;
  top: 78px;
  left: 45px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;

  border-top: 15px solid #3795f6;
}

div.online-indicator {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;

  background-color: #0fcc45;
  border-radius: 50%;

  position: relative;
}
div.offline-indicator {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;

  background-color: #f30909;
  border-radius: 50%;

  position: relative;
}
span.online-blink {
  display: block;
  width: 15px;
  height: 15px;

  background-color: #0fcc45;
  opacity: 0.7;
  border-radius: 50%;

  animation: blink 1s linear infinite;
}
span.offline-blink {
  display: block;
  width: 15px;
  height: 15px;

  background-color: #f30909;
  opacity: 0.7;
  border-radius: 50%;

  animation: blink 1s linear infinite;
}

span.online-text {
  display: inline;

  font-family: "Rubik", sans-serif;
  font-weight: 400;
  text-shadow: 0px 3px 6px rgba(150, 150, 150, 0.2);

  position: relative;
  cursor: pointer;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*Animations*/

@keyframes blink {
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
.live-icon {
  position: absolute;
  left: 64%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 15px;
  height: 15px;

  &:before {
    content: "";
    position: relative;
    display: block;
    width: 250%;
    height: 250%;
    box-sizing: border-box;
    margin-left: -75%;
    margin-top: -75%;
    border-radius: 45px;
    background-color: #75daad;
    animation: pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }

  &:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #75daad;
    border-radius: 50px;
    animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}
 
.snowflake,.snowflake .inner{animation-iteration-count:infinite;animation-play-state:running}@keyframes snowflakes-fall{0%{transform:translateY(0)}100%{transform:translateY(110vh)}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;user-select:none;cursor:default;animation-name:snowflakes-shake;animation-duration:3s;animation-timing-function:ease-in-out}.snowflake .inner{animation-duration:10s;animation-name:snowflakes-fall;animation-timing-function:linear}.snowflake:nth-of-type(0){left:1%;animation-delay:0s}.snowflake:nth-of-type(0) .inner{animation-delay:0s}.snowflake:first-of-type{left:10%;animation-delay:1s}.snowflake:first-of-type .inner,.snowflake:nth-of-type(8) .inner{animation-delay:1s}.snowflake:nth-of-type(2){left:20%;animation-delay:.5s}.snowflake:nth-of-type(2) .inner,.snowflake:nth-of-type(6) .inner{animation-delay:6s}.snowflake:nth-of-type(3){left:30%;animation-delay:2s}.snowflake:nth-of-type(11) .inner,.snowflake:nth-of-type(3) .inner{animation-delay:4s}.snowflake:nth-of-type(4){left:40%;animation-delay:2s}.snowflake:nth-of-type(10) .inner,.snowflake:nth-of-type(4) .inner{animation-delay:2s}.snowflake:nth-of-type(5){left:50%;animation-delay:3s}.snowflake:nth-of-type(5) .inner{animation-delay:8s}.snowflake:nth-of-type(6){left:60%;animation-delay:2s}.snowflake:nth-of-type(7){left:70%;animation-delay:1s}.snowflake:nth-of-type(7) .inner{animation-delay:2.5s}.snowflake:nth-of-type(8){left:80%;animation-delay:0s}.snowflake:nth-of-type(9){left:90%;animation-delay:1.5s}.snowflake:nth-of-type(9) .inner{animation-delay:3s}.snowflake:nth-of-type(10){left:25%;animation-delay:0s}.snowflake:nth-of-type(11){left:65%;animation-delay:2.5s}

@keyframes beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.beat-btn {
  display: inline-block;
  cursor: pointer;
  animation: beat 1s infinite;
}

.beat-btn:hover {
  animation: none; /* Stops the animation on hover */
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

/* Slider circle */
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

/* Toggle On State */
input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}