/*
[//]: # (Body and font sizes)
*/


/* colours */
:root {
    --primary: #6C8AEC;
    --secondary: #D9E2EF;
    --tertiary: #2A286C;
    --text: #322e18;
    --textBlue: #506690;
    --textGray: #808080;
    --footerBG: #3a444e;
    --white: #ffffff;
    --ltGray: #fefefe;
    --max-width:1270px;
    --baseFontSize:16px
}

.contentTileButton {
    padding: 8px 16px;
    background-color: var(--primary);
    color: #fff;
    font-size: 14px;
    border: 1px solid var(--primary);
    border-radius: 0.35rem;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}



html {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    letter-spacing: .03em;
    line-height: normal;
    color: #222;
    font-size: var(--baseFontSize);
}


@media (max-width:991px) {
    html {
        font-size: var(--baseFontSize);
    }
}

@media (min-width:992px) and (max-width:1199px) {
    html {
        font-size: var(--baseFontSize);
    }
}

body {
    font-size: var(--baseFontSize);
    line-height: normal;
    color: var(--text)
}

/*
# Heading Examples
 ```
    <h1>Heading 1</h1>
    <h2>Heading 2</h2>
    <h3>Heading 3</h3>    
```
*/
h1 {
    font-size: 36px;
    line-height: normal;
}

h2 {
    font-size: 30px;
    line-height: normal;
}

h3 {
    font-size: 24px;
    line-height: normal;
}

h4 {
    font-size: 18px;
    line-height: normal;
}

h5 {
    font-size: 15px;
    line-height: normal;
}

h6 {
    font-size: 12px;
    line-height: normal;
}

body > form {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden
}

    form > div#MainContent_ZoneContainer {
        flex: 1
    }


    footer {
    }


/*
# Paragraph text
```
    <p class="fixie"></p>
```
*/
p {
    font-size: 16px;
    margin: 0 0 1.0rem 0;
    line-height: 1.6rem;
}


/*
# 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: var(--baseFontSize);
    padding: 0;
    margin: 0 0 2.0rem 0;
}

.container ul, .container ol {
    padding-left: 17px
}


ul lh, ol, lh {
/*    font-weight: bold;*/
}

ul li {
    list-style: outside;
}

main ul li {
    list-style: outside;
 }


ol > li {
    list-style: decimal;/*
    list-style-position: inside;*/
}

ol.alpha > li {
    list-style: upper-alpha;
}

/*
# Links
```
    <a href="javascript:void(0);">Link</a>
```
*/

a {
 
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: #2d499d;
}

    a:hover, a.active {
        text-decoration: none !important;
        color: inherit;
        opacity: 0.9;
    }

.button:hover {
    text-decoration: none !important;
}

/*
# Other
```
    <time>Jan 01 0001</time>
    <hr/>
```
*/
time {
    font-size: inherit;
    margin: 0 0 2.0rem 0;
}

hr {
    margin: 1rem 0;
}


/*
[//]: # (Page Structure)
[//]: # (**************)
*/

header {
    padding: 1.5em 0;
}

main {
    margin-top: 1em;
}

body:not(.navbar) {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

@media (min-width:768px) {
    header .logo {
        margin-top: 10px;
    }
}

header .logo {
  
    margin-bottom: 30px;
    max-width:200px
}

.top-menu ul {
    display: inline;
}

    .top-menu ul a {
        font-family: "Open sans", Helvetica, Arial, sans-serif;
        font-size: 12px !important;
        /*color: rgb(128, 128, 128) !important;*/
    }
.dropdown-menu {font-size:12px; margin:0 20px}
.top-menu ul a:hover {
    text-decoration: none;
}

.top-menu ul li {
    display: inline;
}

.top-menu .login-btn {
    /*background: #f8f8f8;*/
    padding: 4px 8px;
    border: 1px solid rgb(0, 109, 156);
}

/*
/*
[//]: # (Navigation)



[//]: # (**********)
*/
.nav-link {
    color: var(--textBlue) !important;
    font-size: 14px;
    padding: 0 20px !important;
}
nav ul li {
    list-style: none;
}

#registerform label {
    font-weight: bold;
    font-size: 16px;
    width: 150px;
    text-align:end;
}

