/*
[//]: # (Body and font sizes)
*/

@font-face {
    font-family: "Roboto";
    src: url("/Learning/css/fonts/Roboto-Regular.woff2") format("woff2"),url("/Learning/css/fonts/Roboto-Regular.woff") format("woff"),url("/Learning/css/fonts/Roboto-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
}


@font-face {
    font-family: "Roboto Bold";
    src: url("/Learning/css/fonts/Roboto-Bold.woff2") format("woff2"),url("/Learning/css/fonts/Roboto-Bold.woff") format("woff"),url("/Learning/css/fonts/Roboto-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
}


html {
    /*font-family: 'Roboto', Helvetica, Arial, sans-serif;*/
    /*letter-spacing: .03em;*/
    line-height: 62.5%;
    color: #222;
    font-size: 100%;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif !important;
    letter-spacing: normal;
}

@media (max-width:991px) {
    html {
        font-size: 62.5%;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-size: 1.6rem;
    line-height: 1.8rem;
}

/*
# Heading Examples
 ```
    <h1>Heading 1</h1>
    <h2>Heading 2</h2>
    <h3>Heading 3</h3>    
```
*/
h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 4.0rem;
    line-height: 4.0rem;
    margin-bottom: 2.0rem;
    font-weight: normal;
}

h2 {
    font-size: 2.8rem;
    line-height: 2.8rem;
    margin-bottom: 2.0rem;
}

h3 {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.6rem !important;
    line-height: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Roboto Bold', Helvetica, Arial, sans-serif !important;
    line-height: normal;
}

.clearBoth {
    clear: both
}
/*
# Paragraph text
```
    <p class="fixie"></p>
```
*/
p {
    font-size: 1.6rem;
    margin: 0 0 1.0rem 0;
    line-height: 2rem;
    font-size: 1.6rem;
    line-height: 1.8rem;
    line-height: normal;
}


/* COLOR useabge eg.  background-color: var(--color-blue);*/
:root {
    --color-blue: #0b509f;
    --color-green: #3ca851;
    --color-red: #cf2a27;
    --color-orange: #ff9900;
    --color-dgray: #ddd;
    --color-lgray: #eee;
    --color-gray-bg: #edeff0;
    --color-light: #f5f5f5;
}

body, nav ul {
    background-color: var(--color-gray-bg) !important
}

    body.fe {
        background-color: #fff !important
    }

.blueBg {
    background-color: var(--color-blue);
    color: #fff
}
/*
# Responsive Image
   This will be 100% to fill the grid column;
```
    <img src="/img/logo.jpg" alt="image" />
```
# Original Image Width
   This is will be original size. Either set it with a class, or add your image into a 'p' for original width;
```   
    <p><img src="/img/logo.jpg" alt="image" /></p>
    
    <img src="/img/logo.jpg" alt="image" class="width-initial" />

    <div class="width-initial">
        <img src="/img/logo.jpg" alt="image" />
    </div>
```
*/
picture, img {
    display: block;
}

.row-fluid p img,
.row-fluid .width-initial,
.row-fluid .width-initial img {
    width: initial;
}

figure {
    margin: 0;
}


/*
# Unordered List
```
    <ul>
        <li>List item 1</li>
        <lh>A list heading</lh>
        <li>List item 2</li>
    </ul>
```
# Ordered List
```
    <ol>
        <li>List item 1</li>
        <li>List item 2</li>
    </ol>
```
*/

ul, ol {
    font-size: 1.6rem;
    padding: 0;
    margin: 0 0 2.0rem 0;
    overflow: hidden;
}

    ul lh, ol, lh {
        font-weight: bold;
    }

    ul li {
        list-style: outside;
        margin-left: 25px;
    }

    ol > li {
        list-style: decimal;
        list-style-position: inside;
    }

    ol.alpha > li {
        list-style: upper-alpha;
    }


a {
    font-size: 1.6rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: var(--color-blue);
}

    a:hover, a.active {
        text-decoration: underline;
    }

time {
    font-size: inherit;
    margin: 0 0 2.0rem 0;
}

hr {
    margin: 1rem 0;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #ccc !important;
}


/*
[//]: # (Page Structure)
[//]: # (**************)
*/

header {
    padding: 1.5em 0 0 0;
}

main {
    /*margin-top: 1em;*/
}

@media (min-width:768px) {
    header .logo {
        margin-top: 10px;
    }
}

/*
[//]: # (Navigation)
[//]: # (**********)
*/
@media(min-width:768px) {
    .nav-wrapper {
        display: block !important;
        overflow: auto;
        width: 100%;
    }
}

nav ul {
    background-color: #fff;
}

    nav ul li {
        list-style: none;
        padding: 1rem;
    }

        nav ul li:first-child {
            padding-left: 0;
        }

        nav ul li:last-child {
            padding-right: 0;
        }

        nav ul li a {
            font-size: 1.6rem;
            padding: .4rem 0;
            color: #222;
        }

            nav ul li a:hover {
                text-decoration: none;
            }

            nav ul li a:first-child {
                /*padding-left: 0;*/
            }


    /*
[//]: # (One Level Navigation)
*/
    nav ul.level-one {
        float: right;
    }

@media (min-width: 768px) {

    nav ul.level-one {
        display: block;
        overflow: visible
    }

        nav ul.level-one li {
            float: left;
            list-style: none;
            margin: 0;
        }

        nav ul.level-one.hover > li:hover ul.level-two {
            display: block;
        }
}

/*
[//]: # (Two Level Navigation)
*/
.level-one.nav.navbar-nav .hide-m {
    position: relative
}

nav ul.level-two {
    display: none !important;
    position: absolute;
    z-index: 999999;
    width: 8rem;
    width: 300%;
    background-color: #fff;
}

    nav ul.level-two li {
        padding: 5px 15px;
        clear: both;
        background-color: #fff;
    }

/*nav ul.level-two.expand {
        display: block !important
    }*/


@media (min-width: 768px) {
    nav ul.level-two.hover li:hover ul.level-three {
        display: block;
    }
}
/*
[//]: # (Three Level Navigation)
*/
nav ul.level-three {
    display: none;
}

@media (min-width: 768px) {
    nav ul.level-three.hover li:hover ul {
        display: block;
    }
}

/*
[//]: # (Hamburger)
*/
nav .hamburger {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

    nav .hamburger img {
        width: 56%;
        max-width: 44px;
    }

    nav .hamburger a {
        cursor: pointer;
        padding: 10px 36px 16px 0;
        z-index: 999;
        position: absolute;
        right: 3.5rem;
    }

@media (min-width: 768px) {

    nav .hamburger {
        display: none;
    }

    nav.fly-out .hamburger {
        display: block;
    }
}


.hamburger span,
.hamburger span:before,
.hamburger span:after {
    cursor: pointer;
    border-radius: 3px;
    height: 5px;
    width: 35px;
    background: var(--color-blue);
    position: absolute;
    display: block;
    content: '';
}

    .hamburger span:before {
        top: -10px;
    }

    .hamburger span:after {
        bottom: -10px;
    }


.hamburger-animate span,
.hamburger-animate span:before,
.hamburger-animate span:after {
    transition: all 100ms ease-in-out;
}

.hamburger-animate.active span {
    background-color: transparent;
}

    .hamburger-animate.active span:before, #nav-toggle.active span:after {
        top: 0;
    }

    .hamburger-animate.active span:before {
        transform: rotate(45deg);
        top: 0px;
    }

    .hamburger-animate.active span:after {
        transform: rotate(-45deg);
        bottom: 0px;
    }

/*
[//]: # (Flyout)
*/
nav.fly-out .wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .2);
}

    nav.fly-out .wrapper.menu {
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
    }

