h1,h2,h3,h4,h5,h6{
    color: var(--color-sts-blue)
}

/* Fonts */
@font-face {
    font-family: 'Lato';
    src: url('/assets/font/Lato-Black.woff2') format('woff2'),
    url('/assets/font/Lato-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('/assets/font/Lato-Regular.woff2') format('woff2'),
    url('/assets/font/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html{
    max-width: 100vw;
}
body,html{
    padding:0;
    margin:0;
    font-family: 'Lato', serif;
    font-weight: normal;
    font-style: normal;
    width: 100%;
    overflow-x: hidden;
    font-size: 18px;
}
body.fixed{
    overflow-y: hidden;
}
img{
    max-width: 100%;
    height:auto;
}
a {
    text-decoration: none;
}


a:hover {
    text-decoration: none;
}
.textCenter{
    text-align: center;
}
.hide{
    display: none;
}

:root {
    --color-sts-blue: #063dea;
    --color-sts-darkblue: #002496;
    --color-sts-blue-rgb: 6, 61, 234;
    --color-sts-red: #fe0f0f;
    --color-sts-red-rgb: 254, 15, 15;
    --color-sts-green: #2CC84D;
    --color-sts-grey: #f6f6f6;
    --color-sts-grey-2: #f8f9fa;
    --color-sts-dark: #292929;
    --breakpoint-desktop: 1256px;
    --breakpoint-tablet: 1000px;
    --breakpoint-mobile: 428px;
}


/* Main site container */
.sts-site{
    max-width: 1256px;
    margin: 0 auto;
    padding:136px 20px 20px 20px;
    min-height: calc(100vh - 388px);
}
.sts-site .content{
    display: flex;
    gap: 20px;
}
.sts-site .content > div:first-of-type{
    display: flex;
    flex-direction: column;
    gap:20px;
    flex: 0 0 73%;
    max-width: 73%;
}
.sts-site .content > div:not(:first-of-type){
    display: flex;
    flex-direction: column;
    gap:20px;
    max-width:25.4%;
    width: 100%;
}
@media(max-width: 1000px) {
    .sts-site .content > div:not(:first-of-type){
        display:none;
    }
    .sts-site .content > div:first-of-type{
        flex: unset;
        width: 100%;
        max-width: 100%;
    }
}
@media(max-width: 700px) {
    .sts-site{
        padding:70px 20px 20px 20px;
    }

}
.sts-site .content > div:not(:first-of-type):empty{
    display:none
}
/* End Main Site Container */


/* Re-usable Components*/
.layoutHeader{
    padding:10px;
    color: white;
    background-color: var(--color-sts-blue);
    font-size: 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
@media(max-width: 700px) {
    .layoutHeader{
        height: 30px;
        font-size: 18px;
        padding:5px;
    }
}
.layoutTitle h2{
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--color-sts-blue);
    padding:0;
    margin: 0 0 15px;
}
.layoutTitle small{
    font-size: 18px;
    color: #616160;
}



.trippleLayoutPreviewBox{
    display: flex;
    gap: 20px;
}
.trippleLayoutPreviewBox > div{
    flex: 1 1 0px;
}
.singleLayoutPreviewBox{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.layoutPreviewBox{
    display: flex;
    flex-direction: column;
    background-color: var(--color-sts-grey);
}
.layoutPreviewBox img{
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.layoutPreviewBox.noFullImage img{
    width: 50%;
    height: auto;
    min-width: unset;
    min-height: unset;
    margin: 50px auto;
}
.layoutPreviewBox > div{
    display: flex;
    flex-direction: column;
}
.layoutPreviewBox > div:first-of-type{
    flex: 0 0 40%;
    background-color: var(--color-sts-blue);
}
.layoutPreviewBox > div > p{
    padding:15px;
    margin:0;
}
.layoutPreviewBox > div > p:first-of-type{
    background-color: var(--color-sts-dark);
    color: white;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 22px;
    line-height: 40px;
    padding-top: 0;

}

.layoutPreviewBox > div > p:last-of-type{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    max-height: 53px;
}
.layoutPreviewBox > div > p:empty{
    display: none;
}
.layoutPreviewBox > div > a{
    padding:15px;
}
.layoutPreviewBox.imageSide{
    flex-direction: row;
}
.layoutPreviewBox.imageSide > div:first-of-type{
    flex: 0 0 60%;
}
.layoutPreviewBox.imageSide > div > p:first-of-type{
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    overflow: unset;
    text-overflow: unset;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    max-height: unset;
    padding:20px;
    word-break: break-word;
}
.layoutPreviewBox.imageSide > div > p:last-of-type{
    overflow: unset;
    text-overflow: unset;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    max-height: unset;
}

@media(max-width: 700px) {
    .trippleLayoutPreviewBox{
        flex-direction: column;
    }
    .layoutPreviewBox.imageSide > div:first-of-type{
        flex:unset;
    }
    .trippleLayoutPreviewBox > div{
        flex-direction: row;
    }
    .trippleLayoutPreviewBox > div >div:first-of-type{
    }
    .layoutPreviewBox.imageSide{
        flex-direction: column;
    }
    .layoutPreviewBox.imageSide > div > p:first-of-type {
        font-size: 24px;
        line-height: 26px;
    }
}


.textLink {
    padding: 20px 0;
    text-transform: uppercase;
    color: var(--color-sts-blue);
    font-weight: 600;
    position: relative;
    font-size: 16px;
}

.textLink::after {
    content: " >";
    font-weight: 600;
    font-size: 18px;
    margin-left:3px;
    transition: margin-left 250ms ease-out;
}

.textLink:hover {
    color: var(--color-sts-blue);
    cursor: pointer;
}
.textLink:hover::after {
    margin-left: 15px;
}


.negativeButton {
    display: inline-block;
    border: 3px solid var(--color-sts-blue);
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-sts-blue);
    padding: 15px 20px;
    width: 26.6%;
    min-width: 150px;
    text-align: center;
}

.button{
    background-color: var(--color-sts-blue);
    color: white;
    padding:7px 14px;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    border: unset;
}
.button:hover{
    cursor: pointer;
}


.sponsors{
    display: flex;
    background-color: var(--color-sts-grey);
    overflow: hidden;
    flex-direction: column;
}
.sponsors p{
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    margin-left:20px;
    width: 300px;
    margin-bottom:0;
}
.sponsors div{
    display: flex;
    gap:20px;
    margin-left:0;
    animation-name: sponsorSpin;
    animation-duration: 200s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}
.sponsors img{
    height: 150px;
    width: auto;
}
@keyframes sponsorSpin {
    from {margin-left:0;}
    to {margin-left:-3500px;}
}



.categorizer-container{
    display: flex;
    gap:20px;
    flex-wrap: wrap;
}
.categorizer-container > div{
    background-color: var(--color-sts-grey);
    text-align: center;
    font-weight: bold;
    color: var(--color-sts-blue);
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
    min-width: 100px;
    padding: 15px 10px 10px;
}
.categorizer-container > div:hover{
    background-color: var(--color-sts-blue);
    color: white;
    cursor: pointer;
}
.categorizer-container > div > p{
    font-size: 16px;
    margin-bottom:0;
    margin-top: 5px;
}
.categorizer-container > div img{
    transition: filter .2s ease-in-out;
    height: 60px;
}
.categorizer-container > div:hover img{
   filter:invert(123%) sepia(0%) saturate(0%) hue-rotate(48deg) brightness(154%) contrast(232%)
}
.categorizer-container > div.active{
    background-color: var(--color-sts-blue);
    color: white;
}
.categorizer-container > div.active img{
    filter:invert(123%) sepia(0%) saturate(0%) hue-rotate(48deg) brightness(154%) contrast(232%)
}
.categorizer-sub-container > div{
    display: flex;
    gap:20px;
}
.categorizer-sub-container > div.hidden{
   display:none
}
.categorizer-sub-container > div > div{
    background-color: #F6F6F6;
    color: var(--color-sts-blue);
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    transition: color .2s ease-in-out,background-color .2s ease-in-out;
    padding:20px;
    width: 150px;
    text-transform: uppercase;
}
.categorizer-sub-container > div > div:hover{
    background-color: var(--color-sts-blue);
    color: white;
    cursor: pointer;
}
.categorizer-sub-container > div > div.active{
    background-color: var(--color-sts-blue);
    color: white;
    cursor: pointer;
}
.categorizer-table{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.categorizer-table > div{
    flex: 1 0 28%;
}
@media (max-width: 820px) {
    .categorizer-table > div{
        flex: 1 0 44%;
    }
}
@media (max-width: 700px){
    .categorizer-table > div{
        flex: unset;
        flex-direction: row;
    }
}
.categorizer-paginator {
    background-color: #F8F9FA;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    display: flex;
    justify-content: flex-end;
}
.categorizer-paginator span.disabled {
    color: RGBA(0, 0, 0, 0.2);
    cursor: default;
}
.categorizer-paginator > * {
    margin-right: 5px;
    margin-left: 5px;
}
.categorizer-paginator span.disabled {
    color: var(--color-sts-dark);
    opacity: .5;
 }
.categorizer-paginator span.active:hover {
    cursor: pointer;
}
.categorizer-paginator span.disabled:hover {
   cursor: not-allowed;
}
.categorizer-paginator span.hidden {
    display: none;
}
.categorizer-paginator .nums{
    display: inline-block;
    font-weight: bold;
}
.categorizer-paginator .nums span{
    margin-left:10px;
}
.categorizer-paginator .nums span:hover{
    cursor: pointer;
}
.categorizer-paginator .nums span.active{
    color: var(--color-sts-blue);
}


.detailPageTitle{
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
    color: #063DEA;
    padding:0;
    margin:0;
}
@media (max-width: 700px){
    .detailPageTitle{
        font-size: 24px;
    }
}
/* End Re-usable Components*/

/* AdBlock */
.adBlock:empty{
    display:none;
}
/* End Ad Block*/



/* Header */
.header{
    background-color: var(--color-sts-blue);
    min-width: 100vw;
    padding:20px 0;
    position: fixed;
    height: 30px;
    z-index:999999999;
}

.header *{
    color:white;
}
.header .main-header{
    max-width: var(--breakpoint-desktop);
    margin: 0 auto;
    padding:0 20px;
}
.header .main-header .logo{
    height:28px;
    width:auto;
}
@media(max-width: 700px) {
    .header {
        padding: 15px 0;
    }

    .header .main-header .logo {
        height: 25px;
    }
}
.header .main-header .mobile-menu{
    display: none;
    float:right;
    width:35px;
}
.header .main-header .header-links.mobile{
    display:block;
}
.header .main-header .header-links{
    float:right;
    display:flex;
    padding-right:15px;
}
.header .main-header .header-links img{
    height: 20px;
    width: auto;
    display: inline;
    vertical-align: text-bottom;
}
.header .main-header .header-links div{
    margin-left:30px;
    display:flex;
}
.header .main-header .header-links div a {
    vertical-align: middle;
}
.header .main-header .header-links div a span{
    margin-left: 5px;
    padding-top: 3px;
}
.mobile-menu-button{
    height: 13px;
    width: 35px;
    position: relative;
    display: inline-block;
    top:2px;
}
.mobile-menu-button div{
    height:3px;
    width: 100%;
    background-color: white;
    position: absolute;
    transition: top ease-in-out .2s,opacity ease-in-out .2s, transform ease-in-out .2s;
    transition-delay: 0s, .03s, .2s;
    right:0;
}
.mobile-menu-button:hover{
    cursor: pointer;
}
.mobile-menu-button.reverse div{
    transition: top ease-in-out .2s,opacity ease-in-out .2s, transform ease-in-out .2s;
    transition-delay: .2s, .2s, .0s;
}
.mobile-menu-button div:nth-of-type(1) {
    top:-1px;
}
.mobile-menu-button div:nth-of-type(2){
    top:8px;
    text-align: right;
    margin-left: calc(25px - 80%);
}
.mobile-menu-button div:nth-of-type(3) {
    top:17px;
}

.mobile-menu-button.active div:nth-of-type(1){
    top:6px;
    transform: rotate(45deg);
}
.mobile-menu-button.active div:nth-of-type(2){
    opacity:0;
}
.mobile-menu-button.active div:nth-of-type(3){
    top:6px;
    transform: rotate(-45deg);
}
.header .sub-header-container{
    background-color: var(--color-sts-darkblue);
}
.header .sub-header{
    height: 45px;
    max-width: var(--breakpoint-desktop);
    padding: 0 20px;
    margin: 18px auto 0;
}
.header .sub-header div:not(:last-of-type){
    display: inline;
    line-height: 45px;
    margin-right: 5%;
}
.header .sub-header div:first-of-type{
    float:left;
    margin-top:5px;
}
.header .sub-header div:first-of-type img{
    height: 22px;
    width: auto;
}
.header .sub-header div:last-of-type{
    float:right;
    margin-top: 8px;
    position: relative;
}
.header .sub-header div:last-of-type input{
    padding-left: 10px;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 61px;
    height: 30px;
}
.header .sub-header div:last-of-type input::placeholder{
    transition: opacity .2s ease-in-out;
    opacity: 0;
    transition-delay: .2s;
    color: white;
}
.header .sub-header div:last-of-type .hider{
    left: 0;
    top: -12px;
    position: absolute;
    width: 200px;
    height: 120%;
    background-color: var(--color-sts-darkblue);
    transition: width .2s ease-in-out;
}
.header .sub-header div:last-of-type:hover .hider,.header .sub-header div:last-of-type:focus .hider{
    width: 0;
}
.header .sub-header div:last-of-type:hover input::placeholder,.header .sub-header div:last-of-type:focus input::placeholder{
    opacity: 1;
}
.header .sub-header div:last-of-type img{
    height: 18px;
    width: auto;
    position: absolute;
    right: 17px;
    top: 6px;
}
.header .sub-header a{
    font-size: 16px;
    text-transform: uppercase;
}
.header .sub-header a.active{
    font-weight: bold;
}
@media(max-width: 700px){
    .header .main-header .header-links{
        display:none;
        float:none;
    }
    .header .main-header .header-links div a{
        font-size: 11px;
    }
    .header .main-header .header-links img{
        height: 15px;
    }
    .header .main-header .mobile-menu{
        display: block;
    }
    .header .sub-header{
        display:none;
    }
    .header .main-header .header-links div{
        display:inline-block;
    }
}
.mobile-menu-container{
    background-color: var(--color-sts-blue);
    height: calc(100vh - 250px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    text-align: center;
    top:-100vh;
    transition: top .3s ease-in-out, visibility .2s ease-in-out;
    z-index:-1;
    flex-direction: column;
    justify-content: space-around;
    padding:100px 0;
    visibility: hidden;
}
.mobile-menu-container div{
    flex-grow:1;
}
.mobile-menu-container div:first-of-type{
    flex-grow:1;
    position: relative;
}
.mobile-menu-container div:last-of-type{
    flex-grow:3;
}
.mobile-menu-container > div:not(:last-of-type){
    padding: 0 16%;
}
.mobile-menu-container.active{
    top:60px;
    visibility: visible;
}
.mobile-menu-container a{
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
}
.mobile-menu-container a.active{
    font-weight: bold;
}
.mobile-menu-container div:first-of-type input{
    background-color: transparent;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 61px;
    height: 30px;
    padding-left: 10px;
}
.mobile-menu-container div:first-of-type input::placeholder{
    color: white;
}
.mobile-menu-container > div:first-of-type img{
    height: 18px;
    width: auto;
    position: absolute;
    margin-left: -30px;
    margin-top: 5px;
}
@media(min-width: 700px){
    .mobile-menu-container{
        display:none;
    }
}
/* Header End */


/* Footer */

.footer{
    background-color: var(--color-sts-blue);
    padding: 50px 20px 20px;
}
.footer *{
    color: white;
}
.footer > div{
    max-width: var(--breakpoint-desktop);
    margin: 0 auto;
}

.footer .footer-content > div:first-of-type img{
    height: 27px;
    width: auto;
    display: inline-block;
    margin-right:40px;
    margin-top:-1px;
}
.footer .footer-content > div{
    display: flex;
}
.footer .footer-content > div:first-of-type a{
    margin-right:15px;
}
@media (max-width: 1000px) {
    .footer .footer-content > div:first-of-type a{
        display: none;
}
}
.footer .footer-content > div:not(:first-of-type) img{
    height: 20px;
    width: auto;
}
.footer .footer-content > div:not(:first-of-type) {
    display: flex;
    justify-content: space-between;
    margin-top:3px;
}
.footer .footer-content > div:not(:first-of-type) a{
    margin-left:13px;
}
.footer .footer-content > div:not(:first-of-type) a div{
    display: flex;
}
.footer .footer-content > div:not(:first-of-type) a div span{
    margin-top:-1px;
}
.footer .footer-content{
    display: flex;
    justify-content: space-between;
}
.footer > div:last-of-type{
    padding-top: 100px;
    text-align: center;
    font-size: 15px;
}
.footer > div:last-of-type a {
    text-decoration: underline;
}
@media (max-width: 1000px) {
    .footer .footer-content{
        display: block;
        font-size:15px;
    }
    .footer .footer-content > div:first-of-type img{
        display: block;
        margin: 10px auto 50px;
    }
    .footer .footer-content > div:not(:first-of-type) {
        justify-content: center;
        margin-left:-17px;
    }
}


/* GoToDownload */
.download-GoToDownload{
    background-color: var(--color-sts-grey);
    display: flex;
}
.download-GoToDownload > div:first-of-type{
    flex-grow: 1;
    flex-basis: 0;
    background-color: var(--color-sts-blue);
    display: flex;
}
.download-GoToDownload > div:last-of-type{
    padding:4%;
    flex-grow: 1;
    flex-basis: 0;
}
.download-GoToDownload > div > p:first-of-type{
    font-weight: 900;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase;
    margin:0;
}
.download-GoToDownload > div > p:last-of-type{
    font-size: 18px;
    line-height: 22px;
    margin-bottom:20px;
}
@media(max-width: 700px){
    .download-GoToDownload{
        flex-direction: column;
    }
    .download-GoToDownload > div:first-of-type img{
        width: 50%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}
/* End GOTODownload*/


/* Article_Back_Date_Social */
.Article_Back_Date_Social{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
    padding-bottom: 15px;
    font-size: 18px;
    margin:0;
}
.Article_Back_Date_Social_date {
    margin-left: 30px;
}
@media (max-width: 700px){
    .Article_Back_Date_Social_date{
        display: none;
    }
}
.Article_Back_Date_Social .sts-copy {
    display: inline-block;
    width: auto;
    height: 20px;
    vertical-align: top;
}

.Article_Back_Date_Social .sts-copy:hover {
    cursor: pointer;
}
.Article_Back_Date_Social a:first-of-type {
    color: black;
    font-weight: bold;
}


.Article_Back_Date_Social a:first-of-type:hover {
    color: var(--color-sts-blue);
}

.Article_Back_Date_Social ~ blackstroke {
    margin-bottom: 30px;
}

/* END Article_Back_Date_Social */

/* Article_Table_Of_Contents */
.Article_Table_Of_Contents {
    background-color: #F8F9FA;
    padding: 20px 20px;
    margin-top: 30px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.Article_Table_Of_Contents > div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.Article_Table_Of_Contents a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    color: #444444;
    margin-left: -17px;
    transition: color 100ms ease-in, font-weight 100ms ease-in, margin-left 100ms ease-in;
}

.Article_Table_Of_Contents a:before {
    transition: opacity 100ms ease-in;
    content: "-----                                                ";
    letter-spacing: -3px;
    margin-right: 5px;
    opacity: 0;

}

.Article_Table_Of_Contents a:hover,.Article_Table_Of_Contents a.active {
    color: var(--color-sts-blue) !important;
    font-weight: bold;
    margin-left: 0;
    cursor: pointer;
}

.Article_Table_Of_Contents a:hover::before,.Article_Table_Of_Contents a.active::before {
    opacity: 1;
}


/* END Article_Table_Of_Contents */


/* All CSS that is Displayed inside of Content */
#content h2, #tinymce h2 {
    color: var(--color-sts-blue);
    font-size: 36px;
}


#content h3, #tinymce h3 {
    color: var(--color-sts-blue);
}
#sts-content p, #tinymce p{
    margin:0;
}
#sts-content iframe{
    max-width: 100%;
    max-height: 450px;
}

#sts-content a, #content a, #tinymce a {
    color: var(--color-sts-blue);
}

#sts-content a:hover, #content a:hover, #tinymce a:hover {
    text-decoration: underline;
}