#loginform label {
    font-weight: bold;
    font-size: 16px;
    width: 150px;
    margin-bottom: 10px;
}

#loginform input[type=text], #loginform input[type=password] {
    width: 70%;
}

#registerform .wide-radio label {
    text-align:left;
}

#registerform select, #registerform textarea {
    font-size: 14px;
    width: 250px;
}

#registerform div.form-row, #loginform div.form-row {
    padding-bottom: 20px;
}

#loginform div.form-row:last-of-type {
    padding-bottom: 70px;
    padding-top: 25px;
}

#registerform input[type=text], #registerform input[type=password], #loginform input[type=text], #loginform input[type=password] {
    height: 30px;
    font-size: 13px;
}

#registerform select {
    height: 37px;
}


/*@media(min-width:768px) {
    .nav-wrapper {
        display: block !important;
        overflow: auto;
        width: 100%;
    }
}

nav ul {
    background-color: #fff;
}



nav ul li:first-child {
    padding-left: 0;
}

nav ul li:last-child {
    padding-right: 0;
}

nav ul li a {
    font-size: 1.4rem;
    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: left;
    background-color: transparent !important;
}

nav ul {
    font-family: "Open Sans",Arial, Helvetica, sans-serif;
    font-weight: 600;
}

@media (min-width: 768px) {

    nav ul.level-one {
        display: block;
    }

    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)
*/
/*nav ul.level-two {
    display: none;
    position: absolute;
    z-index: 2;
    width: 8rem;
}

@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;
    }
}

.right-desktop {
    float: right;
    right: 0;
}

@media (max-width:767px) {
   

    .top-menu ul {
        float: left;
    }

    .top-menu ul li {
        margin-left: 0px;
        margin-right: 16px;
    }

    .right-desktop {
        float: left;
        right: 0;
    }

    nav ul.level-one li {
        margin-left: 0px !important;
    }


    nav ul.level-one li a {
        padding: 10px 10px 10px 0 !important;
    }

    nav ul.level-one li a:hover {
        background-color: transparent !important;
    }
}


@media (max-width:991px) {
    .right-desktop {
        clear: both;
    }

    .navbar-nav {
        margin: 0px 0 20px -15px !important;
    }
}



.navbar-toggle {
    margin-top: -11px !important;
}


.hamburger span,
.hamburger span:before,
.hamburger span:after {
    cursor: pointer;
    border-radius: 3px;
    height: 5px;
    width: 35px;
    /*background: #2d499d;*/
    background: #fff;
    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;
    margin: 0;
    left: 50%;
    transform: translateX( -50%);
}

@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%;
}

.video .span-4.col-sm-4{
    margin-bottom: 40px;
}
/*
[//]: # (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/PATH/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);
}


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: #2d499d;
}


/*
# Button 
```
    <a href="" class="button">Button</a>
    <input type="submit" value="Button" />
```
*/
.button,
input[type=submit] {
    background-color: var(--primary);
    color: #fff;
    font-size: 14px;
    border: 1px solid var(--primary);
    border-radius: 0.35rem;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

.button:hover,
input[type=submit]:hover {
    background-color: #fff;
    border: 1px solid var(--primary);
    color: #2d499d !important;
}

    .button, .input[type=submit] {
       /* background-color: #2D499D !important;*/
        padding: 8px 16px;
    }


/*
[//]: # (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: 1px solid #cccccc;
    border-right: none;
    background-color: #6993c2;
}

.tabbed .tabbed-nav li a {
    color: #fff
}

.tabbed .tabbed-nav li.active {
    color: #fff;
    border-bottom-color: #fff;
    background-color: #2d499d;
}

.tabbed .tabbed-nav li:last-child {
    border-right: 1px solid #cccccc;
}

.tabbed .tabbed-nav li a {
    padding: 10%;
    text-align: center;
    width: 100%;
}

.tabbed-content.tab-content {
    padding: 2em;
    border: 1px solid #ccc;
    background: #efefef
}

.tabbed .tabbed-content .tab-pane {
    display: none;
}
/*
.navbar, .navbar li {
 
    color: white;
    border-radius: 0px !important;
}

.navbar {
    margin-bottom: 0px !important;
}

.navbar li {

    color: white;
    padding: 0;
}

.navbar, .navbar li a {
    color: white !important;
}

.navbar li a {
    color: white !important;
    padding: 25px 17px !important;
}

.navbar li a:hover {
    background-color: #035174 !important;
}
*/
li [class^="icon-"], li [class*=" icon-"] {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}

ul > li > a.el-home {
    font-size: 13px;
}

[class^="icon-"]::before, [class*=" icon-"]::before {
    font-family: 'Elusive-Icons';
    font-weight: normal;
    font-style: normal;
    speak: none;
    line-height: 1;
    display: inline-block;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
}

header {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    border-bottom: 1px solid var(--primary) ;
    padding-bottom: 0px !important;
    display: flow-root;/*
    margin-bottom: 15px !important;*/
}

.top-area {
    margin-top: -14px !important
}

.top-area div div {
    padding-left: 0px;
    padding-right: 0px;
}

footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #3A444E;
    font-size: 10px !important;
    margin: 0;
    line-height: 15px;
    clear: both;
    color: white;
}

