﻿@font-face {
    font-family: "Oswald-DemiBold";
    src: url("/fonts/Oswald-DemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Oswald-Light";
    src: url("/fonts/Oswald-Light.ttf") format("truetype");
}

.zynred {
    color: #c30a0a !important;
}

/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/

/*
==============================================
slideDown
==============================================
*/


.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(8%);
    }

    65% {
        transform: translateY(-4%);
    }

    80% {
        transform: translateY(4%);
    }

    95% {
        transform: translateY(-2%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    50% {
        -webkit-transform: translateY(8%);
    }

    65% {
        -webkit-transform: translateY(-4%);
    }

    80% {
        -webkit-transform: translateY(4%);
    }

    95% {
        -webkit-transform: translateY(-2%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

/*
==============================================
slideUp
==============================================
*/


.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    50% {
        transform: translateY(-8%);
    }

    65% {
        transform: translateY(4%);
    }

    80% {
        transform: translateY(-4%);
    }

    95% {
        transform: translateY(2%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
    }

    50% {
        -webkit-transform: translateY(-8%);
    }

    65% {
        -webkit-transform: translateY(4%);
    }

    80% {
        -webkit-transform: translateY(-4%);
    }

    95% {
        -webkit-transform: translateY(2%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

/*
==============================================
slideLeft
==============================================
*/

.slideLeftC {
    animation-name: slideLeftC;
    -webkit-animation-name: slideLeftC;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes slideLeftC {
    0% {
        transform: translateX(150%);
    }

    50% {
        transform: translateX(-8%);
    }

    65% {
        transform: translateX(4%);
    }

    80% {
        transform: translateX(-4%);
    }

    95% {
        transform: translateX(2%);
    }

    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideLeftC {
    0% {
        -webkit-transform: translateX(150%);
    }

    50% {
        -webkit-transform: translateX(-8%);
    }

    65% {
        -webkit-transform: translateX(4%);
    }

    80% {
        -webkit-transform: translateX(-4%);
    }

    95% {
        -webkit-transform: translateX(2%);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}


.slideLeft {
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes slideLeft {
    0% {
        transform: translateX(5%);
    }


    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(5%);
    }


    100% {
        -webkit-transform: translateX(0%);
    }
}

/*
==============================================
slideRight
==============================================
*/


.slideRight {
    animation-name: slideRight;
    -webkit-animation-name: slideRight;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes slideRight {
    0% {
        transform: translateX(-5%);
    }



    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(-5%);
    }


    100% {
        -webkit-transform: translateX(0%);
    }
}

/*
==============================================
slideExpandUp
==============================================
*/


.slideExpandUp {
    animation-name: slideExpandUp;
    -webkit-animation-name: slideExpandUp;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}

@keyframes slideExpandUp {
    0% {
        transform: translateY(100%) scaleX(0.5);
    }

    30% {
        transform: translateY(-8%) scaleX(0.5);
    }

    40% {
        transform: translateY(2%) scaleX(0.5);
    }

    50% {
        transform: translateY(0%) scaleX(1.1);
    }

    60% {
        transform: translateY(0%) scaleX(0.9);
    }

    70% {
        transform: translateY(0%) scaleX(1.05);
    }

    80% {
        transform: translateY(0%) scaleX(0.95);
    }

    90% {
        transform: translateY(0%) scaleX(1.02);
    }

    100% {
        transform: translateY(0%) scaleX(1);
    }
}

@-webkit-keyframes slideExpandUp {
    0% {
        -webkit-transform: translateY(100%) scaleX(0.5);
    }

    30% {
        -webkit-transform: translateY(-8%) scaleX(0.5);
    }

    40% {
        -webkit-transform: translateY(2%) scaleX(0.5);
    }

    50% {
        -webkit-transform: translateY(0%) scaleX(1.1);
    }

    60% {
        -webkit-transform: translateY(0%) scaleX(0.9);
    }

    70% {
        -webkit-transform: translateY(0%) scaleX(1.05);
    }

    80% {
        -webkit-transform: translateY(0%) scaleX(0.95);
    }

    90% {
        -webkit-transform: translateY(0%) scaleX(1.02);
    }

    100% {
        -webkit-transform: translateY(0%) scaleX(1);
    }
}

/*
==============================================
expandUp
==============================================
*/


.expandUp {
    animation-name: expandUp;
    -webkit-animation-name: expandUp;
    animation-duration: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes expandUp {
    0% {
        transform: translateY(100%) scale(0.6) scaleY(0.5);
    }

    60% {
        transform: translateY(-7%) scaleY(1.12);
    }

    75% {
        transform: translateY(3%);
    }

    100% {
        transform: translateY(0%) scale(1) scaleY(1);
    }
}

@-webkit-keyframes expandUp {
    0% {
        -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
    }

    60% {
        -webkit-transform: translateY(-7%) scaleY(1.12);
    }

    75% {
        -webkit-transform: translateY(3%);
    }

    100% {
        -webkit-transform: translateY(0%) scale(1) scaleY(1);
    }
}

/*
==============================================
fadeIn
==============================================
*/

.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }

    60% {
        -webkit-transform: scale(1.1);
    }

    80% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

/*
==============================================
expandOpen
==============================================
*/


.expandOpen {
    animation-name: expandOpen;
    -webkit-animation-name: expandOpen;
    animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}

@keyframes expandOpen {
    0% {
        transform: scale(1.8);
    }

    50% {
        transform: scale(0.95);
    }

    80% {
        transform: scale(1.05);
    }

    90% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes expandOpen {
    0% {
        -webkit-transform: scale(1.8);
    }

    50% {
        -webkit-transform: scale(0.95);
    }

    80% {
        -webkit-transform: scale(1.05);
    }

    90% {
        -webkit-transform: scale(0.98);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

/*
==============================================
bigEntrance
==============================================
*/


.bigEntrance {
    animation-name: bigEntrance;
    -webkit-animation-name: bigEntrance;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}

@keyframes bigEntrance {
    0% {
        transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: 0.2;
    }

    30% {
        transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1;
    }

    45% {
        transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    60% {
        transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    75% {
        transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    90% {
        transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
}

@-webkit-keyframes bigEntrance {
    0% {
        -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: 0.2;
    }

    30% {
        -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    75% {
        -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    90% {
        -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
}

/*
==============================================
hatch
==============================================
*/

.hatch {
    animation-name: hatch;
    -webkit-animation-name: hatch;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    visibility: visible !important;
}

@keyframes hatch {
    0% {
        transform: rotate(0deg) scaleY(0.6);
    }

    20% {
        transform: rotate(-2deg) scaleY(1.05);
    }

    35% {
        transform: rotate(2deg) scaleY(1);
    }

    50% {
        transform: rotate(-2deg);
    }

    65% {
        transform: rotate(1deg);
    }

    80% {
        transform: rotate(-1deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes hatch {
    0% {
        -webkit-transform: rotate(0deg) scaleY(0.6);
    }

    20% {
        -webkit-transform: rotate(-2deg) scaleY(1.05);
    }

    35% {
        -webkit-transform: rotate(2deg) scaleY(1);
    }

    50% {
        -webkit-transform: rotate(-2deg);
    }

    65% {
        -webkit-transform: rotate(1deg);
    }

    80% {
        -webkit-transform: rotate(-1deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}


/*
==============================================
bounce
==============================================
*/


.bounce {
    animation-name: bounce;
    -webkit-animation-name: bounce;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
    0% {
        transform: translateY(0%) scaleY(0.6);
    }

    60% {
        transform: translateY(-100%) scaleY(1.1);
    }

    70% {
        transform: translateY(0%) scaleY(0.95) scaleX(1.05);
    }

    80% {
        transform: translateY(0%) scaleY(1.05) scaleX(1);
    }

    90% {
        transform: translateY(0%) scaleY(0.95) scaleX(1);
    }

    100% {
        transform: translateY(0%) scaleY(1) scaleX(1);
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0%) scaleY(0.6);
    }

    60% {
        -webkit-transform: translateY(-100%) scaleY(1.1);
    }

    70% {
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
    }

    80% {
        -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
    }

    90% {
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
    }

    100% {
        -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
    }
}


/*
==============================================
pulse
==============================================
*/

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}

/*
==============================================
floating
==============================================
*/

.floating {
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(8%);
    }

    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }

    50% {
        -webkit-transform: translateY(8%);
    }

    100% {
        -webkit-transform: translateY(0%);
    }
}

/*
==============================================
tossing
==============================================
*/

.tossing {
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
    0% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(-4deg);
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-4deg);
    }

    50% {
        -webkit-transform: rotate(4deg);
    }

    100% {
        -webkit-transform: rotate(-4deg);
    }
}

/*
==============================================
pullUp
==============================================
*/

.pullUp {
    animation-name: pullUp;
    -webkit-animation-name: pullUp;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
    0% {
        transform: scaleY(0.1);
    }

    40% {
        transform: scaleY(1.02);
    }

    60% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.02);
    }

    60% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(1);
    }
}

/*
==============================================
pullDown
==============================================
*/

.pullDown {
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
    0% {
        transform: scaleY(0.1);
    }

    40% {
        transform: scaleY(1.02);
    }

    60% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(0.98);
    }

    80% {
        transform: scaleY(1.01);
    }

    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
    }

    40% {
        -webkit-transform: scaleY(1.02);
    }

    60% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(0.98);
    }

    80% {
        -webkit-transform: scaleY(1.01);
    }

    100% {
        -webkit-transform: scaleY(1);
    }
}

/*
==============================================
stretchLeft
==============================================
*/

.stretchLeft {
    animation-name: stretchLeft;
    -webkit-animation-name: stretchLeft;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
    0% {
        transform: scaleX(0.3);
    }

    40% {
        transform: scaleX(1.02);
    }

    60% {
        transform: scaleX(0.98);
    }

    80% {
        transform: scaleX(1.01);
    }

    100% {
        transform: scaleX(0.98);
    }

    80% {
        transform: scaleX(1.01);
    }

    100% {
        transform: scaleX(1);
    }
}

@-webkit-keyframes stretchLeft {
    0% {
        -webkit-transform: scaleX(0.3);
    }

    40% {
        -webkit-transform: scaleX(1.02);
    }

    60% {
        -webkit-transform: scaleX(0.98);
    }

    80% {
        -webkit-transform: scaleX(1.01);
    }

    100% {
        -webkit-transform: scaleX(0.98);
    }

    80% {
        -webkit-transform: scaleX(1.01);
    }

    100% {
        -webkit-transform: scaleX(1);
    }
}

/*
==============================================
stretchRight
==============================================
*/

.stretchRight {
    animation-name: stretchRight;
    -webkit-animation-name: stretchRight;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
    0% {
        transform: scaleX(0.3);
    }

    40% {
        transform: scaleX(1.02);
    }

    60% {
        transform: scaleX(0.98);
    }

    80% {
        transform: scaleX(1.01);
    }

    100% {
        transform: scaleX(0.98);
    }

    80% {
        transform: scaleX(1.01);
    }

    100% {
        transform: scaleX(1);
    }
}

@-webkit-keyframes stretchRight {
    0% {
        -webkit-transform: scaleX(0.3);
    }

    40% {
        -webkit-transform: scaleX(1.02);
    }

    60% {
        -webkit-transform: scaleX(0.98);
    }

    80% {
        -webkit-transform: scaleX(1.01);
    }

    100% {
        -webkit-transform: scaleX(0.98);
    }

    80% {
        -webkit-transform: scaleX(1.01);
    }

    100% {
        -webkit-transform: scaleX(1);
    }
}

html, body {
    height: 100%;
}

h1 {
    font-size: 35px;
    text-transform: none;
    font-weight: 400;
    padding: 15px 0px 10px;
    text-align: center;
}

    h1.grey {
        color: #656668;
    }

h2 {
    font-size: 36px !important;
    color: #5e656e !important;
    font-weight: 300;
    text-transform: none;
}

    h2 span, .bigbold {
        text-transform: uppercase !important;
        font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-weight: 800;
    }

#spnMessage {
    color: red;
    font-weight: 400;
    margin-left: 15px;
}

.semibold {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 800;
    text-transform: none;
}

.regBold {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 700 !important;
}

.regBoldBig {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.inacativeBG {
    background: url(/Images/inactiveBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.bdbucket {
    background-color: #cccccc;
}

.zynDarkGrey {
    color: #383838 !important;
}

.platbucket {
    background-color: #e1cae2;
}

.goldbucket {
    background-color: #f9dcca;
}

.silverbucket {
    background-color: #e4efd0;
}

.bucket p {
    line-height: 14px;
}

.bucket {
    padding: 8px 0px 1px;
}

.bucketjoin {
    padding: 10px;
    margin-bottom: 50px;
}

h3 {
    padding: 25px 0px 35px;
    color: #266ec8;
    font-weight: 400;
}

h4 {
    font-weight: 400;
    text-transform: none;
}

h5 {
    font-size: 24px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-weight: 900;
}

h6 {
    font-size: 38px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px;
}

.container {
    max-width: 1250px;
}

a {
    cursor: pointer;
}

.navbar ul {
    float: right;
    margin-bottom: 0px;
    margin-top: 0px;
}



.navbar li {
    list-style: none;
    display: inline-block;
    padding: 10px 0px 10px;
    vertical-align: middle;
    font-weight: 400;
    opacity: 1;
    font-size: 14px;
}

    .navbar li a {
        color: #626262;
    }

        .navbar li a:hover {
            color: #266ec8;
        }

.navbar-expanded li a:hover {
    color: white !important;
}

.navbar li .btn-blue {
    opacity: 1;
}

.menuseperators {
    opacity: 1;
    position: relative;
    top: -1px;
    padding-left: 0px;
}

.thin {
    font-weight: 400 !important;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}



.nopadding {
    padding: 0px;
}

.clubMemberBox {
    background-color: #f4f1f1;
    color: #4a535d;
    padding: 10px;
    padding-left: 40px;
}

    .clubMemberBox ul {
        padding-left: 5px;
    }

    .clubMemberBox li {
        list-style: none;
        font-size: 16px;
        color: #4a535d;
        line-height: 26px;
    }

        .clubMemberBox li .fa-plus {
            color: #8a288b;
            padding-right: 15px;
            font-size: 16px;
        }

        .clubMemberBox li span {
            font-weight: 900;
            text-transform: uppercase;
        }

.btn-orange {
    color: white;
    background-color: #f0732e;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 18px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
}

    .btn-orange:hover {
        background-color: #ff9600;
        color: white;
    }

.btn-blue {
    color: white;
    background-color: #266ec8;
    padding: 2px 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

    .btn-blue:hover {
        background-color: #2e7fe5;
        color: white;
    }

.btn-orange-small {
    color: white;
    background-color: #ef712d;
    padding: 2px 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

    .btn-orange-small:hover {
        background-color: #ef882d;
        color: white;
    }

.btn-outline {
    color: #266ec8;
    background-color: transparent;
    padding: 8px 40px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: 2px solid #266ec8;
    text-align: center;
    font-weight: 500 !important;
    margin: 20px;
}

    .btn-outline:hover {
        background-color: #266ec8;
        color: white;
        border: 2px solid #266ec8;
        text-align: center;
    }

img {
    display: block;
}

.elitePro .mobileLogin .inner-addon .fa {
    position: absolute;
    padding: 4px;
    pointer-events: none;
    font-size: 18px;
}

.elitePro .mobileLogin .form-control {
    height: 34px;
    max-width: initial;
}

.navbar .mobileLogin ul {
    float: none;
}

.mobileLogin {
    padding: 20px 15px;
    display: none;
    background-color: #2e2e2e;
    position: fixed;
    width: 100%;
}

    .mobileLogin ul {
        padding-left: 0;
    }

    .mobileLogin li {
        list-style: none;
        display: block;
        padding: 5px 0px 5px;
        vertical-align: middle;
        font-weight: 400;
        opacity: 1;
        font-size: 14px;
    }

.trialContainer {
    max-width: 1170px;
    margin: auto;
}


.normalBold {
    font-weight: 400 !important;
}

.fs20 {
    font-size: 20px;
}

.fs22 {
    font-size: 22px;
}

.fs24 {
    font-size: 24px;
}

.fs25 {
    font-size: 24.5px;
}

.fs26 {
    font-size: 26px;
}

.fs32 {
    font-size: 32px;
}

.fs30 {
    font-size: 30px;
}

.fs46 {
    font-size: 46px;
    line-height: 50px;
}

.f16 {
    font-size: 16px;
}

.trialBox {
    background-color: white;
    padding: 25px 20px;
    border-radius: 3px;
}

    .trialBox.cut {
        padding: 25px 20px 3px 20px;
        border-radius: 3px;
        min-height: 534px;
    }


    .trialBox .form-group {
        margin: 10px 0;
        display: flex;
    }

        .trialBox .form-group div {
            padding: 0 10px;
            margin: 0 -5px;
            min-width: 115px;
        }

            .trialBox .form-group div:first-of-type {
                padding: 0 10px 0 5px;
                margin: 0 -5px;
            }

            .trialBox .form-group div:last-of-type {
                padding: 0 5px 0 10px;
                margin: 0 -5px;
            }

    .trialBox .form-control {
        height: 32px;
        border-radius: 3px !important;
        -moz-box-shadow: inset 0 0 5px 1px rgba(0,0,0,0.1);
        -webkit-box-shadow: inset 0 0 5px 1px rgba(0,0,0,0.1);
        box-shadow: inset 0 0 5px 1px rgba(0,0,0,0.1);
    }

    .trialBox .form-control {
        font-size: 12px;
        padding: 6px 8px;
    }

    .trialBox .radio input[type="radio"], .trialBox .radio-inline input[type="radio"], .trialBox .checkbox input[type="checkbox"], .trialBox .checkbox-inline input[type="checkbox"] {
        margin-left: -15px;
    }

.whatIncluded {
    background-color: #ffffee;
    border: dashed 5px #cccccc;
    padding: 20px 20px;
    font-size: 16px;
}

    .whatIncluded ul,
    li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .whatIncluded ul {
        margin: 1em 0;
    }

    .whatIncluded li {
        color: #5c5c5c;
        margin: 1em;
        margin-left: 2em;
        font-size: 15px;
        font-weight: 400;
        line-height: 17px;
    }

        .whatIncluded li:before {
            content: '\f00c';
            font-family: 'FontAwesome';
            float: left;
            margin-left: -1.5em;
            color: #e8b400;
        }


.shadowboxthin {
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.3);
    border-radius: 3px;
}

.shadowbox {
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.shadowboxlightbot {
    box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.3);
    overflow: hidden;
}

#google_translate_element img {
    display: initial !important;
}

.overlayGrid {
    background-color: rgba(255,255,255,0.9);
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    padding: 25px 10px;
    text-align: center;
}

    .overlayGrid p {
        color: #6b747d;
        font-weight: 400;
    }

    .overlayGrid .fa {
        font-size: 40px;
    }

    .overlayGrid hr {
        border: 0px;
        color: #626262;
        height: 2px;
    }


.membershipDiv {
    background-image: url(/Images/membershipBG.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 342px;
    clear: both;
}

.statsDiv {
    background-image: url(/Images/statsBG.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 475px;
    clear: both;
}

.stylePanel {
    /*padding: 0px;*/
    margin: 20px 5px;
    max-width: 350px;
    clear: both;
}

.stylePanelLeft {
    background-color: white;
    padding: 0px 20px;
}

.stylePanel p {
    color: #6a737d;
    font-size: 14px;
    font-weight: 500;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

/* centered columns styles */
.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    /* reset the text-align */
    text-align: left;
    /* inline-block space fix */
    margin-right: -4px;
}

.col-fixed {
    /* custom width */
    width: 320px;
}

.col-min {
    /* custom min width */
    min-width: 320px;
}

.col-max {
    /* custom max width */
    max-width: 320px;
}

.styleArea {
    background-color: #f4f1f1;
    padding-bottom: 20px;
}

.zynblue {
    color: #266ec8 !important;
}

.zynpurple {
    color: #8a288b !important;
}

.zyngreen {
    color: #94c43d !important;
}

.zynorange {
    color: #ff7200 !important;
}

.zyngrey {
    color: #6b747d !important;
}

hr {
    max-width: 100%;
    width: 100%;
}

.zynhr {
    color: #e1e1e1;
    background-color: #e1e1e1;
    margin: 20px 0px 50px;
}

    .zynhr:after {
        background: url('/images/zynIcons.jpg') no-repeat top center;
        content: "";
        display: block;
        height: 40px; /* height of the ornament */
        position: relative;
        top: -15px; /* half the height of the ornament */
    }

.dothr {
    color: #e1e1e1;
    background-color: #CCCCCC;
    margin: 10px 0px;
    text-align: center;
    font-size: 30px;
}

/*.dothr:after { 
        text-align: center;
    content: "...";
    height: 5px;
    font-size: 80px;
    position: relative;
    top: -84px;
    display: inline-block;
    background: white;
}*/

.backofficeBox {
    padding: 32px;
    background-color: white;
    color: #656668;
}

    .backofficeBox li:before {
        content: '\f067';
        font-family: 'FontAwesome';
        float: left;
        margin-left: -1.2em;
        color: #0074D9;
        font-size: 16px;
    }

    .backofficeBox li {
        list-style: none;
        font-size: 18px;
        color: #656668;
        line-height: 36px;
        font-weight: 400;
        padding-left: 18px;
    }

    .backofficeBox ul {
        padding-left: 0px;
        padding-bottom: 20px;
    }

    .backofficeBox li .fa-plus {
        color: #266ec8;
        padding-right: 10px;
        font-size: 12px;
        margin-bottom: 0px;
        float: left;
        margin-top: 10px;
    }

    .backofficeBox li span {
        font-weight: 900;
        text-transform: uppercase;
    }

.paidToTravel {
    max-width: 1280px;
    margin: auto;
}

.membershipPanelDiv {
    max-width: 1230px;
    margin: auto;
    clear: both;
    padding: 50px 0;
}

#membershipPanelDiv .col-md-3 {
    padding-left: 8px;
    padding-right: 8px;
}

.membershipPanelDiv .fa {
    font-size: 30px;
}

.membershipPanelDiv table {
    margin-bottom: 0px;
}

.bdMemberBox .fa {
    color: #383838;
}

.platMemberBox .fa {
    color: #8a288b;
}

.goldMemberBox .fa {
    color: #e6722b;
}

.silverMemberBox .fa {
    color: #94c145;
}

.trialBox #countdown-container {
    width: 140%;
    margin-top: -7px;
}

.trialBox .ClassyCountdown-days {
    display: none;
}

.finalForm {
    display: none;
}

.nextForm {
    cursor: pointer;
}

.helv {
    font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.earn {
    color: #94c145;
    font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    height: 80px !important;
}

.bump {
    font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: #656668;
    font-weight: 900;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    vertical-align: middle !important;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 0px;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    border: 0px;
    height: 40px;
}

.featuretable > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    border: 0px;
}

.bdMemberBox, .platMemberBox, .goldMemberBox, .silverMemberBox {
    text-align: center;
    box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.2);
}

.featureBox {
    text-align: center;
    box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.2);
    font-weight: 500;
    margin-top: 20px;
}

.boxpush {
    margin-top: 10px;
}

.boxpush2 {
    margin-top: 19px;
}


.contactUs {
    max-width: 1300px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 320px;
}

    .contactUs p {
        font-size: 14px;
    }

.paidToTravel .col-md-7 {
    width: 56.33333333%;
}

.paidToTravel .col-md-5 {
    width: 43.66666667%;
}

.infobar {
    color: white;
    text-align: center;
    font-size: 18px;
    clear: both;
    max-width: 1200px;
    margin: auto;
    font-weight: 400;
    font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.paddingSides {
    padding: 0px 30px;
}

.infobar .fa {
    font-size: 36px;
    padding: 5px;
}

.clickclickbox {
    padding: 20px;
}

.outlineIcon {
    -webkit-text-stroke: 1.5px white;
    color: #656668;
    text-shadow: 0px 0px 0 #fff, 0px 0px 0 #fff, 0px 0px 0 #fff, 0px 0px 0 #fff, 0px 0px 0 #fff;
}

.outlineIconBlue {
    -webkit-text-stroke: 1px #266ec8;
    color: #e1e1e1;
    text-shadow: 0px 0px 0 #fff, 0px 0px 0 #fff, 0px 0px 0 #fff, 0px 0px 0 #fff, 0px 0px 0 #fff;
}


.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0px;
    max-width: 350px;
    width: calc(100%);
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: bold;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-appearance: none; /* for box shadows to show on iOS */
}

    .input__field:focus {
        outline: none;
    }

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 100%;
    color: #6a7989;
    font-weight: bold;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}

.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.icon {
    color: #ddd;
    font-size: 150%;
}

/*NAO*/
.input--nao {
    overflow: hidden;
    padding-top: 1em;
    max-width: 50%;
    float: left;
}

.input__field--nao {
    padding: 0.5em 0em 0.25em;
    width: 100%;
    background: transparent;
    color: #9da8b2;
    font-size: 1.2em;
}

.input__label--nao {
    position: absolute;
    top: 0.95em;
    font-size: 0.85em;
    left: 0;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0em;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0.2s 0.15s, color 1s;
    transition: transform 0.2s 0.15s, color 1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.graphic--nao {
    stroke: #92989e;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
    transition: transform 0.7s, stroke 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.input__field--nao:focus + .input__label--nao,
.input--filled .input__label--nao {
    color: #333;
    -webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
    transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}

.input__field--nao:focus ~ .graphic--nao,
.input--filled .graphic--nao {
    stroke: #333;
    -webkit-transform: translate3d(-66.6%, 0, 0);
    transform: translate3d(-66.6%, 0, 0);
}
/*NAO*/

.contactInputs {
    padding: 0px 0px;
}

footer {
    background-color: #4e4e4e;
    font-size: 12px;
    color: #aaaaaa;
    text-align: center;
    clear: both;
    height: 50px;
}

.footerlinks {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: white !important;
}

    .footerlinks a.gtfix {
        color: #fff;
        padding: 5px;
    }

        .footerlinks a.gtfix:hover {
            /*color: #ffa615;*/
            color: #1683c6;
            text-decoration: none;
        }

footer span.gtfix {
    vertical-align: middle;
    font-weight: 400;
    position: relative;
    padding: 16px;
    margin: auto;
    display: table-cell;
}

.socialArea {
    margin-bottom: 10px;
}

    .socialArea ul {
        padding-left: 0px;
    }

    .socialArea li {
        list-style: none;
        display: inline-block;
        padding: 0px 0px;
    }

        .socialArea li .fa {
            font-size: 20px;
            border: 2px solid #266ec8;
            border-radius: 100px;
            padding: 10px 11px;
        }

.flexrow {
    display: flex;
    display: -webkit-flex;
}

.family {
    height: 100%;
    position: absolute;
}

.showTabletDown {
    display: none;
}

.hideMobile {
    display: block;
}

.spaceadjust {
    /*padding-bottom: 32px;*/
}

.btn-booking-blue {
    font-weight: 900;
    padding: 10px 27px;
    font-size: 18px;
    margin-right: 10px;
}

.form-group {
    clear: both;
}

.speechBG {
    background-image: url(/Images/speechBubbleBG.png);
    background-position: 100% 15%;
    background-repeat: no-repeat;
}

.styleTabletBlocks {
    min-height: 300px;
}

.cd-product .sideLeft, .cd-product .slideRight {
    visibility: hidden;
}

/*Webcast page*/
.webcastContainer {
    background-color: transparent;
    max-width: 1000px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    z-index: 99999;
    margin: auto;
    /*margin: 0 auto 20px;*/
}

.trainingInfoBox {
    padding: 15px;
    background-color: #1f6bca;
    color: white;
    min-height: 591px;
}

    .trainingInfoBox hr {
        color: white;
    }

.inline img {
    display: inline-block;
}

    .inline img:first-of-type {
        margin: 24px 5px;
    }

    .inline img:last-of-type {
        width: 80%;
    }

.trainingRegBox {
    background-color: white;
    padding: 15px;
    color: #4f4f4f;
    text-align: center;
    min-height: 591px;
}

    .trainingRegBox .fa-check-o {
        color: #7cca1f;
    }

.webcastContainer .col-md-7 {
    width: 520px;
    padding: 0;
}

.webcastContainer .col-md-5 {
    width: 480px;
    padding: 0;
}

.webcastContainer .fs26 {
    margin-top: 20px;
}


.cal2 {
    width: 125px;
    height: 125px;
    text-align: center;
    display: inline-block;
    background-image: url('/Images/cal3.png');
    padding: 50px 0px;
    float: left;
    margin-left: 40px;
}

.when {
    padding: 14px 15px;
    width: 60%;
    line-height: 28px;
    display: inline-block;
}

    .when span {
        display: block;
    }

    .when hr {
        margin: 10px 0 0 0;
        color: white;
    }

.hosted {
    margin: 30px -15px;
    background-color: #1956a2;
    text-align: center;
    padding: 1px;
}

#vipWebcast .hosted {
    margin: 30px -15px;
    background-color: rgba(255,255,255,0.2);
    text-align: center;
    padding: 1px;
}

.cal2 span {
}

#countdown-containerTW, #countdown-containerVIP {
    width: 300px;
    margin: 10px auto 20px;
}

    #countdown-containerTW .ClassyCountdown-wrapper {
        text-align: center;
    }

    #countdown-containerTW .ClassyCountdown-value span {
        color: #1f6bca !important;
    }

.webcastContainer .ClassyCountdown-wrapper > div {
    display: inline-block;
    position: relative;
    width: calc(25% - 20px);
    margin: 6px;
}

.checkBullets {
    padding: 0 30px;
    list-style: none;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}

#trainingWebcast .checkBullets li:before {
    font-family: FontAwesome;
    content: '\f046';
    color: #7cca1f;
    padding-right: 10px;
    display: table-cell;
}

#vipWebcast .checkBullets li:before {
    font-family: FontAwesome;
    content: '\f046';
    color: #266ec8;
    padding-right: 5px;
    display: table-cell;
}

.checkBullets li {
    display: inline-table;
    line-height: 20px;
    padding-top: 15px;
}

.btnFlatOrange .fa {
    font-size: 22px;
    font-weight: normal !important;
}

.btnFlatOrange {
    font-family: 'Roboto', sans-serif;
}

#vipWebcast .btnFlatOrange {
    background-color: #266ec8;
    max-width: 300px;
    padding: 10px;
    font-size: 22px;
    margin: 10px auto;
    display: block;
    text-align: center;
}

    #vipWebcast .btnFlatOrange:hover {
        background-color: #3ea0de;
        padding: 10px;
        margin: 10px auto;
        display: block;
        text-align: center;
    }

#trainingWebcast .btnFlatOrange {
    background-color: #ff9600;
    max-width: 300px;
    padding: 10px;
    font-size: 19px;
    margin: 10px auto;
    display: block;
    text-align: center;
    border-radius: 3px !important;
}

    #trainingWebcast .btnFlatOrange:hover {
        background-color: #f0732e;
    }

#vipWebcast .btnFlatOrange.regLocked {
    background-color: #95c429;
}

    #vipWebcast .btnFlatOrange.regLocked:hover {
        background-color: #95c429;
    }

#trainingWebcast .fs24, #vipWebcast .fs24 {
    margin-top: 20px;
}

.trainingInfoBox .fs36 {
    text-align: center;
    font-size: 36px;
    margin-top: 10px;
}

.medBold {
    font-weight: 500 !important;
}

.addeventatc.btnFlatOrange {
    background-color: #f0732e;
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px !important;
    padding: 15px 20px !important;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.5s;
    border: none !important;
    display: block !important;
}

    .addeventatc.btnFlatOrange:hover {
        background-color: #ffa200;
        color: white !important;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        transition: all 0.5s;
    }

.addeventatc .addeventatc_icon {
    display: none;
}


.webcastTitle {
    line-height: 50px;
}

.webcastSub {
    margin-bottom: 30px;
}

.showTabletDown {
    display: none;
}

/*.addeventatc{
    position:absolute !important;
        text-align: center;
    left: 50%;
    height: 53px;
    display: block !important;
    margin-left: -80px !important;
    z-index: 1 !important;
}*/

.webcastBox {
    padding-bottom: 20px;
}

    .webcastBox .btnFlatOrange {
        position: relative;
        z-index: 999;
    }

.salesFunnels img.showphoneonly {
    display: none !important;
}


/********** ELITE AFFILIATE PRO STYLES BEYOND THIS POINT ssssssss***********/


.arrowAnim {
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}

.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}


