.products {
    width: 100%;
    min-height: 100%;
    position: relative;
    background: #f8fafc;
    padding: 100px 40px 50px 40px;
    transition: all 0.2s ease-in-out;
}

.products .add .titleCategory {
    margin-bottom: 20px;
    color: #00adef;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.products .add .category {
    display: grid;
    grid-row-gap: 15px;
    position: relative;
    margin-bottom: 50px;
    grid-column-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.products .add .category .cardProducts {
    border: none;
    padding: 0px;
    height: 100%;
    display: flex;
    color: #00adef;
    position: relative;
    border-radius: 4px;
    background: #ffffff;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.products .add .category .cardProducts:hover {
    box-shadow: 0 5px 15px rgb(0, 0, 0, 0.3);
}

.products .add .category .cardProducts .fieldIMG {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.products .add .category .cardProducts .fieldIMG img {
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    position: absolute;
    object-fit: contain;
    background-color: #ffffff;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 0.2s ease-in-out;
}

.products .add .category .cardProducts .fieldIMG img.first {
    left: 0;
}

.products .add .category .cardProducts .fieldIMG img.second {
    left: -100%;
}

.products .add .category .cardProducts:hover .fieldIMG img.first {
    left: -100%;
}

.products .add .category .cardProducts:hover .fieldIMG img.second {
    left: 0;
}

.products .add .category .cardProducts .fieldText {
    height: 100%;
    display: flex;
    padding: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.products .add .category .cardProducts .fieldText h1 {
    margin: 0;
    font-size: 22px;
    text-align: left;
    font-weight: bold;
}

.products .add .category .cardProducts .fieldText p {
    text-align: left;
}

.products .add .category .cardProducts .fieldText h2 {
    text-align: right;
}

.products .add .category .cardProducts .fieldText .btn {
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .products {
        padding: 90px 20px 90px 20px;
    }

    .products .add .category {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .products .add .category {
        display: block;
    }

    .products .add .category .cardProducts {
        margin-bottom: 20px;
        box-shadow: 0 3px 3px rgb(0, 0, 0, 0.3);
    }

    .products .add .category .cardProducts .fieldText {
        padding: 10px;
    }
}

.fieldNotification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 30%;
    height: auto;
    padding: 10px;
    background: transparent;
    display: block;
}

.fieldNotification .row {
    width: auto;
    position: relative;
}

.fieldNotification .row .cardNotification {
    padding: 10px;
    background: #00adef;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
    animation: cardNotification 1s linear;
    box-shadow: 0 3px 3px rgb(0, 0, 0, 0.3);
}

.fieldNotification .row .cardNotification h1 {
    color: #ffffff;
}

@keyframes cardNotification {
    0% {
        transform: translateY(100px)
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .fieldNotification {
        width: 100%;
    }
}