footer span {
    font-size: 12px;
}

@media (max-width: 768px) {
    footer {
        padding-left: 20px !important;
    }
}




footer h4 {
    font-size: 12px !important;
}

.block-button {
    width: 150px;
    text-align: center;
    /*padding: 5px;*/
    /*background-color: #87B7CF;*/
    /*color: black;
    text-transform: uppercase;*/
    margin-right: 10px;
    text-decoration: none;
}

.block-button:hover {
    text-decoration: none;
}

.filtertabs {
    background-color: lightgray;
    text-align: center;
    /*height: 70px;*/
    /*color: white;*/
    padding-top: 20px;
    padding-bottom: 20px;
}

.filtertabs div div {
    margin-top: 20px;
}

.lead {
    margin-bottom: 26px;
    font-size: 20.8px;
    font-weight: 200;
    line-height: 32.2px;
    margin-top: 20px;
}


.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: #f5fafd;
}

.programs-grid a {
    color: #2f93c4 !important;
    font-size: 14px;
}

.programs-grid {
    border: 1px solid #cce6f3;
}

.programs-grid tr, .programs-grid td, .programs-grid th {
    border: 1px solid #cce6f3;
}

@media (min-width: 768px) {
    /*.programs-grid tr:hover {
        background-color: #1B6F9D !important;
        color: white;
    }

    .programs-grid tr:hover a {
        color: white !important;
        text-decoration: none;
        background-color: transparent;
    }

    .programs-grid tr:hover th {
        color: black !important;
    }

    .programs-grid tr:hover th a {
        color: black !important;
    }*/

    .programs-grid td {
        /*cursor: pointer;*/
    }
}





.programs-grid th {
    background-image: linear-gradient(to bottom,#fff,#efefef);
}


.slim-input {
    padding: 5px 5px !important;
}

#EventCalender{
    display: block;
}
.verticalAlignMiddle {
    display: flex;
    justify-content: start;

}
.sitelogo.col-lg-2 {
    padding: 20px 40px;
    text-align: center;
}

.preHeader a {padding:0 15px; color:var(--textGray);}