nav.fly-out nav .hamburger {
    display: none;
}

@media (max-width:767px) {
    nav.fly-out .wrapper.menu {
        height: 75vh;
    }
}

@media (min-width: 768px) {
}

/*
[//]: # (Footer Navigation)
*/

@media (min-width: 768px) {
}




/*
[//]: # (Common styles for responsive and layout)
[//]: # (***************************************)
*/

.collapse {
    display: none;
}

.expand {
    display: block !important;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}


.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

@media (min-width: 768px) {
    .no-padding-sm {
        padding: 0;
    }

    .no-margin-sm {
        margin: 0;
    }
}


.center-text {
    text-align: center;
}

.strong {
    font-weight: 900;
}

.no-border {
    border: none !important;
}

.right {
    float: right;
    right: 0;
}

.bottom {
    position: absolute;
    bottom: 0;
}

@media (min-width: 768px) {
    .right-sm {
        float: right;
        right: 0;
    }
}


.full-width {
    position: relative;
    width: calc(100vw);
    left: 0;
    margin-left: calc(-50vw + 50%) !important;
}

.full-container {
    width: 100% !important;
}

.half-container {
    width: 50% !important;
}


/*
[//]: # (Screen Read AODA)
[//]: # (****************)
*/
.off-screen {
    position: absolute;
    left: -99999px
}

:focus {
    /*background: #fff !important;
    color: #000 !important;*/
}

.accessible {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    color: #fff;
}

    .accessible:focus {
        position: static;
        width: auto;
        height: auto;
    }


/*
[//]: # (TypeKit fix for FOUT on firefox)
[//]: # (*******************************)
*/
.wf-loading {
    visibility: hidden; /* Hide elements while web fonts are loading */
}

/*
[//]: # (Handle Flash of Unstyled Content)
[//]: # (********************************)
*/
.fouc {
    display: none;
}


/*
[//]: # (Magnific popup Overrides)
[//]: # (************************)
*/
.mfp-inline-holder .mfp-content {
    width: initial !important;
}


/*
[//]: # (responsive video)
[//]: # (****************)
*/
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*
[//]: # (Content Card in Grid)

# Content Card in Grid
```
    <div class="row-fluid equal-height-js grey-bg">
        <div class="span-4 col-sm-4">
            <div class="inner">
                <p>inner stuff</p>
            </div>
        </div>
    </div>
```
*/
[class*=span] .inner {
    height: 100%;
}

.grey-bg [class*=span] .inner {
    padding: 1rem;
    background-color: #cccccc;
}


/*
[//]: # (Form.css Override) 
*/
.form-row label, .form-row span.validation, .form-row .tip, .form-row .tool-tip, .form-row input, .form-row textarea, .form-row keygen, .form-row select, .form-row button {
    font-size: 1.6rem;
}


/*
# Input's
    Most forms will be laid out as per /StyleGuide/#/style/Learning/css/advantage.2.0.css 
    Overrides here for border and colors;
```
    <input type="text" /><br/>
    <select>
		<option value="Please Select">Please Select</option>
	</select><br/>
    <textarea rows="2" cols="20"></textarea><br/>
```
*/
input[type=text],
input[type=password],
select,
textarea {
    padding: 10px 5px;
    border: 1px solid #999;
    border-radius: 0.35rem;
    -moz-box-shadow: inset 0 0 5px #DDDDDD;
    -webkit-box-shadow: inset 0 0 5px #DDDDDD;
    box-shadow: inset 0 0 5px #DDDDDD; /*Inner Shadow*/
    color: rgb(68, 68, 68);
}

.pnlCurrency input[type=text],
.pnlCurrency input[type=password],
.pnlCurrency select,
.pnlCurrency textarea {
    padding: 0;
    box-shadow: none
}

input[type=text]:hover,
input[type=password]:hover,
select:hover,
.list-control:hover,
textarea:hover {
    border-color: #555;
}

input[type=text]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
    border-color: var(--color-blue);
}


/*
# Button 
```
    <a href="" class="button">Button</a>
    <input type="submit" value="Button" />
```
*/
.button,
input[type=submit] {
    background-color: var(--color-blue);
    color: #fff !important;
    font-size: 1.8rem;
    text-transform: none;
    padding: 7px 25px !important;
    border: 1px solid var(--color-blue);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    border-radius: 19px;
}

    input[type=submit].btnCart {
        background-color: var(--color-green);
    }

    .button:hover,
    input[type=submit]:hover {
        background-color: #efefef;
        border: 1px solid var(--color-blue);
        border: 1px solid transparent;
        color: var(--color-blue) !important;
    }

    .button.red {
        background-color: var(--color-red);
        color: #fff !important;
    }

    .button.green {
        background-color: var(--color-green);
        color: #fff !important;
    }

    .button.ghost {
        background-color: #fff !important;
        color: #000;
    }

    .button.disabled {
        opacity: 0.5;
        pointer-events: none;
    }

    .button.red:hover, .button.green:hover, .button.ghost:hover {
        opacity: 0.8
    }


