/*
    CRM-8930 - temp avg kb

    generated from
    layouts/article-page
    components/loading-bar

    only one class added
    .newArticle before imgs to prevent avast sizer on avg articles
*/

#overlay,
#popupOverlay {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 2000;
    margin: 0;
    min-height: 100%;
    bottom: auto;
    height: 100vmax;
    padding-top: 100px
}

#overlay #load,
#popupOverlay #load {
    width: 150px;
    animation: loading 3s linear infinite
}

#overlay #load #loading-inner,
#popupOverlay #load #loading-inner {
    stroke-dashoffset: 0;
    stroke-dasharray: 300;
    stroke-width: 10;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    animation: loading-circle 2s linear infinite;
    stroke: #767683;
    fill: transparent
}

@keyframes loading {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes loading-circle {
    0% {
        stroke-dashoffset: 0
    }

    100% {
        stroke-dashoffset: -600
    }
}

#overlay.hidden,
#popupOverlay.hidden {
    display: none !important
}

.article-page {
    position: relative
}

@media screen and (max-width:767px) {
    .article-page .row {
        margin: 0 -15px
    }
}

@media screen and (max-width:1199px) {
    .article-page .contact-us {
        padding-bottom: 60px
    }
}

.article-page .article-load#overlay {
    padding-top: 152px;
    background-color: #f2f2f6;
    z-index: 90;
    height: 100%;
    left: 0
}

.article-page .article-load #load {
    position: fixed;
    left: calc(50% - 75px);
    top: 20%
}

.article-page .article-load#overlay.hidden {
    display: none !important
}

.article-page .article-load#overlay.displayed-while-loading {
    display: block !important
}

@media(max-width:1199px) {
    .article-aside {
        transform: translateY(0) !important;
        position: static !important
    }
}

@media(min-width:1200px) {
    .article-aside {
        width: 330px;
        padding-bottom: 90px;
        float: right
    }
}

.article {
    margin-bottom: 20px;
    padding: 52px;
    background-color: #fff;
    font-weight: 300
}

.article.faq {
    padding-left: 0;
    padding-right: 0
}

.article.faq .options-header {
    margin-left: 0
}

.article.faq h1,
.article.faq h2,
.article.faq .faq-expand,
.article.faq .faq-item,
.article.faq .article-content>p,
.article.faq .options-heading,
.article.faq .article-content>.options {
    padding-left: 52px;
    padding-right: 52px
}

.article.faq .article-content>ul,
.article.faq .article-content>ol {
    padding-left: 70px;
    padding-right: 52px
}

.article.faq .applies-to {
    margin-left: 52px;
    margin-right: 52px
}

@media screen and (max-width:479px) {

    .article.faq h1,
    .article.faq h2,
    .article.faq .faq-expand,
    .article.faq .faq-item,
    .article.faq .article-content>p,
    .article.faq .options-heading,
    .article.faq .article-content>.options {
        padding-left: 26px;
        padding-right: 26px
    }

    .article.faq .article-content>ul,
    .article.faq .article-content>ol {
        padding-left: 42px
    }

    .article.faq .applies-to {
        margin-left: 26px;
        margin-right: 26px
    }
}

@media screen and (max-width:767px) {
    .article {
        padding: 15px;
        margin-left: -15px;
        margin-right: -15px
    }
}

.article ol {
    padding-left: 18px
}

.article ol li {
    padding-left: 10px
}

.article ul {
    padding-left: 18px
}

.article ul li {
    padding-left: 4px
}

.article--grey {
    background-color: #f2f2f6
}

.article-search {
    margin-bottom: 54px
}

@media screen and (max-width:1199px) {
    .article-search {
        margin-bottom: 0
    }
}

@media screen and (max-width:1199px) {
    .article-search .search-box {
        margin-bottom: 50px
    }
}

.article-banner {
    float: right
}

@media(max-width:1199px) {
    .article-banner {
        float: none;
        margin-bottom: 70px
    }
}

.article-banner img {
    max-width: 100%
}

.article p {
    text-align: left;
    display: block
}

.article .accordion {
    display: block
}

.article .accordion>span {
    background-color: #fff;
    color: black;
    cursor: pointer;
    padding: 18px;
    text-align: left;
    border: 1px solid grey;
    border-top: 0;
    outline: 0;
    transition: .4s;
    display: block;
    padding-left: 40px;
    background-image: url("../img/up.png");
    background-position: left 10px center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    font-weight: bold;
    font-size: 16px
}

