/*RESET*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

thead {
    font-weight: 600;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    outline: none !important;
    box-shadow: none;
}

input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

/*--- Common Classes---------------------*/
::placeholder {
    color: #838383
}

.fix {
    overflow: hidden;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.section {
    float: left;
    width: 100%;
}

.f-right {
    float: right;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.bg-img {
    background-position: center center;
    background-size: cover;
}

.position-relative {
    position: relative;
}

.height-100vh {
    height: 100vh !important;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
    outline: none !important;
    box-shadow: none;
}

.bg-grey-9 {
    background-color: $color-grey-9;
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-20 {
    border-radius: 20px;
}

.img-hover-scale {
    img {
        @include transform-duration-5s;
    }

    &:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);

        @include transform-duration-5s;
    }
}

.hover-up {
    transition: all .25s cubic-bezier(.02, .01, .47, 1);

    &:hover {
        transform: translateY(-5px);
        transition: all .25s cubic-bezier(.02, .01, .47, 1);
    }
}

.text-brand {
    color: $color-brand !important;
}

.text-primary {
    color: $color-primary !important;
}

.text-warning {
    color: $color-warning !important;
}

.text-danger {
    color: $color-danger !important;
}

.text-success {
    color: $color-success !important;
}

.text-info {
    color: $color-info !important;
}

.text-grey-4 {
    color: $color-grey-4 !important;
}

.text-muted {
    color: $color-muted !important;
}

.text-grey-5, .text-grey-5 a, .text-hover-grey-5:hover {
    color: #c1c7cf !important;
}

.bg-brand {
    background-color: $color-brand !important;
}

.bg-primary {
    background-color: $color-primary !important;
}

.bg-warning {
    background-color: $color-warning !important;
}

.bg-danger {
    background-color: $color-danger !important;
}

.bg-success {
    background-color: $color-success !important;
}

.bg-info {
    background-color: $color-info !important;
}

.bg-grey-4 {
    background-color: $color-grey-4 !important;
}

.flex-horizontal-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.h-500 {
    min-height: 500px;
}

.border {
    border: 1px solid #eee !important;
}

.box-shadow-outer-6 {
    -webkit-box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 22px 0 rgba(78, 42, 222, 0.09);
    box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 22px 0 rgba(78, 42, 222, 0.09);

    &:hover {
        -webkit-box-shadow: 0 0 15px 0 rgba(78, 42, 222, 0.03), 0 8px 22px 0 rgba(78, 42, 222, 0.09);
        box-shadow: 0 0 15px 0 rgba(78, 42, 222, 0.03), 0 8px 22px 0 rgba(78, 42, 222, 0.09);
    }
}

.box-shadow-outer-7 {
    -webkit-box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);
    box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);

    &:hover {
        -webkit-box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
        box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
    }
}

.box-shadow-outer-3, .box-hover-shadow-outer-3:hover {
    box-shadow: 0 5px 16px 0 rgba(118, 126, 173, 0.09);
}

/*****************************
*********  BORDER  *****
******************************/
.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-dotted {
    border-style: dotted !important
}

.border-solid {
    border-style: solid !important
}

.border-double {
    border-style: double !important
}

.border-dashed {
    border-style: dashed !important
}

.border-brand {
    border-color: $color-brand !important
}

.border-muted {
    border-color: #f7f8f9;
}

.section-border {
    border-top: 1px solid #e6e9ec;
    border-bottom: 1px solid #e6e9ec;
}

.border-color-1 {
    border-color: #e0dede;
}
