/* GRID: FOR ALL RESOLUTIONS TO SET BASE RULES FOR GRID. MUST STAY AT TOP. */
    .container {
        position: relative;
        width: 100%;
        min-height: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        background: #221f1f;
    }
    .column,
    .columns {
        width: 100%;
        float: left;
        box-sizing: border-box;
    }
/*
--
--
--
-- END ALL RESOLUTION GRID RULE */





/* GRID: FOR DEVICES AT 320PX AND LARGER. KEEPS GRID DISABLED. */
    @media (min-width: 320px) {
      .container {
        width: 100%;
        padding: 0; }
    }
/*
--
--
--
-- END 320 RESOLUTION GRID RULE */





/* GRID: FOR DEVICES AT 768PX AND LARGER. TURNS ON GRID SYSTEM. */
    @media (min-width: 768px) {
         .container {}
        .column,
        .columns {
            margin-left: 4%;
        }
        .column:first-child,
        .columns:first-child {
            margin-left: 0;
        }
        .one.column,
        .one.columns {
            width: 4.66666666667%;
        }
        .two.columns {
            width: 13.3333333333%;
        }
        .three.columns {
            width: 22%;
        }
        .four.columns {
            width: 30.6666666667%;
        }
        .five.columns {
            width: 39.3333333333%;
        }
        .six.columns {
            width: 48%;
        }
        .seven.columns {
            width: 56.6666666667%;
        }
        .eight.columns {
            width: 65.3333333333%;
        }
        .nine.columns {
            width: 74.0%;
        }
        .ten.columns {
            width: 82.6666666667%;
        }
        .eleven.columns {
            width: 91.3333333333%;
        }
        .twelve.columns {
            width: 100%;
            margin-left: 0;
        }
        .one-third.column {
            width: 30.6666666667%;
        }
        .two-thirds.column {
            width: 65.3333333333%;
        }
        .one-half.column {
            width: 48%;
        }
        /* Offsets */

        .offset-by-one.column,
        .offset-by-one.columns {
            margin-left: 8.66666666667%;
        }
        .offset-by-two.column,
        .offset-by-two.columns {
            margin-left: 17.3333333333%;
        }
        .offset-by-three.column,
        .offset-by-three.columns {
            margin-left: 26%;
        }
        .offset-by-four.column,
        .offset-by-four.columns {
            margin-left: 34.6666666667%;
        }
        .offset-by-five.column,
        .offset-by-five.columns {
            margin-left: 43.3333333333%;
        }
        .offset-by-six.column,
        .offset-by-six.columns {
            margin-left: 52%;
        }
        .offset-by-seven.column,
        .offset-by-seven.columns {
            margin-left: 60.6666666667%;
        }
        .offset-by-eight.column,
        .offset-by-eight.columns {
            margin-left: 69.3333333333%;
        }
        .offset-by-nine.column,
        .offset-by-nine.columns {
            margin-left: 78.0%;
        }
        .offset-by-ten.column,
        .offset-by-ten.columns {
            margin-left: 86.6666666667%;
        }
        .offset-by-eleven.column,
        .offset-by-eleven.columns {
            margin-left: 95.3333333333%;
        }
        .offset-by-one-third.column,
        .offset-by-one-third.columns {
            margin-left: 34.6666666667%;
        }
        .offset-by-two-thirds.column,
        .offset-by-two-thirds.columns {
            margin-left: 69.3333333333%;
        }
        .offset-by-one-half.column,
        .offset-by-one-half.columns {
            margin-left: 52%;
        } 
    }
/*
--
--
--
-- END 770 RESOLUTION GRID RULE */