.article .accordion>span:first-child {
    border-top: 1px solid grey
}

.article .accordion>span:hover {
    background-color: lightgray
}

.article .accordion>span.active {
    background-image: url("../img/down.png");
    background-color: grey;
    color: white
}

.article .accordion>span~div {
    padding: 0 18px;
    background-color: grey;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    display: block
}

.article .accordion>span.active~div:first-child {
    border: 1px solid grey
}

.article .sample {
    border: 3px dotted black;
    display: block;
    padding: 10px;
    margin: 20px auto
}

.article .sample textarea {
    display: block;
    width: 80%;
    border: 2px dotted black;
    font-size: 14px;
    background-color: #b3b3b3;
    padding: 10px;
    margin: 20px auto
}

.article .applies-to {
    margin-bottom: 26px;
    position: relative;
    font-size: 15px
}

.article .applies-to_heading {
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0;
    height: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 170px
}

@media(max-width:479px) {
    .article .applies-to_heading {
        padding-right: 0;
        height: 48px
    }
}

.article .applies-to_heading button {
    position: absolute;
    right: 0;
    top: -1px;
    color: #0072d1;
    font-style: normal;
    cursor: pointer;
    background: transparent;
    border: 0;
}

@media(max-width:479px) {
    .article .applies-to_heading button {
        position: static;
        float: none;
        display: block;
        margin-bottom: 70px;
        text-align: left
    }
}

.article .applies-to_heading button:hover {
    cursor: pointer;
    text-decoration: underline
}

.article .applies-to_heading:last-child {
    display: none
}

.article .applies-to_content-heading {
    font-style: italic
}

.article .applies-to_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out
}

.article .applies-to_content-active {
    height: auto
}

.article .applies-to .conditions {
    background-color: #f2f2f6;
    padding: 26px;
    margin-top: 26px
}

.article .applies-to .conditions_header {
    font-style: italic
}

.article .applies-to .conditions_subheader {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px
}

.article .applies-to .conditions span {
    float: right;
    color: #0072d1;
    font-style: normal
}

.article .applies-to .conditions span:hover {
    cursor: pointer;
    text-decoration: underline
}

.article .applies-to .conditions ul {
    list-style: none;
    padding-left: 1.1rem;
    margin: 0;
    margin-bottom: 22.1px
}

.article .applies-to .conditions ul li {
    margin-bottom: 0;
    line-height: 26px
}

.article ui,
.article u {
    font-weight: 700;
    text-decoration: none
}

.article .topic {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-top: 52px;
    margin-bottom: 26px
}

.article .indent {
    margin-left: 26px
}

.article .noindent {
    margin-left: 0 !important
}

.article .tip {
    margin-top: 26px;
    margin-bottom: 26px;
    background-color: #f2f2f6;
    padding: 26px
}

.article .tip ul {
    margin-bottom: 0
}

.article .tip li {
    padding-left: 0
}

.article .tip strong:first-child {
    margin-right: .5rem;
    text-transform: uppercase
}

@media screen and (max-width:479px) {
    .article .tip strong:first-child {
        margin-left: 18px
    }
}

@media screen and (max-width:479px) {
    .article .tip {
        padding-left: 26px;
        padding-top: 38px;
        background-position: 14px 38px;
        background-size: 20px 20px
    }
}

.article .alert {
    margin-top: 26px;
    margin-bottom: 26px;
    padding: 26px;
    padding-left: 78px;
    background-color: #f2f2f6;
    background-image: url("../img/article/important.svg");
    background-position: 26px 26px;
    background-size: 34px 34px;
    background-repeat: no-repeat
}

.article .alert ul {
    margin-bottom: 0
}

.article .alert li {
    padding-left: 0
}

.article .alert strong:first-child {
    margin-right: .5rem;
    text-transform: uppercase
}

@media screen and (max-width:479px) {
    .article .alert strong:first-child {
        margin-left: 18px
    }
}

@media screen and (max-width:479px) {
    .article .alert {
        padding-left: 26px;
        padding-top: 38px;
        background-position: 14px 38px;
        background-size: 20px 20px
    }
}

