@import url(https://fonts.googleapis.com/css?family=Lato:300);


.bell {
    width: 30px;
    height: 30px;
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 0.4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
    margin-right: 0px !important;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(30deg);
    }

    1% {
        -webkit-transform: rotateZ(-30deg);
    }

    3% {
        -webkit-transform: rotateZ(30deg);
    }

    5% {
        -webkit-transform: rotateZ(-30deg);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(30deg);
    }

    1% {
        -moz-transform: rotate(-30deg);
    }

    3% {
        -moz-transform: rotate(30deg);
    }

    5% {
        -moz-transform: rotate(-30deg);
    }
}

@keyframes ring {
    0% {
        transform: rotate(30deg);
    }

    33% {
        transform: rotate(-30deg);
    }

    66% {
        transform: rotate(30deg);
    }

    100% {
        transform: rotate(-30deg);
    }
}


/* -------------- Clock -------------- */

.clock {
    border-radius: 60px;
    border: 3px solid #fff;
    height: 80px;
    width: 80px;
    position: relative;
    top: 28%;
    top: -webkit-calc(50% - 43px);
    top: calc(50% - 43px);
    left: 35%;
    left: -webkit-calc(50% - 43px);
    left: calc(50% - 43px);
}

    .clock:after {
        content: "";
        position: absolute;
        background-color: #fff;
        top: 2px;
        left: 48%;
        height: 38px;
        width: 4px;
        border-radius: 5px;
        -webkit-transform-origin: 50% 97%;
        transform-origin: 50% 97%;
        -webkit-animation: grdAiguille 2s linear infinite;
        animation: grdAiguille 2s linear infinite;
    }