#sts-content {
    word-break: break-word;
}

#sts-content img, #tinymce img {
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
}


.fitVids-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.fitVids-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#sts-content table, #content table, #tinymce table {
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
}

#sts-content table td, #content table td, #tinymce table td {
    border: none;
    padding: 5px 10px;
}

#sts-content table tr:nth-child(odd), #content table tr:nth-child(odd), #tinymce table tr:nth-child(odd) {
    background-color: #F8F9FA;
}


.sts-content-instructions {
    padding: 30px;
    background-color: #F8F9FA;
}

.sts-content-instructions h2 {
    color: var(--color-sts-blue);
    margin-bottom: 30px;
}
.sts-content-instructions h3 {
    margin-top:0;
}

.sts-content-instructions ol {
    list-style: none;
    counter-reset: instruction-counter;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.sts-content-instructions ol li {
    counter-increment: instruction-counter;
    display: flex;
    width: 100%;
    font-size: 18px;
    margin-bottom: 2.5rem;
}

.sts-content-instructions ol li:last-of-type {
    margin-bottom: 5px;
}

.sts-content-instructions ol li::before {
    content: counter(instruction-counter);
    font-weight: bold;
    font-size: 40px;
    color: var(--color-sts-blue);
    line-height: 1;
    border-right: 5px solid var(--color-sts-blue);
    padding-right: 20px;
    margin-right: 20px;
}

.sts-positive-neutral-negative {
    background-color: #F8F9FA;
    padding: 20px;
    max-width: 100%;
    display: flex;
}
.sts-positive-neutral-negative > div:first-of-type {
    border-right: 2px solid #C7C7C7;
}

.sts-positive-neutral-negative > div:last-of-type {
    border-left: 2px solid #C7C7C7;
}




.sts-positive-neutral-negative p:first-of-type {
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sts-positive-neutral-negative ul.dashed {
    list-style-type: none;
    padding-left: 6px;
}

.sts-positive-neutral-negative ul.dashed > li {
    text-indent: -5px;
    line-height: 20px;
}

.sts-positive-neutral-negative ul.dashed > li:before {
    content: "-";
    text-indent: -5px;
    margin-right: 5px;
}
.sts-positive-negative {
    background-color: #F8F9FA;
    padding: 20px;
}

@media (min-width: 768px) {
    .sts-positive-negative > div:first-of-type {
        border-right: 2px solid #C7C7C7;
    }
}

.sts-positive-negative p:first-of-type {
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sts-positive-negative ul.dashed {
    list-style-type: none;
    padding-left: 6px;
}

.sts-positive-negative ul.dashed > li {
    text-indent: -5px;
    line-height: 20px;
}

.sts-positive-negative ul.dashed > li:before {
    content: "-";
    text-indent: -5px;
    margin-right: 5px;
}

.sts-positive-neutral-negative > *:not(div){
    display: none;
}
.sts-positive-neutral-negative > div{
    padding:0 20px;
    width: 33.33333%;
}
.sts-positive-neutral-negative .font-weight-bold{
    font-weight: bold;
}
.sts-positive-neutral-negative ul{
    line-height: 18px;
}

#sts-content h2{
    font-weight: 900;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--color-sts-blue);
}
#sts-content h3{
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-sts-blue);
}