/*
[//]: # (Tabbed Content)
[//]: # (**************)
[//]: # (*Tabbed Content styles not needed with bootstrap)
*/
.tabbed .tabbed-nav {
    text-align: center;
    margin-bottom: 0;
}

    .tabbed .tabbed-nav li {
        float: left;
        list-style: none;
        margin: 0;
        z-index: 1;
        /*width: 20%;*/
        border-right: 1px solid #cccccc;
        border-bottom: 0;
        background-color: var(--color-blue);
        background-color: transparent
    }

        .tabbed .tabbed-nav li a {
            color: #fff;
            color: var(--color-blue);
            padding: 0 10px;
        }

            .tabbed .tabbed-nav li a:hover {
                color: #000
            }

        .tabbed .tabbed-nav li.active {
            color: #fff;
            border-bottom-color: #fff;
            /*background-color: var(--color-blue);*/
            border: 0
        }

        .tabbed .tabbed-nav li:last-child {
            border-right: 1px solid #cccccc;
        }

        .tabbed .tabbed-nav li a {
            /*padding: 10%;*/
            text-align: center;
            width: 100%;
            white-space: nowrap;
            font-size: 18px
        }

nav.tabbed-nav > a:hover {
    border: 0 !important
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background-color: transparent !important;
}


.dashBoard.tabbed-content.tab-content {
    padding: 2em;
    border: 1px solid #ccc;
    background: #efefef
}

.dashBoard.tabbed .tabbed-content .tab-pane {
    display: none;
}



.nav-tabs {
    border-bottom: 0 !important
}

.tabbed .tabbed-nav li a {
    border-radius: 0 !important
}

.ui-accordion .ui-accordion-header:after {
    content: '\f067';
    font-family: FontAwesome;
    font-size: 22px;
    right: 10px;
    transition: all 0.3s
}

.ui-accordion-header-active.ui-state-active:after {
    transform: rotate(45deg)
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    /*border: 0 !important;*/
    border-right: 1px solid transparent !important;
    border-top: 1px solid transparent !important;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent
}
/*.nav-tabs > li {border-top:0 !important; border-bottom:0 !important}*/

.nav-tabs > li {
    border-right: 1px solid transparent !important;
    border-left: 1px solid transparent !important
}

    .nav-tabs > li:last-child {
        border-right: 0 !important;
    }

.infoBox {
    padding: 15px 45px !important;
    border-radius: 4px !important;
    margin-bottom: 15px !important;
    position: relative !important;
    font-size: 16px !important;
}

    .infoBox.green::before {
        content: "\f00c" !important;
        font-family: 'FontAwesome' !important;
        position: absolute !important;
        left: 10px !important;
        font-size: 25px !important;
        top: 15% !important;
    }

.close {
    float: right;
    font-size: 25px !important;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: none !important;
    opacity: 1 !important;
}


.infoBox.closable.green::after, .infoBox.closable.orange::after, .infoBox.closable.red::after {
    content: "\f057";
    position: absolute;
    font-family: 'FontAwesome';
    right: 5px;
    font-size: 25px;
    top: 15%;
    color: #333;
}


.infoBox.green {
    background: #b7e3b5;
    background: var(--color-green);
    color: var(--color-green);
    color: #FFF
}

.infoBox.orange {
    background: #f4bf88;
    color: #000
}

.infoBox.red {
    background: #cf2a27;
    color: #fff
}

.button.orange {
    background: #f4bf88 !important;
    color: #000
}


.infoBox.orange::before {
    content: "\f06a";
    font-family: 'FontAwesome';
    position: absolute;
    left: 10px;
    font-size: 25px;
    top: 15%;
    color: #a14a00
}

.infoBox.red::before {
    content: "\f06a";
    font-family: 'FontAwesome';
    position: absolute;
    left: 10px;
    font-size: 25px;
    top: 15%
}

.navbar-default {
    background: transparent;
    border: 0;
    width: auto;
    float: right
}

    .navbar-default .navbar-nav > li > a {
        border-bottom: 1px solid transparent
    }

        .navbar-default .navbar-nav > li.active > a,
        .navbar-default .navbar-nav > li.active > a:hover,
        .navbar-default .navbar-nav > li.active > a:focus, .navbar-default .navbar-nav > li > a:hover {
            /*color: #fff !important;
        background-color: var(--color-blue) !important;*/
            background-color: #fff !important;
            border-bottom: 1px solid var(--color-blue) !important
        }

footer.fullWidth {
    margin-top: 50px;
    padding: 50px;
    background: var(--color-blue);
    color: #fff
}

    footer.fullWidth .container {
        color: #fff
    }

        footer.fullWidth .container .footerRight {
            text-align: right
        }


.blueCallout {
    padding: 20px 40px;
    background-color: var(--color-blue);
    color: #fff;
    margin-bottom: 50px
}

.no-gutter-mobile.user_registeration .form-row {
    margin-bottom: 20px
}

.no-gutter-mobile.user_registeration label, .form-builder label, .form-group label {
    width: 20%;
    padding-right: 5px;
    float: left
}

.shift20, .error span {
    margin-left: 20% !important;
    /*margin-top: 15px !important;*/
}

.no-gutter-mobile.user_registeration input, .form-builder input, .form-group input, .form-group select {
    width: 80% !important;
    float: left
}

    .no-gutter-mobile.user_registeration input.clear {
        width: 100% !important
    }

.question .form-group input {
    width: auto !important;
    margin-right: 8px
}

.breadcrumb {
    background: transparent !important
}

.form-row.error div.validation {
    display: block !important;
    padding-top: 20px !important
}

.form-row.error div.validation, .form-row.error span.validation {
    display: block !important
}

.form-row.error label span.validation {
    display: inline-block !important;
    margin-left: 0 !important
}

.button.w100 {
    width: 100%;
    text-align: center
}

.call-to-action {
    margin-bottom: 25px
}

.marginNone {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0;
    padding-right: 0
}

