#mainLogo {
    height: 200px;
}

h1.logo {
    margin-top: -65px;
    width: max-content;
    font-size: 4em;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(78%);
    transform: translateX(78%);
    -moz-animation: scroll-slow 25s linear infinite;
    -webkit-animation: scroll-slow 25s linear infinite;
    animation: scroll-slow 25s linear infinite;
    text-align: left !important;
    padding-bottom: 0;
    margin-bottom: 0;
    color: white;
    font-family: cursive;
}

h1.logo span {
    color: lime;
    font-size: 23px;
    padding-left: 30px;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-slow {
    0% {
        -moz-transform: translateX(78%);
    }

    100% {
        -moz-transform: translateX(-110%);
    }
}

@-webkit-keyframes scroll-slow {
    0% {
        -webkit-transform: translateX(78%);
    }

    100% {
        -webkit-transform: translateX(-110%);
    }
}

@keyframes scroll-slow {
    0% {
        -moz-transform: translateX(78%);
        -webkit-transform: translateX(78%);
        transform: translateX(78%);
    }

    100% {
        -moz-transform: translateX(-110%);
        -webkit-transform: translateX(-110%);
        transform: translateX(-110%);
    }
}

.navbar-inverse {
    border-radius: 0;
}

#myCarousel .nav a small {
    display: block;
}

#myCarousel .nav {
    background: #eee;
}

#myCarousel .nav a {
    border-radius: 0px;
}

.row {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.sale {
    position: absolute;
    left: -5px;
    top: -10px;
    z-index: 1;
    overflow: hidden;
    width: 76px;
    height: 77px;
    text-align: left;
}

.sale span {
    font-size: 1.6em;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 24px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 93px;
    height: 22px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#0FE300 0%, #088000 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 22px;
    left: -18px;
}

.sale span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #088000;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #088000;
}

.sale span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #088000;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #088000;
}

#shopping-cart {
    margin: 40px;
}

#product-grid {
    margin: 40px;
}

.lowStock {
    border-left: 3px solid red;
}

.mediumStock {
    border-left: 3px solid orange;
}

.highStock {
    border-left: 3px solid green;
}

#shopping-cart table {
    width: 100%;
    background-color: #F0F0F0;
}

#shopping-cart table td {
    background-color: #FFFFFF;
}

.txt-heading {
    color: #211a1a;
    border-bottom: 1px solid #E0E0E0;
    overflow: auto;
}

#btnEmpty {
    background-color: #ffffff;
    border: #d00000 1px solid;
    padding: 5px 10px;
    color: #d00000;
    float: right;
    text-decoration: none;
    border-radius: 3px;
    margin: 10px 0px;
}

#product-grid .txt-heading {
    margin-bottom: 18px;
}

.product-item {
    float: left;
    background: #ffffff;
    margin: 30px 30px 0px 0px;
    border: #E0E0E0 1px solid;
}

.product-image {
    height: 155px;
    width: 250px;
    background-color: #FFF;
}

.clear-float {
    clear: both;
}

.demo-input-box {
    border-radius: 2px;
    border: #CCC 1px solid;
    padding: 2px 1px;
}

.tbl-cart {
    font-size: 0.9em;
}

.tbl-cart th {
    font-weight: normal;
}

.product-title {
    margin-bottom: 20px;
}

.product-price {
    float: left;
}

.cart-action {
    float: right;
}

.product-quantity {
    padding: 5px 10px;
    border-radius: 3px;
    border: #E0E0E0 1px solid;
}

.product-tile-footer {
    padding: 15px 15px 0px 15px;
    overflow: auto;
}

.cart-item-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: #E0E0E0 1px solid;
    padding: 5px;
    vertical-align: middle;
    margin-right: 15px;
}

.no-records {
    text-align: center;
    clear: both;
    margin: 38px 0px;
}

input.product-quantity {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    color: #FFF;
    border-radius: 3px 0px 0px 3px;
    padding: 10px;
    /* margin: 1em 0 0 0; */
    background: none;
    /* cursor: pointer; */
    -webkit-transition: background ease-in .25s;
    transition: background ease-in .25s;
    text-align: center;
}

input.btnAddAction, .btnAdded {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFF;
    border-radius: 0px 3px 3px 0px;
    padding: 10px 30px;
    margin: 1em 0 0 0;
    background: none;
    cursor: pointer;
    -webkit-transition: background ease-in .25s;
    transition: background ease-in .25s;
}

input.btnAddAction:hover, .btnAdded:hover {
    background: white;
    color: #2B2D42;
}

.titleText {
    font-size: 50px;
}

