/*
==================
 - MEDIA QUERIES
==================
*/
/*
==================
 - CORES
==================
*/
/*
==================
 - GENERAL
==================
*/
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    text-rendering: optimizeLegibility;
    color: #333333;
    background: #ffffff;
}

body {
    overflow-y: auto;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
}

p {
    font-size: 14px;
    line-height: 22px;
    color: #333333;
}

a,
a:hover,
a:active,
a:focus,
object,
embed {
    outline: 0;
    cursor: pointer;
}

a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #262626;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

textarea {
    resize: none;
    outline: none;
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    font-family: "Lato", Tahoma, sans-serif;
    color: #333333;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-family: "Lato", Tahoma, sans-serif;
    color: #333333;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "Lato", Tahoma, sans-serif;
    color: #333333;
}

:-ms-input-placeholder {
    font-family: "Lato", Tahoma, sans-serif;
    color: #333333;
}

.wrap {
    height: auto;
    overflow: hidden;
}

.row {
    margin: 0;
    padding: 0;
}

.clear-both {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.font-bold {
    font-weight: bold;
}

.font-normal {
    font-weight: normal;
}

.uppercase {
    text-transform: uppercase;
}

.border-right {
    border-right: 1px solid #666666;
}

.transition {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.shadow {
    -webkit-box-shadow: 0px 0px 10px 0px #323232;
    -moz-box-shadow: 0px 0px 10px 0px #323232;
    box-shadow: 0px 0px 10px 0px #323232;
}

.text-shadow {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}

.center {
    display: table-cell;
    vertical-align: middle;
}

.marpad {
    margin: 0;
    padding: 0;
}

.p-right-10 {
    padding-right: 10px;
}

.p-left-10 {
    padding-left: 10px;
}

.p-right-20 {
    padding-right: 20px;
}

.p-left-20 {
    padding-left: 20px;
}

.p-right-0 {
    padding-right: 0;
}

.p-left-0 {
    padding-left: 0;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 "fontello";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

/* ========================================================
   MEDIA QUERIES
   ======================================================== */
@media (max-width: 767px) {
    .container-fluid {
        padding: 0;
    }

    input[type="text"],
    input[type="email"],
    input[type="search"],
    input[type="password"] {
        -webkit-appearance: caret;
        -moz-appearance: caret;
        /* mobile firefox too! */

    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid {
        padding: 0;
    }

    input[type="text"],
    input[type="email"],
    input[type="search"],
    input[type="password"] {
        -webkit-appearance: caret;
        -moz-appearance: caret;
        /* mobile firefox too! */

    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container-fluid {
        padding: 0 50px;
    }

    input[type="text"],
    input[type="email"],
    input[type="search"],
    input[type="password"] {
        -webkit-appearance: caret;
        -moz-appearance: caret;
        /* mobile firefox too! */

    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding: 0 100px;
    }
}
