@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: slategray;
}

::-webkit-scrollbar-track {
  border-radius: 8px;
  background: whitesmoke;
}

body {
  scrollbar-face-color: #cccccc;
  scrollbar-track-color: whitesmoke;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
}

p {
  font-size: 0.9rem;
}

.center {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.row-content {
  display: flex;
  flex-flow: nowrap;
}

.col {
  flex: auto;
}

.col-4 {
  box-sizing: border-box;
  flex-grow: 0;
  width: 33.3333333333%;
}

.col-6 {
  box-sizing: border-box;
  flex-grow: 0;
  width: 50%;
}

.col-8 {
  box-sizing: border-box;
  flex-grow: 0;
  width: 66.6666666667%;
}

.col-12 {
  box-sizing: border-box;
  flex-grow: 0;
  width: 100%;
}

.gap-2 > * {
  padding: 8px;
}

.gap-2 {
  margin-left: -8px;
  margin-right: -8px;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

@media (min-width: 0) {
  .col-xs-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .col-sm-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-grow: 0;
    width: 66.6666666667%;
  }
}
.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-flex {
  display: flex;
}

@media (min-width: 0) {
  .display-xs-block {
    display: block;
  }
}
@media (min-width: 768px) {
  .display-md-none {
    display: none;
  }
  .display-md-block {
    display: block;
  }
  .display-md-flex {
    display: flex;
  }
}
.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-light {
  color: #f8f9fa;
}

.bg-light {
  background-color: #f8f9fa;
}

.bg-dark {
  background-color: #121212;
}

.text-hover-primary:hover {
  color: #3f51b5;
}

.bg-primary {
  background-color: #3f51b5;
}

.bg-primarylight {
  background-color: #757de8;
}

.text-primarydark {
  color: #002984;
}

.bg-primarydark {
  background-color: #002984;
}

.bg-secondary {
  background-color: #03dac5;
}

.bg-error {
  background-color: #b00020;
}

.text-error {
  color: #b00020;
}

.bg-edu-navy {
  background-color: #02588e;
}

.text-hover-edu-yellow:hover {
  color: #ffce00;
}

.bg-edu-yellow {
  background-color: #ffce00;
}

.bg-edu-orange {
  background-color: #f77f00;
}

.card-bg-image {
  width: 100%;
  background-image: url("../assets/bg-card.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  background-position: center, 50%, 50%;
}

.card {
  display: block;
  border-radius: 8px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
.card .card-content-left {
  padding: 0 0.75rem;
  height: auto;
  width: auto;
  border-radius: 8px 0 0 8px;
}
.card .card-content-right {
  padding: 0 0.75rem;
  height: auto;
  width: 100%;
  border-radius: 0 8px 8px 0;
  position: relative;
}
.card .card-body {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.card .card-body a {
  text-decoration: none;
}

.btn-primary {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: #3f51b5;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-primary:hover {
  background-color: #606fc7;
}

.btn-primarydark {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: #002984;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-primarydark:hover {
  background-color: #0039b7;
}

.btn-error {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: #b00020;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-error:hover {
  background-color: #e30029;
}

.btn-round-primary {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  border: 0;
  padding: 4px;
  border-radius: 50%;
  background-color: #3f51b5;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-round-primary:hover {
  background-color: #606fc7;
}

.btn-round-error {
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  border: 0;
  padding: 4px;
  border-radius: 50%;
  background-color: #b00020;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-round-error:hover {
  background-color: #e30029;
}

.btn-sm-primarydark {
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #002984;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.btn-sm-primarydark:hover {
  background-color: #0039b7;
}

.navbar .container, .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.navbar {
  padding: 0 1.5rem;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
.navbar .site-title {
  font-size: 1.5rem;
}
.navbar a {
  text-decoration: none;
  cursor: pointer;
}
.navbar li {
  list-style-type: none;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  margin-inline: 8px;
  display: inline-block;
}

.dot-tanggal {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  margin-inline: 1px;
  margin-block: 1px;
  display: inline-block;
}

.avatar-sm {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-header {
  padding: 4px 16px;
  display: flex;
    flex-direction: row;
    justify-content: space-between; /* atau 'between' sesuai permintaan */
    align-items: center;

}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0 0.75rem;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 600px) {
  .modal-content {
    max-width: 80%;
  }
}
.modal-body {
  padding: 4px 16px;
}
.modal-footer {
  padding: 2px 16px;
  padding-bottom: 16px;
}
.modal-close {
  float: right;
  font-size: 32px;
  font-weight: bold;
  color: #b00020;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
}
.modal-close:hover, .modal-close:focus {
  color: #e30029;
  text-decoration: none;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.form-group, .form-radio {
  position: relative;
}

.form-group {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #e6e7e8;
}

.form-group input {
  font-size: 1rem;
}

.form-group textarea {
  resize: none;
}

.form-group select {
  width: 100%;
  font-size: 1rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.form-group .control-label {
  position: absolute;
  top: 0.5rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  color: #b3b3b3;
  font-size: 1rem;
  font-weight: normal;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
}

.form-group .bar {
  position: relative;
  border-bottom: 0.0625rem solid #999;
  display: block;
}

.form-group .bar::before {
  content: "";
  height: 0.125rem;
  width: 0;
  left: 50%;
  bottom: -0.0625rem;
  position: absolute;
  background: #3f51b5;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}

.form-group input,
.form-group textarea {
  display: block;
  background: none;
  padding: 0;
  font-size: 1rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  box-shadow: none;
}

.form-group input[type=file] {
  line-height: 32px;
  height: 32px;
}

.form-group input[type=file]::file-selector-button {
  display: none;
}

.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group textarea:focus,
.form-group textarea:valid {
  color: #333;
}

.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label {
  font-size: 0.8rem;
  color: gray;
  top: -1.25rem;
  left: 8px;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
  color: #3f51b5;
}

.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
  width: 100%;
  left: 0;
}


.checkbox label, .form-radio label {
  position: relative;
  cursor: pointer;
  padding-left: 2rem;
  text-align: left;
  color: #333;
  display: block;
}


.checkbox input, .form-radio input {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
}

.checkbox {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.checkbox .helper {
  color: #999;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  z-index: 0;
  border: 0.125rem solid currentColor;
  border-radius: 0.0625rem;
  -webkit-transition: border-color 0.28s ease;
  transition: border-color 0.28s ease;
}

.checkbox .helper::before,
.checkbox .helper::after {
  position: absolute;
  height: 0;
  width: 0.2rem;
  background-color: #0071e3;
  display: block;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 0.25rem;
  content: "";
  -webkit-transition: opacity 0.28s ease, height 0s linear 0.28s;
  transition: opacity 0.28s ease, height 0s linear 0.28s;
  opacity: 0;
}

.checkbox .helper::before {
  top: 0.65rem;
  left: 0.38rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  box-shadow: 0 0 0 0.0625rem #fff;
}

.checkbox .helper::after {
  top: 0.3rem;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox label:hover .helper {
  color: #0071e3;
}

.checkbox input:checked ~ .helper {
  color: #0071e3;
}

.checkbox input:checked ~ .helper::after,
.checkbox input:checked ~ .helper::before {
  opacity: 1;
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
}

.checkbox input:checked ~ .helper::after {
  height: 0.5rem;
}

.checkbox input:checked ~ .helper::before {
  height: 1.2rem;
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}

.radio {
  margin-bottom: 1rem;
}

.radio .helper {
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #999;
}

.radio .helper::before,
.radio .helper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.25rem;
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border-radius: 50%;
  border: 0.125rem solid currentColor;
}

.radio .helper::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #3f51b5;
  border-color: #3f51b5;
}

.radio label:hover .helper {
  color: #3f51b5;
}

.radio input:checked ~ .helper::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.radio input:checked ~ .helper::before {
  color: #3f51b5;
}

.radio + .radio, .checkbox + .checkbox {
  margin-top: 1rem;
}

.calendar-wrapper {
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}
.calendar-wrapper ol {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.calendar-wrapper li {
  padding: 4px;
}
.calendar-wrapper a:hover {
  color: #002984;
}
.calendar-wrapper .calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-wrapper .day-number {
  cursor: pointer;
  margin-block: 16px;
  margin-inline: 4px;
  padding-block: 8px;
  margin-bottom: 8px;
  background-color: #f8f9fa;
  color: #002984;
  border-radius: 8px;
}
.calendar-wrapper .day-number.day.other {
  cursor: pointer;
  margin-block: 16px;
  margin-inline: 4px;
  padding-block: 8px;
  margin-bottom: 8px;
  background-color: #fff;
  color: #121212;
  border-radius: 8px;
}
.calendar-wrapper .day-number:hover {
  cursor: pointer;
  color: white;
  font-weight: bold;
  margin-inline: 4px;
  margin-bottom: 8px;
  background-color: #757de8;
  border-radius: 8px;
}
.calendar-wrapper .arrow {
  cursor: pointer;
}

.calendar-wrapper .day-number.selected {
  background-color: #002984;
  color: white;
  font-weight: bold;
}


#mainLayout {
  overflow-y: scroll;
  position: relative;
  height: 100%;
  background-color: white;
  border-radius: 16px;
}

#secondLayout {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
}

@media only screen and (max-width: 600px) {
  #mainLayout {
    overflow-y: visible;
    padding: 0.75rem;
    height: auto;
  }
  #secondLayout {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}

.pt-2 {
  padding-top: 1.5rem;
}

.pl-2 {
  padding-left: 1.5rem;
}

.pr-2 {
  padding-right: 1.5rem;
}

.pb-2 {
  padding-bottom: 1.5rem;
}

.m-2 {
  margin: 1.5rem;
}

.ml-1 {
  margin-left: 0.75rem;
}

.ml-2 {
  margin-left: 1.5rem;
}

.ml-md-2 {
  margin-left: 1.5rem;
}

.mr-1 {
  margin-right: 0.75rem;
}

.mr-2 {
  margin-right: 1.5rem;
}

.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.br-round {
  border-radius: 16px;
}

.font-md {
  font-size: 1rem;
}

.fw-bold {
  font-weight: 600;
}

.fw-extra-bold {
  font-weight: 700;
}

.ta-c {
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .ml-md-2 {
    margin-left: 0;
  }
}

.container-table {
  display: block;
  border: 1px solid #f5f5f7;
  border-radius: 8px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
.container-table .container-table-body {
  font-size: 1rem;
  overflow-x: auto;
}
.container-table .container-table-body a {
  text-decoration: none;
  color: #0071e3;
}

.table-responsive {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.table-responsive thead {
  border-bottom: 2px solid #f5f5f7;
  background-color: #ffffff;
}
.table-responsive thead th {
  padding: 10px;
}
.table-responsive thead.ta-c {
  text-align: center;
}
.table-responsive thead.ta-r {
  text-align: right;
}
.table-responsive tbody {
  border: 1px solid #ddd;
}
.table-responsive tbody td,
.table-responsive tbody th {
  padding: 10px;
}
.table-responsive tbody td.ta-c,
.table-responsive tbody th.ta-c {
  text-align: center;
}
.table-responsive tbody td.ta-r,
.table-responsive tbody th.ta-r {
  text-align: right;
}
.table-responsive tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