#userCourseModule .ui-accordion .ui-accordion-header:after {
}

h4.ui-accordion-header {
    position: relative
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0 !important
}

    h1 span, h1, .userCourseDetailContent h3 {
        color: var(--color-blue)
    }

h4 {
    line-height: normal
}

    h4 strong {
        font-weight: normal !important
    }

.userCourseDetailContent p span {
    line-height: 22px
}

.UserCourseDetail {
    position: relative !important
}

.ui-accordion-content.ui-corner-bottom.ui-helper-reset.ui-widget-content.ui-accordion-content-active {
    /*height: auto !important;*/
    /*padding: 10px;*/
    /*margin-top: -10px;*/
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 70px;
}

.Userbutton {
    width: 80% !important;
    float: right !important;
    padding-left: 10px /*!important*/;
}

    .Userbutton .clear {
        width: auto !important;
        float: left !important;
    }

    .Userbutton input {
        width: auto !important
    }

.add-to-cart-text:before {
    content: "\f07a";
}


/*responsive tables*/
.btnspan {
    float: left;
    margin-left: 6px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    color: white;
    display: none
}

.filter_status, .filter_status_cre {
    margin: 15px 0
}

body {
    line-height: 1.25;
}

table.courseGrid, table.certsGrid {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

    table.courseGrid caption, table.certsGrid caption {
        font-size: 1.5em;
        margin: .5em 0 .75em;
    }

    table.courseGrid tr, table.certsGrid tr {
        background-color: #f8f8f8;
        border: 1px solid #ddd;
        padding: .35em;
    }

    table.courseGrid th,
    table.courseGrid td, table.certsGrid th, table.certsGrid td {
        padding: .625em;
        text-align: center;
    }

    table.courseGrid th, table.certsGrid th {
        font-size: .85em;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

footer > .container {
    width: auto
}

.breadcrumb {
    padding: 8px 0 !important;
    margin-bottom: 0 !important
}

.tileDisplay li.span-4 {
    width: 31% !important;
    min-width: 31% !important
}

.shower:before {
    content: "\f025";
    font-family: 'FontAwesome'
}

.tileDisplay ul li {
    background: #fff;
    /*background: var(--color-light);*/
    border: 1px solid #ddd;
    list-style: none;
    float: left;
    padding: 15px
}

    .tileDisplay ul li:hover {
        border: 2px solid #ddd;
    }



header .row-fluid.row {
    margin-bottom: 0
}


@media (max-width:767px) {
    footer .fullWidth .container .footerRight, footer.fullWidth .container .footerLeft {
        text-align: center
    }

    .navbar.navbar-default {
        width: 100%
    }

    .navbar {
        position: unset !important
    }

    nav ul.level-one {
        width: 100%;
        float: left
    }

    nav ul.level-two {
        position: relative
    }

    nav .hamburger a {
        right: 0
    }
}

.filter_status, .filter_status_cre {
    padding-left: 0 !important;
    margin-right: 20px;
}

.tileDisplay .span-4 {
    margin-bottom: 20px;
    padding: 0;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, .3);*/
}

    .tileDisplay .span-4 > * {
        padding: 5px 15px
    }

    .tileDisplay .span-4 a {
        padding: 0 !important
    }

.tabbed-content.tab-content .tab-pane {
    height: auto;
    transition: height 4s;
    overflow: hidden
}

.user_login, .containedArea {
    padding: 25px 0;
    background-color: var(--color-dgray);
    background-color: var(--color-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    background-color: #fff;
    box-shadow: none;
    margin: 0 15px;
    /*background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg fill-opacity='0.02'%3E%3Cpath fill='%23cfd5e5' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23a9b4d4' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%238294c4' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%235c73b3' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%233653a3' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%235e75b5' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%238698c8' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23afbada' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23d7dded' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23ffffff' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;*/
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form, nav ul {
    border-color: transparent;
    background-color: transparent !important
}

body.fe {
    background: #fff;
    background-image: none;
}
/*body.fe {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg fill-opacity='0.02'%3E%3Cpath fill='%23cfd5e5' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23a9b4d4' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%238294c4' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%235c73b3' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%233653a3' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%235e75b5' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%238698c8' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23afbada' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23d7dded' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23ffffff' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}*/

.row-fluid.row.containedArea {
    margin-left: 0;
    margin-right: 0;
    margin-top: 25px
}

.user_login hr {
    border-top: 1px solid #ccc
}

.user_registeration .span-8.marginNone {
    border-right: 1px solid #ccc;
    margin-right: 0 !important;
    padding-right: 25px
}

.nav-tabs > li > a:hover {
    background: transparent !important;
    border-color: transparent !important;
    border-bottom: 1px solid var(--color-blue) !important
}

.row-fluid.row.containedArea .form-group {
    margin-top: 25px
}

    .row-fluid.row.containedArea .form-group input, .row-fluid.row.containedArea .form-row textarea {
        width: 100% !important
    }

main.container .span-12.col-sm-12 {
    padding-left: 0;
    padding-right: 0
}

main.container .containedArea .span-12.col-sm-12 {
    padding-left: 15px;
    padding-right: 15px
}

.user_registeration .span-8.marginNone {
    margin-right: 25px !important;
    padding-right: 43px
}

@media (max-width: 767px) {
    .swiper-wrapper h1 {
        color: #000 !important
    }

    .navbar-nav > li > a {
        padding-left: 10px !important;
        margin-left: 0 !important
    }

    nav ul li {
        padding: 0 !important
    }

    .user_registeration .span-8.marginNone {
        border: 0;
        padding-right: 0 !important;
        margin-right: 0 !important
    }

    #div_ExisitngLogin {
        margin-top: 50px
    }


    .no-gutter-mobile.user_registeration label, .form-builder label, .form-group label, .no-gutter-mobile.user_registeration input, .form-builder input, .form-group input {
        width: 100% !important
    }

    .shift20, .error span {
        margin-left: 0 !important
    }

    .Userbutton {
        width: auto !important;
        float: left !important
    }

    .no-gutter-mobile.user_registeration {
        margin-bottom: 70px
    }

    .searchField {
        max-width: 100% !important
    }

    footer.fullWidth .container .footerRight {
        text-align: center !important
    }

    .call-to-action > .span-3 {
        width: 50% !important;
        float: left
    }

    .tileDisplay {
        margin-right: 15px
    }

        .tileDisplay ul {
            overflow: visible
        }

        .tileDisplay li.span-4 {
            width: 100% !important;
            height: auto !important;
            margin-left: 0 !important
        }

    .theQuestion {
        margin-top: 50px
    }

    .question input[type=submit] {
        margin-bottom: 10px;
        width: 100%
    }

    .previousBtn {
        right: unset !important;
        left: 15px;
        top: -45px !important;
        width: auto
    }

    .openMods a {
        width: 100%;
        text-align: center
    }

    .form-group select {
        width: 100% !important;
        float: left;
    }
}



@media screen and (max-width: 600px) {
    table .courseGrid, table.certsGrid {
        border: 0;
    }

        table.courseGrid tbody tr:first-child, table.certsGrid tbody tr:first-child {
            display: none !important
        }

        table.courseGrid caption, table.certsGrid caption {
            font-size: 1.3em;
        }

        table.courseGrid thead, table.certsGrid thead {
            border: none;
            clip: rect(0 0 0 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
        }

        table.courseGrid tr, table.certsGrid tr {
            border-bottom: 3px solid #ddd;
            display: block;
            margin-bottom: .625em;
        }

        table.courseGrid td, table.certsGrid td {
            border-bottom: 1px solid #ddd;
            display: block;
            font-size: .8em;
            text-align: right;
        }

            table.courseGrid td::before, table.certsGrid td:before {
                content: attr(data-label);
                float: left;
                font-weight: bold;
                text-transform: uppercase;
            }

            table.courseGrid td:last-child, table.certsGrid td:last-child {
                border-bottom: 0;
            }
}

.tabbed-content.tab-content {
    /*background: var(--color-light) !important;*/
    border: 0;
    padding: 2em /*5px*/
}

.call-to-action, .tabbed {
    box-shadow: none !important;
    border: 1px solid #ddd
}

.calendar .tabbed {
    border: 0
}

.filter_status, .filter_status_cre {
    width: auto;
    float: left
}

.searchField {
    max-width: 291px;
    float: right
}

table.courseGrid td {
    background: #fff
}


.btnSearch, .btnSearch:hover {
    padding: 10px 5px !important;
    position: absolute;
    right: 5px;
    text-decoration: none
}

    .btnSearch:before {
        content: "\f002";
        font-family: 'FontAwesome'
    }


.RadPanelBar_Black .rpItem .rpLink.rpHovered:not(.rpExpandable ) {
    background-color: #efefef !important;
    opacity: 0.9;
    color: #333;
    background-image: none !important;
    box-shadow: none;
    border-color: transparent
}

.call-to-action {
    background: var(--color-blue) !important
}

.call-to-action {
    color: #fff !important
}

    .call-to-action a {
        background-color: var(--color-green)
    }

header.container {
}

    header.container img {
        max-width: 180px
    }

.RadWindow_Default {
    padding: 0 !important;
    border: 0 !important
}

    .RadWindow_Default .rwContent {
        background-color: transparent !important;
        max-width: 1400px;
        width: 100%;
        margin: auto;
        border: 0 !important
    }

.RadWindow.RadWindow_Default.rwNoTitleBar.rwMaximizedWindow {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg fill-opacity='0.02'%3E%3Cpath fill='%23d3e6d3' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23b1d7b2' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%238dc891' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%2368b871' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%233ca851' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%236aba73' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%2391cb95' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23b6ddb7' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23dbeedb' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23ffffff' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}

.nav > li > a:hover, .nav > li > a:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    /*border-bottom: 1px solid var(--color-blue) !important;*/
}

.rwContent.rwExternalContent {
    height: 100% !important
}
/* snip*/
.snip-layout {
    background: rgba(251, 251, 251, 0.75) !important;
    transition: all 0s !important
}

    .snip-layout .snip-header {
        background: #fff !important;
    }

    .snip-layout .snip-header {
        color: #000 !important;
    }

    .snip-layout span {
        font-family: Roboto, Helvetica, Arial, sans-serif !important;
    }

#snipcart-title {
    /*font-family: 'Playfair Display', serif !important;*/
    text-transform: capitalize;
    left: 0 !important;
}

.snip-header__total-label {
    /*font-family: 'Playfair Display', serif !important;*/
    text-transform: capitalize;
}

.snip-layout .snip-header__total-label {
    color: #000 !important;
    font-weight: 500;
    font-size: 22px;
}

.snip-layout .snip-layout__main-container {
    background: #fff;
    position: absolute !important;
    right: 0;
    top: 0;
    height: 100%;
    box-shadow: 0px 0px 15px 10px #a2a2a2;
}

.snip-layout {
    z-index: 99999 !important;
}

    .snip-layout .snip-header__total {
        background: #fff !important;
    }

    .snip-layout .snip-product__description,
    .snip-layout .snip-product__name {
        font-family: Roboto, Helvetica, Arial, sans-serif !important;
    }

.snip-actions {
    border: 0 !important;
    padding-right: 0 !important;
}

#snipcart-previous,
.snip-btn {
    background: var(--color-blue) !important;
    color: #fff !important;
    font-family: Roboto, Helvetica, Arial, sans-serif !important;
    padding: 5px 20px 40px 20px !important;
    padding: 7px 25px !important;
    border-radius: 0.5rem !important;
}

.snip-layout .snip-btn--highlight {
    background: var(--color-orange);
    color: #222;
}

#snipcart-previous:hover,
.snip-btn--highlight:hover {
    background: #003360 !important;
    border-color: #003360 !important;
    color: #fff !important;
    cursor: pointer;
}




.snip-layout .snip-ico--close:before {
    content: "" !important;
}

#snipcart-main-content {
    padding: 50px;
    background: #fff;
}


.snip-layout .snip-quantity-trigger__btn--duplicate {
    background-color: var(--color-orange) !important;
}

.snip-layout .snip-quantity-trigger__btn:hover {
    background-color: var(--color-orange) !important;
}

.snip-layout .snip-loader--bar:before {
    background-color: var(--color-orange) !important;
}

.snip-layout .snip-flash__item--warn {
    background-color: var(--color-orange) !important;
}

.snip-layout .snip-badge--warn {
    background-color: var(--color-orange) !important;
}



/*
     background: #036cb6;
    color:#fff;
           }

           .smaller:hover{
    background: #003360 !important;
    border-color:#003360 !important;
    color:#fff !important;
    cursor:pointer;
           }
 */

.snip-layout .snip-product__remove {
    font-family: Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
    padding-top: 8px !important;
    color: #F15F99 !important;
    float: right !important;
}

.snip-quantity-trigger > span,
.snip-table__cell--right > span {
    font-family: Roboto, Helvetica, Arial, sans-serif !important;
}

.snip-layout .snip-table td,
.snip-layout .snip-table th,
.snip-layout .snip-table tr {
    padding-right: 0 !important;
    padding-left: 0 !important;
    min-width: 100px;
}

.snip-layout #snipcart-main-content .snip-header {
    height: auto;
}