@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

#forgotEmail-error {
    display: none !important;
}

.elitePro .carousel {
    padding-bottom: 10px;
}

#field-error {
    display: none !important;
}

.elitePro .validation-summary-valid {
    position: absolute;
    right: 17px;
    top: 102px;
    color: #ff3434;
}

/* enable absolute positioning */
.elitePro .inner-addon {
    position: relative;
}

    /* style icon */
    .elitePro .inner-addon .fa {
        position: absolute;
        padding: 7px;
        pointer-events: none;
        color: #777777;
    }

/* align icon */
.elitePro .left-addon .fa {
    left: 0px;
}

.elitePro .right-addon .fa {
    right: 0px;
}

/* add padding  */
.elitePro .left-addon input {
    padding-left: 24px;
}

.elitePro .right-addon input {
    padding-right: 24px;
}

.resetCred {
    display: none;
    position: absolute;
    right: 0;
    top: 100px;
    background-color: rgb(63, 63, 63);
    padding: 15px;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    color: white;
    max-width: 306px;
    z-index: 999;
}

.elitePro .resetCred .btn-outline.white {
    background-color: rgba(0,0,0,0.2);
    color: white;
    border: white 1px solid;
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    margin: 0;
}

    .elitePro .resetCred .btn-outline.white:hover {
        border: white 1px solid;
    }

