* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat arm"!important;
    font-weight: 400;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

input[type="checkbox"]:after {
    content: "\2713";
    font-weight: 900;
    font-size: 27px;
    color: var(--btn-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

input[type="checkbox"]:checked {
    box-shadow: var(--checked-input-shadow);
}

input[type="checkbox"]:checked::after {
    display: flex;
}