@-webkit-keyframes grdAiguille {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes grdAiguille {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clock:before {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 6px;
    left: 48%;
    height: 35px;
    width: 4px;
    border-radius: 5px;
    -webkit-transform-origin: 50% 94%;
    transform-origin: 50% 94%;
    -webkit-animation: ptAiguille 12s linear infinite;
    animation: ptAiguille 12s linear infinite;
}

@-webkit-keyframes ptAiguille {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes ptAiguille {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* -------------- Sablier -------------- */

.hourglass {
    position: relative;
    height: 80px;
    width: 80px;
    top: 28%;
    top: -webkit-calc(50% - 43px);
    top: calc(50% - 43px);
    left: 35%;
    left: -webkit-calc(50% - 43px);
    left: calc(50% - 43px);
    border: 3px solid #fff;
    border-radius: 80px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: hourglass 2s ease-in-out infinite;
    animation: hourglass 2s ease-in-out infinite;
}

    .hourglass:before {
        content: "";
        position: absolute;
        top: 8px;
        left: 18px;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 37px 22px 0 22px;
        border-color: #fff transparent transparent transparent;
    }

    .hourglass:after {
        content: "";
        position: absolute;
        top: 35px;
        left: 18px;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 22px 37px 22px;
        border-color: transparent transparent #fff transparent;
    }

@-webkit-keyframes hourglass {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
    }
}

@keyframes hourglass {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

/* -------------- Loader1 -------------- */

.loader1 {
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 80px;
    border: 3px solid rgba(255,255,255, .7);
    top: 28%;
    top: -webkit-calc(50% - 43px);
    top: calc(50% - 43px);
    left: 35%;
    left: -webkit-calc(50% - 43px);
    left: calc(50% - 43px);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: loader1 3s linear infinite;
    animation: loader1 3s linear infinite;
}

    .loader1:after {
        content: "";
        position: absolute;
        top: -5px;
        left: 20px;
        width: 11px;
        height: 11px;
        border-radius: 10px;
        background-color: #fff;
    }

@-webkit-keyframes loader1 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loader1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* -------------- loader2 -------------- */

.loader2 {
    position: relative;
    width: 5px;
    height: 5px;
    top: 49%;
    top: -webkit-calc(50% - 43px);
    top: calc(50% - 2.5px);
    left: 49%;
    left: -webkit-calc(50% - 43px);
    left: calc(50% - 2.5px);
    background-color: #fff;
    border-radius: 50px;
}

    .loader2:before {
        content: "";
        position: absolute;
        top: -38px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        border-radius: 0 50px 0px 0;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, .1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-animation: loader2 1.5s linear infinite;
        animation: loader2 1.5s linear infinite;
    }

    .loader2:after {
        content: "";
        position: absolute;
        top: 2px;
        right: 2px;
        border-bottom: 3px solid #fff;
        border-left: 3px solid #fff;
        border-radius: 0 0px 0px 50px;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, .1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        -webkit-animation: loader2 1.5s linear infinite;
        animation: loader2 1.5s linear infinite;
    }



@-webkit-keyframes loader2 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loader2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* -------------- loader3 -------------- */

.loader3 {
    position: relative;
    width: 150px;
    height: 20px;
    top: 45%;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
    left: 25%;
    left: -webkit-calc(50% - 75px);
    left: calc(50% - 75px);
}

    .loader3:after {
        content: "DOWNLOAD ...";
        color: #fff;
        font-family: Lato,"Helvetica Neue";
        font-weight: 200;
        font-size: 16px;
        position: absolute;
        width: 100%;
        height: 20px;
        line-height: 20px;
        left: 0;
        top: 0;
        background-color: #e74c3c;
        z-index: 1;
    }

    .loader3:before {
        content: "";
        position: absolute;
        background-color: #fff;
        top: -5px;
        left: 0px;
        height: 30px;
        width: 0px;
        z-index: 0;
        opacity: 1;
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        -webkit-animation: loader3 10s ease-in-out infinite;
        animation: loader3 10s ease-in-out infinite;
    }



@-webkit-keyframes loader3 {
    0% {
        width: 0px;
    }

    70% {
        width: 100%;
        opacity: 1;
    }

    90% {
        opacity: 0;
        width: 100%;
    }

    100% {
        opacity: 0;
        width: 0px;
    }
}

@keyframes loader3 {
    0% {
        width: 0px;
    }

    70% {
        width: 100%;
        opacity: 1;
    }

    90% {
        opacity: 0;
        width: 100%;
    }

    100% {
        opacity: 0;
        width: 0px;
    }
}

/* -------------- loader4 -------------- */

.loader4 {
    position: relative;
    width: 100%;
    height: 60px;
    margin: 30px 0px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
}

    .loader4:before {
        content: "";
        position: absolute;
        background-color: rgba(0, 0, 0, 0.20);
        top: 0px;
        left: 0px;
        height: 40px;
        width: 0px;
        z-index: 0;
        opacity: 1;
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        -webkit-animation: loader4 10s ease-in-out infinite;
        animation: loader4 10s ease-in-out infinite;
        padding: 10px;
    }

    .loader4:after {
        content: "DOWNLOAD ...";
        font-family: Lato,"Helvetica Neue";
        font-weight: 700;
        font-size: 16px;
        position: absolute;
        width: 100%;
        height: 40px;
        line-height: 40px;
        left: 0;
        top: 0;
        padding: 10px;
    }

@-webkit-keyframes loader4 {
    0% {
        width: 0px;
    }

    70% {
        width: 100%;
        opacity: 1;
    }

    90% {
        opacity: 0;
        width: 100%;
    }

    100% {
        opacity: 0;
        width: 0px;
    }
}

@keyframes loader4 {
    0% {
        width: 0px;
    }

    70% {
        width: 100%;
        opacity: 1;
    }

    90% {
        opacity: 0;
        width: 100%;
    }

    100% {
        opacity: 0;
        width: 0px;
    }
}

/* -------------- loader5 -------------- */
.loader5 {
    position: relative;
    width: 150px;
    height: 20px;
    top: 45%;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
    left: 25%;
    left: -webkit-calc(50% - 75px);
    left: calc(50% - 75px);
    background-color: rgba(255,255,255,0.2);
}

    .loader5:after {
        content: "DOWNLOAD ...";
        color: #fff;
        font-family: Lato,"Helvetica Neue";
        font-weight: 200;
        font-size: 16px;
        position: absolute;
        width: 100%;
        height: 20px;
        line-height: 20px;
        left: 0;
        top: 0;
    }

    .loader5:before {
        content: "";
        position: absolute;
        background-color: #fff;
        top: 0px;
        height: 20px;
        width: 0px;
        z-index: 0;
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        -webkit-animation: loader5 7s ease-in-out infinite;
        animation: loader5 7s ease-in-out infinite;
    }

@-webkit-keyframes loader5 {
    0% {
        width: 0px;
        left: 0px
    }

    48% {
        width: 100%;
        left: 0px
    }

    50% {
        width: 100%;
        right: 0px
    }

    52% {
        width: 100%;
        right: 0px
    }

    100% {
        width: 0px;
        right: 0px
    }
}

@keyframes loader5 {
    0% {
        width: 0px;
        left: 0px
    }

    48% {
        width: 100%;
        left: 0px
    }

    50% {
        width: 100%;
        right: 0px
    }

    52% {
        width: 100%;
        right: 0px
    }

    100% {
        width: 0px;
        right: 0px
    }
}

/* -------------- loader6 -------------- */

.loader6 {
    position: relative;
    width: 12px;
    height: 12px;
    top: 46%;
    top: -webkit-calc(50% - 6px);
    top: calc(50% - 6px);
    left: 46%;
    left: -webkit-calc(50% - 6px);
    left: calc(50% - 6px);
    border-radius: 12px;
    background-color: #fff;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: loader6 1s ease-in-out infinite;
    animation: loader6 1s ease-in-out infinite;
}

    .loader6:before {
        content: "";
        position: absolute;
        background-color: rgba(255, 255, 255, .5);
        top: 0px;
        left: -25px;
        height: 12px;
        width: 12px;
        border-radius: 12px;
    }

    .loader6:after {
        content: "";
        position: absolute;
        background-color: rgba(255, 255,255,.5);
        top: 0px;
        left: 25px;
        height: 12px;
        width: 12px;
        border-radius: 12px;
    }


@-webkit-keyframes loader6 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(180deg);
    }
}

@keyframes loader6 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

/* -------------- loader7 -------------- */

.loader7 {
    position: relative;
    width: 40px;
    height: 40px;
    top: 40%;
    top: -webkit-calc(50% - 20px);
    top: calc(50% - 20px);
    left: 43%;
    left: -webkit-calc(50% - 20px);
    left: calc(50% - 20px);
    background-color: rgba(255, 255, 255, .2);
}

    .loader7:before {
        content: "";
        position: absolute;
        background-color: #fff;
        height: 10px;
        width: 10px;
        border-radius: 10px;
        -webkit-animation: loader7 2s ease-in-out infinite;
        animation: loader7 2s ease-in-out infinite;
    }

    .loader7:after {
        content: "";
        position: absolute;
        background-color: #fff;
        top: 0px;
        left: 0px;
        height: 40px;
        width: 0px;
        z-index: 0;
        opacity: 1;
        -webkit-animation: loader72 10s ease-in-out infinite;
        animation: loader72 10s ease-in-out infinite;
    }


@-webkit-keyframes loader7 {
    0% {
        left: -12px;
        top: -12px;
    }

    25% {
        left: 42px;
        top: -12px;
    }

    50% {
        left: 42px;
        top: 42px;
    }

    75% {
        left: -12px;
        top: 42px;
    }

    100% {
        left: -12px;
        top: -12px;
    }
}

@keyframes loader7 {
    0% {
        left: -12px;
        top: -12px;
    }

    25% {
        left: 42px;
        top: -12px;
    }

    50% {
        left: 42px;
        top: 42px;
    }

    75% {
        left: -12px;
        top: 42px;
    }

    100% {
        left: -12px;
        top: -12px;
    }
}

@-webkit-keyframes loader72 {
    0% {
        width: 0px;
    }

    70% {
        width: 40px;
        opacity: 1;
    }

    90% {
        opacity: 0;
        width: 40px;
    }

    100% {
        opacity: 0;
        width: 0px;
    }
}

@keyframes loader72 {
    0% {
        width: 0px;
    }

    70% {
        width: 40px;
        opacity: 1;
    }

    90% {
        opacity: 0;
        width: 40px;
    }

    100% {
        opacity: 0;
        width: 0px;
    }
}

/* -------------- loader8 -------------- */

.loader8 {
    position: relative;
    width: 80px;
    height: 80px;
    top: 28%;
    top: -webkit-calc(50% - 43px);
    top: calc(50% - 43px);
    left: 35%;
    left: -webkit-calc(50% - 43px);
    left: calc(50% - 43px);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .2);
    border-width: 40px;
    border-style: double;
    border-color: transparent #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: loader8 2s linear infinite;
    animation: loader8 2s linear infinite;
}




@-webkit-keyframes loader8 {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes loader8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* -------------- loader9 -------------- */

.loader9:before {
    content: "";
    position: absolute;
    top: 0px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
    -webkit-animation: loader9g 3s ease-in-out infinite;
    animation: loader9g 3s ease-in-out infinite;
}

.loader9 {
    position: relative;
    width: 12px;
    height: 12px;
    top: 46%;
    left: 46%;
    border-radius: 12px;
    background-color: #fff;
}


    .loader9:after {
        content: "";
        position: absolute;
        top: 0px;
        height: 12px;
        width: 12px;
        border-radius: 12px;
        -webkit-animation: loader9d 3s ease-in-out infinite;
        animation: loader9d 3s ease-in-out infinite;
    }

@-webkit-keyframes loader9g {
    0% {
        left: -25px;
        background-color: rgba(255, 255, 255, .8);
    }

    50% {
        left: 0px;
        background-color: rgba(255, 255, 255, .1);
    }

    100% {
        left: -25px;
        background-color: rgba(255, 255, 255, .8);
    }
}

@keyframes loader9g {
    0% {
        left: -25px;
        background-color: rgba(255, 255, 255, .8);
    }

    50% {
        left: 0px;
        background-color: rgba(255, 255, 255, .1);
    }

    100% {
        left: -25px;
        background-color: rgba(255, 255, 255, .8);
    }
}


@-webkit-keyframes loader9d {
    0% {
        left: 25px;
        background-color: rgba(255, 255, 255, .8);
    }

    50% {
        left: 0px;
        background-color: rgba(255, 255, 255, .1);
    }

    100% {
        left: 25px;
        background-color: rgba(255, 255, 255, .8);
    }
}

@keyframes loader9d {
    0% {
        left: 25px;
        background-color: rgba(255, 255, 255, .8);
    }

    50% {
        left: 0px;
        background-color: rgba(255, 255, 255, .1);
    }

    100% {
        left: 25px;
        background-color: rgba(255, 255, 255, .8);
    }
}

/* -------------- loader10 -------------- */

.loader10:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -25px;
    height: 12px;
    width: 12px;
    border-radius: 12px;
    -webkit-animation: loader10g 3s ease-in-out infinite;
    animation: loader10g 3s ease-in-out infinite;
}

.loader10 {
    position: relative;
    width: 12px;
    height: 12px;
    top: 46%;
    left: 46%;
    border-radius: 12px;
    -webkit-animation: loader10m 3s ease-in-out infinite;
    animation: loader10m 3s ease-in-out infinite;
}


    .loader10:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 25px;
        height: 10px;
        width: 10px;
        border-radius: 10px;
        -webkit-animation: loader10d 3s ease-in-out infinite;
        animation: loader10d 3s ease-in-out infinite;
    }