.preHeader ul li {
    float: right;
    display: initial;
    padding: 8px 0px;
}
@media (max-width: 650px) {
    .preHeader ul li {
        float: left;
    }
}
    .preHeader ul li.membersCornerLink {
        background-color: #F8F8F8;
    }

    .tab-pane.fade.active.show.profile {
        display: flex;
    }

    .tabbed .nav-item {
        list-style: none;
    }

        .tabbed .nav-item .nav-link {
            height: 40px;
        }

            .tabbed .nav-item .nav-link.active {
                color: #fff !important;
                background-color: var(--bs-nav-pills-link-active-bg) !important;
            }

    .tabbed.profile img {
        height: 150px;
        width: 150px;
    }

    .tabbed.profile .profileDetail .fw-bold {
        width: 350px;
    }

    .calendar .button {
        height: 40px;
        width: 60px;
        line-height: 40px;
        background-color: #2d499d;
    }

    .divcalendar {
        padding: 20px;
        border: 1px solid #e7e7e7;
        border-radius: 4px
    }

    .event-calendar {
        border-collapse: collapse !important;
        width: 100%;
        border: 0
    }

        .event-calendar td {
            text-align: right !important;
            font-size: 16px;
            padding: 15px 10px 35px;
            border: 1px solid #E7E7E7;
        }

    .cal-selected {
        border-color: var(--dred) !important;
        background-color: #000 !important;
    }

    .event-calendar .cal-nav a:hover {
        color: transparent !important
    }

    .inactiveLink {
        background-color: #f8f8f8 !important
    }

    .NewsContainer.Events .postTitle h6 {
        margin-top: 10px
    }

    .event-calendar td.cal-nav {
        border: 0;
        padding: 0 5px;
        text-align: left;
    }

    .cal-title tr td:nth-child(2) {
        font-size: 20px
    }

    .event-calendar td.cal-nav a {
        padding: 15px;
        color: #fff;
        background: #0060af !important;
        padding: 20px 15px;
        border-radius: 4px
    }

    .event-calendar .cal-title td {
        text-align: center !important;
        background: transparent !important
    }

    .event-calendar tr:first-child > td {
        padding: 0 !important;
        border: 0
    }

    .event-calendar tr:first-child .cal-title td {
        padding-top: 10px !important;
        border: 0
    }

    .event-calendar tr th {
        padding: 15px 0;
        text-align: center;
        text-transform: uppercase;
    }

.cal-today {
    background: #3EC847; /*var(--dgray) !important;*/
   color: #fff !important;
}

    .cal-content {
        background: #0060af !important;
        color: #fff !important;
    }

    .col-100.postGrid {
        margin-bottom: 20px
    }

    .cal-nav a {
        height: 47.5px;
        overflow: hidden;
        color: transparent !important;
        text-decoration: none !important
    }

        .cal-nav a:before {
            display: block;
            font-size: 5px;
            border: solid 1.5em transparent;
            border-top-width: 0;
            border-bottom-color: #fff;
            transform: rotate(-90deg);
            clip-path: circle(54% at 50% 69%);
            content: '';
        }

    .cal-title .cal-nav:last-child a:before {
        transform: rotate(90deg);
    }

    .cal-nav a {
        content: '' !important
    }

    .col-100.postGrid, .postGrid {
        border: 1px solid #e7e7e7;
        padding: 10px;
        border-radius: 4px;
        height: 100%
    }

    .postTitle h5 a {
        font-size: inherit !important;
        padding-left: 0 !important;
        color: var(--red);
        font-family: "PT Serif Bold";
        ;
    }

    .postTitle h6 {
        margin-top: -25px;
        display: block;
    }

    .RadPicker.RadPicker_Bootstrap.lbCategory {
        width: 225px !important;
    }

    .content-filter-search .sText.w100.markY.textSearch {
        width: 100%;
        float: left;
        padding: 28px 21px !important;
    }

    .searchContainer .button.textSearchButton {
        padding: 18px 35px !important;
    }

    .pagination-adv li, .pagination li {
        list-style: none;
    }

    .pagination-adv, .pagination {
        text-align: left;
        border: 0;
    }

        .pagination-adv li span, .pagination-adv li a, .pagination li a {
            padding: 10px !important;
            border: 1px solid #ccc;
            border-right: 0;
            font-size: 15px;
            line-height: 20px;
            text-align: center;
            height: 50px !important;
            min-width: 50px !important;
            float: left;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333 !important;
            position:relative;
        }

        .pagination-adv li.search *:last-child, .pagination li *:last-child {
            border-right: 0px solid #ccc;
        }

        .pagination-adv li span, .pagination li.current a {
            background: var(--primary);
            color: #fff !important;
            text-decoration: none;
            pointer-events: none;
        }

        /*.pagination li:first-child[class=""] a:before {
            content: "\f0d9";
            font-family: FontAwesome;
            color: var(--primary);
            position: absolute;
            left: 6px;
            top: 15px;
        }

        .pagination li:last-child[class=""] a:after {
            content: "\f0da";
            font-family: FontAwesome;
            color: var(--primary);
            position: absolute;
            right: 6px;
            top: 15px;
           
        }*/

        .pagination li a.paging-prev {
            padding-left: 20px !important;
        }
        .pagination li a.paging-next {
            padding-right: 20px !important;
        }