.elitePro .resetCred .form-control {
    height: 26px !important;
    border-radius: 3px !important;
    max-width: 500px;
    font-size: 12px;
    margin: 10px auto;
}

.elitePro .form-control {
    height: 26px !important;
    border-radius: 3px !important;
    max-width: 150px;
}

.elitePro .desktopmenu {
    display: inline-block;
    position: absolute;
    right: 10px;
}

    .elitePro .desktopmenu .btn-solid.green {
        background-color: #93c348;
        color: white;
        border: #93c348 1px solid;
        padding: 4px 10px;
        font-size: 12px;
    }

    .elitePro .desktopmenu .btn-outline.white {
        background-color: rgba(0,0,0,0.2);
        color: white;
        border: white 1px solid;
        padding: 2px 10px;
        font-size: 12px;
        margin: 0;
    }

    .elitePro .desktopmenu .btn-solid.green:hover {
        background-color: #a1d550;
        color: white;
        border: #93c348 1px solid;
        font-size: 12px;
    }

    .elitePro .desktopmenu .btn-outline.white:hover {
        background-color: white;
        color: #93c348 !important;
        border: white 1px solid;
        font-size: 12px;
        margin: 0;
    }

.elitePro .navbar li {
    margin: -3px 3px;
    vertical-align: middle;
    text-align: center;
}

