/* --------------- */
/* CURSOR SETTINGS */
/* --------------- */

html,
body {
  /* Removes Original Cursor */
  cursor: url(img/cursor/b_w.gif), auto;
}

/* --------------- */
/* CURSOR IN BOXES */
/* --------------- */

/* Cursor Positioned On Corner */

.custom-cursor {
  position: absolute;
  top: 0;
  left: 0;

  /* Cursor Click */
  /* Cursor Image */
  z-index: 2;
}

/* Cursor Settings */

.box-bound {
  display: block;
  width: 100px;
  height: 70px;
  margin-left: 1px;
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  transition:
    width 0.1s ease-in-out,
    height 0.1s ease-in-out;
}

/* Enlarge Cursor Image On Click */

.box-bound.active {
  width: 150px;
  height: 90px;
}

/* -------------------- */
/* Cursor Change in box */
/* -------------------- */

/* "box" Parent */

.box {
  position: relative;
  overflow: hidden;
  cursor: none;
}

/* "box-cursor" Child */

.box-cursor {
  background-image: url(img/cursor/b_w.gif);
}

/* ------------------------- */
/* Tab cursor change in box  */
/* ------------------------- */

/* "tab" Parent */

.tab {
  cursor: none;
  position: relative;
  overflow: hidden;
}

/* "tab-cursor" Child */

.tab-cursor {
  background-image: url(img/cursor/skulldice.gif);
}

/* ----- */
/* TABS  */
/* ----- */

/* Removes Radio Buttons */
input[type="radio"] {
  display: none;
}

.tab-name {
  cursor: help;

  /* transition of tabs */
  transition: 0.15s;
}

input:checked + label .tab-name {
  background: var(--background-color);
  color: var(--text-color);
  font-size: 25px;
  font-weight: 600;
}

.tab-content {
  /* Smooth transition */
  transition: 0.15s;
}

input:checked + label .tab-content {
  opacity: 1;
  z-index: 1;
}
