.out_of_stoke_cls:hover {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.out_of_stoke_cls:before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.out_of_stoke_cls:after {
    content: "OUT OF STOCK";
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100%;
    text-align: center;
    width: 70px;
    height: 70px;
    top: calc(40% - 35px);
    left: calc(50% - 35px);
    font-size: 0.8em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.out_of_stoke_cls a {
    pointer-events: none;
}

.actions.out_of_stoke {
    height: 25px;
}




@import url(https://fonts.googleapis.com/css?family=Lato:700);

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f0f0;
}

.box {
    position: relative;
    max-width: 600px;
    width: 100%;
    height: 320px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-bottom: 1px solid #000;
}

/* common */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid #2980b9;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 5px 0;
    background-color: #3498db;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    color: #fff;
    font: 700 18px/1 'Lato', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    text-align: center;
}

/* top left*/
.ribbon-top-left {
    top: -10px;
    left: -10px;
    z-index: 9;
}

.ribbon-top-left::before,
.ribbon-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon-top-left::before {
    top: 0;
    right: 24px;
}

.ribbon-top-left::after {
    bottom: 24px;
    left: 0;
}

.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
    top: -10px;
    right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}

.ribbon-top-right::before {
    top: 0;
    left: 0;
}

.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}

.ribbon-top-right span {
    left: -25px;
    top: 30px;
    transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
    bottom: -10px;
    left: -10px;
}

.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.ribbon-bottom-left::before {
    bottom: 0;
    right: 0;
}

.ribbon-bottom-left::after {
    top: 0;
    left: 0;
}

.ribbon-bottom-left span {
    right: -25px;
    bottom: 30px;
    transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}

.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.ribbon-bottom-right::before {
    bottom: 0;
    left: 0;
}

.ribbon-bottom-right::after {
    top: 0;
    right: 0;
}

.ribbon-bottom-right span {
    left: -25px;
    bottom: 30px;
    transform: rotate(-225deg);
}

.yello_cls span {
    background-color: #faf205 !important;
}

.yello_cls::before,
.yello_cls::after {
    border: 5px solid #e7cf09 !important;
    ;
}

.green_cls span {
    background-color: #5bfb00 !important;
}

.green_cls::before,
.green_cls::after {
    border: 5px solid #4cc00a !important;
    ;
}

.blue_cls span {
    background-color: #3498db !important;
}

.blue_cls::before,
.blue_cls::after {
    border: 5px solid #0c54bd !important;
    ;
}

.red_cls span {
    background-color: #f80808 !important;
}

.red_cls::before,
.red_cls::after {
    border: 5px solid #cd640d !important;
    ;
}

/* Golden color css */
* {
    box-sizing: border-box;
}

:root {
    --gold: #ffb338;
    --light-shadow: #77571d;
    --dark-shadow: #3e2904;
}

body {
    margin: 0;
}

.wrapper {
    display: grid;
    grid-template-areas: 'overlap';
    place-content: center;
    text-transform: uppercase;
}

.wrapper>div {
    background-clip: text;
    -webkit-background-clip: text;
    color: #363833;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    /* font-size: clamp( 3em, 18vw, 3rem); */
    font-size: clamp(1em, 18vw, 2rem);
    grid-area: overlap;
    letter-spacing: 1px;
    -webkit-text-stroke: 4px transparent;
}

div.bg {
    background-image: repeating-linear-gradient(105deg,
            var(--gold) 0%,
            var(--dark-shadow) 5%,
            var(--gold) 12%);
    color: transparent;
    filter: drop-shadow(5px 15px 15px black);
    transform: scaleY(1.05);
    transform-origin: top;
}

div.fg {
    background-image: repeating-linear-gradient(5deg,
            var(--gold) 0%,
            var(--light-shadow) 23%,
            var(--gold) 31%);
    color: #1e2127;
    transform: scale(1);
}


.services-block-three i {
    font-size: 32px;
}

.services-block-three h4 {
    color: #6f6f6f;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-block-three p {
    margin-bottom: 0;
    color: #757575;
}

.services-block-three>a:hover {
    opacity: 1;
    border-color: #d5d5d5;
}