.headerBG {
    background-color: #142a56;
    background-image: url('/Images/ecpBGNew.jpg?v2');
    min-height: 650px;
    text-align: center;
    background-size: cover;
    background-position: 35%;
}

.elitePro .headerBGOverlay {
    position: absolute;
    width: 100%;
    min-height: 650px;
    /*background-color: rgba(0,0,0,0.4);*/
}

.elitePro .headerBG .btn-outline {
    background-color: rgba(0,0,0,0.4);
}

.elitePro .btn-outline {
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 16px;
    background-color: none;
    font-family: 'Roboto Black', 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    cursor: pointer;
    font-weight: 900;
    padding: 12px 15px;
}

.elitePro .headerBGOverlay .btn-outline {
    background-color: rgba(0,0,0,0.4);
}

.elitePro .btn-outline.green {
    color: #93c348;
    border: #93c348 2px solid;
}

    .elitePro .btn-outline.green:hover {
        background-color: #93c348;
        color: white;
        border: #93c348 2px solid;
        transition: all 0.5s;
    }

.elitePro .btn-outline.white {
    color: white;
    border: white 2px solid;
}

    .elitePro .btn-outline.white:hover {
        background-color: white;
        color: #93c348;
        border: white 2px solid;
        transition: all 0.5s;
    }


