.text-theme{
    color: violet !important;
}.bg-theme{
    background-color: violet !important;
}.border-theme{
    border: 1px solid violet !important;
}

#cart-img-thumb {
    height: 100px;
    width: 100px;
    background-color: rgba(0,0,0,0.1);
    background-position: center;
    background-size: contain;
    border-radius: 7px;
}

.custom-col-4 {
    width: 33% !important;
}

.custom-col-6 {
    width: 49.5% !important;
}

.custom-col-3 {
    width: 24.5% !important;
}

.custom-col-25 {
    width: 19% !important;
}

@media (min-width: 576px) {
    .mx-sm-10 {
        margin-left: 3%;
        margin-right: 3%;
    }

    .px-sm-10 {
        padding-left: 3%;
        padding-right: 3%;
    }

    .custom-col-sm-4 {
        width: 33% !important;
    }

    .custom-col-sm-6 {
        width: 49.5% !important;
    }

    .custom-col-sm-3 {
        width: 24.5% !important;
    }

    .custom-col-sm-25 {
        width: 19% !important;
    }
}

@media (min-width: 768px) {
    .mx-md-10 {
        margin-left: 3%;
        margin-right: 3%;
    }

    .px-md-10 {
        padding-left: 3%;
        padding-right: 3%;
    }

    .custom-col-md-4 {
        width: 33% !important;
    }

    .custom-col-md-6 {
        width: 49.5% !important;
    }

    .custom-col-md-3 {
        width: 24.5% !important;
    }

    .custom-col-md-25 {
        width: 19% !important;
    }
}

@media (min-width: 992px) {
    .custom-col-lg-4 {
        width: 33% !important;
    }

    .custom-col-lg-6 {
        width: 49.5% !important;
    }

    .custom-col-lg-3 {
        width: 24.5% !important;
    }

    .custom-col-lg-25 {
        width: 19% !important;
    }
}

@media (min-width: 1200px) {
    .custom-col-xl-4 {
        width: 33% !important;
    }

    .custom-col-xl-6 {
        width: 49.5% !important;
    }

    .custom-col-xl-3 {
        width: 24.5% !important;
    }

    .custom-col-xl-25 {
        width: 19% !important;
    }
}

@media (min-width: 1400px) {
}

.text-orange {
    color: rgba(228,157,57,1) !important;
}

.text-silver {
    color: silver !important;
}

.bg-orange {
    background-color: rgba(228,157,57,1) !important;
}

.bg-silver {
    background-color: silver !important;
}

.border-silver {
    border: 1px solid silver !important;
}

.onhover-opacity90:hover {
    background-color: rgba(228,157,57,0.1);
    cursor: pointer;
    opacity: 90;
}

.onhover-opacity90:active {
    background-color: rgba(228,157,57,0.1);
    cursor: pointer;
    opacity: 90;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.border-red {
    border: 1px solid red !important;
}

.border-orange {
    border: 1px solid rgba(228,157,57,1) !important;
}

.border-black {
    border: 1px solid black !important;
}

.border-blue {
    border: 1px solid rgba(47,112,215,1) !important;
}

.border-pink {
    border: 1px solid pink !important;
}

.border-white {
    border: 1px solid white !important;
}

.border-green {
    border: 1px solid green !important;
}

.border-yellow {
    border: 1px solid green !important;
}

.border-brown {
    border: 1px solid green !important;
}

html {
  font-size: 14px;
}

body::-webkit-scrollbar{
    display: none;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  font-size: 70%;
}

body {
  margin-bottom: 60px;
  background-color: aliceblue
}

header {
    background-color: white;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    height: 3.5em;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    width: 100%
}

.fs-smaller{
    font-size: smaller;
}

header .header-nav-item {
    display: flex;
    flex-direction: row;
    font-weight: 600;
    line-height: 16px;
    align-items: center;
}

header .header-nav-item i {
    color: blue;
}

p{
    padding: 0;
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#item-added-modal {
    background-color: white;
    max-width: 450px;
    box-shadow: 0px 0px 3px 0px black;
    padding: 0.7em 1.3em;
    margin: 1em;
    position: fixed;
    top: 0;
    right: -500px;
    visibility: visible;
}

.addtocart-btn {
    background-color: violet;
    color: white;
    border-radius: 7px;
    padding: 5px 0px;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 96%;
}