a:hover,
a:active {
    color: #03a9f5;
    text-decoration: none;
}

.services-block-three>a:hover:before,
.services-block-three>a:hover:after {
    width: 95%;
    height: 90%;
}

.services-block-three>a {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    display: block;
    border: 2px solid #d5d5d5;
    border-radius: 4px;
    text-align: center;
    /* background: #ffb504; */
    padding: 20px;
    position: relative;
    /* margin-bottom: 30px; */
    /* height: 110px */
}

.services-block-three>a:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid #e21e24;
    border-right: 2px solid #e21e24;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.padding-15px-bottom {
    padding-bottom: 0px;
}

.services-block-three h4 {
    color: #252423;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-block-three>a:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 2px solid #e21e24;
    border-left: 2px solid #e21e24;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.product_listing:hover {
    /* box-shadow: 0 0 11px rgba(33,33,33,.2);  */
    /* box-shadow: 0 0 11px rgba(33, 33, 33, .2); */
}










/* Child Text Container */
.content_img .categorytitle{
position: absolute;
bottom: 0;
right: 0;
background: black;
color: white;
margin-bottom: 5px;
font-family: sans-serif;
opacity: 0;
visibility: hidden;
-webkit-transition: visibility 0s, opacity 0.5s linear; 
transition: visibility 0s, opacity 0.5s linear;
} 

/* Hover on Parent Container */
.content_img:hover{
cursor: pointer;
}

.content_img:hover .categorytitle{
/* width: 150px; */
padding: 8px 15px;
visibility: visible;
opacity: 0.7; 
}

/* .out_of_stoke_cls{
display: none!important;
} */










.categori-img {
    width: 100%;
    height: auto;
    padding: 5px;
}

h2 {
    text-align: center;
    padding-bottom: 1em;
}

.slick-dots {
    text-align: center;
    margin: 0 0 10px 0;
    padding: 0;
}

.slick-dots li {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
}

.slick-dots li.slick-active button {
    background-color: black;
}

.slick-dots li button {
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    background-color: #999;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.slick-dots li :hover {
    background-color: black;
}

/* Custom Arrow */
.prev {
    color: #999;
    position: absolute;
    top: 38%;
    left: -2em;
    font-size: 1.5em;
}

.prev :hover {
    cursor: pointer;
    color: black;
}

.next {
    color: #999;
    position: absolute;
    top: 38%;
    right: -2em;
    font-size: 1.5em;
}

.next :hover {
    cursor: pointer;
    color: black;
}

@media screen and (max-width: 800px) {
    .next {
        display: none !important;
    }

    .slick-slide img {
        width: 185px;
    }
}












.sale-top-right {
    left: 0px;
}



.viewmore_btn {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(270deg);
}

.viewmore_btn_section {
    top: 50%;
}

@media screen and (max-width: 800px) {
    .viewmore_btn {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        width: 100%;
    }

    .viewmore_btn_section {
        top: 0;
    }
}














.shop_by_category_row {
    margin: 20px 0px;
    height: 260px;
}


.shop_by_category_row .main{
    border-radius: 25px;
}
.shop_by_category_row .border{
    border-radius: 25px;
}

.inner-cutout{
    border-radius:25px
}

@media screen and (max-width: 800px) {
    .shop_by_category_row {
        margin: 20px 0px;
        height: auto;
    }
}

.stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    position: relative;
    color: #2395f3;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    padding-top: 0.65rem;
    padding-left: 0.5rem;
    padding-right: 0.36rem;
    padding-bottom: 0.2rem;
}

.slash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    transform-origin: center center;
    width: 0.15rem;
    height: 145%;
    background: fff;
    z-index: 4;
    animation: slash 6s ease-in infinite;
}

.slash:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.75rem;
    height: 120%;
    background: #fff;
    z-index: -1;
}

.slash:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2395f3;
}

.sides {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.sides .side {
    position: absolute;
    background: #2395f3;
}

.sides .side:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 0.15rem;
    transform: translateX(-101%);
    animation: side-top ease 6s infinite;
}