@media (max-width: 700px) {
    .sts-positive-neutral-negative {
        flex-wrap: wrap;
    }
    .sts-positive-neutral-negative > div:first-of-type {
        border-right: unset;
    }

    .sts-positive-neutral-negative > div:last-of-type {
        border-left: unset;
    }
    #sts-content p, #tinymce p{
        font-size:16px;
    }
    .sts-positive-neutral-negative p{
        font-size: 16px;
    }
    .sts-positive-neutral-negative li{
        font-size: 16px;
    }
    .sts-positive-neutral-negative>div{
        width: unset;
    }
    .sts-positive-negative>div{
        width: unset;
    }
}



.downloadList{
    background-color: var(--color-sts-grey);
    padding:10px;
}
.downloadList table{
    width: 100%;
    text-align: left;
    border-spacing: 0;
}
.downloadList thead tr th{
    padding:15px;
    color: #CCCCCC;
}
.downloadList thead tr th:first-of-type{
    color: #000000;
}
.downloadList tbody tr th{
    padding:15px;
}
.downloadList tbody tr th:not(:first-of-type){
    font-weight: 500;
}
.downloadList tbody tr th:last-of-type{
    text-align: end;
}

.downloadList tbody tr:nth-child(odd){
    background-color: #FFFFFF;
}
@media (max-width: 1000px) {
    .downloadList thead tr th:nth-child(2){
        display:none;
    }
    .downloadList tbody tr th:nth-child(2){
        display:none;
    }
}
@media (max-width: 700px) {
    .downloadList thead tr th:nth-child(3){
        display:none;
    }
    .downloadList tbody tr th:nth-child(3){
        display:none;
    }
}


