/* Theme style (colors & sizes) */
@import "helpers";
@import "theme-default";

/* Buefy has Bulma included. So we import just that */
@import "~buefy/src/scss/buefy-build";

.content {
  blockquote {
    border-left: 5px solid #C01B28;
    box-shadow: $default-shadow;
  }
}

.navbar-item img {
  width: auto;
}


.checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
}

.checkbox > span {
    // color: #34495E;
    // padding: 0.5rem 0.25rem;
}

.checkbox > input {
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #34495E;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    // background-color: #41B883;
    cursor: pointer;
  }

.checkbox > input:checked {
    border: 1px solid #41B883;
    // background-color: #34495E;
}

.checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    // color: #41B883;
    position: absolute;
    left: 0.15rem;
    top: -0.05rem;
}

.checkbox > input:active {
    // border: 2px solid #34495E;
}
