@charset "UTF-8";

/*
 POSITIONING
*/
.absolute {
    position: absolute !important;
}
.fixed {
    position: fixed !important;
    top: 0;
}
.p-t-l {
    position: absolute;
    left: 0;
    top: 0;
}
.p-t-r {
    position: absolute;
    right: 0;
    top: 0;
}
.p-b-l {
    position: absolute;
    left: 0;
    bottom:0;
}
.p-b-r {
    position: absolute;
    right: 0;
    bottom:0;
}
.fix-b-l {
    position: fixed !important;
    bottom: 0;
    left: 0;
    z-index: 999;
}
/*
 IMAGE
*/
.img-circle {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
.img-rounded {
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

/*
 RESPONSIVE
*/
@media (max-width: 34em) {
	
}
@media (max-width: 48em) {
	
}
@media (max-width: 62em) {
    
}
@media (max-width: 75em) {
   
}