/* BASE STYLE: FOR ALL RESOLUTIONS. */
    
    html {
        font-size: 62.5%;
        height: 100%;
    }
    body {
        font-size: 1.5em;
        line-height: 1.6;
        font-weight: 400;
        font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #f2f2f2;
        background: #282828;
        height: 100%;
        overflow-x: hidden;
    }
    

    /* TYPE */

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
            margin-bottom: 2rem;
            font-weight: 100;
            text-transform: uppercase;
        }
        h1 {
            font-size: 4.0rem;
            line-height: 1.2;
            letter-spacing: -.1rem;
        }
        h2 {
            font-size: 3.6rem;
            line-height: 1.25;
            letter-spacing: -.1rem;
        }
        h3 {
            font-size: 3.0rem;
            line-height: 1.3;
            letter-spacing: -.1rem;
        }
        h4 {
            font-size: 2.4rem;
            line-height: 1.35;
            letter-spacing: -.08rem;
        }
        h5 {
            font-size: 1.8rem;
            line-height: 1.5;
            letter-spacing: -.05rem;
        }
        h6 {
            font-size: 1.5rem;
            line-height: 1.6;
            letter-spacing: 0;
        }
        p {
            margin-top: 0;
        }

    /* LINKS */
    
        a {
            color: #1EAEDB;
        }
        a:hover {
            color: #0FA0CE;
        }

    /* BUTTONS */

        .button,
        button,
        input[type="submit"],
        input[type="reset"],
        input[type="button"] {
            display: inline-block;
            height: 38px;
            /*padding: 0 30px;*/
            /*color: #fff;*/
            text-align: center;
            font-size: 11px;
            /*font-weight: 600;*/
            line-height: 38px;
            letter-spacing: .1rem;
            text-transform: uppercase;
            text-decoration: none;
            white-space: nowrap;
            background-color: transparent;
            border-radius: 4px;
            cursor: pointer;
            box-sizing: border-box;
            /*margin: 0 2px 0 0;*/
        }
            
            @media (min-width: 320px) {
                .sub-menu input[type="submit"],
                .sub-menu input[type="reset"],
                .sub-menu input[type="button"] {
                    width: 95%;
                    margin: auto 2.5%;
                }
            }
            @media (min-width: 768px) {
                .sub-menu input[type="submit"],
                .sub-menu input[type="reset"],
                .sub-menu input[type="button"] {
                    margin: 0 2px 0 0;
                }    
            }
 
        .button:hover,
        button:hover,
        input[type="submit"]:hover,
        input[type="reset"]:hover,
        input[type="button"]:hover,
        .button:focus,
        button:focus,
        input[type="submit"]:focus,
        input[type="reset"]:focus,
        input[type="button"]:focus {
            color: #333;
            border-color: #888;
            outline: 0;
        }
        .button.button-primary,
        button.button-primary,
        input[type="submit"].button-primary,
        input[type="reset"].button-primary,
        input[type="button"].button-primary {
            color: #FFF;
            background-color: #33C3F0;
            border-color: #33C3F0;
        }
        .button.button-primary:hover,
        button.button-primary:hover,
        input[type="submit"].button-primary:hover,
        input[type="reset"].button-primary:hover,
        input[type="button"].button-primary:hover,
        .button.button-primary:focus,
        button.button-primary:focus,
        input[type="submit"].button-primary:focus,
        input[type="reset"].button-primary:focus,
        input[type="button"].button-primary:focus {
            color: #FFF;
            background-color: #1EAEDB;
            border-color: #1EAEDB;
        }

    /* FORMS */

        input[type="email"],
        input[type="number"],
        input[type="search"],
        input[type="text"],
        input[type="tel"],
        input[type="url"],
        input[type="password"],
        textarea,
        select {
            height: 38px;
            padding: 6px 10px;
            background-color: #4d4d4d;
            border: 1px solid #5d5d5d;
            box-shadow: none;
            box-sizing: border-box;
            color: #fff;
            width: 100%;
        }

