| html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}
.container {
    width: auto;
    max-width: 680px;
    padding: 15px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}
footer a author {
    color: azure;
}
.bold {
    font-size: 1.4rem;
    font-weight: bold;
}
.card {
    border: none
}
.product {
    background-color: #eee
}
.act-price {
    color: red;
    font-weight: 700
}
.dis-price {
    text-decoration: line-through
}
.about {
    font-size: 14px
}
.color {
    margin-bottom: 10px
}
label.radio {
    cursor: pointer
}
label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none
}
label.radio span {
    padding: 2px 9px;
    border: 2px solid #ff0000;
    display: inline-block;
    color: #ff0000;
    border-radius: 3px;
    text-transform: uppercase
}
label.radio input:checked+span {
    border-color: #ff0000;
    background-color: #ff0000;
    color: #fff
}
.btn-danger {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important
}
.btn-danger:hover {
    background-color: #da0606 !important;
    border-color: #da0606 !important
}
.btn-danger:focus {
    box-shadow: none
}
.cart i {
    margin-right: 10px
}
 |