﻿/*TEMPLATE*/
@media(min-width:0){

}

/*BACKGROUND POSITION*/
@media(min-width:0) {
    .img-pos-L {
        background-position: left;
    }

    .img-pos-C {
        background-position: center;
    }

    .img-pos-R {
        background-position: right;
    }
    .img-pos-25-pc {
        background-position: 25%;
    }
}

/*BACKGROUND SIZE*/
@media(min-width:0) {
    .img-siz-cover{
        background-size:cover;
    }
    .img-siz-contain {
        background-size: contain;
    }
    .img-siz-100-pc {
        background-size: 100%;
    }
    .img-siz-050-pc {
        background-size: 50%;
    }
    .img-siz-020-pc {
        background-size: 20%;
    }
    .img-siz-010-pc {
        background-size: 10%;
    }
    .img-siz-005-pc {
        background-size: 5%;
    }
}

/*BACKGROUND REPEAT*/
@media(min-width:0) {
    .img-rp-norepeat {
        background-repeat: no-repeat;
    }

    .img-rp-repeat {
        background-repeat: repeat;
    }
}

/*BACKGROUND IMAGE*/
@media(min-width:0) {
    .img-hero {
        background-image: url('../Resources/hero.png');
    }
    .img-loading {
        background-image: url('../Resources/loading01.gif');
    }
    .img-left {
        background-image: url('../Resources/left-arrow.svg');
    }
}
