/*--------------------------------------------------------------
# Overrides
--------------------------------------------------------------*/
.my-primary {
    background: #136d1a;
    border: 0;
    padding: 5px 12px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.my-primary:hover {
    background: #cdca01;
}

.footer-links {
    margin-bottom: 30px;
    font-size: small;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul i {
    padding-right: 2px;
    color: #f39e7a;
    font-size: 18px;
    line-height: 1;
}

.footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li:first-child {
    padding-top: 1;
}

.footer-links ul a {
    color: #5c5c5c;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer-links ul a:hover {
    text-decoration: none;
    color: #136d1a;
}

hr {
    background-color: #959595;
}

img {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


.pagination>li>a,
.pagination>li>span {
    background-color: white;
    color: #8a3713;
    border-color: #ddd;
    /* border: 0px; */
    /* border-radius: 5px; */
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #5a5a5a;
    background-color: #eee;
    cursor: pointer;
}

.pagination>.selected>a {
    color: white;
    background-color: #136d1a;
    border: solid 1px #f39e7a;
}

.pagination>.selected>a:hover {
    background-color: #f39e7a;
    border: solid 1px #136d1a;
}

.shake {
    /* position: relative;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 10vw;
  font-weight: 900;
  text-decoration: none;
  color: white;
  display: inline-block;
  background-size: 120% 100%; */

    /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -ms-background-clip: text;
  -ms-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent; */

    animation: .8s shake infinite alternate;
}

@keyframes shake {
    0% {
        transform: skewX(-15deg);
    }

    5% {
        transform: skewX(15deg);
    }

    10% {
        transform: skewX(-15deg);
    }

    15% {
        transform: skewX(15deg);
    }

    20% {
        transform: skewX(0deg);
    }

    100% {
        transform: skewX(0deg);
    }
}

.small-text {
    font-size: small;
}

.offcanvas-size-xxl {
    --bs-offcanvas-width: min(95vw, 90vw) !important;
}

.offcanvas-size-xl {
    --bs-offcanvas-width: min(95vw, 600px) !important;
}

.offcanvas-size-md {
    /* add Responsivenes to default offcanvas */
    --bs-offcanvas-width: min(95vw, 400px) !important;
}

.offcanvas-size-sm {
    --bs-offcanvas-width: min(95vw, 250px) !important;
}

#cart-canvas {
    width: 100%;
    height: 95%;
}

.input-error {
    outline: 1px solid red;
}

.grad {
    background-image: linear-gradient(#fef5f1, #f9cdba);
    border: 0px solid;
    /* background-image: linear-gradient(45deg,
                    #7794ff,
                    #44107A,
                    #FF1361,
                    #FFF800); */
}

.bounce {
    /* animation-name: bounce; */
    animation: 1s bounce infinite alternate;
    animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
}

@keyframes bounce {

    /* 0%   { transform: scale(1,1)      translateY(0); } */
    /* 10%  { transform: scale(1.1,.9)   translateY(0); } */
    /* 30%  { transform: scale(.9,1.1)   translateY(-20px); } */
    /* 50%  { transform: scale(1.05,.95) translateY(0); } */
    /* 57%  { transform: scale(1,1)      translateY(-7px); } */
    /* 64%  { transform: scale(1,1)      translateY(0); } */
    /* 100% { transform: scale(1,1)      translateY(0); } */
    0% { transform: scale(1, 1) translateY(0); }
    25% { transform: scale(.9, 1.1) translateY(-20px); }
    50% { transform: scale(1.05, .95) translateY(0); }
    100% { transform: scale(1, 1) translateY(-7px); }
}

.required {
    border-left: 2px solid #136d1a;
}