@-webkit-keyframes loader10g {
    0% {
        background-color: rgba(255, 255, 255, .2);
    }

    25% {
        background-color: rgba(255, 255, 255, 1);
    }

    50% {
        background-color: rgba(255, 255, 255, .2);
    }

    75% {
        background-color: rgba(255, 255, 255, .2);
    }

    100% {
        background-color: rgba(255, 255, 255, .2);
    }
}

@keyframes loader10g {
    0% {
        background-color: rgba(255, 255, 255, .2);
    }

    25% {
        background-color: rgba(255, 255, 255, 1);
    }

    50% {
        background-color: rgba(255, 255, 255, .2);
    }

    75% {
        background-color: rgba(255, 255, 255, .2);
    }

    100% {
        background-color: rgba(255, 255, 255, .2);
    }
}

@-webkit-keyframes loader10m {
    0% {
        background-color: rgba(255, 255, 255, .2);
    }

    25% {
        background-color: rgba(255, 255, 255, .2);
    }

    50% {
        background-color: rgba(255, 255, 255, 1);
    }

    75% {
        background-color: rgba(255, 255, 255, .2);
    }

    100% {
        background-color: rgba(255, 255, 255, .2);
    }
}

@keyframes loader10m {
    0% {
        background-color: rgba(255, 255, 255, .2);
    }

    25% {
        background-color: rgba(255, 255, 255, .2);
    }

    50% {
        background-color: rgba(255, 255, 255, 1);
    }

    75% {
        background-color: rgba(255, 255, 255, .2);
    }

    100% {
        background-color: rgba(255, 255, 255, .2);
    }
}