.snip-layout #snipcart-main-content .snip-header__title {
    width: 100%;
    position: relative;
    line-height: normal;
}

.snip-layout #snipcart-main-content .snip-header__total {
    display: block;
    margin-top: 10px;
    text-align: left;
    padding-left: 0;
    margin-bottom: 30px;
}

.snip-layout #snip-layout-cart-content .snip-layout__close {
    top: 50px;
    right: 50px;
}


@media (max-width: 767px) {



    #snipcart-main-content {
        padding: 25px;
    }

    .snip-layout #snipcart-main-content .snip-header__total {
        margin: 0px;
    }

    .snip-layout #snip-layout-cart-content .snip-layout__close {
        top: 40px;
        right: 20px;
    }

    .snip-layout .snip-header {
        padding: 1em 1em 1em 0 !important;
    }

    .snip-layout .snip-discount__remove, .snip-layout .snip-product__remove {
        position: static !important;
    }

    .snip-layout .snip-table__small-col {
        margin-top: 0em !important;
    }

    #snipcart-previous, .snip-btn--highlight, .snip-layout .snip-btn {
        padding: 5px 30px 40px 30px !important;
        background: #036cb6 !important;
    }

    .snip-layout .snip-col {
        padding: 1em 0 !important;
    }

    .snip-layout .snip-actions {
        padding: 1em 0 !important;
    }
}