/* Removes awkward default styles on some inputs for iOS */

        input[type="email"],
        input[type="number"],
        input[type="search"],
        input[type="text"],
        input[type="tel"],
        input[type="url"],
        input[type="password"],
        textarea {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        textarea {
            min-height: 65px;
            padding-top: 6px;
            padding-bottom: 6px;
        }
        input[type="email"]:focus,
        input[type="number"]:focus,
        input[type="search"]:focus,
        input[type="text"]:focus,
        input[type="tel"]:focus,
        input[type="url"]:focus,
        input[type="password"]:focus,
        textarea:focus,
        select:focus {
            border: 1px solid #5ABF41;
            outline: 0;
        }
        label,
        legend {
            display: block;
            margin: 1rem 0 0 0;
            /*font-weight: 600*/

            ;
        }
        fieldset {
            padding: 0;
            border-width: 0;
        }
        input[type="checkbox"],
        input[type="radio"] {
            display: inline;
            min-width: 60px;
        }
        label > .label-body {
            display: inline-block;
            margin-left: .5rem;
            font-weight: normal;
        }

    /* LISTS */

        ul {
            list-style: circle inside;
        }
        ol {
            list-style: decimal inside;
        }
        ol,
        ul {
            padding-left: 0;
            margin-top: 0;
        }
        ul ul,
        ul ol,
        ol ol,
        ol ul {
            margin: 1.5rem 0 1.5rem 3rem;
            font-size: 90%;
        }
        li {
            margin-bottom: 1rem;
        }

    /* CODE */  

        code {
            padding: .2rem .5rem;
            margin: 0 .2rem;
            font-size: 90%;
            white-space: nowrap;
            background: #F1F1F1;
            border: 1px solid #E1E1E1;
            border-radius: 4px;
        }
        pre > code {
            display: block;
            padding: 1rem 1.5rem;
            white-space: pre;
        }

    /* TABLES */

        th,
        td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #E1E1E1;
        }
        th:first-child,
        td:first-child {
            padding-left: 0;
        }
        th:last-child,
        td:last-child {
            padding-right: 0;
        }

    /* SPACING */

        button,
        .button {
            margin-bottom: 1rem;
        }
        input,
        textarea,
        select,
        fieldset {
            margin-bottom: 1.5rem;
        }
        pre,
        blockquote,
        dl,
        figure,
        table,
        p,
        ul,
        ol,
        form {
            margin-bottom: 2.5rem;
        }

    /* UTILITIES */

        .u-full-width {
            width: 100%;
            box-sizing: border-box;
        }
        .u-max-full-width {
            max-width: 100%;
            box-sizing: border-box;
        }
        .u-pull-right {
            float: right;
        }
        .u-pull-left {
            float: left;
        }

    /* MISC */

        hr {
            margin-top: 3rem;
            margin-bottom: 3.5rem;
            border-width: 0;
            border-top: 1px solid #E1E1E1;
        }

    /* CLEARING */

        .container:after,
        .row:after,
        .u-cf {
            content: "";
            display: table;
            clear: both;
        }

    /* NAVIGATION */

        .menu-burger {
            display: block;
            height: 60px;
            color: #000;
           background-image: url(../images/svg/hdanywhere-logo-horiz.svg)/*,  url(../images/svg/menu.svg)*/;
            background-color: #000;
            background-repeat: no-repeat;
            background-position: center, right;
            background-size: 240px, 40px;
        }
            .sub-menu img {
                width: 45%;
            }
        #side {
            display: none;
        }
        #side ul {
            list-style-type: none;
            display: block;
            width: 65%;
            margin: 20px auto 0 auto;
        }
        #side ul li {
            line-height: 30px;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 0.2em;
            font-size: 1.1rem;
        }
        #side ul li a {
            display: block;
            text-decoration: none;
            color: #999999;
            padding: 10px 0;
            border: 1px solid #999999;
        }
        #side ul li a:hover {
            color: #fff;
            border: 1px solid #fff;
        }

    /* SAVE PAGE */

        #sticky {
            padding: 0.5rem;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.50);
        }
        #sticky.stick {
            margin-top: 0 !important;
            position: fixed;
            top: 0;
            z-index: 10000;
        }
        #sticky > button {
            width: 30%;
            margin: 0 0 0 60%;
        }

    /* DASH INTERFACE ITEMS */

        .inline-ui {
            float: left;
            margin: 15px 0 27px 0;
            width: 100%;
            list-style-type: none;
        }

        .standard-ui-list,
        .standard-ui-save {
            list-style-type: none;
        }
        .radio-label {
            display: inline-block;
            line-height: 38px;
            font-weight: bold;
        }

        .main .standard-ui-save li,
        .sub-menu .standard-ui-save li,
        .sub-menu .standard-ui-save li button,
        .main .standard-ui-save li button {
            width: 100%;
        }

    /* ANIMATION */

        .spinner {
            margin: 100px auto;
            width: 50px;
            height: 40px;
            text-align: center;
            font-size: 10px;
        }
        .spinner > div {
            background-color: #333;
            height: 100%;
            width: 6px;
            display: inline-block;
            -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
            animation: sk-stretchdelay 1.2s infinite ease-in-out;
        }
        .spinner .rect2 {
            -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
        }
        .spinner .rect3 {
            -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
        }
        .spinner .rect4 {
            -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
        }
        .spinner .rect5 {
            -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
        }
        @-webkit-keyframes sk-stretchdelay {
            0%, 40%, 100% {
                -webkit-transform: scaleY(0.4)
            }
            20% {
                -webkit-transform: scaleY(1.0)
            }
        }
        @keyframes sk-stretchdelay {
            0%, 40%, 100% {
                transform: scaleY(0.4);
                -webkit-transform: scaleY(0.4);
            }
            20% {
                transform: scaleY(1.0);
                -webkit-transform: scaleY(1.0);
            }
        }


    /* PAGE SPECIFIC */
        
		.videoWrapper {
		position: relative;
		padding-bottom: 56.25%; /* 16:9 */
		padding-top: 25px;
		height: 0;
	}
	.videoWrapper iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.intro {padding: 15px 0;}






