#product-details #details-container .product-info img {
    max-height: 240px;
    border-radius: 3px;
    margin-top: 15px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#product-details #details-container .product-info .product-name {
    font-size: 18px;
    padding: 5px 0;
    margin-top: 5px;
}

#product-details #details-container .product-info .product-description {
    padding: 10px 0;
}

#product-details #details-container .product-info .product-price {
    padding: 10px 0;
}

#product-details #details-container .product-info .product-observations {
    padding: 10px 0;
}

    #product-details #details-container .product-info .product-observations textarea {
        max-width: 100%;
        min-width: 100%;
        max-height: 80px;
        min-height: 80px;
        border-radius: 3px;
        border: 1px solid;
        margin-top: 5px;
        padding: 10px;
    }

#product-details #details-container .input-info .confirmation,
#product-details #details-container .input-info .quantity {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
}

#product-details #details-container .input-info .confirmation {
    justify-content: flex-end !important;
}

#product-details #details-container .input-info .quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    /*border: 1px solid;*/
}

#product-details #details-container .input-info .quantity i {
    font-size: 30px;
    cursor: pointer;
    opacity: .9;
}

    #product-details #details-container .input-info .quantity i:hover {
        opacity: 1;
    }

#product-details #details-container .input-info .confirmation,
#product-details #details-container .input-info .confirmation button {
    height: 100%;
    width: 100%;
}

    #product-details #details-container .input-info .confirmation button .add-product-button-container {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        opacity: .9;
        transition: all .2s ease-in-out;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-size: 16px;
        color: #fff;
    }

        #product-details #details-container .input-info .confirmation button .add-product-button-container:hover {
            opacity: 1;
        }

#product-details .product-options-wrapper {
    margin: 10px 0;
}

    #product-details .product-options-wrapper > .option-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 10px;
        border-radius: 3px;
        height: 50px;
        margin-bottom: 5px;
    }

    #product-details .product-options-wrapper > .option-header span {
        font-size: 14px;
    }

        #product-details .product-options-wrapper > .option-header small {
            font-size: 12px;
            margin-top: 5px;
        }

    #product-details .product-options-wrapper .option-header.option-success {
        position: relative;
    }

        #product-details .product-options-wrapper .option-header.option-success i {
            position: absolute;
            right: 10px;
            bottom: 10px;
            font-size: 12px;
            color: var(--product-option-success-color);
        }

        #product-details .product-options-wrapper .option-header.option-success .spanObrigatorio {
            background-color: var(--brand-color);
            border-radius: 20px;
            padding: 3px 5px 3px 5px;
            position: absolute;
            right: 30px;
            bottom: 10px;
            font-size: 8px;
            color: var(--default-color);
        }

    #product-details .product-options-wrapper .product-option-item {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid;
        height: 58px;
        justify-content: center;
    }

    #product-details .product-options-wrapper .product-options-list {
        display: flex;
        flex-direction: column;
    }

    #product-details .product-options-wrapper .product-option-name {
        font-size: 14px;
        padding: 5px 10px;
    }

    #product-details .product-options-wrapper .product-option-values {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        padding: 0 10px;
        align-items: center;
    }

    #product-details .product-options-wrapper .product-option-quantity {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        #product-details .product-options-wrapper .product-option-quantity input {
            width: 24px;
            height: 24px;
            text-align: center;
            border: 1px solid;
        }

        #product-details .product-options-wrapper .product-option-quantity i {
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

#product-details .image-wrapper {
    height: 250px;
    position: relative;
}

    #product-details .image-wrapper .swiper-container,
    #product-details .image-wrapper .swiper-slide {
        height: 250px !important;
    }

#product-details .photo-button-prev,
#product-details .photo-button-next {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 30px;
    text-shadow: 0 1px 1px rgba(0,0,0,.6);
    width: 35px;
    z-index: 1;
    top: 0;
}

#product-details .photo-button-next {
    right: 0;
}

#product-details .photo-button-prev {
    left: 0;
}
@media only screen and (max-width: 640px) {
    #product-details #details-container .input-info .confirmation button .add-product-button-container {
        font-size: 14px;
    }

    #product-details #details-container .product-info img {
        margin-top: 0;
    }
}