@-webkit-keyframes loader10d {
    0% {
        background-color: rgba(255, 255, 255, .2);
    }

    25% {
        background-color: rgba(255, 255, 255, .2);
    }

    50% {
        background-color: rgba(255, 255, 255, .2);
    }

    75% {
        background-color: rgba(255, 255, 255, 1);
    }

    100% {
        background-color: rgba(255, 255, 255, .2);
    }
}

@keyframes loader10d {
    0% {
        background-color: rgba(255, 255, 255, .2);
    }

    25% {
        background-color: rgba(255, 255, 255, .2);
    }

    50% {
        background-color: rgba(255, 255, 255, .2);
    }

    75% {
        background-color: rgba(255, 255, 255, 1);
    }

    100% {
        background-color: rgba(255, 255, 255, .2);
    }
}


img {
    max-width: 100%;
}

/* Typography
================================================== */
body {
	/*font-family: "Montserrat"!important;*/
}

/* Titles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 0px;
}

h1 {
    font-size: 40px;
    font-weight: 200;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    font-weight: 200;
    line-height: 1.25;
}

h3 {
    font-size: 30px;
    line-height: 1.3;
}

h4 {
    font-size: 20px;
    line-height: 1.4;
}

h5 {
    font-size: 15.5px;
    line-height: 1.5;
}

h6 {
    font-size: 13px;
    line-height: 1.6;
}

.title-huge {
    font-size: 80px;
    font-weight: 100;
    line-height: 1.1;
}

.title-large {
    font-size: 60px;
    font-weight: 100;
    line-height: 1.2;
}

.title-medium {
    font-size: 50px;
    font-weight: 200;
    line-height: 1.2;
}

.title-small {
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons
================================================== */
.color-white-opacity {
	background: rgba(255,255,255,0.6)!important;
}

