
/**************** General styles ******************** *
 *  1. html, body
 *  2. Containers
 *  3. Global styles
****************************************************/

/**** 1. html, body ****/

html, body {
    background: #fff;
    /* overflow-x: hidden; */
}
body {
    overflow-x: hidden;
}

/**** 2. Containers ****/

.uk-container {
    max-width: 1250px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}
.uk-container-small {
    max-width: 1030px;
}

/**** 3. Global styles ****/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}
a,
button,
.transition {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.transition-slow {
    -webkit-transition-duration: 1.5s;
    -moz-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
}
.no-transition {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}
*:focus {
    outline: none !important;
}

/**** 4. Misc ****/

/**** Post and Pages WordPress default styling ****/

.alignright {float:right; margin:0 0 1em 1em}
.alignleft {float:left; margin:0 1em 1em 0}
.aligncenter {display: block; margin-left: auto; margin-right: auto}