/*
--
--
--
-- END ALL RESOLUTION BASE STYLES */





/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------
/*--------------------------------------------------------------------------



/* Small mobile devices */

@media (min-width: 320px) {
    
    .inline-ui {
        margin-left: 0%;
        width: 100%;
    }
    .logo h1 {
        font-size: 7rem;
        margin: 0;
        padding: 30px 0;
        letter-spacing: 0.3em;
        text-align: center;
        display: none;
    }
    .info {
        display: none;
    }
    .page-title {
        background-color: #1a1a1a;
    }
    .page-title h2 {
        font-size: 2.2rem;
        padding: 20px 0;
        margin: 0;
        text-transform: uppercase;
        color: #999999;
        letter-spacing: 0.3em;
        text-align: center;
    }
    .sub-menu {
        background: #111111;
    }
    .sub-menu img {
        width: 20%;
        margin: 20px 40%;
        float: left;
    }
    .sub-menu h3 {
        font-size: 2.5rem;
        text-transform: uppercase;
        margin-top: 15px;
        width: 100%;
        text-align: center;
        display: block;
    }
    .sub-menu p {
        font-size: 1.2rem;
        color: #999999;
        width: 90%;
        text-align: center;
        padding: 0 5%;
    }
    .input-status {
        display: none;
    }
    label,
    legend {
        font-size: 1.2rem
    }
    .info ul {
        list-style-type: none;
    }
    .main .standard-ui-list {
        width: 90%;
        margin: 15px 5%;
        float: left;
    }
    .main .standard-ui-save,
    .sub-menu .standard-ui-save {
        float: left;
        width: 80%;
        margin: 30px 10%;
    }
    .main .standard-ui-save li,
    .sub-menu .standard-ui-save li,
    .sub-menu .standard-ui-save li button,
    .main .standard-ui-save li button {
        width: 100%;
    }
    .ui-status-label {
        padding: 0 10px;
        float: right;
        height: 36px;
        line-height: 36px;
    }
    .good {
        background-color: #5ABF41;
        border: 1px solid #19661F;
    }
    .bad {
        background-color: #B31F21;
        border: 1px solid #78181A;
    }
    .normal {
        background: none;
        border: 1px solid #cecece;
    }
}