.article .note {
    margin-top: 26px;
    margin-bottom: 26px;
    padding: 26px;
    padding-left: 78px;
    background-color: #f2f2f6;
    background-image: url("../img/article/note.svg");
    background-position: 26px 26px;
    background-size: 34px 34px;
    background-repeat: no-repeat;
}

.article ol li .note, .article ul li .note {
    margin-left: -42px;
}

.article .note li {
    padding-left: 0
}

.article .note strong:first-child {
    margin-right: .5rem;
    text-transform: uppercase
}

@media screen and (max-width:479px) {
    .article .note strong:first-child {
        margin-left: 18px
    }
}

@media screen and (max-width:479px) {
    .article .note {
        padding-left: 26px;
        padding-top: 38px;
        background-position: 14px 38px;
        background-size: 20px 20px
    }
}

.article .requirements {
    margin-top: 26px;
    margin-bottom: 26px;
    padding: 26px;
    padding-left: 78px;
    background-color: #f2f2f6;
    background-image: url("../img/article/info.svg");
    background-position: 26px 26px;
    background-size: 34px 34px;
    background-repeat: no-repeat
}

.article .requirements ul {
    margin-bottom: 0
}

.article .requirements li {
    padding-left: 0
}

.article .requirements strong:first-child {
    display: block;
    text-transform: uppercase
}

@media screen and (max-width:479px) {
    .article .requirements strong:first-child {
        margin-left: 18px
    }
}

@media screen and (max-width:479px) {
    .article .requirements {
        padding-left: 26px;
        padding-top: 38px;
        background-position: 14px 38px;
        background-size: 20px 20px
    }
}

.article .external-link:after {
    content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAgUlEQVQoU7XQuxGCQBSF4f8YG9mAlkEhUonRzhq6swZWooXQBlZgYn6cRWAYETNver/7FEuR3QDVkNYiLInkC+KAQGT7A28IepB8QkRMYkV8wyc7ku5jwRRFHclu5jC7xly7TgX1MYe2OLMn6DZd6fvoIqK3rGkJ6g7+F/z1zH70C0HaSOeV8kaJAAAAAElFTkSuQmCC");
    margin-left: .3em;
    height: 1em
}

.article .inline-icon {
    display: inline;
    margin: 0 2px;
    height: 16px;
    width: auto;
    vertical-align: baseline
}

.article .article-table {
    max-width: 100%;
    margin-bottom: 26px;
    margin-top: 26px;
    overflow-x: scroll
}

.article .article-table::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 8px
}

.article .article-table::-webkit-scrollbar-thumb {
    background-color: #90909c;
    border-radius: 4px
}

.article .article-table table {
    zoom: .9;
    border-collapse: collapse
}

.article .article-table table td {
    padding: 11.05px 22.1px;
    border: 1px solid #e6ebf2
}

.article .article-table table th {
    font-weight: 700;
    background-color: #f2f2f6
}

.article .article-table table.top tr:first-child {
    font-weight: 700;
    background-color: #f2f2f6
}

.article .article-table table.left td:first-child {
    font-weight: 700;
    background-color: #f2f2f6
}

.article .article-table table.bottom tr:last-child {
    font-weight: 700;
    background-color: #f2f2f6
}

.article .article-table table.right td:last-child {
    font-weight: 700;
    background-color: #f2f2f6
}

.article code,
.article kbd {
    display: inline-block;
    margin: 0 .2em;
    padding: 0 .4em;
    font-family: "Proxima Nova", sans-serif;
    background-color: #5a607d;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff
}

.newArticle .article img {
    display: block;
    margin: 26px 0;
    transition: all .2s ease-out
}

.newArticle .article img:hover:not(.inline-icon) {
    max-width: 100% !important;
    transition-delay: .35s
}

.newArticle .article img {
    max-width: 100%
}

@media screen and (max-width:479px) {
    .newArticle .article img {
        max-width: 100%
    }
}

.article h2~.wrap-lightbox img,
.article h3~.wrap-lightbox img {
    max-width: 30%
}

@media screen and (max-width:991px) {

    .article h2~.wrap-lightbox img,
    .article h3~.wrap-lightbox img {
        max-width: 70%
    }
}

.article img.xlarge {
    max-width: 100% !important
}

.article img.large {
    max-width: 70% !important
}

@media screen and (max-width:991px) {
    .article img.large {
        max-width: 100% !important
    }
}