.snip-layout {
    display: block !important;
    visibility: hidden;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
}

    .snip-layout.snip-active {
        visibility: visible;
    }

    .snip-layout .snip-layout__main-container {
        right: -100%;
        opacity: 0;
        transition: all 0.3s ease-out 0s;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
    }

    .snip-layout.snip-active .snip-layout__main-container {
        right: 0px;
        opacity: 1;
    }

#snipcart-close {
    width: 42px;
    height: 42px;
    background: url('/Learning/Assets/Images/snipClose.png') no-repeat center center;
}

#snipcart-footer {
    display: none !important;
}


.quizSubmittedSpan {
    float: right;
    padding: 20px;
    font-weight: bold;
    color: var(--color-green) !important;
    font-size: 18px;
}

.list-control input[type=radio] + label {
    cursor: pointer
}
/*.question table {width:100%}
    .question table tr td {width:auto}*/
.theAnswer select {
    padding: 5px !important;
    width: 100% !important
}

h4.ui-accordion-header {
    margin-bottom: 0px
}

.tabbed {
    font-size: 16px
}

.fade.infoBox {
    opacity: 1;
}

.other-info ul li {
}

.RadUpload_Default .ruButton {
    background-image: none !important
}

.form-control {
    border: 1px solid #999 !important;
}

.imgDisplay {
    width: 80% !important;
    float: left
}


.RadUpload .ruInputs {
    position: relative;
    zoom: 1;
}

.ruFileWrap.ruStyled {
    padding-left: 0;
    overflow: visible !important;
    display: block;
}

.ruFakeInput.radPreventDecorate {
    width: 96% !important;
    padding: 10px 5px !important;
    border: 1px solid #999;
    border-radius: 0.35rem;
    -moz-box-shadow: inset 0 0 0px #DDDDDD;
    -webkit-box-shadow: inset 0 0 0px #DDDDDD;
    box-shadow: inset 0 0 0px #DDDDDD;
    color: rgb(68, 68, 68);
}

.ruFileWrap.ruStyled .ruButton.ruBrowse {
    position: absolute;
    right: 5px;
    top: 1px;
    z-index: 9999;
    pointer-events: none;
    border-top-right-radius: 0.35rem;
}

.ruStyled .ruFileInput {
    position: absolute;
    z-index: 1;
    filter: alpha(opacity=0);
    opacity: 0;
}

.ruStyled .ruFileInput {
    border-color: #abadb3;
}

.RadAsyncUpload span.ruFileWrap {
    width: 100% !important;
    overflow: visible !important
}

.ruFileWrap.ruStyled .ruButton.ruBrowse {
    width: 79px !important;
    height: 29px !important;
    border: 0;
    padding: 0;
    padding-bottom: 2px;
    background-position: 0 -23px;
    background-repeat: no-repeat;
    background-color: var(--color-green) !important;
    color: #fff !important;
    text-align: center;
    border: 2px solid var(--color-green);
    margin-top: -1px;
}

.ruButton.ruRemove {
    width: 79px !important;
    height: 29px !important;
    border: 0;
    padding: 0;
    padding-bottom: 2px;
    background-position: 0 -23px;
    background-repeat: no-repeat;
    background-color: var(--color-red) !important;
    color: #fff !important;
    text-align: center;
}

.form-control.imgDisplay {
    height: 100px;
}

    .form-control.imgDisplay img {
        height: 100%;
        width: auto
    }

.openMods a, .button.mods {
    width: 100%;
    text-align: center
}

canvas {
    pointer-events: none;
}

.gradingResults {
    width: 100%;
    padding: 15px 0;
    font-size: 20px
}

[data-correct='True'] label, label[data-correct='True'], select[data-correct='True'] {
    color: var(--color-green)
}

[data-correct='False'] label, label[data-correct='False'], select[data-correct='False'] {
    color: var(--color-red)
}

.fa.fa-times.red:before {
    color: #f00
}

.row-fluid.row.containedArea.styledContainer, .user_login.containedArea {
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-top: 30px !important;
}

