/*Estilos do Card de Produto*/
.card-produto {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: var(--white);
    width: 269px;
    height: 397px;

    border-radius: 5px;

    padding-top: 42px;

    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.card-produto img {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.card-produto:hover {
    -webkit-box-shadow: 0px 2px 15px 6px #BABABA; 
    box-shadow: 0px 2px 15px 6px #BABABA;
}

.card-produto:hover img{
    transform: scale(1.05);
}

.card-produto-img {
    margin-bottom: 18px;
}

.card-produto-name {
    display: block;
    text-align: center;
    padding: 0 16px;
    height: 33px;
}

.card-produto-actions {
    box-sizing: border-box;
    justify-content: space-between;

    width: 100%;
    padding: 0 16px;
    height: 51px;

    position: relative;
    top: 25px;
}

.btn-default.card-btn-ver-mais {
    font-size: 16px;
    flex-basis: 168px;
    text-align: center;
}

.btn-default.card-btn-modal {
    flex-basis: 59px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--green-grandient-bg);
    background-position-x: 0px;
    background-size: 200%;
}

.btn-default.card-btn-modal {
    background-position-x: 100%;
}

@media screen and (max-width: 1199px){
    .card-produto {
        width: 156px !important;
        height: 280px !important;
        margin-right: 16px;
        padding-top: 16px !important;
        flex-shrink: 0;
    }

    img.card-produto-img {
        width: 75px;
        height: auto;
        margin-bottom: 16px;
    }

    span.card-produto-name {
        font-size: 16px;
        line-height: 19.2px;
        height: auto;
        margin-top: auto;
    }

    .card-produto-actions {
        top: 24px !important;
        margin-top: auto;
    }

    a.btn-default.card-btn-ver-mais {
        display: block;
        width: 124px;

        font-size: 12px;
        line-height: 14.4px;
    }
}

#modal_produto {
    display: none;

    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);

    justify-content: center;
    align-items: center;
}

.modal-produto-content {
    width: 870px;
    background-color: var(--white);
    border: 1px solid #CACACA;
    box-sizing: border-box;
    box-shadow: 0px 0px 60px rgba(60, 67, 84, 0.23);
    border-radius: 5px;

    padding: 24px;

    margin: 0 30px;
}

.modal-produto-head {
    flex-direction: row-reverse;
    margin-bottom: 8px;
}

.modal-produto-head button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.modal-produto-main {
    justify-content: center;
}

.modal-produto-main img {
    margin-right: 100px;
}

.modal-produto-main-content {
    flex-basis: 442px;
}

.modal-produto-main-content > h3 {
    height: 60px;
    margin-bottom: 16px;
}

.modal-produto-main-content > p {
    margin-bottom: 60px;
}

.modal-produto-main-content > .btn-default {
    font-size: 16px;
    line-height: 19.2px;
    width: 198px;
    display: block;
    text-align: center;
}

.fade-roll-left-enter-active, .fade-roll-left-leave-active,
.fade-roll-up-enter-active, .fade-roll-up-leave-active {
  transition: ease all 0.8s;
}
.fade-roll-left-enter, .fade-roll-left-leave-to{
    opacity: 0;
    transform: translateX(-50%);
}
.fade-roll-up-enter, .fade-roll-up-leave-to{
    margin-top: -626px;
    opacity: 0;
}
.fade-grow-enter-active, .fade-grow-leave-active, .toggle {
    transition: ease all 0.5s;
}
.fade-grow-enter, .fade-grow-leave-to{
    opacity: 0;
    z-index: 0;
    /*transform:;*/
    margin-top: -40px;
}

.fade-enter-active, .fade-leave-active{
    transition: ease all 0.3s;
}
.fade-enter, .fade-leave-to{
    opacity: 0;
}