﻿/* Registration page css*/

/* Hide the browser's default checkbox */
.boxcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #d8d7d6;
}

/* On mouse-over, add a grey background color */
.boxcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked*/
.boxcontainer input:checked ~ .checkmark {
    background-color: #96bf31;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.boxcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.boxcontainer .checkmark:after {
    left: 7px;
    top: -9px;
    width: 10px;
    height: 22px;
    border: solid #047d30;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*remove spinner from type=number for chrome & firefox*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}