.product, .product--blue, .product--orange, .product--red, .product--green, .product--yellow, .product--pink {
    box-shadow: 1px 5px 15px #CCC;
    width: 15em;
    height: auto;
    border-radius: 3px;
    padding: 2em;
    margin: 1em;
    overflow: hidden;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.product--blue {
    background: -webkit-linear-gradient(135deg, #92DCE5 50%, rgba(255, 255, 255, 0.5) 50%);
    background: linear-gradient(-45deg, #92DCE5 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product--orange {
    background: -webkit-linear-gradient(135deg, #EF6F6C 50%, rgba(255, 255, 255, 0.5) 50%);
    background: linear-gradient(-45deg, #EF6F6C 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product--red {
    background: -webkit-linear-gradient(135deg, #E84855 50%, rgba(255, 255, 255, 0.5) 50%);
    background: linear-gradient(-45deg, #E84855 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product--green {
    background: -webkit-linear-gradient(135deg, #70C1B3 50%, rgba(255, 255, 255, 0.5) 50%);
    background: linear-gradient(-45deg, #70C1B3 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product--yellow {
    background: -webkit-linear-gradient(135deg, #E8DB7D 50%, rgba(255, 255, 255, 0.5) 50%);
    background: linear-gradient(-45deg, #E8DB7D 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product--pink {
    background: -webkit-linear-gradient(135deg, #FF386D 50%, rgba(255, 255, 255, 0.5) 50%);
    background: linear-gradient(-45deg, #FF386D 50%, rgba(255, 255, 255, 0.5) 50%);
}

.product img, .product--blue img, .product--orange img, .product--red img, .product--green img, .product--yellow img, .product--pink img {
    max-width: 100%;
    height: auto !important;
    text-align: center;
}

.product_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.product_inner p {
    /* color: rgba(255, 255, 255, 0.9); */
    font-weight: Bold;
}

.product_overlay {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product_overlay h2 {
    color: rgba(43, 45, 66, 0.7);
    font-size: 1.2em;
    margin: 1em 0;
}

.product_overlay i {
    color: rgba(43, 45, 66, 0.7);
    font-size: 1.5em;
}

h2 {
    color: #000;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 30px 0 80px;
}

h2 b {
    color: #10d104;
}

h2::after {
    content: "";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    left: 0;
    right: 0;
    bottom: -20px;
}

#productCarousel {
    margin: 50px auto;
    padding: 0 44px;
}

#productCarousel .item {
    min-height: 330px;
    text-align: center;
    overflow: hidden;
}

#productCarousel .item .img-box {
    height: 160px;
    width: 100%;
    position: relative;
}

#productCarousel .item img {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 20px;
    border: 2px solid #ccc;
}

#productCarousel .item h4 {
    font-size: 18px;
    margin: 10px 0;
}

.item .btn, .addToCartBtn, .addToCartModalBtn {
    color: #333;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    background: none;
    border: 1px solid #ccc;
    padding: 8px;
    /* margin-top: 5px; */
    line-height: 16px;
    background: url(../img/addToCart.png) no-repeat;
    width: 50px;
    height: 34px;
    background-position: center;
    background-size: contain;
}

#productCarousel .item .btn:hover, #productCarousel .item .btn:focus {
    color: #fff;
    border-color: #000;
    box-shadow: none;
}

#productCarousel .item .btn:hover .product-overlay, #productCarousel .item .btn:focus .product-overlay {
    width: 0px !important;
}

#productCarousel .item .btn i {
    font-size: 14px;
    font-weight: bold;
    margin-left: 5px;
}

#productCarousel .thumb-wrapper {
    text-align: center;
}

#productCarousel .thumb-content {
    padding: 10px;
}

#productCarousel .carousel-control {
    height: 100px;
    width: 40px;
    background: none;
    margin: auto 0;
    background: rgba(0, 0, 0, 0.2);
}

#productCarousel .carousel-control i {
    font-size: 30px;
    position: absolute;
    top: 50%;
    display: inline-block;
    margin: -16px 0 0 0;
    z-index: 5;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
    font-weight: bold;
}

.item-price {
    font-size: 17px;
    padding: 2px 0;
}

.item-price strike {
    color: #999;
    margin-right: 5px;
}

.item-price span {
    color: #86bd57;
    font-size: 110%;
}

#productCarousel .carousel-control.left i {
    margin-left: -3px;
}

#productCarousel .carousel-control.left i {
    margin-right: -3px;
}

#productCarousel .carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li, .carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 50%;
    border-color: transparent;
}

.carousel-indicators li {
    background: rgba(0, 0, 0, 0.2);
}

.carousel-indicators li.active {
    background: rgba(0, 0, 0, 0.6);
}

.star-rating li {
    padding: 0;
}

.star-rating i {
    font-size: 14px;
    color: #ffc000;
}

.new {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.new span {
    font-size: 1.7em;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 24px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    height: 25px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#2989d8 0%, #1e5799 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 17px;
    right: -20px;
}

.new span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #1e5799;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #1e5799;
}

.new span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #1e5799;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #1e5799;
}

.col-sm-3 {
    padding-top: 5px;
}

.product-overlay>.btn {
    background: transparent !important;
    width: fit-content !important;
    vertical-align: middle;
    margin: 0 auto;
    margin-top: 60px;
    color: white !important;
    border-radius: 5px !important;
}

.product-overlay {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 4px;
    height: 160px;
    width: 0px;
    /*240px*/
    border-radius: 20px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}

