
.buy .widget{
    width: 50%;
}

.buy a.widget{
    float: left;
    margin-right: 2px;
}

.buy .plus{
    width: 20%;
    padding: 6px;
}

.flash {

    -webkit-transition: background-color 0.5s ease 0.5s;
    -moz-transition: background-color 0.5s ease 0.5s;
    -o-transition: background-color 0.5s ease 0.5s;
    transition: background-color 0.5s ease 0.5s;
    -webkit-box-shadow: inset -56px -88px 55px 47px #00aa00;
    -moz-box-shadow: inset -56px -88px 55px 47px #00aa00;
    box-shadow: inset -56px -88px 55px 47px #00aa00;
}



/* Customize the label (the container) */
.cont {
    line-height: 0.8;
    display: block;
    position: relative;
    padding: 10px 0px 10px 26px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    border: 1px solid #8D8D8D;
    top: 10;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 2px;
}

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

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

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

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

/* Style the checkmark/indicator */
.cont .checkmark:after {
    left: 4px;
    top: -6px;
    width: 9px;
    height: 14px;
    border: solid #8D8D8D;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}