:root{
    --red-color: #e53328;
    --primary-font:"Open Sans", sans-serif;
    --secondary-font:  "Exo 2", sans-serif;
    --yellow-color :#ffe600;
}
body{
    margin: 0px auto;
    font-family: var(--primary-font);

}

h1,h2,h3,h4,h5,h6{
    margin: 0px;
    padding: 0px;
    font-family: var(--secondary-font); 
}
.item{
    padding: 10px;
}
p{
    color: black;
    font-family: var(--primary-font);
    font-size: 16px;
}

.pleca{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    width: fit-content;
    background-color: var(--red-color);
    height: 40px;
    font-family: var(--secondary-font);
    color: white;
    font-weight: 500;
    font-style: italic;
}


.pleca span{
    font-weight: bold;
}

.pleca::after{
   position: absolute;
   content: '';
   right: -40px;
    width: 0px;
   height: 0px;
   border-style: solid;
   border-width: 40px 0 0 40px;
   border-color: transparent transparent transparent var(--red-color);
   transform: rotate(0deg);
}
.pleca.store{
    background-color: var(--yellow-color);
}
.pleca.store::after{
    border-color: transparent transparent transparent var(--yellow-color);
}

h2.price{
    font-weight: bold;
    font-size: 40px;
    color:var(--red-color);
    margin: 0px;
    padding: 0px;
}
h3{
    font-weight: bold;
    font-size: 20px;
    color:var(--red-color);
    margin: 0px;
    padding: 0px;  
}

@media all and (max-width: 767px) {
    h2.price{
        font-size: 30px;
    }
    h3{
        font-size: 16px;
    }
    h1{
        font-size: 20px;
    }
    p{
        font-size: 14px;
    }

    .pleca{
        font-size: 12px !important;
        height: 30px;
    }

    .pleca::after{
       right: -30px;
       border-width: 30px 0 0 30px;
    }
}
.img-fluid{
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.el-center{
    margin: 0px auto;
    display: block;
}

.border-right{
    border-right: 4px solid #f1f6fb;
    border-bottom: 4px solid #f1f6fb;
}
.border-left{
    border-left: 4px solid #f1f6fb;
    border-bottom: 4px solid #f1f6fb;
}

.border-bottom{
    border-bottom: 4px solid #f1f6fb;
}

ul.slider{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

ul.slider li{
    padding: 10px;
}
.slide-item{
    width: 338px;
    height: 152px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.slide-item h2.price{
    font-size: 18px;
    color:var(--red-color);
    margin: 0px;
    padding: 0px;

}

.slide-item p{
    font-size: 12px;
}

.circle {
    position: absolute;
    left: 10px;
    top:10px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    border:10px solid var(--red-color);
    position: relative;
    animation: blink 1.5s infinite;
    cursor: pointer;
}



@keyframes blink {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.image-container{
    position: relative;
}