.sides .side:nth-child(2) {
    top: 0;
    right: 0;
    width: 0.15rem;
    height: 100%;
    transform: translateY(-101%);
    animation: side-right ease 6s infinite;
}

.sides .side:nth-child(3) {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.15rem;
    transform: translateX(101%);
    animation: side-bottom ease 6s infinite;
}

.sides .side:nth-child(4) {
    top: 0;
    left: 0;
    width: 0.15rem;
    height: 100%;
    transform: translateY(101%);
    animation: side-left ease 6s infinite;
}

.text {
    position: relative;
}

.text--backing {
    opacity: 0;
}

.text--left {
    position: absolute;
    top: 0;
    left: 0;
    width: 51%;
    height: 100%;
    overflow: hidden;
}

.text--left .inner {
    transform: translateX(100%);
    animation: text-left 6s ease-in-out infinite;
}

.text--right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.text--right .inner {
    transform: translateX(-200%);
    animation: text-right 6s ease-in-out infinite;
}

@-moz-keyframes slash {
    0% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    13% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    16.6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }
}

@-webkit-keyframes slash {
    0% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    13% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    16.6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }
}

@-o-keyframes slash {
    0% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    13% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    16.6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }
}

@keyframes slash {
    0% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    13% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(1);
    }

    16.6% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-24deg) scaleY(0);
    }
}