.pagination li:last-child[class=""] {
    border-right: 1px solid #ccc;
}

        .pagination li:hover, .pagination li:hover a, .pagination li:hover a:before, .pagination li:hover a:after {
            background: var(--primary);
            color: #fff !important
        }

    .col-3.lister.no-gutter {
        font-size: 18px;
    }

    .historyBack {
        background: #2d499d;
        padding: 10px;
        color: #fff;
    }

    .rcCalPopup {
        margin-top: -12px !important;
    }

    .redBulletList ul li {
        list-style: none;
        position: relative;
    }

        .redBulletList ul li:before {
            position: absolute;
            content: ' ';
            width: 15px;
            height: 15px;
            left: -20px;
            top: 12px;
            background: #FFFFFF;
            border: 4px solid #E1251B;
            box-sizing: border-box;
            border-radius: 50%;
        }

    .SumoSelect > .optWrapper.multiple > .options li.opt.selected span i, .SumoSelect .select-all.selected > span i {
        border-color: inherit !important;
        background-image: url(/PATH/Assets/Images/Icons/check.png) !important;
        background-color: transparent !important;
    }

    .SumoSelect.open > .optWrapper {
        top: 55px;
    }

    .SumoSelect > .CaptionCont > span.placeholder, .CaptionCont.SelectBox > span {
        padding-top: 5px;
        font-size: 15px;
        height: 40px;
        display: flex;
        vertical-align: revert;
        display: flex;
        /* justify-content: center; */
        align-items: center;
    }

    .placeholder {
        background-color: transparent
    }

    .SumoSelect > .CaptionCont > span.placeholder {
        color: #999;
        opacity: 0.8
    }

    .SumoSelect > .CaptionCont > label > i {
        background-size: 40%
    }

    .SumoSelect span.placeholder {
       /* color: #fff !important;*/
    }

    footer ul li a {
        color: white;
    }
.flex-align-center .span-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-align-center .span-4 .bottom {transform:unset; left:unset; position:relative}

.toggle input {
    clear: both;
    margin-right: 10px;
}
.toggle label {margin-right:20px}
.toggle.toggle-wide {width:100% !important}
.goals-help {background:#eee !important}

/* TOGGLE STYLING */
/*.toggle {
    margin: 0 0 1.5rem 0;
    box-sizing: border-box;
    font-size: 16px !important;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 117px;
}

    .toggle input {
        width: 0;
        height: 0;
        position: absolute;
        left: -9999px;
    }

        .toggle input + label {
            margin: 0;
            padding: .75rem 2rem;
            box-sizing: border-box;
            position: relative;
            display: inline-block;
            border: solid 1px #DDD;
            background-color: #FFF;
            font-size: 1.6rem;
            line-height: 140%;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 0 0 rgba(255, 255, 255, 0);
            transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;*/
            /* ADD THESE PROPERTIES TO SWITCH FROM AUTO WIDTH TO FULL WIDTH */
            /*flex: 0 0 50%; display: flex; justify-content: center; align-items: center;*/
            /* ----- */
        /*}

            .toggle input + label:first-of-type {
                border-radius: 6px 0 0 6px;
                border-right: none;
            }

            .toggle input + label:last-of-type {
                border-radius: 0 6px 6px 0;
                border-left: none;
            }

        .toggle input:hover + label {
            border-color: #213140;
        }

        .toggle input:checked + label {
            background-color: #1b6f9d;
            color: #FFF;
            box-shadow: 0 0 10px rgba(102, 179, 251, 0.5);
            border-color: #4B9DEA;
            z-index: 1;
        }

        .toggle input:focus + label {
            outline: none;*/
            /*outline: dotted 1px #CCC;*/
            /*outline-offset: .45rem;
        }

@media (max-width: 800px) {
    .toggle input + label {
        padding: .75rem .25rem;
        flex: 0 0 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}*/
.swiper-button-next, .swiper-button-prev {
    filter: invert(1)
}

.swiper-pagination swiper-pagination-clickable swiper-pagination-bullets {
    position: relative;
    margin-top: 20px;
}