/*==========  Desktop First Method  ==========*/

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
    .arrow-price {
        text-align: center;
    }

    .ipad-layer .ipad-main {
        display: block;
        margin: 0 auto;
    }

    .l-1 {
        left: 152px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .l-1 {
        left: 11%;
        width: 76%;
        top: 7%;
    }

    .ipad-main {
        width: 100%;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    .ipad-main {
        width: 100%;
    }

    .l-1 {
        left: 12%;
        width: 74%;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
    .l-1 {
        left: 13%;
        width: 72%;
    }
}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
    .gallery-image img {
        height: 293px;
    }
}