.article img.medium {
    max-width: 50% !important
}

@media screen and (max-width:767px) {
    .article img.medium {
        max-width: 70% !important
    }
}

@media screen and (max-width:479px) {
    .article img.medium {
        max-width: 100% !important
    }
}

.article img.small {
    max-width: 30% !important
}

@media screen and (max-width:767px) {
    .article img.small {
        max-width: 50% !important
    }
}

@media screen and (max-width:479px) {
    .article img.small {
        max-width: 70% !important
    }
}

.article img.xsmall {
    max-width: 20% !important
}

@media screen and (max-width:767px) {
    .article img.xsmall {
        max-width: 30% !important
    }
}

@media screen and (max-width:479px) {
    .article img.xsmall {
        max-width: 50% !important
    }
}

.newArticle .article li img {
    max-width: 30%
}

@media screen and (max-width:991px) {
    .newArticle .article li img {
        max-width: 70%
    }
}

.newArticle .article li img.xlarge {
    max-width: 100%
}

.newArticle .article li img.large {
    max-width: 70%
}

@media screen and (max-width:991px) {
    .newArticle .article li img.large {
        max-width: 100%
    }
}

.newArticle .article li img.medium {
    max-width: 50%
}

@media screen and (max-width:991px) {
    .newArticle .article li img.medium {
        max-width: 70%
    }
}

@media screen and (max-width:767px) {
    .newArticle .article li img.medium {
        max-width: 100%
    }
}

.newArticle .article li img.small {
    max-width: 30%
}

@media screen and (max-width:767px) {
    .newArticle .article li img.small {
        max-width: 50%
    }
}

@media screen and (max-width:479px) {
    .newArticle .article li img.small {
        max-width: 70%
    }
}

.newArticle .article li img.xsmall {
    max-width: 20%
}

@media screen and (max-width:767px) {
    .newArticle .article li img.xsmall {
        max-width: 30%
    }
}

@media screen and (max-width:479px) {
    .newArticle .article li img.xsmall {
        max-width: 50%
    }
}

.article [data-lightbox] img {
    display: inline-block;
    margin: 0
}

.article .wrap-lightbox {
    margin-top: 26px;
    margin-bottom: 26px
}

.article a.dl {
    font-size: .9375rem;
    display: inline-block;
    border: 0;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .1s ease-in-out
}

.article a.dl:after {
    content: '';
    display: none
}

.article div.button {
    margin-bottom: 22.1px;
    margin-top: 22.1px
}

.article .options-header {
    margin-bottom: 26px;
    user-select: none;
    width: 730px;
    border-bottom: 1px solid #e6ebf2;
    margin-left: -52px;
    display: flex;
    text-align: center;
    padding: 0 52px;
    background: #fff;
    -moz-transition: opacity .6s ease-in-out;
    -o-transition: opacity .6s ease-in-out;
    -webkit-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
    opacity: 1
}

.article .options-header.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000
}

.article .options-header.force-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999
}

.article .options-header.no-sticky {
    position: inherit !important;
    top: auto !important
}

.article .options-header.animate-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    -moz-transition: opacity .6s ease-in-out;
    -o-transition: opacity .6s ease-in-out;
    -webkit-transition: opacity .6s ease-in-out;
    transition: opacity .6s ease-in-out;
    opacity: 0
}

@media screen and (max-width:1199px) {
    .article .options-header {
        margin-left: 0 !important;
        width: auto !important
    }
}

@media screen and (max-width:991px) {
    .article .options-header {
        display: flex;
        width: 100%;
        margin-left: 0;
        padding: 0
    }
}

@media screen and (max-width:479px) {
    .article .options-header {
        padding: 0;
        display: inline-block
    }
}

.article .options-heading {
    margin-top: 26px
}

.article .options-header-item {
    display: inline-block;
    border: 0;
    text-transform: uppercase;
    padding: 26px;
    padding-bottom: 18px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    color: #767683;
    background: none;
    border-bottom: 4px solid transparent;
}

.article .options-header-item.active {
    border-bottom: 4px solid #6534ac;
    color: #6534ac
}

@media screen and (max-width:479px) {
    .article .options-header-item {
        border-bottom: 4px solid transparent
    }
}

