/* Customize the label (the container) */
.radio-container {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: #899593;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
    background-color: #28a745;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.radio-container .checkmark:after {
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -8px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/** Select */
.has-error .selectpicker {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

/** Shipping info */
.shipping-info {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
}

.shipping-info input {
    margin-bottom: 10px;
}

.shipping-info button {
    width: 100%;
    margin-top: 20px;
}

.shipping-info .form-group {
    width: 100%;
    margin: 0 0 10px;
}

.shipping-info label, .shipping-info .form-group select {
    width: 100%;
}

.shipping-info .bootstrap-select {
    padding-left: 0;
    padding-right: 0;
}

.shipping-info-summary {
    line-height: 25px;
}

.shipping-info__header {
    font-family: SavaPro;
}

/** Register */
.register-terms {
    padding-left: 1rem;
}