.color-facebook{
	background: #3b5998!important;
}



/* Code
================================================== */

code {
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    font-size: 90%;
    margin: 0 .2rem;
    padding: .2rem .5rem;
    white-space: nowrap;
}

pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}

/* Tables
================================================== */

th,
td {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding: 12px 15px;
    text-align: left;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}


/* Spacing
================================================== */


/* Margins */

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-35 {
    margin-bottom: 35px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-45 {
    margin-bottom: 45px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.margin-bottom-65 {
    margin-bottom: 65px !important;
}

.margin-bottom-70 {
    margin-bottom: 70px !important;
}

.margin-bottom-75 {
    margin-bottom: 75px !important;
}

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.margin-bottom-100 {
    margin-bottom: 100px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-25 {
    margin-top: 25px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-top-35 {
    margin-top: 35px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-top-45 {
    margin-top: 45px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-top-60 {
    margin-top: 60px !important;
}

.margin-top-65 {
    margin-top: 65px !important;
}

.margin-top-70 {
    margin-top: 70px !important;
}

.margin-top-75 {
    margin-top: 75px !important;
}

.margin-top-80 {
    margin-top: 80px !important;
}

.margin-top-100 {
    margin-top: 100px !important;
}

.no-margin {
	margin: 0px!important;
}

/* Offsets */

.offset-bottom-5 {
    padding-bottom: 5px !important;
}

.offset-bottom-10 {
    padding-bottom: 10px !important;
}

.offset-bottom-15 {
    padding-bottom: 15px !important;
}

.offset-bottom-20 {
    padding-bottom: 20px !important;
}

.offset-bottom-25 {
    padding-bottom: 25px !important;
}

.offset-bottom-30 {
    padding-bottom: 30px !important;
}

.offset-bottom-35 {
    padding-bottom: 35px !important;
}

.offset-top-5 {
    padding-top: 5px !important;
}

.offset-top-10 {
    padding-top: 10px !important;
}

.offset-top-15 {
    padding-top: 15px !important;
}

.offset-top-20 {
    padding-top: 20px !important;
}

.offset-top-25 {
    padding-top: 25px !important;
}

.offset-top-30 {
    padding-top: 30px !important;
}

.offset-top-35 {
    padding-top: 35px !important;
}

.no-padding {
	padding: 0px!important;
}

/* Blockquote
================================================== */

blockquote {
    font-family: "Montserrat";
    margin: 0px;
}


/* Utilities
================================================== */

.vertical-bottom {
    vertical-align: bottom;
}

.vertical-top {
    vertical-align: top;
}

.vertical-center {
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.text-underline {
	text-decoration: underline;
}

/* Selection */

.u-unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


/* Display */

.display-block {
    display: block;
}

.display-table {
    display: table;
}

.display-inline {
    display: inline;
}

.display-inline-block {
    display: inline-block;
}


/* Text formating */

.text-normal {
    font-style: normal!important;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-large {
    font-size: 24px;
    line-height: 30px;
}

.text-medium {
    font-size: 18px;
    line-height: 24px;
}

.text-small {
    font-size: 14px;
    line-height: 22px;
}

.text-thiny {
    font-size: 12px!important;
}

.text-extrat-thiny {
    font-size: 10px!important;
}

.text-extrat-bold {
    font-weight: 700 !important;
}

.text-bold {
    font-weight: 600 !important;
}

.text-semi-bold {
    font-weight: 500 !important;
}

.text-regular {
    font-weight: 400 !important;
}

.text-light {
    font-weight: 300 !important;
}

.text-extralight {
    font-weight: 200 !important;
}

.text-thin {
    font-weight: 100 !important;
}

/* Colors */

.gray-text,
.gray-text a {
	color: gray!important;
}

.lightgray-text,
.lightgray-text a {
	color: #EFEFEF!important;
}

.black-text,
.black-text a {
	color: #000000!important;
}

.white-text,
.white-text a {
	color: 000000!important;
}
/*///////////////////////*/
