﻿
.text-primary {
    color: var(--primary) !important;
}


/* BUTTONS */

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 14px;
    margin: 3px;
}

.btn-warning {
    color: var(--white);
    border-radius: 14px;
    margin: 3px;
}

    .btn-warning:hover {
        background-color: var(--cuar);
        border-color: var(--cuar);
        color: yellow;
        transition: 0.5s;
    }


.btn-danger {
    background-color: var(--danger);
    border-color: var(--danger);
    border-radius: 14px;
    margin: 3px;
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
    border-radius: 14px;
    margin: 3px;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    border-radius: 14px;
    margin: 3px;
}


.bg-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--sec);
    transition: 0.5s;
}

.btn-white {
    background-color: var(--white);
    border-color: var(--sec);
    border-radius: 14px;
    color: var(--sec);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 14px;
    line-height: 16px;
    transition: 0.3s;
}

    .btn-white:hover {
        background-color: var(--sec);
        transition: 0.5s;
        color: var(--white);
    }


.border-bottom {
    border-bottom: 1px solid;
    border-color: var(--hint);
    margin-bottom: 20px;
}


/* HEADINGS */

h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.5px;
    color: var(--sec);
}

h2 {
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
    color: var(--sec);
}

h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    /* identical to box height */
    color: #FFFFFF;
}

h4 {
    font-weight: bold;
    font-size: 30px;
    line-height: 50px;
    color: var(--sec);
}

label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: var(--primary);
}

    label.single-text {
        color: var(--sec);
        font-size: 16px;
        line-height: 20px;
    }

p, li {
    font-family: Ubuntu;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #AAAAAA;
}

/* INPUTS */

.quantity {
    position: relative;
}

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;
}

.quantity input {
    width: auto;
    height: 42px;
    line-height: 1.65;
    float: left;
    display: block;
    margin: 0;
    padding-left: 30px;
    border: 1px solid var(--sec);
    box-sizing: border-box;
    border-radius: 14px
}

    .quantity input:focus {
        outline: 0;
    }

.quantity-nav {
    float: left;
    position: relative;
    height: 10px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border-left: 1px solid #eee;
    width: 20px;
    text-align: center;
    color: var(--sec);
    font-size: 16px;
    line-height: 1.7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

    .quantity-button.quantity-up {
        position: absolute;
        height: 50%;
        bottom: -1px;
    }

    .quantity-button.quantity-down {
        position: absolute;
        bottom: -1px;
        height: 50%;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }


select {
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.5px;
}

option {
    background-color: var(--white);
    border: none;
    padding: 10px;
    border: none;
}

    option[selected="selected"] {
        padding: 30px;
    }

    option strong {
        color: var(--sec);
    }


input[type=text] {
    border: 1px solid var(--sec);
    border-radius: 14px;
    /* height: 45px;
     padding-left: 45px;
    padding-right: 20px;*/
    color: var(--sec);
}

.form-control {
    border-radius: 14px;
    border: 1px solid var(--hint);
    height: 40px;
    color: var(--sec);
}

.input-icons i {
    position: absolute;
}

.icon {
    padding: 10px;
    margin-top: 6px;
    color: var(--sec);
    min-width: 50px;
    text-align: center;
    transition: 0.4s;
}

.input-icons:hover i {
    margin-top: 2px;
    font-size: 19px;
    transition: 0.4s;
}

textarea {
    border-radius: 16px !important;
    border: 1px solid #AAAAAA;
    box-sizing: border-box;
}

.product-image-container {
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    max-width: 100%;
    height: 100%;
}

.product-card {
    width: 100%;
    height: 28rem;
    //margin-right: 1rem;
    background: #FFFFFF;
    border-radius: 1.5rem;
    text-align: left;
    padding: 5px;
    position: relative;
}

    .product-card:hover {
        box-shadow: 10px 24px 54px rgba(0, 0, 0, 0.09);
        transition: 0.7s;
    }

.product-card-image {
    object-fit: cover;
    border-radius: 1.5rem 1.5rem 0 0;
}

.product-card-image-detail {
    object-fit: cover;
}


.product-card-content {
    padding: 1rem;
}

.product-title {
    font-weight: bold;
}

.product-actions {
    height: 3rem;
    border-radius: 10px 0px 10px 0px;
}

.product-price {
    margin-bottom: 1rem;
    margin-left: 1rem;
    font-weight: normal;
    color: var(--sec);
}

.product-actions-show {
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 0px 0px 0px 10px;
    background-color: var(--cuar) !important;
    flex: 1 1 auto !important;
}

.product-actions-add {
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 0px 0px 10px 0px;
    background-color: var(--primary) !important;
    flex: 1 1 auto !important;
}

.product-actions-color {
    color: var(--white);
}

.product-card-actions {
    flex-direction: column;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

@media screen and (min-width: 375px) {
    .product-card {
        width: 100%;
        height: 30rem;
    }
}

@media screen and (min-width: 425px) {
    .product-card {
        width: 19rem;
        height: 30rem;
    }

    .product-actions {
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 10px 0px 10px 0px;
    }

    .product-price {
        position: absolute;
        left: 1rem;
        bottom: 0;
    }

    .product-actions-show {
        flex: 0;
        border-radius: 10px 0px 0px 0px;
    }

    .product-actions-add {
        flex: 0;
        border-radius: 0px 0px 10px 0px;
    }

    .product-card-actions {
        flex-direction: row;
        justify-content: space-between;
    }
}

.remove-focus:focus {
    outline: none !important;
    box-shadow: none;
}