.fileContainer{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    flex-basis: 50%;
}
.fileContainer p{
    margin:0;
}
.fileContainer > div{
    display: flex;
    background-color: var(--color-sts-grey-2);
    width: calc(50% - 10px);
}
.fileContainer > div > div:first-of-type {
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 70%;
    justify-content: center;
}
.fileContainer > div > div:first-of-type > p:first-of-type{
    font-weight: bold;
    font-size: 18px;
}
.fileContainer > div > a{
    width: 30%;
    text-align: center;
    transition: width .2s ease-in-out;
}
.fileContainer > div > a:hover{
    width: 40%;
    cursor: pointer;
}
.fileContainer > div > a > div {
    background-color: var(--color-sts-blue);
    color: white;
    text-transform: uppercase;
    padding:20px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}
.fileContainer > div > a > div img{
    height: auto;
    width: 40px;
    margin: 5px auto;
}
@media (max-width: 1320px) {
    .fileContainer{
        flex-direction: row;
    }
    .fileContainer > div {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .fileContainer > div {
        display: block;
    }
}



/* Timer */
.sts-timer-container {
    text-align: center;
    color: var(--color-sts-blue);
    background-color: #F8F9FA;
    padding: 30px;
}

.sts-timer-container .sts-timer p {
    border: var(--color-sts-blue) 2px solid;
    width: 150px;
    height: 150px;
    margin: 0 auto!important;
    border-radius: 50%;
    line-height: 140px;
    font-weight: bold;
    font-size: 70px;
}

.sts-timer-container > p:first-of-type {
    font-weight: bold;
    font-size: 35px;
    margin-top: 5px;
}

.sts-timer-container > p:nth-of-type(2) {
    margin-top: -5px;

}

/* END Timer */


/* 404 Site */
.PageNotFound {
    background-color: var(--color-sts-blue);
    height: calc(100vh - 136px);
    color: white;
    padding-top:136px;
    display: block;
    padding-bottom: 5%;
    text-align: center;
}
@media(max-width: 700px) {
    .PageNotFound{
        padding:70px;
    }
}
.PageNotFound h2 {
    color: white;
    margin-top: 20px;
    padding-bottom: 0px;
}

.PageNotFound button {
    margin-top: 30px;
}


.PageNotFound img {
    width: 30%;
    margin: 0 auto;
    height: auto;
    display: block;
    max-width: 1000px;
}


/* News Alert*/
.newsAlert{
    max-width: 750px;
    min-width: 500px;
    width: 20%;
    position: fixed;
    right:20px;
    bottom:20px;
    display: flex;
    box-shadow: 0px 4px 4px 0px #00000040;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    transition-delay: 2s;
}
.newsAlert.active{
    opacity: 1;
}
.newsAlert > img{
    position: absolute;
    width: 20px;
    height: auto;
    right:20px;
    top:20px;
}
.newsAlert > img:hover {
    cursor: pointer;
}
.newsAlert > div:first-of-type{
    background-color: var(--color-sts-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex: 0 0 40%;

}
.newsAlert > div:first-of-type img{
    opacity: .8;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    width: 50px;
    height: 100px;
}
.newsAlert > div:not(:first-of-type){
    padding:20px;
    background-color: white;
}
.newsAlert > div:not(:first-of-type) > p:first-of-type {
    font-size: 16px;
    text-transform: uppercase;
}
.newsAlert > div:not(:first-of-type) > p:nth-of-type(2) {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 800;
}
.newsAlert > div:not(:first-of-type) > p:nth-of-type(3) {
    font-size: 18px;
}
.newsAlert > div:not(:first-of-type) > a {
   margin-top:20px;
}


.coockie-banner{
    background-color: var(--color-sts-dark);
    color: white;
    text-align: center;
    height: 35px;
    padding-top:6px;
    position: fixed;
    bottom:0;
    right:0;
    left:0;
    z-index: 999999;
}

.coockie-banner a {
    color: white;
    margin: 0 10px;
}
.coockie-banner button{
    background-color: #1e7e34;
    border-radius: 2px;
    color: white;
    font-size: 16px;
    border: 0;
    margin-bottom: 3px;
    padding: 5px;
    transition: margin-left .2s ease-in-out;
}
.coockie-banner button:hover{
    margin-left:3px;
    cursor: pointer;
}
.overBox{
    z-index: 99999;
    background-color: transparent;
    opacity: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: background-color .2s ease-in-out, opacity.2s ease-in-out;
    transition-delay: .0005s;
}
.overBox.active{
    background-color: rgba(var(--color-sts-blue-rgb),.5);
    opacity: 1;
    display: block;
}
.overBox > div{
    width: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    padding: 10px;
}
.overBox > div .close{
    position: absolute;
    right: 20px;
    top:20px;
}
.sts-consent-settings{
    display: flex;
    align-items: center;
}