@media only screen (min-width: 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio: 2) {} /* END IPAD ONLY */












/* Larger than iPad in portrait/tablet - NOW LOAD NORMAL DESKTOP VIEW  */

/**/
@media (min-width: 768px) {
    
     .menu-burger,
    #sticky,
    #sticky.stick {
        display: block;
    }
    /* Hide the Menu burger */
    
    .hda-logo {
        width: 33px;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
    }
    .logo {} .logo h1 {
        font-size: 9.355rem;
        padding: 15px 0px 15px 15px;
        text-align: left;
        display: block;
    }
    .info {
        display: block;
    }
    .info ul {
        list-style-type: none;
        font-size: .85rem;
        line-height: 0.8;
        margin: 40px 15px 0 0;
        text-align: right;
        text-transform: uppercase;
    }
    .info ul .ctrl-info {
        color: #cecece;
        padding-right: 7px;
    }
    .page-title {
        background-color: #1a1a1a;
    }
    .page-title h2 {
        font-size: 4.2rem;
        padding: 50px 0 50px 20px;
        margin: 0;
        text-transform: uppercase;
        color: #999999;
        letter-spacing: 0.3em;
        text-align: left;
    }
    .sub-menu,
    .main {
        margin-top: 25px;
    }
    .sub-menu {
        padding-left: 15px;
        background-color: transparent;
    }
    .main {
        padding-right: 15px;
    }
    .main .standard-ui-list,
    .main .standard-ui-save,
    .sub-menu .standard-ui-save {
        margin: 30px 0;
        width: 100%;
    }
    .main .standard-ui-save li {
        margin-left: 30%;
    }
    .main .standard-ui-list {
        width: 100%;
        float: none;
        margin: 0;
    }
    .sub-menu img {
        width: 50%;
        margin: 0;
        float: none;
    }
    .sub-menu h3 {
        text-align: left;
    }
    .sub-menu p {
        text-align: left;
        width: 100%;
        padding: 0;
    }
    .main .standard-ui-save li,
    .sub-menu .standard-ui-save li,
    .sub-menu .standard-ui-save li button,
    .main .standard-ui-save li button {
        width: auto;
    }
    label,
    legend {
        float: left;
        width: 30%;
    }
    input[type="email"],
    input[type="number"],
    input[type="search"],
    input[type="text"],
    input[type="tel"],
    input[type="url"],
    input[type="password"],
    textarea,
    select {
        width: 60%;
    }
    .inline-ui {
        margin-left: 30%;
        width: 60%;
    }
    .input-status {
        width: 5%;
        display: block;
        text-transform: uppercase;
        text-align: center;
        font-weight: bold;
        font-size: 0.8rem;
    }
    .ui-status-label {
        padding: 0 10px;
        float: right;
        height: 36px;
        line-height: 36px;
    }
    .good {
        background-color: #5ABF41;
        border: 1px solid #19661F;
    }
    .bad {
        background-color: #B31F21;
        border: 1px solid #78181A;
    }
    .normal {
        background: none;
        border: 1px solid #cecece;
    }
    /*NAVIGATION*/
    
    html,
    body {
        width: 100%;
        height: 100%;
        /*padding: 0;
            margin: 0;
            overflow-x: hidden;*/
    }
    
    
    
    
} 



 





/* Larger than desktop */

@media (min-width: 1000px) {}
/* Larger than Desktop HD */

@media (min-width: 1200px) {
    .container {
        width: 1280px;
    }
}
.custom_span {
    margin-left: 250px!important;
    color: red!important;
}
#fade_element {
    display: none;
    background: none repeat scroll 0 0 black;
    position: fixed;
    opacity: 0.5;
    z-index: 1000001;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}