.elitePro .btn-outline.green.fat {
    color: #93c348;
    border: #93c348 3px solid;
}

    .elitePro .btn-outline.green.fat:hover {
        background-color: #93c348;
        color: white;
        border: #93c348 3px solid;
        transition: all 0.5s;
    }

.elitePro .btn-outline.white.fat {
    color: white;
    border: white 3px solid;
}

    .elitePro .btn-outline.white.fat:hover {
        background-color: white;
        color: #93c348;
        border: white 3px solid;
        transition: all 0.5s;
    }



.elitePro .btn-solid {
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 16px;
    background-color: none;
    font-family: 'Roboto Black', 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    cursor: pointer;
    font-weight: 900;
    padding: 12px 15px;
}

    .elitePro .btn-solid.flatten, .elitePro .btn-outline.flatten {
        padding: 10px 18px;
    }

    .elitePro .btn-solid.green {
        background-color: #93c348;
        color: white;
        border: #93c348 2px solid;
    }

        .elitePro .btn-solid.green:hover {
            background-color: #a6dc51;
            color: white;
            border: #93c348 2px solid;
            transition: all 0.5s;
        }

.elitePro .container {
    max-width: 1120px;
}

.titleElitePro {
    font-family: 'Oswald', sans-serif;
    max-width: 520px;
    margin: auto;
    padding-top: 260px;
}