.thumb-wrapper:hover .product-overlay {
    animation: overlay-anim .5s;
    width: 240px;
}

@keyframes overlay-anim {
    0% {
        width: 0px;
    }

    100% {
        width: 240px;
    }
}

.footer {
    background-color: #222;
    color: #ccc;
}

#myCarousel>.carousel-inner>.item>img {
    width: 100%;
    /* height: 450px; */
}

.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
    color: #fff;
    background-color: #222;
}

.nav-pills>li>a {
    color: #222;
}

.modal-login {
    color: #636363;
    width: 350px;
}

.modal-login .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}

.modal-login .modal-header {
    border-bottom: none;
    position: relative;
    justify-content: center;
}

.modal-login h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -15px;
}

.modal-login .form-control:focus {
    border-color: #70c5c0;
}

.modal-login .form-control, .modal-login .btn {
    min-height: 40px;
    border-radius: 3px;
}

.modal-login .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.modal-login .modal-footer {
    background: #222222;
    border-color: #dee4e7;
    text-align: center;
    justify-content: center;
    margin: 0 -20px -20px;
    border-radius: 0px 0px 4px 4px;
    font-size: 13px;
    border-top: 2px solid red;
}

.modal-login .modal-footer a {
    color: #999;
}

.modal-login .avatar {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #222222;
    padding: 15px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    border: 2px solid lime;
}

.modal-login .avatar img {
    width: 100%;
}

.modal-login.modal-dialog {
    margin-top: 80px;
}

.modal-login .btn {
    color: #fff;
    border-radius: 4px;
    background: #222222;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}

.modal-login .btn:hover, .modal-login .btn:focus {
    background: #000;
    outline: none;
}
.mobileCheckoutSection,.mobileCartSection {
  display: none;
}

div.mobileCartSection {
  padding: 10px;
  position: fixed;
  right: 20px;
  background: black;
  border-radius: 100%;
  color: #fff;
  top: 38vh;
  z-index: 1;
}
div.mobileCartSection>.badge {
    position: absolute;
    margin-top: -15px;
    background: green;
}
div.mobileCartSection>ul {
    position: absolute;
    right: 10px;
    width: 250px;
    background: rgba(0, 0, 0, 0.7);
    list-style: none;
    padding: 10px;
    margin-top: -17px;
    z-index: -1;
    border-radius: 20px;
}
ul#mobileCartDropdown>li {
  text-align: left !important;
}
ul#mobileCartDropdown>li>a {
    color: white !important;
}


/* media queries */
@media screen and (max-width: 425px) {

  .mobileCheckoutSection,
  .mobileCartSection {
    display: block !important;
  }
  #cartMainSection, #mainCheckoutBtn {
    display: none;
  }

  #myCarousel>.carousel-inner>.item>img {
  width: 100%;
  height: 250px;
}

    #mainLogo {
        height: auto;
        width: 100%;
    }

    #footerCol2, #footerCol3 {
        display: none;
    }

    #footerCol1 {
        padding: 0px 0px 15px !important;
        font-size: 15px !important;
    }

    .thumb-wrapper:hover .product-overlay {
        animation: overlay-anim .5s;
        width: 100%;
    }

    .product-overlay {
        top: 0;
    }

    #productCarousel .item .col-sm-3 {
        padding: 0;
        width: inherit;
        margin-bottom: 20px;
    }

    .checkoutBtn {
        color: #fff !important;
    }

    #product_view .modal-body .row {
        margin: 0;
    }

    #product_view .modal-body .product_content {
        width: 100%;
    }

    #product_view .modal-body .product_content .nav-tabs.nav-justified li {
        width: 50%;
        float: left;
    }

    #cartSection .alert.alert-warning.alert-dismissible.text-center {
        padding: 10px;
    }

    #cartSection .alert.alert-warning.alert-dismissible.text-center h3 {
        font-size: 20px;
    }

    span#termsContainer {
        float: left !important;
        font-size: 13px;
        margin-right: 0 !important;
    }
    #myCarousel>.carousel-inner>.item>img {
        height: auto;
    }
}

@media screen and (max-width: 375px) {
  #myCarousel>.carousel-inner>.item>img {
  width: 100%;
  height: 250px;
}
}

@media screen and (max-width: 320px) {
  #myCarousel>.carousel-inner>.item>img {
  width: 100%;
  height: 250px;
}
}


::-webkit-scrollbar {
    width: 3px;
    border-radius: 100% !important;
    overflow: hidden;
    margin-right: 20px !important;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 50px !important;
    height: 50%;
    z-index: -1;
}

::-webkit-scrollbar-thumb {
    background-color: #1d5a1c;
    border-radius: 50px !important;
}

::-webkit-scrollbar-track-piece {
    height: 50px !important;
}

::-webkit-scrollbar-button {
    display: none;
    background: #69d656;
    width: 30px;
    height: 30px;
}

::-webkit-scrollbar-corner {
    display: none;
    background: #0600ff;
    width: 30px;
    height: 30px;
}
