#mainImg {
    width: 55% !important;
    cursor: zoom-in;
    transition: transform 0.3s ease-in-out;
}

#mainImg.zoom-active {
    cursor: zoom-out;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.image-wrapper.zoom-enabled {
    overflow: auto;
}

#mainImg.zoomed {
    transform: scale(2);
    transform-origin: center center;
}

.small-img-group {
    display: flex;
    width: 75% !important;
    justify-content: space-between;
    margin: auto;
}

.single-product input {

    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;

}

.single-product input:focus {

    outline: none;

}

.single-product .buy-btn {
    background-color: #fb774b;
    opacity: 1;
    transition: 0.4s all;
}

.single-product .buy-btn:hover {

    background-color: #222222;
}


/*Responsividade para ecras medios*/
@media (max-width: 576px) {

    #mainImg {
        width: 50% !important;

    }

}


/*Responsividade para ecras pequenos*/
@media (max-width: 476px) {

    #mainImg {
        width: 50% !important;

    }

}


select#color,
select#size,
input#quantity,
select#storage {
    text-align: center;
    padding: 5px;

    margin: 20px 5px;
    width: 120px;
}