.breadcrumb ul li a {
    padding-left: 0 !important
}

.module-Login .validation-error {
    margin-left: 0 !important
}

footer .footerLeft, footer .footerRight {
    font-size: 16px !important
}

footer .footerLeft, footer .footerRight {
    font-size: 12px !important
}

fieldset .form-row label {
    margin: 0 0 .3rem 0;
    display: block;
    letter-spacing: -0.5px !important;
}
.locked {
    opacity: 0.4;
    pointer-events: none !important;
}
.button.locked, .button.locked {
    background-color: #ccc !important;
    opacity: 0.4;
    pointer-events: none !important;
}

.button.course-review, .button.course_review {
    opacity: 0.4;
}

.pagination > li > a, .pagination > li > span {
    float: none !important
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block !important;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    text-align: center;
}

div[id*='upPage'] .news {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
    box-shadow: none;
    padding: 15px 0;
    /*background: var(--color-light)*/
}

.news .listing .row-fluid.row {
    margin-bottom: 50px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 25px
}

.fullwidth-color {
    background-color: #ddd;
    max-width: 100% !important;
    padding: 50px 0
}
/*
@media (max-width:1200px) {
    html {
        zoom: 70%;
    }
}

@media (min-width:1201px) and (max-width:1400px) {
    html {
        zoom: 80%;
    }
}
*/
.ta-right {
    text-align: right
}

.wrapMe {
    margin: 0;
    margin-bottom: 50px;
}

.container .row-fluid.row {
    margin: inherit
}

.welcomeDiv {
    padding: 0 !important
}

.breadcrumb {
    margin-left: -15px
}

.calendar .verbose-wrap .verboseInfo .eventTitle {
    color: #fff !important
}

.inline li img {
    max-width: 24px
}

footer .inline {
    margin-top: 20px
}

.span-6.footerRight a {
    margin-left: 15px
}

.snipContainer {
    margin-top: 50px
}

footer .inline {
    display: inline-block
}

    footer .inline li {
        list-style: none;
        display: inline;
        float: left;
        line-height: normal;
        width: 33%;
        padding: 0;
    }

.dashboardBadgeNumber {
    top: 60% !important;
}

.form-row div input[type=checkbox] + label, .form-row input[type=radio] + label {
    width: 88% !important
}

.no-gutter-mobile.user_registeration .rememberPass input {
    width: auto !important;
    margin-left: 20%
}

.no-gutter-mobile.user_registeration .rememberPass label {
    width: auto !important;
    margin-left: 15px
}

@media (max-width:767px) {

    .no-gutter-mobile.user_registeration .rememberPass input {
        width: auto !important;
        margin-left: 0
    }

    .no-gutter-mobile.user_registeration .rememberPass label {
        width: auto !important;
        margin-left: 15px
    }

    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
        font-family: 'Roboto Bold', Helvetica, Arial, sans-serif !important;
        line-height: normal !important;
    }

    .navbar {
        position: relative;
        min-height: 0 !important;
        margin-bottom: 0 !important;
        border: 1px solid transparent;
    }

    .span-4.footerLeft h4 {
        text-align: center;
    }

    .span-4.footerLeft img {
        margin: auto
    }

    .span-4.footerLeft p {
        margin-right: 0 !important
    }

    footer.fullWidth {
        padding: 15px
    }

    .footerRight a {
        float: none !important
    }

    .span-6.footerRight {
        margin-top: 15px
    }

        .span-6.footerRight a:first-child {
            margin-left: 0 !important
        }

    .span-4.footerLeft {
        margin-top: 15px
    }

    .dashboardBadgeNumber {
        font-size: 3rem !important;
        top: 55% !important;
    }

    .dashboardText {
        font-size: 1.5rem;
        top: 30% !important;
        line-height: normal !important
    }

    .dashboardBadgeDate {
        top: 50% !important;
        font-size: 1.5rem !important;
    }

    .call-to-action .span-4:last-child .dashboardText {
        top: 25% !important
    }

    .dashboardBadgeDate {
        top: 70% !important;
        font-size: 1.5rem !important;
        line-height: normal !important;
    }

    .showAlerts {
        margin-top: -80px !important;
        float: left !important;
        width: 100%;
        text-align: center;
    }

    .calendar .tabbed-content > div {
        display: block !important;
    }

    .container .span-4.footerLeft:nth-child(2n) {
        display: none
    }

    .hamburger.mobile-only.navbar-header {
        margin-top: 60px !important;
    }

    .fullwidth-color.reduceFont {
        padding: 25px 0
    }

        .fullwidth-color.reduceFont .span-4 p {
            line-height: 5px
        }

        .fullwidth-color.reduceFont img {
            max-width: 50px
        }

    .eqNews h3 {
        margin-top: 15px !important
    }

    .row-fluid p img {
        width: 100% !important;
        max-width: 50%
    }

    .question input[type="submit"] {
        margin-right: 0 !important
    }
}

@media (max-width:600px) {
    .reduceFont .span-9.col-sm-9 strong, .reduceFont .span-9.col-sm-9 strong strong {
        font-size: 20px !important
    }

    .no-padding-span.container {
        margin: 0 !important;
        padding: 0
    }

    .preheader.span-12 {
        margin-bottom: 0 !important
    }

    .hamburger.mobile-only.navbar-header {
        margin-top: 75px !important;
    }

    .row-fluid p img {
        width: 100% !important;
        max-width: 65%
    }

    .courseGrid.Course tr td a, .certsGrid.Cert tr td a {
        width: 80%
    }

    #EventCalender, .tab-pane.mobile-only.span-12 .list-toolbar {
        display: none !important
    }

    #EventList > .row-fluid {
        margin-bottom: 25px
    }

        #EventList > .row-fluid h2 {
            padding: 15px;
            font-size: 20px;
        }

    .snipCartIcon {
        left: -150px !important
    }

    .snipcart-items-count {
        height: 30px !important;
        width: 30px !important;
        left: 50px !important
    }

    p.span-9.col-sm-9 span {
        line-height: normal !important
    }
}

.module-Login.no-margin-md {
    margin-bottom: 25px !important
}

.imgContainer a, .content-card.box.eqEvent a, .news a {
    width: 100%
}

