
/* Layers */

.blur {

    -webkit-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);

}

.shadow {

    -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.3);

}

.image {

    position: relative;

    width: auto;
    height: 100%;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}


/* Animations */

.animated {

    transition: all 0.3s;

}

/* Cancel button */

.cancel-button {

    position: absolute;

    top: 10px;
    right: 10px;

    width: 45px;
    height: 45px;

}



/* Animated view */

.animated-view:hover {
    transform: scale(0.9);
}

.container-noscroll {

    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

}

.container-scroll-x {

    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    overflow-x: auto;
    overflow-y: hidden;

}

.container-scroll-y {

    position: absolute;

    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    overflow-x: hidden;
    overflow-y: auto;

}
