/* Deafult Margin & Padding */
/*-- Margin Top --*/
/* FLEX CONTAINER */
.header-flex {
    display: flex;
    justify-content: space-between; /* kiri - kanan */
    align-items: center;            /* sejajar vertikal */
    flex-wrap: nowrap;              /* jangan turun */
}

/* LOGO */
.logo-img {
    max-height: 50px;
    width: auto;
}

/* BUTTON */
.btn-login {
    background: #0d6efd;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap; /* biar tidak pecah */
}

/* RESPONSIVE BIAR PROPORSIONAL */
@media (max-width: 768px) {
    
    .logo-img {
        max-height: 40px;
    }

    .btn-login {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    
    .logo-img {
        max-height: 35px;
    }

    .btn-login {
        padding: 5px 10px;
        font-size: 12px;
    }
}

.topbar {
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    color: #fff;
}

/* AREA BATAS */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

/* TEXT */
.marquee-track {
    display: inline-block;
    white-space: nowrap;

    /* mulai dari kanan */
    animation: marquee 16s linear infinite;
}

/* ANIMASI JELAS KANAN KE KIRI */
@keyframes marquee {
    0% {
        transform: translateX(100%);   /* dari kanan */
    }
    100% {
        transform: translateX(-100%);  /* ke kiri */
    }
}

/* PAUSE SAAT HOVER */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
    transition: all 0.3s ease;
}

/* ICON */
.btn-modern .icon {
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	color: #fff !important;
	font-weight: bold;
}

/* ICON GERAK */
.btn-modern:hover .icon {
    transform: translateX(5px);
}

.modern-fact {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.fact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
	cursor: pointer;
}

/* glow effect */
.fact-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,123,255,0.15), transparent 70%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.fact-card:hover::before {
    opacity: 1;
}

/* icon animasi */
.icon-wrap img {
    width: 120px;
    transition: transform 0.4s ease;
}

.fact-card:hover .icon-wrap img {
    transform: scale(1.1) rotate(3deg);
}

/* counter */
.counter {
    font-size: 42px;
    font-weight: bold;
    color: #007bff;
    margin-top: 15px;
}

/* text */
.fact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* tombol modern */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-modern:hover {
    background: linear-gradient(45deg, #0056b3, #0096c7);
    transform: translateX(5px);
}
/* statistik */
.stat-card {
    background: white;
    color: #333;
    border-radius: 20px;
	margin-top: 195px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-icon img {
    width: 60%;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #0d6efd;
}
/* card tabel */
.table-card {
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* header */
#tableSekolah thead th {
	vertical-align: middle;
	font-size: 14px;
	background: #0d6efd;
	color: white;
}

/* hover */
#tableSekolah tbody tr {
	transition: 0.3s;
}
#tableSekolah tbody tr:hover {
	background: #f5f9ff;
	transform: scale(1.005);
}

/* sekolah */
.nama-sekolah {
	font-weight: 600;
}
.alamat {
	font-size: 12px;
	color: #888;
}

/* kuota box */
.kuota-box {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 8px 12px;
}

.kuota-item {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	padding: 3px 0;
}

.badge-kuota {
	background: #0d6efd;
	color: white;
	border-radius: 8px;
	padding: 2px 8px;
	font-size: 12px;
}