.videobar .regBold {
    font-family: 'Roboto Condensed', 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.videobar {
    background-color: #3f3f3f;
    color: white;
    height: 88px;
    text-align: left;
    position: relative;
    font-size: 21px;
    font-weight: 300;
    font-family: 'Roboto Condensed', 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
}

    .videobar img {
        display: none;
    }

.holder, .holderTablet {
    padding: 26px 0;
    display: inline-block;
}

.holderTablet {
    display: none;
}

.blocks {
    text-align: left;
    line-height: 18px;
    margin-top: 40px;
    font-size: 14px;
    font-weight: 400;
}

    .blocks > div {
        min-height: 180px;
        color: grey;
    }

    .blocks .fa {
        font-size: 34px;
        color: #1686c4;
        margin-bottom: 8px;
    }

    .blocks .blockTitle {
        color: #1686c4;
        text-transform: uppercase;
        position: relative;
        font-weight: 700;
    }

        .blocks .blockTitle .fa {
            color: #93c348;
            font-size: 14px;
        }

        .blocks .blockTitle:before {
            font-family: FontAwesome;
            content: '\f0da';
            position: absolute;
            left: -15px;
            color: #93c348 !important;
            font-size: 24px;
        }

.salesFunnels {
    background-color: #3a4b64;
    background-image: url('/Images/fadedocean.jpg');
    text-align: center;
    padding-bottom: 20px;
}

    .salesFunnels img {
        display: block;
        margin: auto;
    }

    .salesFunnels .btn-outline {
        display: inline-block;
    }

.problue {
    color: #1785c5 !important;
}

.proDarkBlue {
    color: #234b90 !important;
}

.progreen {
    color: #93c348 !important;
}

.phoneBG {
    min-height: 567px;
    background-image: url(/Images/phoneBG.jpg);
    background-position: top center;
    background-size: cover;
}

.parallax-window {
    min-height: 500px;
    /*background: transparent;*/
}

.pitchbar {
    background-color: #eaeaea;
    padding: 30px 0;
    position: relative;
}

    .pitchbar .fa {
        color: #93c348;
        font-size: 60px;
    }

    .pitchbar p {
        color: #3f3f3f;
        line-height: 18px;
        margin-bottom: 3px;
    }

.pitchblock {
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 10px;
    margin: 17px auto;
}

    .pitchblock:last-of-type .fa {
        color: #93c348;
    }

    .pitchblock:last-of-type {
        border-bottom: none;
    }

.discover {
    padding: 30px 0;
    background-color: white;
    font-family: 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

    .discover img {
        /*width:100%;*/
    }

    .discover ul {
        margin-left: 0;
        margin-bottom: 40px;
        margin-top: 10px;
    }

    .discover li:before {
        content: '\f046';
        font-family: 'FontAwesome';
        margin-left: -1.2em;
        padding-right: 5px;
        color: #93c348;
        font-size: 18px;
    }

    .discover li {
        list-style-type: none;
        font-size: 14px;
        color: #6d747f;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .discover section {
        padding: 0px 0px 20px;
    }

.marginBoost {
    margin-top: 45px;
}

.statementbar {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif !important;
    color: #605f5f;
        font-size: 26px;
    font-weight: 400;
}



/*.statementbar .medBold{
        font-family: 'Roboto Condensed', 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    }*/
.oswaldDemiBold {
    font-family: 'Oswald-DemiBold', 'Roboto Condensed', 'Roboto', sans-serif !important;
    font-weight: initial !important;
}

.oswald {
    font-family: 'Oswald', 'Roboto Condensed', 'Roboto', sans-serif !important;
    font-weight: normal !important;
}

.oswaldLight {
    font-family: 'Oswald-Light','Roboto Condensed', 'Roboto', sans-serif !important;
}

.robotoBlack {
    font-family: 'Roboto Black', 'Roboto', sans-serif !important;
}

.carousel img {
    margin: auto;
}

.cityscape {
    background-image: url('/Images/purplecity.jpg');
    background-size: cover;
    text-align: center;
    padding: 40px 0;
}

    .cityscape .btn-outline {
        background-color: rgba(0,0,0,0.4);
    }

.elitePro footer {
    text-transform: capitalize !important;
    text-align: center;
}

    .elitePro footer .footerlinks {
        float: none;
        color: #939393 !important;
    }

.elitePro .footerlinks a.gtfix {
    color: #939393 !important;
    padding: 5px;
}

    .elitePro .footerlinks a.gtfix:hover {
        color: white !important;
        text-decoration: none;
    }

.elitePro footer span.gtfix {
    vertical-align: middle;
    font-weight: 400;
    position: relative;
    padding: 16px 0px;
    margin: auto;
    display: block;
    text-transform: capitalize !important;
}

.fs35 {
    font-size: 35px;
}

.fs40 {
    font-size: 40px;
}

.fs12 {
    font-size: 12px;
}

.fs14 {
    font-size: 14px;
}

.fs18 {
    font-size: 18px;
}


/*
==============================================
pulse
==============================================
*/

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        opacity: 0.7;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0.7;
    }
}

/*

/****Headers points of interest****/
.elitePro .headerBG li {
    list-style: none;
}

.cd-product {
    text-align: center;
}

.cd-product-wrapper {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    height: 121px;
}

    .cd-product-wrapper > img {
        display: block;
    }

.cd-single-point {
    position: absolute;
    border-radius: 50%;
}

    .cd-single-point > a {
        position: relative;
        z-index: 4;
        display: block;
        width: 25px;
        height: 25px;
        border-radius: inherit;
        background: #93c348;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        -webkit-transition: background-color 0.2s;
        -moz-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }

        .cd-single-point > a::after, .cd-single-point > a:before {
            /* rotating plus icon */
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            bottom: auto;
            right: auto;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            background-color: none;
            -webkit-transition-property: -webkit-transform;
            -moz-transition-property: -moz-transform;
            transition-property: transform;
            -webkit-transition-duration: 0.2s;
            -moz-transition-duration: 0.2s;
            transition-duration: 0.2s;
        }

        .cd-single-point > a::after {
            height: 2px;
            width: 12px;
        }

        .cd-single-point > a::before {
            height: 12px;
            width: 2px;
        }

    .cd-single-point::after {
        /* this is used to create the pulse animation */
        content: '';
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: inherit;
        background-color: transparent;
        -webkit-animation: cd-pulse 2s infinite;
        -moz-animation: cd-pulse 2s infinite;
        animation: cd-pulse 2s infinite;
    }

    .cd-single-point:nth-of-type(1) {
        bottom: 12%;
        right: 8%;
    }

    .cd-single-point:nth-of-type(2) {
        bottom: -205%;
        right: -22%;
    }

    .cd-single-point:nth-of-type(3) {
        top: 310%;
        left: 7%;
    }

    .cd-single-point:nth-of-type(4) {
        top: 232%;
        right: 112%;
    }

    .cd-single-point.is-open > a {
        background-color: #475f74;
    }

        .cd-single-point.is-open > a::after, .cd-single-point.is-open > a::before {
            -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
            -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
            -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
            -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
            transform: translateX(-50%) translateY(-50%) rotate(135deg);
        }

    .cd-single-point.is-open::after {
        /* remove pulse effect */
        display: none;
    }

    .cd-single-point .cd-more-info {
    }

    .cd-single-point.is-open .cd-more-info {
        visibility: hidden;
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        /*-webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
        transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;*/
    }

    .cd-single-point.visited > a {
        background-color: #475f74;
        z-index: 9;
    }

    .cd-single-point.visited::after {
        /* pulse effect no more active on visited elements */
        display: none;
    }

.showphoneonly {
    display: none;
}

/*sssssss*/
.trialBox .form-group.mobileOnly {
    display: none;
}

@media only screen and (min-width: 600px) {
    .cd-single-point.is-open .cd-more-info.cd-left {
        right: 0%;
        top: 122%;
    }

    .cd-single-point.is-open .cd-more-info.cd-right {
        left: 40%;
    }

    .cd-single-point.is-open .cd-more-info.cd-top {
        bottom: 140%;
    }

    .cd-single-point.is-open .cd-more-info.cd-bottom {
        top: 140%;
    }
}

@-webkit-keyframes cd-pulse {
    0% {
        -webkit-transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    100% {
        -webkit-transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0);
    }
}

@-moz-keyframes cd-pulse {
    0% {
        -moz-transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    100% {
        -moz-transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0);
    }
}

@keyframes cd-pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    100% {
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        -o-transform: scale(1.6);
        transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0);
    }
}

.cd-single-point .cd-more-info {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    /*height: 100%;*/
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2em 1em 1em;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;*/
}

    .cd-single-point .cd-more-info::before {
        /* triangle next to the interest point description - hidden on mobile */
        content: '';
        position: absolute;
        height: 0;
        width: 0;
        display: none;
        border: 8px solid transparent;
    }

    .cd-single-point .cd-more-info h2 {
        font-size: 22px;
        font-size: 1.375rem;
        margin-bottom: .6em;
    }

    .cd-single-point .cd-more-info p {
        color: #758eb1;
    }

@media only screen and (min-width: 600px) {
    .cd-single-point .cd-more-info {
        position: absolute;
        width: 220px;
        /*height: 240px;*/
        padding: 0;
        overflow-y: visible;
        line-height: 1.4;
        border-radius: 0.25em;
        background: none;
        /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);*/
    }

        .cd-single-point .cd-more-info::before {
            display: none;
        }

        .cd-single-point .cd-more-info.cd-left, .cd-single-point .cd-more-info.cd-right {
            top: 100%;
            bottom: auto;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
        }

            .cd-single-point .cd-more-info.cd-left::before, .cd-single-point .cd-more-info.cd-right::before {
                top: 50%;
                bottom: auto;
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        .cd-single-point .cd-more-info.cd-left {
            right: 160%;
            left: auto;
        }

            .cd-single-point .cd-more-info.cd-left::before {
                border-left-color: rgba(255, 255, 255, 0.95);
                left: 100%;
            }

        .cd-single-point .cd-more-info.cd-right {
            left: 160%;
        }

            .cd-single-point .cd-more-info.cd-right::before {
                border-right-color: rgba(255, 255, 255, 0.95);
                right: 100%;
            }

        .cd-single-point .cd-more-info.cd-top, .cd-single-point .cd-more-info.cd-bottom {
            left: 50%;
            right: auto;
            -webkit-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
        }

            .cd-single-point .cd-more-info.cd-top::before, .cd-single-point .cd-more-info.cd-bottom::before {
                left: 50%;
                right: auto;
                -webkit-transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -o-transform: translateX(-50%);
                transform: translateX(-50%);
            }

        .cd-single-point .cd-more-info.cd-top {
            bottom: 160%;
            top: auto;
        }

            .cd-single-point .cd-more-info.cd-top::before {
                border-top-color: rgba(255, 255, 255, 0.95);
                top: 100%;
            }

        .cd-single-point .cd-more-info.cd-bottom {
            top: 160%;
        }

            .cd-single-point .cd-more-info.cd-bottom::before {
                border-bottom-color: rgba(255, 255, 255, 0.95);
                bottom: 100%;
            }

        .cd-single-point .cd-more-info h2 {
            font-size: 20px;
            font-size: 1.25rem;
            margin-bottom: 0;
        }

        .cd-single-point .cd-more-info p {
            font-size: 14px;
            font-size: 0.875rem;
        }
}