.detail .content-card.box.eqEvent a, .news .detail a {
    width: auto
}

.content-card h3 a {
    font-family: 'Roboto Bold', Helvetica, Arial, sans-serif !important;
    font-size: 24px;
    text-transform: none
}




/*.RadWindow.RadWindow_Default.rwNoTitleBar.rwNormalWindow, .RadWindow div.rwExternalContent {*/
/*width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh;*/
/*min-width: 100vw;
    width: auto !important;
    height: 92% !important;
    overflow: visible;
}*/
.RadWindow.RadWindow_Default.rwNoTitleBar.rwNormalWindow, .RadWindow div.rwExternalContent {
    /*width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh;*/
    min-width: 100vw;
    width: auto !important;
    height: 92% !important;
    overflow: visible;
}

.RadWindow.RadWindow_Default.rwNoTitleBar.rwMaximizedWindow {
    background: #fff
}


html.rwPreventPageScrolling, body.rwPreventPageScrolling {
    min-height: 100vh;
    min-width: 100vw;
    position: relative !important
}


.modal-container {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
    min-height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background: rgba(255,255,255,0.9);
    z-index: 999999;
    min-width: 100% !important;
}

    .modal-container .modal {
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.02);
        margin: 0 auto;
        width: 500px;
        max-width: 100%;
        padding: 30px 50px;
        background: var(--color-green);
        border: 1px solid #e7e7e7;
        border-radius: 2px 10px 2px 10px;
        position: relative;
        text-align: left;
        display: block;
        color: #fff;
        margin-top: 5%
    }

footer.fullWidth {
    clear: both;
    position: relative !important;
    bottom: -20px !important
}

.list-toolbar {
    margin-bottom: 20px
}


.calendar .non-filtered {
    opacity: 0 !important;
}

.color-filter a.active {
    opacity: 0.3
}

.verboseInfo .eventTitle {
    color: #fff !important;
    padding: 20px !important
}

.verboseInfo .eventDescription, .verboseInfo .eventTime {
    padding: 20px !important
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: var(--color-blue) !important;
}

.fc-event {
    color: #fff !important;
}

.shift20 a {
    width: 200px
}

#SocialMediaLink .addthis_toolbox a div {
    background-size: contain
}

.snipcart-checkout {
    background: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    left: 0;
}

    .snipcart-checkout:before {
        content: "\f07a";
        font-family: FontAwesome;
        font-size: 30px
    }

.snipCartIcon {
    position: absolute;
    /* float: right; */
    /* margin-top: -0; */
    /* padding-right: 48px; */
    right: 173px;
}

.snipcart-items-count {
    height: 20px;
    width: 20px;
    position: absolute;
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
    padding: 0;
    background-color: var(--color-green);
    border-radius: 50%;
    padding: 2px;
    text-align: center;
    left: 24px;
    top: 10px;
}



.content-card.box.eqNews h3, .content-card.box.eqEvent h3 {
    min-height: 80px
}

.ActivateMember {
    margin-top: 50px
}

.RadWindow.RadWindow_Default.rwNoTitleBar.rwMaximizedWindow {
    width: 100% !important
}

#device_select {
    color: #333 !important
}


@media only screen and (max-width: 26em) {
    body.snip-open {
        position: relative !important;
        width: 100%;
    }
}

.form-row table.list-control {
    width: 100%
}

footer img {
    width: auto !important;
}

.form-row input[type=checkbox], .form-row input[type=radio] {
    float: left;
    margin: 0.3rem 0 0 0;
    height: 2rem;
    width: auto !important;
    margin-top: 8px;
}

.RadWindow_Default .rwStatusBar {
    opacity: 0;
}

.button {
    position: relative
}

.course_review:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    right: 8px;
    font-size: 12px;
    color: #fff;
    margin-top: 4px
}


.icoNext:before {
    content: "\f061";
    font-family: FontAwesome;
    position: absolute;
    right: 8px;
    font-size: 12px;
    color: #fff;
    margin-top: 4px
}



.theAnswer label {
    width: auto !important;
}

footer.fullwidth.coursesFooter {
    z-index: 999999;
    position: fixed !important;
    padding: 25px 50px 45px;
}

.RadWindow .rwContent iframe {
    height: calc(100% - -79px) !important;
}

.reduceFont.hex004d9e .span-3.col-sm-3 img {
    width: 100% !important;
    min-width: 55px
}

.reduceFont.hex004d9e .span-9.col-sm-9 {
    text-align: left !important
}

@media (max-width:767px) {
    .reduceFont.hex004d9e .span-3.col-sm-3 img, .reduceFont.hex004d9e .span-9.col-sm-9 {
        text-align: center !important;
        display: block;
        margin: auto
    }
}

.userCourseDetailContent h1 {
    font-size: 30px;
}

.theAnswer input[type=checkbox] {
    margin-top: -3px
}

/*apr 18*/
.tileDisplay ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.tileDisplay li.span-4 {
    height: auto !important
}
#snipcart-show-discount-box {
    background-color: var(--color-blue)!important;
    color: #fff!important;
    font-size: 1.8rem!important;
    text-transform: none!important;
    /* padding: 7px 25px !important; */
    border: 1px solid var(--color-blue)!important;
    border: 1px solid transparent!important;
    border-radius: 2px;
    transition: all 0.0s ease 0s !important;
    cursor: pointer;
    border-radius: 19px!important;
    width: auto !important;
    line-height: normal !important;
    height: auto;
    /* display: inline-block !important; */
    max-width: 40%;
    padding:7px 25px !important
}

.ui-accordion .ui-accordion-header {
    outline-color: #fff;
    border-bottom: solid 1px #2d499d;
    padding-bottom: 8px;
    background-color: transparent !important;
    color: #2d499d !important;
    padding: 0.75em 0.5em 0.75em 0.7em !important;
}

.ui-accordion-content a {
    padding: 15px;
    background: #2d499d;
    border-radius: 8px;
    color: #fff;
}

.ui-accordion-content a:hover {
    background-color: #ccc
}

.ui-accordion .ui-accordion-content {
    padding: 25px;
    padding: 25px !important;
    background: transparent !important
}

.ui-accordion .ui-accordion-header:after {
    color: #2d499d !important
}