/* nilai */
.badge-min { background: #ffe5e5; color: #d9534f; }
.badge-max { background: #e6ffed; color: #28a745; }
.badge-avg { background: #e7f3ff; color: #0d6efd; }

/* tombol */
.btn-detail {
	border-radius: 20px;
	font-size: 13px;
}

.progress-bar-danger {
    background-color: #d9534f;
}
.progress-bar-success {
    background-color: #5cb85c;
}
.progress-bar-info {
    background-color: #5bc0de;
}
.progress-modern {
    height: 22px;
    border-radius: 20px;
    background: #f1f3f5;
    overflow: hidden;
}

.progress-bar {
    font-size: 12px;
    font-weight: bold;
    transition: width 1.5s ease-in-out;
}
.butn {
  margin-right: 5px;
  display: inline-block;
  font-weight: 400;
  color: #7e7e7e;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.75rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .butn {
      transition: none; } }
  .butn:hover {
    color: #7e7e7e;
    text-decoration: none; }
  .butn:focus, .butn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(54, 201, 95, 0.25); }
  .butn.disabled, .butn:disabled {
    opacity: 0.65; }
  .butn:not(:disabled):not(.disabled) {
    cursor: pointer; }

a.butn.disabled,
fieldset:disabled a.butn {
  pointer-events: none; }

.butn-primary {
  color: #fff;
  background-color: #0694FE;
  border-color: #0694FE; }
  .butn-primary:hover {
    color: #fff;
    background-color: #2eab51;
    border-color: #2ba14c; }
  .butn-primary:focus, .butn-primary.focus {
    color: #fff;
    background-color: #2eab51;
    border-color: #2ba14c;
    box-shadow: 0 0 0 0.2rem rgba(84, 209, 119, 0.5); }
  .butn-primary.disabled, .butn-primary:disabled {
    color: #fff;
    background-color: #0694FE;
    border-color: #0694FE; }
  .butn-primary:not(:disabled):not(.disabled):active, .butn-primary:not(:disabled):not(.disabled).active, .show > .butn-primary.dropdown-toggle {
    color: #fff;
    background-color: #2ba14c;
    border-color: #299747; }
    .butn-primary:not(:disabled):not(.disabled):active:focus, .butn-primary:not(:disabled):not(.disabled).active:focus, .show > .butn-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(84, 209, 119, 0.5); }

.butn-secondary {
  color: #fff;
  background-color: #A336C9;
  border-color: #A336C9; }
  .butn-secondary:hover {
    color: #fff;
    background-color: #8b2eab;
    border-color: #822ba1; }
  .butn-secondary:focus, .butn-secondary.focus {
    color: #fff;
    background-color: #8b2eab;
    border-color: #822ba1;
    box-shadow: 0 0 0 0.2rem rgba(177, 84, 209, 0.5); }
  .butn-secondary.disabled, .butn-secondary:disabled {
    color: #fff;
    background-color: #A336C9;
    border-color: #A336C9; }
  .butn-secondary:not(:disabled):not(.disabled):active, .butn-secondary:not(:disabled):not(.disabled).active, .show > .butn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #822ba1;
    border-color: #7a2997; }
    .butn-secondary:not(:disabled):not(.disabled):active:focus, .butn-secondary:not(:disabled):not(.disabled).active:focus, .show > .butn-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(177, 84, 209, 0.5); }

.butn-success {
  color: #fff;
  background-color: #2bc155;
  border-color: #2bc155; }
  .butn-success:hover {
    color: #fff;
    background-color: #24a247;
    border-color: #229743; }
  .butn-success:focus, .butn-success.focus {
    color: #fff;
    background-color: #24a247;
    border-color: #229743;
    box-shadow: 0 0 0 0.2rem rgba(75, 202, 111, 0.5); }
  .butn-success.disabled, .butn-success:disabled {
    color: #fff;
    background-color: #2bc155;
    border-color: #2bc155; }
  .butn-success:not(:disabled):not(.disabled):active, .butn-success:not(:disabled):not(.disabled).active, .show > .butn-success.dropdown-toggle {
    color: #fff;
    background-color: #229743;
    border-color: #1f8d3e; }
    .butn-success:not(:disabled):not(.disabled):active:focus, .butn-success:not(:disabled):not(.disabled).active:focus, .show > .butn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(75, 202, 111, 0.5); }

.butn-info {
  color: #fff;
  background-color: #369DC9;
  border-color: #369DC9; }
  .butn-info:hover {
    color: #fff;
    background-color: #2e85ab;
    border-color: #2b7ea1; }
  .butn-info:focus, .butn-info.focus {
    color: #fff;
    background-color: #2e85ab;
    border-color: #2b7ea1;
    box-shadow: 0 0 0 0.2rem rgba(84, 172, 209, 0.5); }
  .butn-info.disabled, .butn-info:disabled {
    color: #fff;
    background-color: #369DC9;
    border-color: #369DC9; }
  .butn-info:not(:disabled):not(.disabled):active, .butn-info:not(:disabled):not(.disabled).active, .show > .butn-info.dropdown-toggle {
    color: #fff;
    background-color: #2b7ea1;
    border-color: #297697; }
    .butn-info:not(:disabled):not(.disabled):active:focus, .butn-info:not(:disabled):not(.disabled).active:focus, .show > .butn-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(84, 172, 209, 0.5); }

.butn-warning {
  color: #212529;
  background-color: #ffb800;
  border-color: #ffb800; }
  .butn-warning:hover {
    color: #212529;
    background-color: #d99c00;
    border-color: #cc9300; }
  .butn-warning:focus, .butn-warning.focus {
    color: #212529;
    background-color: #d99c00;
    border-color: #cc9300;
    box-shadow: 0 0 0 0.2rem rgba(222, 162, 6, 0.5); }
  .butn-warning.disabled, .butn-warning:disabled {
    color: #212529;
    background-color: #ffb800;
    border-color: #ffb800; }
  .butn-warning:not(:disabled):not(.disabled):active, .butn-warning:not(:disabled):not(.disabled).active, .show > .butn-warning.dropdown-toggle {
    color: #fff;
    background-color: #cc9300;
    border-color: #bf8a00; }
    .butn-warning:not(:disabled):not(.disabled):active:focus, .butn-warning:not(:disabled):not(.disabled).active:focus, .show > .butn-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(222, 162, 6, 0.5); }

.butn-danger {
  color: #fff;
  background-color: #F46B68;
  border-color: #F46B68; }
  .butn-danger:hover {
    color: #fff;
    background-color: #f14844;
    border-color: #f13c38; }
  .butn-danger:focus, .butn-danger.focus {
    color: #fff;
    background-color: #f14844;
    border-color: #f13c38;
    box-shadow: 0 0 0 0.2rem rgba(246, 129, 127, 0.5); }
  .butn-danger.disabled, .butn-danger:disabled {
    color: #fff;
    background-color: #F46B68;
    border-color: #F46B68; }
  .butn-danger:not(:disabled):not(.disabled):active, .butn-danger:not(:disabled):not(.disabled).active, .show > .butn-danger.dropdown-toggle {
    color: #fff;
    background-color: #f13c38;
    border-color: #f0312d; }
    .butn-danger:not(:disabled):not(.disabled):active:focus, .butn-danger:not(:disabled):not(.disabled).active:focus, .show > .butn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(246, 129, 127, 0.5); }

.butn-light {
  color: #212529;
  background-color: #D1D1D1;
  border-color: #D1D1D1; }
  .butn-light:hover {
    color: #212529;
    background-color: #bebebe;
    border-color: #b8b8b8; }
  .butn-light:focus, .butn-light.focus {
    color: #212529;
    background-color: #bebebe;
    border-color: #b8b8b8;
    box-shadow: 0 0 0 0.2rem rgba(183, 183, 184, 0.5); }
  .butn-light.disabled, .butn-light:disabled {
    color: #212529;
    background-color: #D1D1D1;
    border-color: #D1D1D1; }
  .butn-light:not(:disabled):not(.disabled):active, .butn-light:not(:disabled):not(.disabled).active, .show > .butn-light.dropdown-toggle {
    color: #212529;
    background-color: #b8b8b8;
    border-color: #b1b1b1; }
    .butn-light:not(:disabled):not(.disabled):active:focus, .butn-light:not(:disabled):not(.disabled).active:focus, .show > .butn-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(183, 183, 184, 0.5); }

.butn-dark {
  color: #fff;
  background-color: #3e4954;
  border-color: #3e4954; }
  .butn-dark:hover {
    color: #fff;
    background-color: #2e363e;
    border-color: #283037; }
  .butn-dark:focus, .butn-dark.focus {
    color: #fff;
    background-color: #2e363e;
    border-color: #283037;
    box-shadow: 0 0 0 0.2rem rgba(91, 100, 110, 0.5); }
  .butn-dark.disabled, .butn-dark:disabled {
    color: #fff;
    background-color: #3e4954;
    border-color: #3e4954; }
  .butn-dark:not(:disabled):not(.disabled):active, .butn-dark:not(:disabled):not(.disabled).active, .show > .butn-dark.dropdown-toggle {
    color: #fff;
    background-color: #283037;
    border-color: #23292f; }
    .butn-dark:not(:disabled):not(.disabled):active:focus, .butn-dark:not(:disabled):not(.disabled).active:focus, .show > .butn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(91, 100, 110, 0.5); }

.butn-outline-primary {
  color: #0694FE;
  border-color: #0694FE; }
  .butn-outline-primary:hover {
    color: #fff;
    background-color: #0694FE;
    border-color: #0694FE; }
  .butn-outline-primary:focus, .butn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(54, 201, 95, 0.5); }
  .butn-outline-primary.disabled, .butn-outline-primary:disabled {
    color: #0694FE;
    background-color: transparent; }
  .butn-outline-primary:not(:disabled):not(.disabled):active, .butn-outline-primary:not(:disabled):not(.disabled).active, .show > .butn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #0694FE;
    border-color: #0694FE; }
    .butn-outline-primary:not(:disabled):not(.disabled):active:focus, .butn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(54, 201, 95, 0.5); }

.butn-outline-secondary {
  color: #A336C9;
  border-color: #A336C9; }
  .butn-outline-secondary:hover {
    color: #fff;
    background-color: #A336C9;
    border-color: #A336C9; }
  .butn-outline-secondary:focus, .butn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(163, 54, 201, 0.5); }
  .butn-outline-secondary.disabled, .butn-outline-secondary:disabled {
    color: #A336C9;
    background-color: transparent; }
  .butn-outline-secondary:not(:disabled):not(.disabled):active, .butn-outline-secondary:not(:disabled):not(.disabled).active, .show > .butn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #A336C9;
    border-color: #A336C9; }
    .butn-outline-secondary:not(:disabled):not(.disabled):active:focus, .butn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-secondary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(163, 54, 201, 0.5); }

.butn-outline-success {
  color: #2bc155;
  border-color: #2bc155; }
  .butn-outline-success:hover {
    color: #fff;
    background-color: #2bc155;
    border-color: #2bc155; }
  .butn-outline-success:focus, .butn-outline-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(43, 193, 85, 0.5); }
  .butn-outline-success.disabled, .butn-outline-success:disabled {
    color: #2bc155;
    background-color: transparent; }
  .butn-outline-success:not(:disabled):not(.disabled):active, .butn-outline-success:not(:disabled):not(.disabled).active, .show > .butn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #2bc155;
    border-color: #2bc155; }
    .butn-outline-success:not(:disabled):not(.disabled):active:focus, .butn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(43, 193, 85, 0.5); }

.butn-outline-info {
  color: #369DC9;
  border-color: #369DC9; }
  .butn-outline-info:hover {
    color: #fff;
    background-color: #369DC9;
    border-color: #369DC9; }
  .butn-outline-info:focus, .butn-outline-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(54, 157, 201, 0.5); }
  .butn-outline-info.disabled, .butn-outline-info:disabled {
    color: #369DC9;
    background-color: transparent; }
  .butn-outline-info:not(:disabled):not(.disabled):active, .butn-outline-info:not(:disabled):not(.disabled).active, .show > .butn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #369DC9;
    border-color: #369DC9; }
    .butn-outline-info:not(:disabled):not(.disabled):active:focus, .butn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(54, 157, 201, 0.5); }

.butn-outline-warning {
  color: #ffb800;
  border-color: #ffb800; }
  .butn-outline-warning:hover {
    color: #212529;
    background-color: #ffb800;
    border-color: #ffb800; }
  .butn-outline-warning:focus, .butn-outline-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 184, 0, 0.5); }
  .butn-outline-warning.disabled, .butn-outline-warning:disabled {
    color: #ffb800;
    background-color: transparent; }
  .butn-outline-warning:not(:disabled):not(.disabled):active, .butn-outline-warning:not(:disabled):not(.disabled).active, .show > .butn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffb800;
    border-color: #ffb800; }
    .butn-outline-warning:not(:disabled):not(.disabled):active:focus, .butn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 184, 0, 0.5); }

.butn-outline-danger {
  color: #F46B68;
  border-color: #F46B68; }
  .butn-outline-danger:hover {
    color: #fff;
    background-color: #F46B68;
    border-color: #F46B68; }
  .butn-outline-danger:focus, .butn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 107, 104, 0.5); }
  .butn-outline-danger.disabled, .butn-outline-danger:disabled {
    color: #F46B68;
    background-color: transparent; }
  .butn-outline-danger:not(:disabled):not(.disabled):active, .butn-outline-danger:not(:disabled):not(.disabled).active, .show > .butn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #F46B68;
    border-color: #F46B68; }
    .butn-outline-danger:not(:disabled):not(.disabled):active:focus, .butn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(244, 107, 104, 0.5); }

.butn-outline-light {
  color: #D1D1D1;
  border-color: #D1D1D1; }
  .butn-outline-light:hover {
    color: #212529;
    background-color: #D1D1D1;
    border-color: #D1D1D1; }
  .butn-outline-light:focus, .butn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(209, 209, 209, 0.5); }
  .butn-outline-light.disabled, .butn-outline-light:disabled {
    color: #D1D1D1;
    background-color: transparent; }
  .butn-outline-light:not(:disabled):not(.disabled):active, .butn-outline-light:not(:disabled):not(.disabled).active, .show > .butn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #D1D1D1;
    border-color: #D1D1D1; }
    .butn-outline-light:not(:disabled):not(.disabled):active:focus, .butn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(209, 209, 209, 0.5); }

.butn-outline-dark {
  color: #3e4954;
  border-color: #3e4954; }
  .butn-outline-dark:hover {
    color: #fff;
    background-color: #3e4954;
    border-color: #3e4954; }
  .butn-outline-dark:focus, .butn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(62, 73, 84, 0.5); }
  .butn-outline-dark.disabled, .butn-outline-dark:disabled {
    color: #3e4954;
    background-color: transparent; }
  .butn-outline-dark:not(:disabled):not(.disabled):active, .butn-outline-dark:not(:disabled):not(.disabled).active, .show > .butn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #3e4954;
    border-color: #3e4954; }
    .butn-outline-dark:not(:disabled):not(.disabled):active:focus, .butn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .butn-outline-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(62, 73, 84, 0.5); }

.butn-link {
  font-weight: 400;
  color: #0694FE;
  text-decoration: none; }
  .butn-link:hover {
    color: #268d43;
    text-decoration: underline; }
  .butn-link:focus, .butn-link.focus {
    text-decoration: underline; }
  .butn-link:disabled, .butn-link.disabled {
    color: #6c757d;
    pointer-events: none; }

.butn-lg, .butn-group-lg > .butn {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

.butn-sm, .butn-group-sm > .butn {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.butn-block {
  display: block;
  width: 100%; }
  .butn-block + .butn-block {
    margin-top: 0.5rem; }

input[type="submit"].butn-block,
input[type="reset"].butn-block,
input[type="button"].butn-block {
  width: 100%; }

.butn-xxs {
  padding: 6px 15px;
  font-size: 11px;
  line-height: 1.3; }

.butn-xs {
  font-size: 0.75rem;
  padding: 0.438rem 1rem;
  font-weight: 600; }

.butn-sm, .butn-group-sm > .butn {
  font-size: 0.813rem  !important;
  padding: 0.625rem 1rem; }

.butn-md {
  font-size: 0.813rem  !important;
  padding: 0.875rem 1.25rem; }

.butn-lg, .butn-group-lg > .butn {
  padding: 1rem 2rem;
  font-size: 1.125rem !important; }
  @media only screen and (max-width: 575px) {
    .butn-lg, .butn-group-lg > .butn {
      padding: 0.75rem 1.25rem; } }

/* BASE BUTTON */
.btn-modern {
    position: relative;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 2px 5px;
    margin: 2px;
    overflow: hidden;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.btn-modern:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* ICON STYLE */
.btn-modern i {
    transition: 0.3s;
}

/* ICON ANIMASI */
.btn-detail:hover i {
    animation: bounceIcon 0.5s;
}

.btn-chart:hover i {
    animation: rotateIcon 0.6s;
}

/* BOUNCE */
@keyframes bounceIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* ROTATE */
@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kuota-box-modern {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
.kuota-header {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 10px;
    color: #6c757d;
}

/* ROW */
.kuota-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    position: relative;
    transition: 0.3s;
}

/* HOVER */
.kuota-row:hover {
    transform: translateX(5px);
    background: #f8f9fa;
}

/* TEXT */
.jalur {
    font-weight: 600;
}

.kuota, .peminat {
    text-align: center;
    font-weight: bold;
}

/* PROGRESS */
.progress {
    grid-column: 1 / -1;
    /* height: 6px; */
    background: #eee;
    border-radius: 10px;
    margin-top: 6px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 10px;
    animation: loadBar 1.5s ease;
}

/* WARNA PER JALUR */
.prestasi .bar { background: #ffc107; }
.afirmasi .bar { background: #0d6efd; }
.mutasi .bar { background: #6c757d; }
.zonasi .bar { background: #28a745; }

/* ANIMASI */
@keyframes loadBar {
    from { width: 0; }
}

@media (max-width: 768px) {

    /* SEMBUNYIKAN HEADER TABLE */
    #tableSekolah thead {
        display: none;
    }

    /* ROW JADI CARD */
    #tableSekolah tbody tr {
        display: block;
        background: #fff;
        border-radius: 16px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* CELL JADI BLOCK */
    #tableSekolah tbody td {
        display: block;
        width: 100%;
        border: none;
        padding: 8px 0;
    }

    /* NOMOR */
    #tableSekolah tbody td:first-child {
        font-size: 14px;
        font-weight: bold;
        color: #0d6efd;
    }

    /* SEKOLAH */
    .nama-sekolah {
        font-size: 16px;
        font-weight: bold;
    }

    .alamat {
        font-size: 13px;
        color: #6c757d;
    }

    /* KUOTA BOX */
    .kuota-box-modern {
        margin-top: 10px;
    }

    /* NILAI JADI GRID */
    .progress-modern {
        margin-top: 5px;
    }

    /* INFO BUTTON */
    td.text-center:last-child {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 10px;
    }

    .btn-modern {
        flex: 1;
        text-align: center;
    }

}
@media (max-width: 768px) {

    #tableSekolah td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        color: #999;
        font-weight: bold;
        margin-bottom: 3px;
    }

}
.mobile-header {
    /* display: flex; */
    justify-content: space-between;
    margin-bottom: 8px;
	color: white;
}




.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-35 {
	margin-top: 35px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-45 {
	margin-top: 45px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-55 {
	margin-top: 55px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-65 {
	margin-top: 65px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-75 {
	margin-top: 75px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-85 {
	margin-top: 85px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-95 {
	margin-top: 95px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-105 {
	margin-top: 105px;
}

.mt-110 {
	margin-top: 110px;
}

.mt-115 {
	margin-top: 115px;
}

.mt-120 {
	margin-top: 120px;
}

.mt-125 {
	margin-top: 125px;
}

.mt-130 {
	margin-top: 130px;
}

.mt-135 {
	margin-top: 135px;
}

.mt-140 {
	margin-top: 140px;
}

.mt-145 {
	margin-top: 145px;
}

.mt-150 {
	margin-top: 150px;
}

.mt-155 {
	margin-top: 155px;
}

.mt-160 {
	margin-top: 160px;
}

.mt-165 {
	margin-top: 165px;
}

.mt-170 {
	margin-top: 170px;
}

.mt-175 {
	margin-top: 175px;
}

.mt-180 {
	margin-top: 180px;
}

.mt-185 {
	margin-top: 185px;
}

.mt-190 {
	margin-top: 190px;
}

.mt-195 {
	margin-top: 195px;
}

.mt-200 {
	margin-top: 200px;
}

/*-- Margin Bottom --*/

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-55 {
	margin-bottom: 55px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-65 {
	margin-bottom: 65px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-85 {
	margin-bottom: 85px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-95 {
	margin-bottom: 95px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-105 {
	margin-bottom: 105px;
}

.mb-110 {
	margin-bottom: 110px;
}

.mb-115 {
	margin-bottom: 115px;
}

.mb-120 {
	margin-bottom: 120px;
}

.mb-125 {
	margin-bottom: 125px;
}

.mb-130 {
	margin-bottom: 130px;
}

.mb-135 {
	margin-bottom: 135px;
}

.mb-140 {
	margin-bottom: 140px;
}

.mb-145 {
	margin-bottom: 145px;
}

.mb-150 {
	margin-bottom: 150px;
}

.mb-155 {
	margin-bottom: 155px;
}

.mb-160 {
	margin-bottom: 160px;
}

.mb-165 {
	margin-bottom: 165px;
}

.mb-170 {
	margin-bottom: 170px;
}

.mb-175 {
	margin-bottom: 175px;
}

.mb-180 {
	margin-bottom: 180px;
}

.mb-185 {
	margin-bottom: 185px;
}

.mb-190 {
	margin-bottom: 190px;
}

.mb-195 {
	margin-bottom: 195px;
}

.mb-200 {
	margin-bottom: 200px;
}

/*-- Padding Top --*/

.pt-5 {
	padding-top: 5px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-25 {
	padding-top: 25px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-35 {
	padding-top: 35px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-45 {
	padding-top: 45px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-55 {
	padding-top: 55px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-65 {
	padding-top: 65px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-75 {
	padding-top: 75px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-85 {
	padding-top: 85px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-95 {
	padding-top: 95px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-105 {
	padding-top: 105px;
}

.pt-110 {
	padding-top: 110px;
}

.pt-115 {
	padding-top: 115px;
}

.pt-120 {
	padding-top: 120px;
}

.pt-125 {
	padding-top: 125px;
}

.pt-130 {
	padding-top: 130px;
}

.pt-135 {
	padding-top: 135px;
}

.pt-140 {
	padding-top: 140px;
}

.pt-145 {
	padding-top: 145px;
}

.pt-150 {
	padding-top: 150px;
}

.pt-155 {
	padding-top: 155px;
}

.pt-160 {
	padding-top: 160px;
}

.pt-165 {
	padding-top: 165px;
}

.pt-170 {
	padding-top: 170px;
}

.pt-175 {
	padding-top: 175px;
}

.pt-180 {
	padding-top: 180px;
}

.pt-185 {
	padding-top: 185px;
}

.pt-190 {
	padding-top: 190px;
}

.pt-195 {
	padding-top: 195px;
}

.pt-200 {
	padding-top: 200px;
}

/*-- Padding Bottom --*/

.pb-5 {
	padding-bottom: 5px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-35 {
	padding-bottom: 35px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-45 {
	padding-bottom: 45px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-55 {
	padding-bottom: 55px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-65 {
	padding-bottom: 65px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-75 {
	padding-bottom: 75px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-85 {
	padding-bottom: 85px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-95 {
	padding-bottom: 95px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-105 {
	padding-bottom: 105px;
}

.pb-110 {
	padding-bottom: 110px;
}

.pb-115 {
	padding-bottom: 115px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pb-125 {
	padding-bottom: 125px;
}

.pb-130 {
	padding-bottom: 130px;
}

.pb-135 {
	padding-bottom: 135px;
}

.pb-140 {
	padding-bottom: 140px;
}

.pb-145 {
	padding-bottom: 145px;
}

.pb-150 {
	padding-bottom: 150px;
}

.pb-155 {
	padding-bottom: 155px;
}

.pb-160 {
	padding-bottom: 160px;
}

.pb-165 {
	padding-bottom: 165px;
}

.pb-170 {
	padding-bottom: 170px;
}

.pb-175 {
	padding-bottom: 175px;
}

.pb-180 {
	padding-bottom: 180px;
}

.pb-185 {
	padding-bottom: 185px;
}

.pb-190 {
	padding-bottom: 190px;
}

.pb-195 {
	padding-bottom: 195px;
}

.pb-200 {
	padding-bottom: 200px;
}

.pb-265 {
	padding-bottom: 265px;
}



/*-- Padding Left --*/
.pl-0 {
	padding-left: 0px;
}

.pl-5 {
	padding-left: 5px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-25 {
	padding-left: 35px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-35 {
	padding-left: 35px;
}

.pl-35 {
	padding-left: 35px;
}

.pl-40 {
	padding-left: 40px;
}

.pl-45 {
	padding-left: 45px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-55 {
	padding-left: 55px;
}

.pl-60 {
	padding-left: 60px;
}

.pl-65 {
	padding-left: 65px;
}

.pl-70 {
	padding-left: 70px;
}

.pl-75 {
	padding-left: 75px;
}

.pl-80 {
	padding-left: 80px;
}

.pl-85 {
	padding-left: 80px;
}

.pl-90 {
	padding-left: 90px;
}

.pl-95 {
	padding-left: 95px;
}

.pl-100 {
	padding-left: 100px;
}


/*-- Padding Right --*/
.pr-0 {
	padding-right: 0px;
}

.pr-5 {
	padding-right: 5px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-20 {
	padding-right: 20px;
}

.pr-25 {
	padding-right: 35px;
}

.pr-30 {
	padding-right: 30px;
}

.pr-35 {
	padding-right: 35px;
}

.pr-35 {
	padding-right: 35px;
}

.pr-40 {
	padding-right: 40px;
}

.pr-45 {
	padding-right: 45px;
}

.pr-50 {
	padding-right: 50px;
}

.pr-55 {
	padding-right: 55px;
}

.pr-60 {
	padding-right: 60px;
}

.pr-65 {
	padding-right: 65px;
}

.pr-70 {
	padding-right: 70px;
}

.pr-75 {
	padding-right: 75px;
}

.pr-80 {
	padding-right: 80px;
}

.pr-85 {
	padding-right: 80px;
}

.pr-90 {
	padding-right: 90px;
}

.pr-95 {
	padding-right: 95px;
}

.pr-100 {
	padding-right: 100px;
}


/* Background Color */

.gray-bg {
	background: #f7f7fd;
}

.white-bg {
	background: #fff;
}

.black-bg {
	background: #222;
}

.theme-bg {
	background: #222;
}

.primary-bg {
	background: #222;
}

/* Color */

.white-color {
	color: #fff;
}

.black-color {
	color: #222;
}

.theme-color {
	color: #222;
}

.primary-color {
	color: #222;
}

/* black overlay */

[data-overlay] {
	position: relative;
}

[data-overlay]::before {
	background: #000 none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

[data-overlay="3"]::before {
	opacity: 0.3;
}

[data-overlay="4"]::before {
	opacity: 0.4;
}

[data-overlay="5"]::before {
	opacity: 0.5;
}

[data-overlay="6"]::before {
	opacity: 0.6;
}

[data-overlay="7"]::before {
	opacity: 0.7;
}

[data-overlay="8"]::before {
	opacity: 0.8;
}

[data-overlay="9"]::before {
	opacity: 0.9;
}

.bg-testimonial {
	background-image: -moz-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	background-image: -webkit-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	background-image: -ms-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
}

.bg-testimonial1 {
	background-image: -moz-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
}

.border-cta {
	background-image: -moz-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -webkit-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -ms-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
}

.btn.btn-form.border-cta {
	background-image: -moz-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -webkit-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -ms-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
}

.faq-wrapper.faq-wra-2 .btn {
	background-image: -moz-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -webkit-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -ms-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
}

.bg-testimonial.bg-testimonial-2 {
	background-image: -moz-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -webkit-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
	background-image: -ms-linear-gradient(-40deg, rgb(173, 144, 248) 0%, rgb(89, 71, 243) 100%);
}

.faq-wrapper.faq-wra-3 .btn {
	background-image: -moz-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);

}

.faq-wrapper.faq-wra-3 h2 a.btn.collapsed::after {

	background-image: -moz-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(142, 42, 203) 0%, rgb(142, 42, 203) 35%, rgb(197, 78, 168) 67%, rgb(251, 116, 133) 100%);
}

.header-btn.header-btn-4 a {
	background-image: -moz-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -webkit-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -ms-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);

}


.testimonail-bg-6 {
	background-image: -moz-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -webkit-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -ms-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);

}

.faq-wrapper.faq-wra-6 .btn {
	background-image: -moz-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -webkit-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -ms-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);

}

.faq-wrapper.faq-wra-6 h2 a.btn.collapsed::after {

	background-image: -moz-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -webkit-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);
	background-image: -ms-linear-gradient(178deg, rgb(255, 153, 165) 0%, rgb(255, 96, 163) 100%);

}

.blog-paginitaion .page-item a.page-link:hover {
	background-image: -moz-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	background-image: -webkit-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	background-image: -ms-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	color: #fff;
	border: none;

}

.blog-paginitaion .page-item a.page-link.active {
	background-image: -moz-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	background-image: -webkit-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	background-image: -ms-linear-gradient(-51deg, rgb(47, 50, 212) 0%, rgb(113, 66, 247) 100%);
	border: none;
}



.header-btn.header-btn-4 a:hover {
	background: #3d1ed9;
	color: #fff;
}


.bg-work {
	background: #f6f6fd;
}



/* heartbeat */
.heartbeat {
	animation: heartbeat 1s infinite alternate;
}

@-webkit-keyframes heartbeat {
	to {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

/* rotateme */
.rotateme {
	-webkit-animation-name: rotateme;
	animation-name: rotateme;
	-webkit-animation-duration: 30s;
	animation-duration: 30s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@keyframes rotateme {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotateme {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}