@media (min-width: 320px) {
  /* smartphones, iPhone, portrait 480x320 phones */
}
@media (min-width: 481px) {
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
}
@media (min-width: 641px) {
  /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
}
@media (max-width: 641px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
  .mataujian {
    text-align: left;
  }
  #formContent {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row-atas {
    text-align: center;
  }
  #isisoal img {
    width: 100%;
  }
}
@media (min-width: 641px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
  .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
  .mataujian {
    text-align: right;
  }
  #formContent {
    padding-left: 50px;
    padding-right: 50px;
  }
  .btn-navigasi {
    width: 180px;
  }
  .cont-btn-informasi {
    text-align: right;
  }
}
@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
}
@media (min-width: 1281px) {
  /* hi-res laptops and desktops */
}

.logo-b {
  background: #326698;
  background-size: contain;
  background-image: url("../img/bg-top.png");
  background-repeat: no-repeat;
  background-position: left;
  height: 150px;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
}

.logo-w {
  background-size: 300px;
  background-image: url("../img/logo-w.png");
  background-repeat: no-repeat;
  background-position: top right;
}

/* STRUCTURE */
.loader {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  margin-top: -80px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
  background-size: 300px;
  background-image: url("../img/logo-w.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.has-bg-img {
  background-image: url("../img/bg_rapor.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* opacity: 0.6; */
}

.formbackground {
  background-image: url("../img/bg_rapor.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}

input[type="text"] {
  border: none;
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 0px;
  border-bottom: 1px solid #eee;
  background: transparent;
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-size: cover;
}

.logo-warna {
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg)
    brightness(104%) contrast(97%);
}

.colorize-pink {
  filter: brightness(0.5) sepia(1) hue-rotate(-70deg) saturate(5);
}

.colorize-navy {
  filter: brightness(0.2) sepia(1) hue-rotate(180deg) saturate(5);
}

.colorize-blue {
  filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
}

.icon-logo:hover,
.icon-logo:focus {
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg)
    brightness(104%) contrast(97%);
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after {
  width: 100%;
}

.cfont {
  cursor: pointer;
}

.container-jawaban {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 16px;
  text-align: justify;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container-jawaban input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 30px;
  width: 30px;

  border-radius: 50%;
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.boxmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 30px;
  width: 30px;

  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.container-jawaban:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-jawaban input:checked ~ .checkmark {
  background-color: #2196f3;
  color: #fff;
}

.container-jawaban:hover input ~ .boxmark {
  background-color: #ccc;
}

.container-jawaban input:checked ~ .boxmark {
  font-weight: bold;
  background-color: #2196f3;
  color: #fff;
}

.container-jawaban input:checked ~ .boxmark:before {
  content: "\2713";
}

.checkbox-lg .custom-control-label::before,
.checkbox-lg .custom-control-label::after {
  top: 0.8rem;
  width: 1.55rem;
  height: 1.55rem;
}

.checkbox-lg .custom-control-label {
  padding-top: 13px;
  padding-left: 6px;
  cursor: pointer;
}

.checkbox-xl .custom-control-label::before,
.checkbox-xl .custom-control-label::after {
  top: 1.2rem;
  width: 1.85rem;
  height: 1.85rem;
}

.checkbox-xl .custom-control-label {
  padding-top: 23px;
  padding-left: 20px;
  cursor: pointer;
}
