/*
Theme Name: Botiga child
Description: Theme enfant pour l'atelier de Nath
Author: Benjamin Demaiziere
Author URI: https://www.benjamin-demaiziere.fr
Template: botiga
Version: 0.1.0
*/

.custom-quote {
  position: relative;
}

.custom-quote::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(./assets/quote.png);
    height: 80px;
    width: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    left: -40px;
}

.custom-quote::after {
    content: '';
    transform: rotate(180deg);
    display: block;
    position: absolute;
    background-image: url(./assets/quote.png);
    height: 80px;
    width: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -30px;
    right: -40px;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}