/*utilities class*/
.space25 {
    padding-bottom: 25px;
}


.lg-logo {
    width: 200px;
    height: 35px;
}





/*button style*/

.button__common {
    -webkit-appearance: none;
    background: -webkit-gradient(to right, #ff4e00 0%, #ec9f05 74%, #ee786e 100%);
    background: linear-gradient(to right, #ff4e00 0%, #ec9f05 74%, #ee786e 100%);
    background-size: 500%;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
    font-family: 'Nunito Sans',Helvetica,Arial,Lucida,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 2.8rem;
    letter-spacing: 0.05em;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 10rem;
    font-weight: 700;
}

.button__common:hover {
    animation-name: gradient;
    -webkit-animation-name: gradient;
    animation-duration: 2s;
    -webkit-animation-duration: s;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100%;
    }
}


/*table css*/

.table_right--pricetag {
    float: right;
    margin-right: 70px;
}


.table_right--price {
    float: right;
    margin-right: 70px;
}






/* 
 Mostly all smartphones
*/

@media (min-width: 320px) 
  and (max-width: 480px) {

    .button__common {
        width: 7rem;
        /* margin-right: 22px; */
    }

    .mt-6px {
        margin-top: 6px;
    }

    .table.cart-list td h4 {
        margin: 0;
        font-size: 16px;
        font-size: 1rem;
        width: inherit !important;
    }

    .table_right--price {
        float: right;
        margin-right: 0px;
        font-size: 10px;
    }

    .table_right--pricetag {
        float: right;
        margin-right: 0px;
    }

    ul.footer-selector li:last-child {
        padding-top: 0 !important;
        display: inline-block !important;
    }

}


/*portrait tablets and ipads*/

@media (min-width: 768px) 
  and (max-width: 1024px) {

  .sapce-sm-25 {
      padding-top: 25px;
  }

  ul.footer-selector li {
    float: left;
    margin-right: 10px;
    list-style: none;
    font-size: 16px;
  }

}