@-moz-keyframes text-left {
    0% {
        transform: translateX(100%);
    }

    10% {
        transform: translateX(0);
    }

    58% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@-webkit-keyframes text-left {
    0% {
        transform: translateX(100%);
    }

    10% {
        transform: translateX(0);
    }

    58% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@-o-keyframes text-left {
    0% {
        transform: translateX(100%);
    }

    10% {
        transform: translateX(0);
    }

    58% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes text-left {
    0% {
        transform: translateX(100%);
    }

    10% {
        transform: translateX(0);
    }

    58% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@-moz-keyframes text-right {
    0% {
        transform: translateX(-200%);
    }

    10% {
        transform: translateX(-100%);
    }

    58% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

@-webkit-keyframes text-right {
    0% {
        transform: translateX(-200%);
    }

    10% {
        transform: translateX(-100%);
    }

    58% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

@-o-keyframes text-right {
    0% {
        transform: translateX(-200%);
    }

    10% {
        transform: translateX(-100%);
    }

    58% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

@keyframes text-right {
    0% {
        transform: translateX(-200%);
    }

    10% {
        transform: translateX(-100%);
    }

    58% {
        transform: translateX(-100%);
    }

    70% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(-300%);
    }
}

@-moz-keyframes side-top {

    0%,
    14% {
        transform: translateX(-101%);
    }

    24%,
    55% {
        transform: translateX(0);
    }

    65% {
        transform: translateX(101%);
    }

    100% {
        transform: translateX(101%);
    }
}

@-webkit-keyframes side-top {

    0%,
    14% {
        transform: translateX(-101%);
    }

    24%,
    55% {
        transform: translateX(0);
    }

    65% {
        transform: translateX(101%);
    }

    100% {
        transform: translateX(101%);
    }
}

@-o-keyframes side-top {

    0%,
    14% {
        transform: translateX(-101%);
    }

    24%,
    55% {
        transform: translateX(0);
    }

    65% {
        transform: translateX(101%);
    }

    100% {
        transform: translateX(101%);
    }
}

@keyframes side-top {

    0%,
    14% {
        transform: translateX(-101%);
    }

    24%,
    55% {
        transform: translateX(0);
    }

    65% {
        transform: translateX(101%);
    }

    100% {
        transform: translateX(101%);
    }
}

@-moz-keyframes side-right {

    0%,
    14%,
    23% {
        transform: translateY(-101%);
    }

    30%,
    62% {
        transform: translateY(0);
    }

    72% {
        transform: translateY(101%);
    }

    100% {
        transform: translateY(101%);
    }
}

@-webkit-keyframes side-right {

    0%,
    14%,
    23% {
        transform: translateY(-101%);
    }

    30%,
    62% {
        transform: translateY(0);
    }

    72% {
        transform: translateY(101%);
    }

    100% {
        transform: translateY(101%);
    }
}

@-o-keyframes side-right {

    0%,
    14%,
    23% {
        transform: translateY(-101%);
    }

    30%,
    62% {
        transform: translateY(0);
    }

    72% {
        transform: translateY(101%);
    }

    100% {
        transform: translateY(101%);
    }
}

@keyframes side-right {

    0%,
    14%,
    23% {
        transform: translateY(-101%);
    }

    30%,
    62% {
        transform: translateY(0);
    }

    72% {
        transform: translateY(101%);
    }

    100% {
        transform: translateY(101%);
    }
}

@-moz-keyframes side-bottom {

    0%,
    14%,
    24%,
    28% {
        transform: translateX(101%);
    }

    37%,
    70% {
        transform: translateX(0);
    }

    79% {
        transform: translateX(-101%);
    }

    100% {
        transform: translateX(-101%);
    }
}

@-webkit-keyframes side-bottom {

    0%,
    14%,
    24%,
    28% {
        transform: translateX(101%);
    }

    37%,
    70% {
        transform: translateX(0);
    }

    79% {
        transform: translateX(-101%);
    }

    100% {
        transform: translateX(-101%);
    }
}

@-o-keyframes side-bottom {

    0%,
    14%,
    24%,
    28% {
        transform: translateX(101%);
    }

    37%,
    70% {
        transform: translateX(0);
    }

    79% {
        transform: translateX(-101%);
    }

    100% {
        transform: translateX(-101%);
    }
}

@keyframes side-bottom {

    0%,
    14%,
    24%,
    28% {
        transform: translateX(101%);
    }

    37%,
    70% {
        transform: translateX(0);
    }

    79% {
        transform: translateX(-101%);
    }

    100% {
        transform: translateX(-101%);
    }
}

@-moz-keyframes side-left {

    0%,
    14%,
    24%,
    34%,
    35% {
        transform: translateY(101%);
    }

    44%,
    79% {
        transform: translateY(0);
    }

    86% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

@-webkit-keyframes side-left {

    0%,
    14%,
    24%,
    34%,
    35% {
        transform: translateY(101%);
    }

    44%,
    79% {
        transform: translateY(0);
    }

    86% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

@-o-keyframes side-left {

    0%,
    14%,
    24%,
    34%,
    35% {
        transform: translateY(101%);
    }

    44%,
    79% {
        transform: translateY(0);
    }

    86% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

@keyframes side-left {

    0%,
    14%,
    24%,
    34%,
    35% {
        transform: translateY(101%);
    }

    44%,
    79% {
        transform: translateY(0);
    }

    86% {
        transform: translateY(-101%);
    }

    100% {
        transform: translateY(-101%);
    }
}

/* Impossible Text */
h1 {
    color: #484848;
    font-size: 50px;
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 7px;
    cursor: pointer
}

h1 span {
    transition: .5s linear
}

h1:hover span:nth-child(1) {
    margin-right: 5px
}

h1:hover span:nth-child(1):after {
    content: "'";
}

h1:hover span:nth-child(2) {
    margin-left: 30px
}

h1:hover span {
    color: #fff;
    text-shadow: 0 0 10px #fff,
        0 0 20px #fff,
        0 0 40px #fff;
}

/* Impossible Text */
.border {
    padding: 5px;
    background: linear-gradient(110deg, #e01f25 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(110deg, #ffb504 34%, #2f2e2d 34%);
    background-size: 400% 400%;
    height: 146px;
    background-position: 25% 50%;
    -webkit-animation: Gradient 5s ease infinite;
    -moz-animation: Gradient 5s ease infinite;
}

.inner-cutout {
    padding: 40px 0;
    display: block;
    background-color: #fff;
    margin: 2%;
    padding-bottom: 40px;
    height: 130px;
    background-size: 300%;
    background-position: 50% 50%;
    
}



.shop_by_category_row .hover-img{
    text-align: center;
    margin: auto;
}



.knockout {
    animation: Gradient 5s ease infinite;
    -webkit-animation: Gradient 15s ease infinite;
    -moz-animation: Gradient 5s ease infinite;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 30% 50%
    }

    50% {
        background-position: 25% 50%
    }

    100% {
        background-position: 30% 50%
    }
}

/* New Design for category Name start */
.knockout {
    margin: 10px 5px;
    vertical-align: middle;
    text-align: center;
    font-family: 'Pacifico', cursive;
    font-family: 'fangsong';
    font-size: 20px;
    color: blue;
    color: #fff;
    background: linear-gradient(110deg, #e01f25 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(110deg, #ffb504 34%, #2f2e2d 34%);
    background-size: 400%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    letter-spacing: 1px;
    padding: 5px 0px;
    /* font-family: 'Tilt Prism', cursive; */
    font-family: 'Bungee', cursive;
}

.knockout {
    vertical-align: middle;
    text-align: center;
    font-size: 15px;
    color: blue;
    color: #fff;
    background: linear-gradient(110deg, #e01f25 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(110deg, #ffb504 34%, #2f2e2d 34%);
    background-size: 400%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    letter-spacing: 1px;
    font-family: 'Bungee', cursive;
    text-transform: uppercase;
    font-weight: bold;
}


.knockout {
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    /* color: blue; */
    /* color: #fff; */
    background: black;
    background-size: 400%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    letter-spacing: 1px;
    font-family: 'Open Sans';
    text-transform: uppercase;
    font-weight: 900;
}

.inner-cutout {
    padding: 0;
    display: block;
    background-color: #fff;
    margin: 2%;
    padding-bottom: 0px;
    height: auto;
    background-size: 300%;
    background-position: 50% 50%;
}

.border {
    padding: 1px 0px;
    background: linear-gradient(110deg, #ffeead 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(110deg, #C5E7D7 34%, #88d8b0 34%);
    background: linear-gradient(110deg, #e01f25 33%, rgba(0, 0, 0, 0) 33%), linear-gradient(110deg, #ffb504 34%, #2f2e2d 34%);
    background-size: 400% 400%;
    height: auto;
    background-position: -14% 50%;
    -webkit-animation: Gradient 5s ease infinite;
    -moz-animation: Gradient 5s ease infinite;
}

.theme_btn {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius:25px
}

.theme_btn:hover,
.theme_btn:active {
    color: #000;
    background-color: #fff;
    border-color: #000;
}






.bs-discount {
    position: absolute;
    font-size: 18px;
}

.bs-discount span,
.bs-discount strong {
    box-sizing: border-box;
}

.bs-discount.left.flag-side::after {
    content: " ";
    border-top: 1.5rem solid black;
    border-bottom: 1.5rem solid black;
    border-right: 1rem solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
}



.bs-discount {
    position: absolute;
    font-size: 18px;
}

.bs-discount span,
.bs-discount strong {
    box-sizing: border-box;
}



.bs-discount.flag-down::after {
    content: " ";
    border-left: 2rem solid rgb(227, 30, 36);
    border-right: 2rem solid rgb(227, 30, 36);
    border-bottom: 1rem solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}



.animated_data {
    padding: 0;
    font-size: 24px;
    background: url('https://i.ibb.co/89Cf3dm/text-bg.png') no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    color: #fff;
    animation: moveBg 90s linear infinite;
    -webkit-animation: moveBg 90s linear infinite;
    letter-spacing: 2px
}

/* Text Background Animation */
@keyframes moveBg {
    0% {
        background-position: 0% 30%;
    }

    100% {
        background-position: 100% 50%;
    }
}


.cat_name{
    text-align: center;
font-size: 16px;
font-family: initial;
font-style: oblique;
text-transform: uppercase;
color: red;
font-weight: 700;

}


.shop_by_category_section .slick-dots li button {
    width: 10px;
    height: 10px;	    
}
.services-block-three > a
{
    padding: 2px;
}


@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .box {
        height: 338px;
    }

    .slick-slide img {
        width: 150px;
    }

    .knockout {
        font-size: 16px
    }
    

    .shop_by_category_row .main{
        width: 50%;
        text-align: center;
        margin: auto;
        border-radius: 25px;
    }
    .shop_by_category_row .border{
        border-radius: 25px;
    }

    .inner-cutout{
        border-radius:25px
    }
    

}


#search_mini_form ::placeholder {
    color: black;
  }