@media screen and (max-width:479px) {
    .article .options-header-item {
        display: inline-block;
        text-align: center;
        padding: 20px 10px 10px 10px
    }
}

.article .options-hidden {
    display: none !important
}

.faqs .indent {
    margin-left: 0
}

.faqs .options-heading {
    margin-top: 0
}

.faqs h2 {
    margin-top: 40px
}

.faqs .faq-item {
    background-color: white;
    border-bottom: 1px solid #f2f2f6
}

.faqs .faq-item h3 {
    padding-top: 25px;
    padding-bottom: 22px;
    padding-left: 51px;
    padding-right: 51px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    cursor: pointer;
    background-image: url("../img/article/expand_icon_plum.png");
    background-size: 35px 35px;
    background-position: center left;
    background-repeat: no-repeat;
    font-weight: 400
}

.faqs .faq-item h3.faq-active {
    background-image: url("../img/article/colapse_icon_plum.png")
}

@media screen and (max-width:479px) {
    .faqs .faq-item h3 {
        padding-left: 48px;
        padding-right: 0
    }
}

.faqs>.faq-item:last-child {
    border-bottom: 0
}

.faqs h2+.faq-item {
    margin-top: 17px;
    border-bottom: 1px solid #f2f2f6;
    border-top: 1px solid #f2f2f6
}

.faqs .faq-expand {
    text-align: right;
    margin-bottom: 26px
}

.faqs .faq-expand+h2,
.faqs .faq-expand+h3 {
    margin-top: 0
}

.faqs .faq-button {
    color: #6534ac;
    background-color: #f2f2f6;
    border: 0;
    text-transform: uppercase;
    font-size: 12px;
    padding: 18px 15px 14px 42px;
    line-height: 12px;
    background-image: url("../img/article/plus_plum.png");
    background-size: 35px 35px;
    background-position: top 5px left 5px;
    background-repeat: no-repeat;
    font-weight: 400;
    outline: 0;
    min-width: 150px;
    text-align: left
}

.faqs .faq-button.expanded {
    background-image: url("../img/article/minus_plum.png")
}

.faqs .collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    background-color: #fff;
    padding: 0 51px
}

@media screen and (max-width:479px) {
    .faqs .collapsible {
        padding: 0 24px
    }
}

.faqs .collapsible .first-spacer {
    margin-top: 26px
}

.faqs .collapsible .last-spacer {
    margin-top: 51px
}

.faqs .collapsible .options-heading,
.faqs .collapsible .options-header {
    padding-right: 0;
    padding-left: 0;
    width: auto
}

.faqs .collapsible-open {
    overflow: unset;
    padding: 0 51px
}

@media screen and (max-width:479px) {
    .faqs .collapsible-open {
        padding: 0 24px
    }
}

.article-nav {
    width: 300px;
    padding-left: 38px;
    font-size: 15px;
    float: right;
    margin-bottom: 52px;
    font-weight: 300;
    user-select: none;
    -ms-user-select: none
}

@media(max-width:1199px) {
    .article-nav {
        display: none
    }
}

.article-nav-header {
    text-transform: uppercase
}

.article-nav-subheader {
    cursor: pointer
}

.article-nav-active {
    font-weight: bold
}

.article-nav-container {
    position: relative;
    user-select: none;
    -moz-user-select: none
}

.article-nav-slider {
    height: 100%;
    width: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -36px
}

.article-nav-knob {
    position: absolute;
    top: 0;
    left: -9px;
    background-color: #6534ac;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    box-shadow: 1px 1px 5px grey;
    transition: top .4s ease-out;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab
}

.article-nav-items {
    padding-left: 0;
    list-style: none;
    padding-left: 0
}

.article-nav-items li {
    padding-left: 0;
    text-overflow: ellipsis;
    overflow-x: hidden
}

.article-nav-items li:last-child {
    margin-bottom: 0
}

.article-nav-items ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0 0 0 6px;
}

.article-nav-items ul li::before {
    display: none;
}

.article-nav-items ul li:last-child {
    margin-bottom: 0
}

.article-nav-link {
    color: #41424e;
    white-space: nowrap
}

.article-nav-link:hover,
.article-nav-link:active,
.article-nav-link:focus,
.article-nav-link:visited {
    color: #41424e;
    text-decoration: none
}

.article-nav ul {
    margin-top: 13px;
    margin-bottom: 0
}