/* close the interest point description - only on mobile */
.cd-close-info {
    position: fixed;
    top: 0;
    right: 0;
    height: 44px;
    width: 44px;
}

    .cd-close-info::after, .cd-close-info:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
        background-color: #475f74;
        -webkit-transition-property: -webkit-transform;
        -moz-transition-property: -moz-transform;
        transition-property: transform;
        -webkit-transition-duration: 0.2s;
        -moz-transition-duration: 0.2s;
        transition-duration: 0.2s;
    }

    .cd-close-info::after {
        height: 2px;
        width: 16px;
    }

    .cd-close-info::before {
        height: 16px;
        width: 2px;
    }

@media only screen and (min-width: 600px) {
    .cd-close-info {
        display: none;
    }
}

@keyframes cd-pulse {
    0% {
        transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    50% {
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0.8);
    }

    100% {
        transform: scale(1.6);
        box-shadow: inset 0 0 1px 1px rgba(147,195,72, 0);
    }
}

@media (max-width:1280px) {

    .styleTabletBlocks {
        min-height: 320px;
    }

    .spaceadjust {
        padding-bottom: 52px;
    }

    h2 {
        font-size: 24px !important;
    }

    h4 {
        font-size: 16px;
    }

    h6 {
        font-size: 30px;
    }

    .overlayGrid p {
        font-size: 14px;
    }

    .clubMemberBox li {
        font-size: 14px;
    }
}

.footerlinks {
    float: right;
}

.bookingSite {
    width: 100%;
}


@media (max-width:1200px) {
    .styleTabletBlocks {
        min-height: 350px;
    }
}

@media (max-width:1120px) {
    .styleTabletBlocks {
        min-height: 370px;
    }

    .stylePanel .btn-outline {
        width: 85%;
        margin: 20px 0px;
        padding: 6px 12px;
    }

    .stats {
        width: 95%;
    }
}

/*target iPad Horizontally only*/
@media (min-width: 769px) and (max-width: 1024px) {
    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 20px;
    }

    .overlayGrid {
        padding: 7px 0px;
    }

        .overlayGrid p {
            font-size: 12px;
        }

    .btn-outline {
        padding: 8px 28px;
    }

    .stats {
        width: 95%;
    }

    .holder, .holderTablet {
        padding: 26px 0;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .videobar img {
        display: none;
    }
}

@media (max-width:991px) {
    footer {
        height: 100% !important;
        max-height: 100px !important;
    }
}

@media (max-width:768px) {
    .trialBox.cut {
        padding: 25px 20px 25px 20px;
    }

    .trialBox.testi img {
        margin-top: 20px !important;
    }

    .trialBox .form-group.desktopOnly {
        display: none;
    }

    .trialBox .form-group.mobileOnly {
        display: block;
    }

    .discover section > div:first-of-type img {
        margin-top: 50px;
    }

    .discover .fs35 {
        font-size: 26px;
    }

    .cd-product-wrapper {
        display: none;
    }

    .webcastContainer {
        overflow: visible;
    }

    .trainingRegBox img {
        display: none;
    }

    .webcastBox .showTabletDown {
        display: block;
    }

    .hosted {
        margin: 10px -15px;
    }

    .trainingRegBox {
        min-height: 0;
    }

    .webcastBox {
        width: 70%;
        margin: auto;
    }

    .webcastContainer .col-md-7, .webcastContainer .col-md-5 {
        width: 100%;
    }

    .centerMobile {
        text-align: center;
    }

    .parallax-window {
        min-height: 500px;
        background: initial;
    }

    .fs14 {
        font-size: 13.5px;
    }

    .fs30 {
        font-size: 30px;
    }

    .fs32 {
        font-size: 26px;
    }

    .shadowdiv {
        display: none;
    }

    .pitchbar img {
        width: 80% !important;
        margin: auto;
        display: block;
    }

    .toggleresetCred {
        color: white !important;
    }

    .resetCred {
        background-color: rgba(39, 39, 39, 1);
        border-bottom: #1785c5 5px solid;
        box-shadow: 0px 0px 30px black;
    }

    .holder {
        display: none;
    }

    .holderTablet {
        display: inline-block;
            width: 100%;
        text-align: center;
    }

    .contactUs {
        padding-bottom: 0px;
    }

    .overlayGrid {
        padding: 40px 30px;
    }

    header {
        height: 100%;
    }

    footer {
        height: 100% !important;
        max-height: 100px !important;
        text-align: center;
    }

    .footerlinks {
        float: none;
    }

    .col-centered {
        display: inline;
        margin-right: 0px;
    }

    .stylePanel {
        padding: 5px;
        margin: 0px;
        clear: none;
    }

    .styleTabletBlocks {
        padding: 15px 30px;
        min-height: 0px;
    }

    h1 {
        font-size: 26px;
    }

    h3 {
        padding: 15px 0px 15px;
        color: #266ec8;
        font-weight: 400;
    }

    h4 {
        font-size: 22px;
    }

    .paidToTravel .col-md-7 {
        width: 100%;
    }

    .discover .col-md-7 {
        width: 40%;
    }

    .discover .col-md-5 {
        width: 60%;
    }

    .paidToTravel .col-md-5 {
        width: initial;
    }

    .flexrow {
        display: initial;
    }

    .family {
        height: initial;
        position: relative;
    }

    .statsDiv {
        padding: 20px;
        height: auto;
    }

    .stats {
        width: 95%;
    }

    .showTabletDown {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        color: #656668;
    }

    .hideMobile {
        display: none;
    }

    .bdMemberBox, .platMemberBox, .goldMemberBox, .silverMemberBox {
        margin: auto;
        max-width: 400px;
    }

    .paddingSides {
        padding: 0px 0px;
    }

    .backofficeBox {
        margin-bottom: 30px;
    }

        .backofficeBox li:before {
            content: '\f067';
            font-family: 'FontAwesome';
            float: left;
            margin-left: -1.2em;
            color: #0074D9;
            font-size: 16px;
        }
}

@media (max-width:767px) {
    .speechBG {
        background: none;
    }

    div#google_translate_element {
        float: none !important;
    }

    footer {
        max-height: 150px !important;
    }

        footer span.gtfix {
            vertical-align: middle;
            font-weight: 400;
            position: relative;
            padding: 25px 0 0 0;
            margin: auto;
            display: block;
            padding: 16px 0px;
        }
}


