* {
  box-sizing: border-box;
}

[class*="col-"] {
  float: left;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

body {
  background-color: #eeeeef;
}

.wrapper {
  background-color: #ffffff;
  width: 900px;
  height: 600px;
  margin: 2% auto;
  border: 1px solid #6b6b6b86;
  grid-template-columns: 1fr 2fr;
}

/* mari kita edit bagian menu ~ */

.carousel {
  margin: 3% 0;
  height: 90%;
  border-right: 1px solid #6b6b6b86;
}

.page {
  height: 200px;
  margin: 60% 0;
}

.menu {
  margin: 20% 0;
  padding-left: 15%;
}

.i-menu {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  color: #a8a8a8ff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.i-menu input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

.i-menu:hover input~.checkmark {
  background-color: #ccc;
}

.i-menu input[value="1"]:checked~.checkmark {
  background-color: #00b16aff;
}

.i-menu input[value="10"]:checked~.checkmark {
  background-color: #F5D76E;
}

.i-menu input[value="100"]:checked~.checkmark {
  background-color: #D64541;
}

.checkmark:after {
  content: "";
  position: absolute;
}

.i-menu input:checked~.checkmark:after {
  display: block;
}

.i-menu .checkmark:after {
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
}


/* mari kita edit bagian content ~ */
h1.title {
  font-size: 60px;
  text-align: center;
}

.hijau {
  color: #00b16a;
}

.kuning {
  color: #F5D76E;
}

.merah {
  color: #D64541;
}

.post {
  width: 70%;
  line-height: 30px;
  margin: 0 auto;
}