* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

input:focus,
a:focus {
    outline: none;
}

html {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    font-size: 16px;
}

html, body {
    height: 100%;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.minFullHeight {
    min-height: 100vh;
}

.hidden {
    display: none;
}

.alignParent {
    position: relative;
    width: 100%;
    height: 100%;
}

.alignCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);       /* IE 9 */
    -webkit-transform: translate(-50%, -50%);   /* Chrome, Safari, Opera */
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.alignVerticalCenter {
    position: absolute;
    top: 50%;
    -ms-transform: translate(0%, -50%);       /* IE 9 */
    -webkit-transform: translate(0%, -50%);   /* Chrome, Safari, Opera */
    -moz-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.alignHorizontalCenter {
    margin: 0 auto;
    display: block;
}

.alignBottom {
    position: absolute;
    bottom: 0;
}

.alignTop {
    position: absolute;
    top: 0;
}

.verticalSpace {
    height: 1.25em;
}

.horizontalSpace {
    width: 1.25em;
}

.disabledControl {
    pointer-events: none;
    opacity: 0.4;
}

.backgroundImage {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.fullSizeToParent {
    position: absolute;
    width: 100%;
    height: 100%;
}

.fullDivImg > img {
    display: block;
    width: 100%;
    height: auto;
}

.text-center {
	text-align: center;
}