@media (max-width:767px) {
    .elitePro .btn-outline.green.fat {
        color: #93c348;
        border: #93c348 3px solid;
        display: block;
    }

    .trialBox #countdown-container {
        width: 100%;
    }

    .textCenterPhone {
        text-align: center;
    }

    .discover section > div:first-of-type img {
        margin-top: 20px;
        margin-bottom: -30px;
    }

    .discover .fs35 {
        font-size: 24px;
    }

    .salesFunnels img.showphoneonly {
        display: block !important;
    }

    .hidemobilephone {
        display: none !important;
    }

    .fs40 {
        font-size: 30px;
        line-height: 40px;
        margin-top: 20px !important;
    }

    .trainingInfoBox img {
        margin-left: 20px !important;
    }

    .latino .trainingInfoBox img {
        margin-left: 0px !important;
    }

    .inline img:last-of-type {
        width: 90%;
    }

    .trainingInfoBox, .trainingRegBox {
        min-height: 0;
    }

    .inline img:first-of-type {
        margin: 24px 5px;
        display: none;
    }

    .cal2 {
        width: 125px;
        height: 125px;
        text-align: center;
        display: inline-block;
        background-image: url(/Images/cal3.png);
        padding: 50px 0px;
        float: left;
        margin-left: 13px;
    }

    .trainingInfoBox .fs36 {
        text-align: center;
        font-size: 29px;
        margin-top: 10px;
    }

    .webcastBox {
        width: 100%;
    }

    .webcastTitle {
        line-height: 36px;
        font-size: 35px;
    }

    .webcastSub {
        font-size: 16px;
        line-height: 19px;
    }

    .showphoneonly {
        display: block;
    }

    .videobar .showphoneonly {
        display: inline-block;
        padding: 11px 5px;
        color: #4f4f4f;
    }

    .cd-product-wrapper {
        display: none;
    }

    .elitePro .headerBG {
        background-color: #142a56;
        background-image: url('/Images/ecpBGNew.jpg?v2');
        min-height: 100%;
        text-align: center;
        background-size: cover;
        background-position: 91% 50px;
    }

    .elitePro .headerBGOverlay {
        position: absolute;
        width: 100%;
           min-height: 100%;
        background-color: rgba(0,0,0,0.4);
    }

    .titleElitePro {
        font-family: 'Oswald', sans-serif;
        max-width: 520px;
        margin: auto;
                padding-top: 200px;
    }

    .elitePro .navbar-fixed-top.navbar-expanded .toggleLogo {

    }

    .elitePro .btn-outline {
        text-transform: uppercase;
        border-radius: 3px;
        font-size: 16px;
        background-color: none;
        font-family: 'Roboto Black', 'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
        cursor: pointer;
        font-weight: 900;
        padding: 12px 15px;
        margin: 5px;
        display: inline-block;
    }

    .elitePro .mobileLogin .btn-outline {
        padding: 0px 15px;
        text-align: right;
        float: right;
        margin: 0 auto;
        display: block;
        font-size: 14px;
    }

    .elitePro .desktopmenu {
        display: none;
        position: absolute;
        right: 10px;
    }

    .blocks .fs14 {
        font-size: 13.5px;
    }

    .blocks .blockTitle:before {
        font-family: FontAwesome;
        content: '';
        position: absolute;
        left: -15px;
        color: #93c348 !important;
        font-size: 24px;
    }

    .blocks .blockTitle {
        color: #1686c4;
        text-transform: uppercase;
        position: relative;
        font-size: 20px;
        font-weight: 700;
    }

    .blocks > div {
        min-height: 128px;
        color: grey;
        text-align: center;
    }

    .videobar img {
        float: right;
        margin-right: -16px;
    }

    .holder {
        display: none;
    }

    .holderTablet {
        display: none;
    }

    div#google_translate_element {
        float: none !important;
    }

    footer {
        max-height: 150px !important;
    }

        footer span.gtfix {
            vertical-align: middle;
            font-weight: 400;
            position: relative;
            padding: 25px 0 0 0;
            margin: auto;
            display: block;
            padding: 16px 0px;
        }

    .contactInputs {
        /*padding: 30px 0px;*/
    }

    .showTabletDown {
        display: inline-block;
        font-size: 14px;
        font-weight: 500;
        color: #656668;
    }

    .bump {
        font-size: 18px;
    }

    .btn-booking-blue {
        font-weight: 900;
        padding: 10px 27px;
        font-size: 16px;
        margin-right: 10px;
    }

    .btn-orange {
        font-size: 16px;
    }

    .bookingSite {
        margin-bottom: 20px !important;
    }

    h5 {
        font-size: 16px;
        font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
        text-transform: none;
        font-weight: 900;
    }


    .backofficeBox li .fa-plus:before {
    }

    .backofficeBox li .fa-plus {
        position: relative;
    }

    .backofficeBox li {
        list-style: none;
        font-size: 12px;
        color: #656668;
        line-height: 26px;
        font-weight: 400;
    }

        .backofficeBox li:before {
            content: '\f067';
            font-family: 'FontAwesome';
            float: left;
            margin-left: -1.2em;
            color: #0074D9;
            font-size: 12px;
        }

    .backofficeBox {
        margin-bottom: 0px;
        padding: 15px 15px 0px 15px;
    }

    .paddingSides {
        padding: 20px 30px;
    }

        .paddingSides .fa {
            font-size: 300%;
        }

    .statementbar {
        font-size: 14px;
    }

    .discover .col-md-7 {
        width: 100%;
    }

    .discover .col-md-5 {
        width: 100%;
    }
}

@media(max-width:450px) {
    .elitePro .headerBG {
        background-color: #142a56;
        background-image: url(/Images/ecpBGNewMobile.jpg?v2);
        min-height: 100%;
        text-align: center;
        background-size: cover;
    background-position: 100% 0px;
        background-repeat: no-repeat;
    }
    .videobar .showphoneonly {
    display: inline-block;
        padding: 20px 5px;
    font-size:30px;
    color:white;
}
    .videobar{
        display:none;
    }
}

@media (max-width:375px) {
    .elitePro .headerBG {
    background-color: #142a56;
    background-image: url(/Images/ecpBGNewMobile.jpg?v2);
    min-height: 100%;
    text-align: center;
    background-size: cover;
    background-position: 100% 0px;
    background-repeat: no-repeat;
}

    .pitchbar .fs18 {
        font-size: 16px;
    }

    .fs40 {
        font-size: 26px;
        line-height: 30px;
    }

    .videobar .showphoneonly {
    display: inline-block;
    padding: 5px 5px;
}

    .fa-3x {
        font-size: 2em;
    }

    /*.fs40 {
        font-size: 16px;
    }*/

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 15px;
        font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
        text-transform: none;
        font-weight: 900;
    }

    .showTabletDown {
        display: inline-block;
        font-size: 12px;
        font-weight: 500;
        color: #656668;
    }

    .bump {
        font-size: 14px;
    }

    .btn-booking-blue {
        font-weight: 900;
        padding: 10px 27px;
        font-size: 14px;
        margin-right: 0px;
    }

    .btn-orange {
        font-size: 14px;
    }

    .membershipPanelDiv {
        padding: 20px;
    }
}

@media (max-width:320px) {
        .elitePro .headerBG {
    background-color: #142a56;
    background-image: url(/Images/ecpBGNewMobile.jpg?v2);
    min-height: 568px;
    text-align: center;
    background-size: contain;
    background-position: 50% 0px;
    background-repeat: no-repeat;
}
        .elitePro .headerBGOverlay {
    position: absolute;
    width: 100%;
    min-height: 558px;
    background-color: rgba(0,0,0,0.4);
}
    .discover li {
        font-size: 12px;
    }

    .discover .fs35 {
        font-size: 21px;
    }

    .blocks .blockTitle {
        color: #1686c4;
        text-transform: uppercase;
        position: relative;
        font-size: 16px;
        font-weight: 700;
    }

    .videobar .showphoneonly {
    display: inline-block;
    padding: 5px 5px;
}

    .trainingInfoBox img {
        margin-left: 0px !important;
    }

    .membershipDiv img {
        width: 70%;
    }

    .btn-orange {
        padding: 10px 10px;
    }

    .btn-booking-blue {
        padding: 10px 20px;
    }

    .cal2 {
        margin-left: 0;
    }

    .when {
        width: 54%;
    }

    .webcastTitle {
        line-height: 36px;
        font-size: 25px;
    }

    .trainingInfoBox .fs36 {
        text-align: center;
        font-size: 24px;
        margin-top: 10px;
    }

    .btnFlatOrange {
        margin: 20px auto;
    }


    .fs24 {
        font-size: 22px;
    }

    .fs26 {
        font-size: 23px;
    }

    .checkBullets {
        padding: 0px 9px;
        list-style: none;
        text-align: left;
        font-size: 18px;
        font-weight: 400;
    }

    .inline img:last-of-type {
        width: 100%;
    }

    .webcastBox {
        padding-top: 60px !important;
    }
}
