@charset "UTF-8";

@keyframes slide {
    0% {
        clip: rect(0,0,20px,0)
    }

    30%,50% {
        clip: rect(0,80px,20px,0)
    }

    80%,to {
        clip: rect(0,80px,20px,80px)
    }
}

/***** Base *****/
*,body input[type=search] {
    box-sizing: border-box
}

html {
    font-size: 100%
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Lato",sans-serif
}

h1 {
    font-size: 2rem
}

h2,h3 {
    font-size: 1.6rem;
    margin-top: 1rem
}

h3 {
    font-size: 1.4rem
}

h4 {
    font-size: 1.2rem;
    margin-top: .75rem
}

h5 {
    font-size: 1.1rem;
    margin-top: .6rem
}

body {
    background-color: #FFFFFF;
    color: rgba(21, 31, 38, 1);
    font-weight: 400
}

@media (min-width:1024px) {
    body>main {
        min-height: 100vh
    }
}

@media (max-width:640px) {
    .user_nav {
        width: 40%!important
    }
}

a {
    color: #1F73B7;
    text-decoration: none;
    transition: all .25s ease;
    display: inline-block
}

a:active,a:focus,a:hover {
    text-decoration: underline
}

input,textarea {
    color: #000;
    font-size: 14px
}

input {
    font-weight: 400;
    max-width: 100%;
    box-sizing: border-box;
    outline: 0;
    transition: border .12s ease-in-out
}

input:focus,select:focus,textarea:focus {
    border: 1px solid rgba(0, 97, 213, 1)
}

input[disabled] {
    background-color: #ddd
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(//theme.zdassets.com/theme_assets/88181/27f536d448438fdd88b4004a3223bcc153fb621d.svg)no-repeat #fff;
    background-position: right 10px center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 30px 8px 10px;
    outline: 0;
    color: #555;
    width: 100%
}

select::-ms-expand {
    display: none
}

textarea {
    border: 1px solid #ddd;
    border-radius: 2px;
    resize: vertical;
    width: 100%;
    outline: 0;
    padding: 10px
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%
}

@media (min-width:1160px) {
    .container {
        padding: 0;
        width: 90%
    }
}

.container-divider {
    border-top: 1px solid #ddd;
    margin-bottom: 20px
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.error-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%
}

@media (min-width:1160px) {
    .error-page {
        padding: 0;
        width: 90%
    }
}

.dropdown-toggle {
    background: 0 0;
    border: 0;
    padding: 0;
    text-align: initial
}

.dropdown-toggle:focus {
    outline: 0;
    text-decoration: underline
}

.dropdown-toggle::after {
    color: inherit
}

.visibility-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap
}

/***** Buttons *****/
.button,[role=button] {
    border: 1px solid rgba(0, 97, 213, 1);
    border-radius: 4px;
    color: rgba(0, 97, 213, 1);
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    line-height: 2.34;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    transition: background-color .12s ease-in-out,border-color .12s ease-in-out,color .15s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    -webkit-touch-callout: none
}

@media (min-width:768px) {
    .button,[role=button] {
        width: auto
    }
}

.button::after,[role=button]::after {
    color: rgba(0, 97, 213, 1)
}

.button:active,.button:focus,.button:hover,.button[aria-selected=true],[role=button]:active,[role=button]:focus,[role=button]:hover,[role=button][aria-selected=true] {
    background-color: rgba(0, 97, 213, 1);
    color: #FFFFFF;
    text-decoration: none
}

.button[aria-selected=true]:active,.button[aria-selected=true]:focus,.button[aria-selected=true]:hover,[role=button][aria-selected=true]:active,[role=button][aria-selected=true]:focus,[role=button][aria-selected=true]:hover {
    background-color: #00336f;
    border-color: #00336f
}

.button[data-disabled],[role=button][data-disabled] {
    cursor: default
}

.button-large,input[type=submit] {
    background-color: rgba(0, 97, 213, 1);
    border: 0;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.72;
    min-width: 190px;
    padding: 0 1.9286em;
    width: 100%
}

@media (min-width:768px) {
    .button-large,input[type=submit] {
        width: auto
    }
}

.button-large:active,.button-large:focus,.button-large:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover {
    background-color: #00336f
}

.button-large[disabled],input[type=submit][disabled] {
    background-color: #ddd
}

.button-secondary {
    color: #395568;
    border: 1px solid #ddd;
    background-color: transparent
}

.button-secondary:active,.button-secondary:focus,.button-secondary:hover {
    color: rgba(21, 31, 38, 1);
    border: 1px solid #ddd;
    background-color: #f7f7f7
}

/***** Tables *****/
.table {
    width: 100%;
    table-layout: fixed
}

@media (min-width:768px) {
    .table {
        table-layout: auto
    }
}

.table th,.table th a {
    color: #273a47;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    border: 0
}

[dir=rtl] .table th,[dir=rtl] .table th a {
    text-align: right;
    border: 0
}

.table tr {
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 20px 0
}

@media (min-width:768px) {
    .table tr {
        display: table-row
    }
}

.table td {
    display: block;
    border: 0
}

@media (min-width:768px) {
    .table td {
        display: table-cell
    }
}

@media (min-width:1024px) {
    .table td,.table th {
        padding: 20px 30px
    }
}

@media (min-width:768px) {
    .table td,.table th {
        padding: 10px 20px;
        height: 60px
    }
}

/***** Forms *****/
.form {
    max-width: 650px
}

.form-field~.form-field {
    margin-top: 25px
}

.form-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px
}

.form-field input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%
}

.form-field input:focus,.form-field input[type=text]:focus {
    border: 1px solid rgba(0, 97, 213, 1)
}

.form-field input[type=text] {
    border: 1px solid #ddd;
    border-radius: 4px
}

.form-field input[type=checkbox] {
    width: auto
}

.form-field .nesty-input {
    border-radius: 4px;
    height: 40px;
    line-height: 40px;
    outline: 0;
    vertical-align: middle
}

.nesty-panel {
    height: auto;
    max-height: 300px
}

.nesty-panel li {
    min-height: 36px;
    padding: .65rem .8rem!important;
    font-size: 14px
}

.form-field .hc-multiselect-toggle:focus,.form-field .nesty-input:focus {
    border: 1px solid rgba(0, 97, 213, 1);
    text-decoration: none
}

.form-field .hc-multiselect-toggle:focus {
    outline: 0
}

.form-field textarea {
    vertical-align: middle
}

.form-field input[type=checkbox]+label {
    margin: 0 0 0 10px
}

.form-field.required>label::after {
    content: "*";
    color: red;
    margin-left: 2px
}

.form-field .optional {
    margin-left: 4px
}

.form footer a,.form-field .optional,.form-field p {
    color: #395568
}

.form-field p {
    font-size: 12px;
    margin: 5px 0
}

[data-loading=true] input,[data-loading=true] textarea {
    background: url(//theme.zdassets.com/theme_assets/88181/6aae8ce36967837f706ac36deff4b753e43977a4.gif)99% 50%no-repeat;
    background-size: 16px 16px
}

.form footer {
    margin-top: 40px;
    padding-top: 30px
}

.form footer a {
    cursor: pointer;
    margin-right: 15px
}

.form .suggestion-list {
    font-size: 13px;
    margin-top: 30px
}

.form .suggestion-list label {
    border-bottom: 1px solid #ddd;
    display: block;
    padding-bottom: 5px
}

.form .suggestion-list li {
    padding: 10px 0
}

.form .suggestion-list li:nth-of-type(n+6) {
    display: none
}

.form .suggestion-list li a:visited {
    color: #103c60
}

/***** Header *****/
.header-container {
    width: 100%;
    background-color: #2486fc
}

.header {
    margin: 0 auto;
    position: relative;
    align-items: center;
    display: flex;
    height: 71px;
    justify-content: space-between
}

.header>div:first-child {
    width: 30%
}

.header>div {
    width: 55%
}

.header>div:last-child {
    width: 30%
}

@media (max-width:1099px) {
    .header>div:first-child {
        width: 22%
    }

    .header>div {
        width: 53%
    }

    .header>div:last-child {
        width: 27%
    }
}

.header .center-nav {
    text-align: center
}

.rightheader {
    margin-left: auto
}

.rightheader>span {
    display: inline-block
}

@media (min-width:991px) and (max-width:1100px) {
    .rightheader {
        display: flex
    }
}

@media (min-width:1000px) {
    .header {
        padding: 0
    }
}

@media (max-width:999px) {
    div#user_nav {
        width: 40%
    }
}

@media (max-width:678px) {
    div#user_nav {
        width: 100%
    }

    .header .center_nav {
        display: none
    }
}

.user-nav {
    position: absolute;
    white-space: nowrap
}

@media (max-width:448px) {
    .logo-container .logo {
        display: none
    }
}

.user-nav[aria-expanded=true] {
    box-shadow: 0 0 4px 0 rgba(0,0,0,.15),0 4px 10px 0 rgba(0,0,0,.1);
    border: solid 1px #ddd;
    right: 0;
    left: 0;
    top: 71px;
    z-index: 5
}

.dropdown-mobile>a,.user-nav[aria-expanded=true]>a {
    display: block;
    margin: 20px
}

.dropdown-mobile-container {
    display: flex;
    flex-direction: column;
    margin: 20px
}

.dropdown-mobile,.user-nav[aria-expanded=true] {
    background-color: #fff;
    display: inline-block
}

.logo-container {
    display: inherit;
    align-items: center
}

.logo-container .icon-menu {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    background: 0 0!important;
    border: 0!important
}

@media (min-width:1000px) {
    .logo-container .icon-menu {
        display: none
    }
}

[dir=rtl] .logo-container .icon-menu {
    margin-left: 10px;
    margin-right: 0
}

.nav-wrapper span {
    color: #fff
}

.nav-wrapper a {
    border: 0;
    color: #fff;
    display: none;
    font-size: 14px;
    padding: 10px;
    width: auto
}

@media (min-width:1000px) {
    .nav-wrapper a {
        display: inline-block
    }
}

[dir=rtl] .nav-wrapper a {
    padding: 0 0 0 20px
}

.nav-wrapper a:active,.nav-wrapper a:focus,.nav-wrapper a:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: underline
}

.nav-wrapper a.login {
    display: inline-block;
    width: 120px;
    height: 40px;
    border-radius: 4px;
    background-color: #0061d5;
    padding: 12px 10px;
    font-size: 16px;
    line-height: 16px
}

.nav-wrapper .menu-button {
    background: 0 0;
    border: 0;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    padding: 0;
    width: auto
}

.menu-button {
    outline: 0!important
}

@media (min-width:1000px) {
    .nav-wrapper .menu-button {
        display: none
    }
}

.nav-wrapper .menu-button .icon-menu {
    vertical-align: middle;
    width: 13px;
    height: 13px
}

[dir=rtl] .nav-wrapper .menu-button {
    margin-left: 10px;
    margin-right: 0
}

.nav-wrapper .menu-button:active,.nav-wrapper .menu-button:focus,.nav-wrapper .menu-button:hover {
    background-color: transparent;
    color: #fff
}

.dropdown,.dropdown-res {
    position: relative;
    display: inline-block
}

.dropbtn {
    padding: 20px 10px!important
}

.dropdown-icon {
    background-image: url(//theme.zdassets.com/theme_assets/88181/a9e661b47e83a569cbb84184fa14d6d47e2a2bb3.svg)
}

.center-nav a:hover {
    text-decoration: none;
    //font-weight: 700;
    cursor: pointer
}

.center-nav>* {
    margin: 0 8px
}

@media (max-width:1099px) {
    .center-nav>* {
        margin: 0 2px
    }
}

#box-status-container {
    display: inline-flex;
    flex-direction: row;
    padding: 8px 10px;
    vertical-align: top
}

#user #user-name,.box-status-label,.user-info .dropdown-toggle::after {
    display: none
}

@media (min-width:768px) {
    .box-status-label {
        display: inline-block
    }
}

#box-status-icon {
    height: 8px;
    width: 8px;
    border-radius: 25px;
    background-color: #26c281;
    align-self: center;
    margin-right: 9px
}

#box-status-icon,.user-info {
    display: inline-block
}

@media (min-width:768px) {
    .user-info .dropdown-toggle::after {
        display: inline-block
    }
}

.user-info>[role=button] {
    border: 0;
    color: #fff;
    min-width: 0;
    padding: 0;
    white-space: nowrap
}

.user-info>[role=button]:focus,.user-info>[role=button]:hover {
    color: #fff;
    background-color: transparent
}

.user-info>[role=button]::after {
    color: #fff
}

[dir=rtl] .user-info>[role=button]::after {
    padding-left: 15px;
    padding-right: 0
}

@media (min-width:768px) {
    #user #user-name {
        display: inline-block
    }
}

#user #user-name:hover {
    text-decoration: underline
}

/***** User avatar *****/
.user-avatar {
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle
}

.avatar {
    display: inline-block;
    position: relative
}

.avatar img {
    height: 40px;
    width: 40px
}

.avatar .icon-agent::before {
    background-color: rgba(0, 97, 213, 1);
    border: 2px solid #fff;
    border-radius: 50%;
    bottom: -4px;
    color: #FFFFFF;
    content: "👤";
    font-size: 14px;
    height: 14px;
    line-height: 14px;
    position: absolute;
    right: -2px;
    text-align: center;
    width: 14px
}

/***** Footer *****/
.footer {
    border-top: 1px solid #ddd;
    padding: 30px 0;
    background-color: #152026
}

.footer a {
    color: #72848e
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column
}

@media (min-width:1160px) {
    .footer-inner {
        padding: 0;
        width: 90%
    }
}

.footer-inner>* {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #395568;
    padding: 1em 0
}

.footer-below {
    border-top: 1px solid rgba(114,132,142,.3)
}

.footer-language-selector {
    color: #fff;
    display: inline-block
}

.footer-links>a {
    margin-left: 2em
}

.social-media-buttons a i {
    margin-left: 20px;
    font-size: 2em;
    color: #fff
}

/***** Breadcrumbs *****/
.breadcrumbs {
    margin: 0 0 15px;
    padding: 0
}

@media (min-width:768px) {
    .breadcrumbs {
        margin: 0
    }
}

.breadcrumbs li {
    color: #395568;
    display: inline;
    max-width: 450px;
    overflow: hidden;
    text-overflow: ellipsis
}

.breadcrumbs li+li::before {
    content: ">";
    margin: 0 4px
}

.breadcrumbs li a:visited {
    color: #1F73B7
}

/***** Search field *****/
.search,.search_form.answers {
    position: relative
}

.search input[type=search] {
    box-sizing: border-box;
    color: #999;
    height: 40px;
    padding-left: 40px;
    padding-right: 20px;
    -webkit-appearance: none;
    width: 100%
}

[dir=rtl] .search input[type=search] {
    padding-right: 40px;
    padding-left: 20px
}

.search input[type=search]:focus {
    border: 1px solid rgba(0, 97, 213, 1);
    color: #555
}

.search::before {
    top: 50%;
    transform: translateY(-50%);
    content: "🔍";
    font-size: 18px;
    position: absolute;
    left: 15px
}

[dir=rtl] .search::before {
    right: 15px;
    left: auto
}

.search-full input[type=search] {
    border: 1px solid #fff
}

.hero {
    background-color: #0061d5;
    background-position: center;
    background-size: cover;
    text-align: center;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(180deg,#2486fc 0,#005bc9 100%)0 0 no-repeat padding-box
}

.hero-inner {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    color: #fff
}

.hero-inner>h1 {
    font-size: 3.5em;
    margin-bottom: 10px
}

.page-header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0
}

@media (min-width:768px) {
    .page-header {
        align-items: baseline;
        flex-direction: row;
        margin: 0
    }
}

.page-header .section-subscribe {
    flex-shrink: 0;
    margin-bottom: 10px
}

@media (min-width:768px) {
    .page-header .section-subscribe {
        margin-bottom: 0
    }
}

.page-header h1 {
    flex-grow: 1;
    margin-bottom: 10px;
    font-weight: 700
}

.page-header-description {
    font-style: italic;
    font-weight: 400;
    margin: 0 0 30px;
    word-break: break-word
}

@media (min-width:1024px) {
    .page-header-description {
        flex-basis: 100%
    }
}

.page-header .icon-lock::before {
    content: "🔒";
    font-size: 20px;
    position: relative;
    left: -5px;
    vertical-align: baseline
}

.sub-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    min-height: 50px;
    padding-bottom: 15px
}

@media (min-width:768px) {
    .sub-nav {
        align-items: baseline;
        flex-direction: row;
        margin-bottom: 50px
    }

    .sub-nav input[type=search] {
        min-width: 300px
    }
}

.sub-nav input[type=search]::after {
    font-size: 15px
}

.center-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.blocks-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    padding: 0
}

@media (max-width:1024px) {
    .blocks-list {
        margin: 0-15px
    }
}

@media (max-width:500px) {
    .blocks-list {
        margin: 0-15px
    }
}

.blocks-item {
    box-sizing: border-box;
    color: #151f26;
    display: flex;
    flex: 0 25%;
    margin: 0 0 1px;
    text-align: center
}

@media (max-width:1024px) {
    .blocks-item {
        flex: 0 33%
    }
}

@media (max-width:500px) {
    .blocks-item {
        flex: 0 50%
    }
}

.blocks-item:active *,.blocks-item:focus *,.blocks-item:hover * {
    text-decoration: none
}

.blocks-item-internal {
    background-color: transparent
}

.blocks-item-internal .icon-lock::before {
    content: "🔒";
    font-size: 15px;
    bottom: 5px;
    position: relative
}

.blocks-item-internal a {
    color: rgba(21, 31, 38, 1)
}

.blocks-item-link {
    color: #151f26;
    padding: 20px 30px;
    display: flex;
    flex: 1;
    justify-content: flex-start;
    border-radius: inherit;
    transition: all .2s ease-in-out;
    background-color: #fff
}

.blocks-item .blocks-item-link {
    flex-direction: column;
    justify-content: center;
    align-items: center
}

@media (min-width:768px) {
    .blocks-item .blocks-item-link {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start
    }
}

.blocks-item-link:active,.blocks-item-link:hover {
    text-decoration: none;
    transform: scale(1.1);
    transition: all .2s ease-in-out;
    color: rgba(0, 97, 213, 1)
}

.blocks-item-link:focus {
    outline: 0;
    text-decoration: none
}

.blocks-item-title {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
    background-color: #fff
}

.blocks-item-title:hover {
    color: rgba(0, 97, 213, 1)
}

@media (min-width:768px) {
    .blocks-item-title {
        text-align: left
    }
}

.blocks-item-description {
    font-weight: 400;
    margin: 0
}

.blocks-item-description:not(:empty) {
    margin-top: 10px
}

.product-icon {
    height: 40px;
    min-width: 40px;
    width: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(//theme.zdassets.com/theme_assets/88181/a9e661b47e83a569cbb84184fa14d6d47e2a2bb3.svg)
}

.product-icon:focus,.product-icon:hover {
    filter: invert(28%) sepia(95%) saturate(6288%) hue-rotate(208deg) brightness(93%) contrast(101%)
}

@media (min-width:768px) {
    .product-icon {
        margin-right: 1em
    }
}

.icon-svg-360002795334 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2b4be62151294ebfd72f8c541d87ac1d5e8f6c55.svg)
}

.icon-svg-360002801793 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/f02d857c93992b30c06ae1b860e84e0028a87498.svg)
}

.icon-svg-12570595842195 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/34ace7ea4dca2a49379e3b1e134c1d7d197b42eb.svg)
}

.icon-svg-360003200773:focus,.icon-svg-360003200773:hover {
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%)
}

.icon-svg-box_product_updates {
    background-image: url(//theme.zdassets.com/theme_assets/88181/98feb7a24a2be5d686f5da89ac8dbbea7a045990.svg)
}

.icon-svg-box_certified_professional {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2a1cb11b815dfc16a220709044ab9e0dd12e4b5c.svg)
}

.icon-svg-box_community {
    background-image: url(//theme.zdassets.com/theme_assets/88181/8913792118f4e34452f9c620483e2fe37816cd1f.svg)
}

.icon-svg-dc_box_stories {
    background-image: url(//theme.zdassets.com/theme_assets/88181/592220e8f30ba0fa8f1408ceb73f615a6d4a06d3.svg)
}

.icon-svg-12534464694803 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/5ef5159d601f72088a6558a34189d765e6fc07d7.svg)
}

.icon-svg-call-center,.icon-svg-call-us,.icon-svg-chat,.icon-svg-submit-a-case {
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center
}

.icon-svg-submit-a-case {
    background-image: url(//theme.zdassets.com/theme_assets/88181/d9af6854bd31d9f6d9e7a8c2fa6f46f097cebdeb.svg)
}

.icon-svg-chat {
    background-image: url(//theme.zdassets.com/theme_assets/88181/9924a289ae9f66eede6e4ea0b7d669b2ec693b71.svg)
}

.icon-svg-call-center {
    background-image: url(//theme.zdassets.com/theme_assets/88181/91b98b2883e405ee8b2dfe92074dddf2cfa233f8.png)
}

.icon-svg-call-us {
    background-image: url(//theme.zdassets.com/theme_assets/88181/9cfe2319a5b07168d2acc03ebb464ed0cad64352.svg)
}

.dropdown-icon {
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 5px center;
    padding-left: 30px
}

#user-menu .links-blocks-item .product-icon {
    background-size: 70%;
    background-position: center
}

.links-blocks-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%
}

.links-blocks-item {
    background-color: #c7c7c7;
    margin: 1em;
    width: 20%;
    min-width: 250px;
    transition: all .2s ease-in-out
}

.links-blocks-item:active,.links-blocks-item:hover {
    transform: scale(1.1);
    transition: all .2s ease-in-out;
    box-shadow: 3px 3px 3px #909090
}

.links-blocks-item>* {
    padding: 0
}

.links-blocks-item>:active,.links-blocks-item>:hover {
    transform: none
}

.links-blocks-item .product-icon {
    height: 100px;
    min-width: 100px;
    width: 100px;
    background-color: #fff;
    margin-right: 1em
}

.links-blocks-item:hover .product-icon {
    background-color: #fff
}

.general-item-button-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
}

.general-item-button {
    background-color: #c7c7c7;
    color: #000;
    margin: 1em;
    padding: 1em
}

.general-item-button a {
    color: #000
}

.general-item-button:hover {
    background-color: #0061d5;
    color: #fff;
    cursor: pointer
}

.general-item-button:hover a {
    text-decoration: none;
    color: #fff;
    cursor: pointer
}

.general-item-button.active {
    background-color: #0061d5
}

.general-item-button.active a {
    color: #fff
}

.general-item-article-section-list {
    border: 1px solid #000;
    padding: 2em 4em;
    width: 25%;
    min-width: 400px
}

.section {
    margin-bottom: 40px
}

@media (min-width:768px) {
    .section {
        margin-bottom: 60px
    }
}

.home-section h2 {
    margin-bottom: 10px;
    text-align: center
}

.promoted-articles {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}

@media (min-width:1024px) {
    .promoted-articles {
        flex-direction: row
    }
}

.promoted-articles-item {
    flex: 1 0 auto
}

@media (min-width:1024px) {
    .promoted-articles-item {
        align-self: flex-end;
        flex: 0 0 auto;
        padding-right: 30px;
        width: 33%
    }

    [dir=rtl] .promoted-articles-item {
        padding: 0 0 0 30px
    }
}

.promoted-articles-item:nth-child(3n) {
    padding-right: 0
}

.promoted-articles-item a {
    display: block;
    padding: 15px 0;
    color: #0061d5
}

.article-list-item .icon-lock::before,.promoted-articles-item .icon-lock::before {
    vertical-align: baseline
}

.promoted-articles-item:last-child a {
    border: 0
}

@media (min-width:1024px) {
    .promoted-articles-item:last-child a {
        border-bottom: 1px solid #ddd
    }
}

#home-categories .knowledge-base,.community {
    text-align: center
}

.community-image {
    min-height: 300px;
    background-image: url(//theme.zdassets.com/theme_assets/88181/e58c5e8c3ebf94cbbc4d3669def0adbd7d0ff479.svg);
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%
}

.activity,.community {
    border-top: 1px solid #ddd;
    padding: 30px 0
}

.recent-activity-header {
    margin-bottom: 10px;
    text-align: center
}

.recent-activity-list {
    padding: 0
}

.recent-activity-item {
    border-bottom: 1px solid #ddd;
    overflow: auto;
    padding: 20px 0
}

.recent-activity-item-parent {
    font-size: 16px
}

.recent-activity-item-link,.recent-activity-item-parent {
    margin: 6px 0;
    color: #000;
    display: inline-block;
    width: 100%
}

@media (min-width:768px) {
    .recent-activity-item-link,.recent-activity-item-parent {
        width: 63%;
        margin: 0
    }
}

.recent-activity-item-link {
    font-size: 14px;
    font-weight: 400
}

.recent-activity-item-meta {
    margin: 15px 0 0;
    float: none
}

@media (min-width:768px) {
    .recent-activity-item-meta {
        margin: 0;
        float: right
    }

    [dir=rtl] .recent-activity-item-meta {
        float: left
    }
}

.recent-activity-item-comment,.recent-activity-item-time {
    color: #395568;
    display: inline-block;
    font-size: 13px;
    font-weight: 400
}

.recent-activity-item-comment {
    padding-left: 5px
}

[dir=rtl] .recent-activity-item-comment {
    padding: 0 5px 0 0
}

.recent-activity-item-comment::before {
    display: inline-block
}

.recent-activity-item-comment span::before {
    color: rgba(0, 97, 213, 1);
    content: "💬";
    display: inline-block;
    font-size: 15px;
    padding-right: 3px
}

[dir=rtl] .recent-activity-item-comment span::before {
    padding-left: 3px
}

.recent-activity-controls {
    padding-top: 15px
}

#vue-category-page,.category-container {
    display: flex;
    justify-content: center
}

.category-content {
    flex: 1
}

@media (min-width:1024px) {
    .category-content {
        flex: 0 0 80%
    }
}

.category-content>.page-header {
    flex-direction: column;
    align-content: center;
    align-items: center
}

.category-content .links-blocks-item {
    width: 40%
}

.section-tree {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px
}

.box-note-div img {
    float: left;
    width: 16%;
    margin-top: -58px;
    margin-right: -172px
}

@media (min-width:768px) {
    .section-tree {
        flex-direction: row
    }
}

.section-tree .section {
    flex: initial
}

@media (min-width:768px) {
    .section-tree .section {
        flex: 0 0 45%
    }
}

.section-tree-title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px
}

.section-tree-title a,.share a:hover::before {
    color: rgba(0, 97, 213, 1)
}

.section-tree .see-all-articles {
    display: block;
    padding: 15px 0
}

.article-list-item {
    border-bottom: 1px solid #d8d8d8;
    font-size: 16px;
    padding: 15px 0
}

.article-list-item a,.collapsible-nav-list li.current a,.collapsible-nav-list li[aria-selected=true] a {
    color: rgba(21, 31, 38, 1)
}

.icon-star::before {
    color: rgba(0, 97, 213, 1);
    font-size: 18px
}

#vue-category-page {
    padding-top: 20px;
    text-align: center
}

.section-container {
    display: flex;
    justify-content: flex-end
}

.section-content {
    flex: 1
}

.section-subscribe .dropdown-toggle::after {
    display: none
}

.section-list {
    margin: 40px 0
}

.section-list--collapsed .section-list-item:nth-child(n+6) {
    display: none
}

.section-list-item {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    padding: 15px 0
}

.section-list-item:first-child {
    border-top: 1px solid #ddd
}

.section-list-item a {
    align-items: center;
    color: rgba(21, 31, 38, 1);
    display: flex;
    justify-content: space-between
}

.see-all-sections-trigger {
    cursor: pointer;
    display: block;
    padding: 15px;
    text-align: center
}

.see-all-sections-trigger[aria-hidden=true] {
    display: none
}

.section-sections {
    display: flex;
    flex-wrap: wrap
}

.section-item {
    width: 45%;
    margin: 1em 2em 1em 0
}

@media (max-width:768px) {
    .section-item {
        width: 100%
    }
}

.article {
    flex: 1 0 auto
}

@media (min-width:1024px) {
    .article {
        flex: 1 0;
        padding: 0 30px 0 0
    }
}

.article-container {
    display: flex;
    flex-direction: column
}

@media (min-width:1024px) {
    .article-container {
        flex-direction: row
    }
}

.article-header {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between
}

@media (min-width:768px) {
    .article-header {
        flex-direction: row;
        margin-top: 0
    }
}

.article-avatar,[dir=rtl] .article-return-to-top .icon-arrow-up::before {
    margin-right: 10px
}

.article-author {
    margin-bottom: 10px
}

@media (min-width:768px) {
    .article-title {
        flex-basis: 100%
    }
}

.article-title .icon-lock::before {
    content: "🔒";
    font-size: 20px;
    position: relative;
    left: -5px;
    vertical-align: baseline
}

.article-title,.search-results-list>li h2 {
    margin-bottom: 0
}

.article [role=button] {
    flex-shrink: 0;
    width: 100%
}

@media (min-width:768px) {
    .article [role=button] {
        width: auto
    }
}

.article-info {
    max-width: 100%
}

.article-meta {
    display: inline-block;
    vertical-align: middle
}

.article-body img,.comment-body img,.post-body img {
    height: auto;
    max-width: 100%
}

.article-body ol,.article-body ul {
    padding-left: 20px;
    list-style-position: outside;
    margin: 20px 0 20px 20px
}

[dir=rtl] .article-body ol,[dir=rtl] .article-body ul,[dir=rtl] .comment-body ol,[dir=rtl] .comment-body ul,[dir=rtl] .post-body ol,[dir=rtl] .post-body ul {
    padding-right: 20px;
    padding-left: 0;
    margin-left: 0;
    margin-right: 20px
}

.article-body li>ol,.article-body li>ul,.article-body ol>ol,.article-body ol>ul,.article-body ul>ol,.article-body ul>ul {
    margin: 0
}

.article-body ul {
    list-style-type: disc
}

.article-body ul ul {
    list-style-type: circle
}

.article-body ul ul ul {
    list-style-type: square
}

.article-body ol li,.article-body ul li,.comment-ccs+textarea {
    margin-top: 10px
}

.article-body code,.article-body pre,.comment-body code,.post-body code {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px
}

.article-body code,.comment-body code,.post-body code {
    padding: 0 5px;
    margin: 0 2px
}

.article-body pre {
    padding: 10px 15px;
    overflow: auto
}

.article-body blockquote,.comment-body blockquote,.post-body blockquote {
    border-left: 1px solid #ddd;
    color: #395568;
    font-style: italic;
    padding: 0 15px
}

.article-body table,td,th {
    padding: 10px;
    border: 1px solid #ccc;
    border-collapse: collapse
}

.article-body>p:last-child,.attachments .attachment-item:last-child {
    margin-bottom: 0
}

.article-content {
    line-height: 1.6;
    word-wrap: break-word
}

.article-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px
}

.article-comment-count {
    color: #395568;
    font-weight: 400
}

.article-comment-count:hover {
    text-decoration: none
}

.article-comment-count-icon {
    vertical-align: middle;
    color: rgba(0, 97, 213, 1);
    width: 18px;
    height: 18px
}

.article-sidebar {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    flex: 1 0 auto;
    margin-bottom: 20px;
    padding: .5em 1em;
    background-color: #e9eef3
}

@media (min-width:1024px) {
    .article-sidebar {
        border: 0;
        flex: 0 0 20%;
        height: auto
    }
}

.article-relatives {
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    padding: 20px 0
}

@media (min-width:768px) {
    .article-relatives {
        flex-direction: row
    }
}

.article-relatives>* {
    flex: 1 0 50%;
    min-width: 50%;
    overflow-wrap: break-word;
    margin-right: 0
}

.article-relatives>:last-child {
    padding: 0
}

@media (min-width:768px) {
    .article-relatives>* {
        padding-right: 20px
    }
}

.article-votes {
    border-top: 1px solid #ddd;
    padding: 30px 0;
    text-align: center
}

.article-vote {
    background: 0 0;
    border: 1px solid rgba(0, 97, 213, 1);
    color: rgba(0, 97, 213, 1);
    margin: 10px 5px;
    min-width: 90px;
    width: auto
}

.article-vote::before {
    font-size: 8px;
    margin-right: 10px
}

[dir=rtl] .article-vote::before {
    margin-right: 0;
    margin-left: 10px
}

.article-vote::after {
    content: attr(title)
}

.article-vote:active,.article-vote:focus {
    background-color: transparent;
    color: rgba(0, 97, 213, 1)
}

.article-vote:hover {
    background-color: rgba(0, 97, 213, 1)
}

.article-vote:hover::after,.article-vote:hover::before,.article-vote[aria-selected=true]::after,.article-vote[aria-selected=true]::before {
    color: #FFFFFF
}

.article-vote-up::before {
    content: "✓"
}

.article-vote-down::before {
    content: "✕"
}

.article-more-questions {
    margin: 10px 0 20px;
    text-align: center
}

.article-return-to-top {
    border-top: 1px solid #ddd
}

@media (min-width:1024px) {
    .article-return-to-top {
        display: none
    }
}

.article-return-to-top a {
    color: rgba(21, 31, 38, 1);
    display: block;
    padding: 20px 0
}

.article-return-to-top a:focus,.article-return-to-top a:hover {
    text-decoration: none
}

.article-return-to-top .icon-arrow-up::before {
    font-size: 16px;
    margin-left: 5px
}

.article-unsubscribe {
    background-color: rgba(0, 97, 213, 1);
    color: #FFFFFF;
    text-decoration: none
}

.article-unsubscribe:hover,.community-follow [role=button][aria-selected=true]:hover {
    background-color: #00336f;
    border-color: #00336f
}

.sidenav-title {
    font-size: 15px;
    position: relative;
    font-weight: 600
}

.sidenav-item {
    border-radius: 4px;
    color: rgba(21, 31, 38, 1);
    display: block;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #e6e6e6
}

.sidenav-item.current-article,.sidenav-item:hover {
    color: #000;
    text-decoration: none;
    font-weight: 700
}

.recent-articles li,.related-articles li {
    margin-bottom: 15px
}

.attachments .attachment-item {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px
}

.attachments .attachment-item::before {
    color: rgba(21, 31, 38, 1);
    content: "📎";
    font-size: 15px;
    left: 0;
    position: absolute;
    top: 5px
}

[dir=rtl] .attachments .attachment-item {
    padding-left: 0;
    padding-right: 20px
}

[dir=rtl] .attachments .attachment-item::before {
    left: auto;
    right: 0
}

.share a::before,.upload-dropzone span {
    color: #395568
}

.share {
    padding-top: 20px;
    white-space: nowrap
}

.share a,.share li {
    display: inline-block
}

.share a {
    border-radius: 50%;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    width: 25px
}

.share a::before {
    display: block;
    font-size: 23px;
    text-align: center;
    width: 100%
}

.share a:hover {
    text-decoration: none
}

.share-twitter::before {
    content: ""
}

.share-facebook::before {
    content: ""
}

.share-linkedin::before {
    content: ""
}

.comment {
    border-bottom: 1px solid #ddd;
    padding: 20px 0
}

.comment-heading,.recent-articles-title,.related-articles-title {
    margin-bottom: 5px;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600
}

.comment-overview {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 20px 0
}

.comment-overview p {
    margin-top: 0
}

.comment-callout {
    color: #395568;
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 0
}

.comment-attachments a,.comment-callout a,.vote-down:hover::before,.vote-up:hover::before {
    color: rgba(0, 97, 213, 1)
}

.comment-sorter {
    display: inline-block;
    float: right
}

.comment-sorter .dropdown-toggle {
    color: #395568;
    font-weight: 400;
    font-size: 13px
}

[dir=rtl] .comment-sorter {
    float: left
}

.comment-wrapper {
    display: flex;
    position: relative
}

.comment-wrapper.comment-official {
    border: 1px solid rgba(0, 97, 213, 1);
    padding: 40px 20px 20px
}

@media (min-width:768px) {
    .comment-wrapper.comment-official {
        padding-top: 20px
    }
}

.comment-info {
    min-width: 0;
    padding-right: 20px;
    width: 100%
}

[dir=rtl] .comment-info {
    padding-right: 0;
    padding-left: 20px
}

.comment-author {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px
}

@media (min-width:768px) {
    .comment-author {
        justify-content: space-between
    }
}

.comment-avatar {
    margin-right: 10px
}

[dir=rtl] .comment-avatar {
    margin-left: 10px;
    margin-right: 0
}

.comment-meta {
    flex: 1 0 auto
}

.comment-labels {
    flex-basis: 100%
}

@media (min-width:768px) {
    .comment-labels {
        flex-basis: auto
    }
}

.comment .status-label:not(.status-label-official) {
    margin-top: 10px
}

@media (min-width:768px) {
    .comment .status-label:not(.status-label-official) {
        margin-top: 0
    }
}

.comment-form {
    display: flex;
    padding-top: 30px;
    word-wrap: break-word
}

.comment-container {
    width: 100%
}

.comment-form-controls {
    display: none;
    margin-top: 10px;
    text-align: left
}

@media (min-width:768px) {
    [dir=ltr] .comment-form-controls {
        text-align: right
    }
}

.comment-form-controls input[type=submit] {
    margin-top: 15px
}

@media (min-width:1024px) {
    .comment-form-controls input[type=submit] {
        margin-left: 15px
    }

    [dir=rtl] .comment-form-controls input[type=submit] {
        margin-left: 0;
        margin-right: 15px
    }
}

.comment-form-controls input[type=checkbox] {
    margin-right: 5px
}

.comment-form-controls input[type=checkbox] [dir=rtl] {
    margin-left: 5px
}

.comment-ccs {
    display: none
}

.comment-attachments {
    margin-top: 10px
}

.comment-body {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
    font-family: "Lato",sans-serif;
    line-height: 1.6;
    overflow-x: auto
}

.comment-body ol,.comment-body ul {
    padding-left: 20px;
    list-style-position: outside;
    margin: 20px 0 20px 20px
}

.comment-body li>ol,.comment-body li>ul,.comment-body ol>ol,.comment-body ol>ul,.comment-body ul>ol,.comment-body ul>ul,.post-body li>ol,.post-body li>ul,.post-body ol>ol,.post-body ol>ul,.post-body ul>ol,.post-body ul>ul {
    margin: 0
}

.comment-body ul {
    list-style-type: disc
}

.comment-body a:visited {
    color: #103c60
}

.comment-body pre,.post-body pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre
}

.comment-mark-as-solved,.vote {
    display: inline-block
}

.vote {
    text-align: center;
    width: 35px
}

.vote a {
    outline: 0
}

.vote a:active,.vote a:focus,.vote a:hover {
    text-decoration: none
}

.vote-sum {
    color: #395568;
    display: block;
    margin: 3px 0
}

[dir=rtl] .vote-sum {
    direction: ltr;
    unicode-bidi: bidi-override
}

.vote-down::before,.vote-up::before {
    color: #395568;
    font-size: 24px
}

.vote-up::before {
    content: "⬆"
}

.vote-down::before {
    content: "⬇"
}

.vote-voted::before {
    color: rgba(0, 97, 213, 1)
}

.vote-voted:hover::before {
    color: #00336f
}

.actions {
    text-align: center;
    flex-shrink: 0
}

.actions .dropdown-toggle {
    font-size: 0;
    margin: 15px 0
}

.actions .dropdown-toggle:active::before,.actions .dropdown-toggle:focus::before,.actions .dropdown-toggle:hover::before {
    background-color: #f7f7f7
}

.actions .dropdown-toggle::before {
    background-color: transparent;
    border-radius: 50%;
    color: #395568;
    content: "⚙";
    display: block;
    font-size: 13px;
    margin: auto;
    padding: 5px
}

.community-hero {
    background-image: url(//theme.zdassets.com/theme_assets/88181/ea0fc49e94c74884940bd530924916ea87035a5f.svg);
    margin-bottom: 20px
}

.community-footer {
    text-align: center
}

.community-footer-title {
    font-size: 16px
}

.community-activity,.community-featured-posts {
    padding-top: 40px;
    width: 100%
}

.community-header {
    margin-bottom: 30px
}

.community-header h1 {
    margin-bottom: 0;
    font-size: 16px
}

.post-to-community {
    margin-top: 10px
}

@media (min-width:768px) {
    .post-to-community {
        margin: 0
    }
}

.topics {
    max-width: none;
    width: 100%
}

.topics-item .meta-group {
    justify-content: center;
    margin-top: 20px
}

.topic-header {
    border-bottom: 1px solid #ddd;
    font-size: 13px
}

@media (min-width:768px) {
    .topic-header {
        padding-bottom: 10px
    }
}

.topic-header .dropdown {
    display: block;
    border-top: 1px solid #ddd;
    padding: 10px 0
}

@media (min-width:768px) {
    .topic-header .dropdown {
        border-top: 0;
        display: inline-block;
        margin-right: 20px;
        padding: 0
    }
}

.no-posts-with-filter {
    margin-top: 20px;
    margin-bottom: 20px
}

.community-follow {
    margin-bottom: 10px;
    width: 100%
}

@media (min-width:768px) {
    .community-follow {
        margin-bottom: 0;
        width: auto
    }
}

.community-follow .dropdown {
    width: 100%
}

.community-follow [role=button] {
    line-height: 30px;
    padding: 0 10px 0 15px;
    position: relative;
    width: 100%
}

@media (min-width:768px) {
    .community-follow [role=button] {
        width: auto
    }
}

.community-follow [role=button]:hover {
    background-color: rgba(0, 97, 213, 1)
}

.community-follow [role=button]:focus::after,.community-follow [role=button]:hover::after {
    border-color: #FFFFFF;
    color: #FFFFFF
}

.community-follow [role=button][aria-selected=true] {
    background-color: rgba(0, 97, 213, 1);
    color: #FFFFFF
}

.community-follow [role=button][aria-selected=true]::after {
    border-left: 1px solid #FFFFFF;
    color: #FFFFFF
}

.community-follow [role=button]::after {
    border-left: 1px solid rgba(0, 97, 213, 1);
    content: attr(data-follower-count);
    color: rgba(0, 97, 213, 1);
    display: inline-block;
    font-family: "Lato",sans-serif;
    margin-left: 15px;
    padding-left: 10px;
    position: absolute;
    right: 10px
}

@media (min-width:768px) {
    .community-follow [role=button]::after {
        position: static
    }
}

[dir=rtl] .community-follow [role=button]::after {
    border-left: 0;
    border-right: 1px solid rgba(0, 97, 213, 1);
    margin: 0 10px 0 0;
    padding: 0 10px 0 0
}

.contact-tile p,.striped-list {
    padding: 0
}

.striped-list-item {
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 0
}

@media (min-width:768px) {
    .striped-list-item {
        align-items: center;
        flex-direction: row
    }
}

.striped-list-info {
    flex: 2
}

.striped-list-title {
    color: #1F73B7;
    margin-bottom: 10px;
    margin-right: 5px
}

.striped-list-title:active,.striped-list-title:focus,.striped-list-title:hover {
    text-decoration: underline
}

.post-body a:visited,.striped-list-title:visited {
    color: #103c60
}

.striped-list .meta-group {
    margin: 5px 0
}

.striped-list-count {
    color: #395568;
    font-weight: 400;
    font-size: 13px;
    justify-content: flex-start;
    text-transform: capitalize
}

@media (min-width:768px) {
    .striped-list-count {
        display: flex;
        flex: 1;
        justify-content: space-around
    }
}

.striped-list-count-item::after {
    content: "·";
    display: inline-block;
    padding: 0 5px
}

@media (min-width:768px) {
    .striped-list-count-item::after {
        display: none
    }
}

.striped-list-count-item:last-child::after {
    display: none
}

.striped-list-number {
    font-weight: 400;
    text-align: center
}

@media (min-width:768px) {
    .striped-list-number {
        color: rgba(21, 31, 38, 1);
        display: block;
        font-weight: 400
    }
}

.status-label {
    background-color: #038153;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-right: 2px;
    padding: 3px 10px;
    vertical-align: middle;
    white-space: nowrap;
    display: inline-block
}

.status-label:active,.status-label:focus,.status-label:hover {
    text-decoration: none
}

.status-label-featured,.status-label-official,.status-label-pinned {
    background-color: rgba(0, 97, 213, 1)
}

.status-label-official {
    border-radius: 0;
    margin-right: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%
}

@media (min-width:768px) {
    .status-label-official {
        border-radius: 0 0 4px 4px;
        right: 30px;
        width: auto
    }
}

[dir=rtl] .status-label-official {
    left: 30px;
    right: auto
}

.status-label-closed,.status-label-not-planned {
    color: #395568
}

.status-label-closed {
    background-color: #e9ebed
}

.status-label-pending {
    background-color: #1f73b7;
    text-align: center
}

.status-label-open {
    background-color: #c72a1c
}

.status-label-solved {
    background-color: #68737d
}

.status-label-new {
    background-color: #ffb648;
    color: #703b15
}

.status-label-hold {
    background-color: #000
}

.status-label-answered,.status-label-closed,.status-label-hold,.status-label-new,.status-label-open,.status-label-solved {
    text-transform: lowercase
}

.post {
    flex: 1;
    margin-bottom: 10px
}

@media (min-width:1024px) {
    .post {
        flex: 1 0 70%;
        max-width: 70%
    }
}

.post-container {
    display: flex;
    flex-direction: column
}

@media (min-width:1024px) {
    .post-container {
        flex-direction: row
    }
}

.post-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 10px
}

@media (min-width:768px) {
    .post-header {
        align-items: baseline;
        flex-direction: row
    }
}

.post-header .status-label {
    vertical-align: super
}

.post-title {
    margin-bottom: 20px;
    width: 100%
}

@media (min-width:768px) {
    .post-title {
        margin-bottom: 0;
        padding-right: 10px
    }
}

.post-title h1 {
    display: inline;
    vertical-align: middle
}

@media (min-width:768px) {
    .post-title h1 {
        margin-right: 5px
    }
}

.post-author {
    align-items: flex-start;
    display: flex;
    justify-content: space-between
}

.post-avatar {
    margin-bottom: 30px
}

.post-content {
    font-family: "Lato",sans-serif;
    line-height: 1.6;
    word-break: break-word
}

.post-info-container {
    display: flex;
    margin-bottom: 40px
}

.post-info {
    min-width: 0;
    padding-right: 20px;
    width: 100%
}

[dir=rtl] .post-info {
    padding-right: 0;
    padding-left: 20px
}

.post-meta {
    display: inline-block;
    flex: 1;
    margin-left: 10px;
    vertical-align: middle
}

[dir=rtl] .post-meta {
    margin-left: 0;
    margin-right: 10px
}

.post-body ol,.post-body ul {
    padding-left: 20px;
    list-style-position: outside;
    margin: 20px 0 20px 20px
}

.post-body ul {
    list-style-type: disc
}

.post-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px
}

.post-comment-count {
    color: #395568;
    font-weight: 400
}

.post-comment-count:hover {
    text-decoration: none
}

.post-comment-count .icon-comments {
    color: rgba(0, 97, 213, 1);
    content: "💬";
    display: inline-block;
    font-size: 18px;
    padding: 5px
}

.post-sidebar {
    border-top: 1px solid #ddd;
    flex: 1;
    padding: 30px 0;
    text-align: center
}

@media (min-width:1024px) {
    .post-sidebar {
        border: 0;
        flex: 1 0 30%;
        padding: 0 0 0 50px;
        text-align: initial
    }

    [dir=rtl] .post-sidebar {
        padding: 0 50px 0 0
    }
}

.post-sidebar-title {
    font-size: 18px;
    font-weight: 600
}

.post-comments,.recommended-posts-wrapper>div {
    margin-bottom: 20px
}

@media (min-width:1024px) {
    .post-comments {
        margin-bottom: 0
    }
}

.collapsible-nav {
    flex-direction: column;
    font-size: 14px;
    position: relative
}

@media (min-width:768px) {
    .collapsible-nav {
        flex-direction: row
    }
}

.collapsible-nav-border {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd
}

@media (min-width:768px) {
    .collapsible-nav-border {
        border-top: 0
    }
}

.collapsible-nav-toggle {
    top: calc(45px/2);
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    padding: 0;
    border: 0;
    background: 0 0;
    width: 25px;
    height: 25px;
    border-radius: 50%
}

@media (min-width:768px) {
    .collapsible-nav-toggle {
        display: none
    }
}

[dir=rtl] .collapsible-nav-toggle {
    left: 0;
    right: auto
}

.collapsible-nav-toggle::after {
    content: "▾"
}

.collapsible-nav-toggle:focus {
    outline: 0;
    border: 1px solid rgba(0, 97, 213, 1)
}

.collapsible-nav-list {
    display: flex;
    flex-direction: column
}

@media (min-width:768px) {
    .collapsible-nav-list {
        flex-direction: row
    }
}

.collapsible-nav-list li {
    color: rgba(21, 31, 38, 1);
    line-height: 45px;
    order: 1
}

@media (min-width:768px) {
    .collapsible-nav-list li {
        line-height: normal;
        margin-right: 30px
    }

    [dir=rtl] .collapsible-nav-list li {
        margin-left: 30px;
        margin-right: 0
    }

    .collapsible-nav-list li a {
        text-decoration: none;
        padding: 15px 0
    }
}

.collapsible-nav-list li a {
    color: rgba(21, 31, 38, 1);
    display: block
}

@media (min-width:768px) {
    .collapsible-nav-list li:hover {
        border-bottom: 4px solid #ddd
    }

    .collapsible-nav-list li:hover a:not([aria-current=page]) {
        padding: 15px 0 11px;
        text-decoration: none
    }
}

.collapsible-nav-list li:not(.current),.collapsible-nav-list li:not([aria-selected=true]) {
    display: none
}

@media (min-width:768px) {
    .collapsible-nav-list li:not(.current),.collapsible-nav-list li:not([aria-selected=true]) {
        display: block
    }

    .collapsible-nav-list li[aria-selected=true] {
        padding: 15px 0 11px
    }
}

.collapsible-nav-list li.current,.collapsible-nav-list li[aria-selected=true] {
    order: 0;
    position: relative
}

@media (min-width:768px) {
    .collapsible-nav-list li.current,.collapsible-nav-list li[aria-selected=true] {
        border-bottom: 4px solid rgba(0, 97, 213, 1);
        order: 1
    }
}

.collapsible-nav[aria-expanded=true] .collapsible-nav-toggle::after,.collapsible-sidebar[aria-expanded=true] .collapsible-sidebar-toggle::after {
    content: "✕"
}

.collapsible-nav[aria-expanded=true] li:not(.current),.collapsible-nav[aria-expanded=true] li:not([aria-selected=true]) {
    display: block
}

.collapsible-sidebar {
    flex: 1;
    max-height: 45px;
    overflow: hidden;
    padding: 10px 0;
    position: relative
}

@media (min-width:1024px) {
    .collapsible-sidebar {
        max-height: none;
        padding: 0
    }
}

.collapsible-sidebar-title {
    margin-top: 0
}

.collapsible-sidebar-toggle {
    position: absolute;
    top: calc(45px/2);
    transform: translateY(-50%);
    right: 0;
    padding: 0;
    border: 0;
    background: 0 0;
    width: 25px;
    height: 25px;
    border-radius: 50%
}

@media (min-width:1024px) {
    .collapsible-sidebar-toggle {
        display: none
    }
}

[dir=rtl] .collapsible-sidebar-toggle {
    left: 0;
    right: auto
}

.collapsible-sidebar-toggle::after {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    content: "▾"
}

.collapsible-sidebar-toggle:focus {
    outline: 0;
    border: 1px solid rgba(0, 97, 213, 1)
}

.collapsible-sidebar-body,.my-activities-table thead,.requests .requests-table thead {
    display: none
}

@media (min-width:1024px) {
    .collapsible-sidebar-body {
        display: block
    }
}

.collapsible-sidebar[aria-expanded=true] {
    max-height: none
}

.collapsible-sidebar[aria-expanded=true] .collapsible-sidebar-body {
    display: block
}

.my-activities-nav {
    background-color: #f2f2f2;
    margin-bottom: 20px
}

.my-activities-sub-nav {
    margin-bottom: 30px
}

.my-activities-table .striped-list-title {
    display: block;
    margin-bottom: 10px;
    max-width: 350px;
    white-space: normal
}

@media (min-width:1024px) {
    .my-activities-table .striped-list-title {
        margin-bottom: 0;
        max-width: 500px;
        min-width: 350px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }
}

@media (min-width:768px) {
    .my-activities-table thead {
        display: table-header-group
    }
}

.my-activities-table td:first-child,.my-activities-table th:first-child {
    padding-left: 0
}

@media (min-width:1024px) {
    .my-activities-table td:first-child,.my-activities-table th:first-child {
        width: 500px
    }
}

.my-activities-table td:last-child,.my-activities-table th:last-child {
    padding-right: 0
}

.my-activities-table td:not(:first-child) {
    display: none
}

@media (min-width:768px) {
    .my-activities-table td:not(:first-child) {
        display: table-cell
    }
}

.requests-search {
    width: 100%
}

.requests-table-toolbar {
    align-items: flex-end;
    display: flex;
    flex-direction: column
}

@media (min-width:768px) {
    .requests-table-toolbar {
        flex-direction: row
    }
}

.requests-table-toolbar .search {
    flex: 1;
    width: 100%
}

.requests-table-toolbar .request-table-filter {
    width: 100%
}

@media (min-width:768px) {
    .requests-table-toolbar .request-table-filter {
        width: auto
    }
}

.requests-table-toolbar .request-filter {
    display: block
}

@media (min-width:768px) {
    .requests-table-toolbar .request-filter {
        margin: 0 0 0 30px
    }

    [dir=rtl] .requests-table-toolbar .request-filter {
        margin: 0 30px 0 0
    }
}

.requests-table-toolbar .request-filter-label {
    font-size: 13px;
    margin-top: 30px
}

@media (min-width:768px) {
    .requests-table-toolbar .request-filter-label {
        margin-top: 0
    }
}

.requests-table-toolbar select {
    max-height: 40px;
    margin-bottom: 30px;
    width: 100%
}

@media (min-width:768px) {
    .requests-table-toolbar select {
        margin-bottom: 0;
        max-width: 300px;
        width: auto
    }
}

.requests-table-toolbar .organization-subscribe,.requests-table-toolbar .organization-unsubscribe {
    line-height: 40px;
    max-height: 40px;
    padding: 0 20px
}

@media (min-width:768px) {
    .requests-table-toolbar .organization-subscribe,.requests-table-toolbar .organization-unsubscribe {
        margin-left: 10px
    }

    [dir=rtl] .requests-table-toolbar .organization-subscribe,[dir=rtl] .requests-table-toolbar .organization-unsubscribe {
        margin: 0 10px 0 0
    }
}

.requests-table-toolbar .organization-unsubscribe {
    background-color: rgba(0, 97, 213, 1);
    color: #FFFFFF
}

.requests-table-toolbar+.requests-search-info {
    margin-top: 15px
}

.requests-table-toolbar+.requests-search-info.meta-data::after {
    content: "";
    margin: 0
}

.requests-table-toolbar+.requests-search-info+.requests {
    margin-top: 20px
}

.requests-table-toolbar+.requests {
    margin-top: 40px
}

.requests .requests-table-meta {
    display: block
}

@media (min-width:768px) {
    .requests .requests-table-meta {
        display: none
    }

    .requests .requests-table thead {
        display: table-header-group
    }
}

.requests .requests-table-info {
    display: block
}

@media (min-width:768px) {
    .requests .requests-table-info {
        display: table-cell;
        vertical-align: middle;
        width: auto
    }
}

.requests .requests-table .requests-link {
    position: relative
}

.requests .requests-table .requests-sort-symbol {
    position: absolute;
    left: calc(100% + 3px);
    bottom: 0;
    font-size: 10px
}

.subscriptions-unsubscribe a {
    background: rgba(0, 97, 213, 1);
    border-radius: 4px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px;
    line-height: 2.34;
    padding: 0 20px;
    text-align: center;
    width: 100%
}

@media (min-width:768px) {
    .subscriptions-unsubscribe a {
        width: auto
    }
}

.subscriptions-unsubscribe a:hover {
    background-color: #00336f;
    text-decoration: none
}

.subscriptions-table td:last-child {
    display: block
}

@media (min-width:768px) {
    .subscriptions-table td:last-child {
        display: table-cell
    }
}

.subscriptions-table td:first-child {
    display: flex;
    align-items: center
}

.subscriptions-table .user-avatar {
    margin-right: 10px
}

.subscriptions .striped-list-title {
    display: inline-block;
    vertical-align: middle
}

.contributions-table td:last-child {
    color: #395568;
    font-size: 13px;
    font-weight: 400
}

@media (min-width:768px) {
    .contributions-table td:last-child {
        color: inherit;
        font-size: inherit;
        font-weight: inherit
    }
}

.no-activities {
    color: #395568
}

.request-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between
}

@media (min-width:1024px) {
    .request-container {
        align-items: flex-start;
        flex-direction: row
    }
}

.request-container .comment-container {
    min-width: 0
}

.request-breadcrumbs {
    margin-bottom: 40px
}

@media (min-width:1024px) {
    .request-breadcrumbs {
        margin-bottom: 60px
    }
}

.request-main {
    flex: 1 0 auto;
    order: 1
}

.request-main .comment-fields,.request-main .request-submit-comment {
    display: none
}

.request-main .comment-ccs,.request-main .comment-fields.shown,.request-main .comment-form-controls {
    display: block
}

.request-main .request-submit-comment.shown {
    display: inline
}

@media (min-width:1024px) {
    .request-main {
        flex: 0 0 66%;
        order: 0;
        min-width: 0
    }
}

.request-main .comment-show-container {
    border-radius: 2px;
    border: 1px solid #ddd;
    color: #395568;
    text-align: inherit;
    padding: 8px 25px;
    width: 100%
}

.request-main .comment-show-container.hidden,.request-main input#mark_as_solved {
    display: none
}

.request-main .form-field.comment-ccs>input[type=text],.request-main .form-field.comment-ccs>ul {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0
}

.request-main .form-field.comment-ccs>ul[data-hc-focus=true] {
    border: 1px solid rgba(0, 97, 213, 1)
}

.request-main .comment-ccs+textarea {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0
}

.request-main .comment-ccs+textarea:focus {
    border-top: 1px solid rgba(0, 97, 213, 1)
}

.request-title {
    width: 100%
}

@media (min-width:1024px) {
    .request-title {
        border-bottom: 1px solid #ddd;
        margin-bottom: 0;
        max-width: 66%;
        padding-bottom: 20px
    }
}

.request-sidebar {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    flex: 1 0 auto;
    order: 0
}

@media (min-width:1024px) {
    .request-sidebar {
        background-color: #f7f7f7;
        border: 0;
        font-size: 13px;
        flex: 0 0 auto;
        padding: 0 20px;
        width: 30%
    }
}

.request-sidebar h2 {
    font-size: 15px;
    font-weight: 600;
    position: relative
}

@media (min-width:1024px) {
    .request-sidebar h2 {
        display: none
    }
}

.request-details {
    border-bottom: 1px solid #ddd;
    font-size: 0;
    margin: 0;
    padding-bottom: 20px
}

.request-details:last-child {
    border: 0
}

.request-details dd,.request-details dt {
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
    margin: 20px 0 0
}

.request-details dd {
    padding: 0 10px;
    width: 60%
}

.request-details dd::after {
    content: "\a";
    white-space: pre
}

.request-details dt {
    color: #395568;
    font-weight: 400;
    width: 40%
}

.request-details .request-collaborators {
    display: inline-block
}

.request-attachments dd,.request-attachments dt {
    width: 100%
}

.request-attachments dd {
    margin: 10px 0 0
}

.request-form textarea {
    min-height: 120px
}

.request-follow-up {
    padding-top: 20px
}

.contact-tile-container {
    display: flex;
    justify-content: center;
    flex-direction: column
}

.contact-tile:hover {
    cursor: pointer;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.3);
    transition: .1s box-shadow ease-in-out
}

@media (min-width:789px) {
    .contact-tile-container {
        flex-direction: row
    }
}

#vue-form,.contact-tile {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-tile {
    align-items: center;
    position: relative;
    display: inline-block;
    width: 315px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    margin: 1em 1em 15px;
    padding: 15px 0 5px 55px;
    transition: .3s box-shadow ease-in-out
}

.contact-tile a {
    text-decoration: none
}

.contact-tile a:hover {
    text-decoration: underline
}

.contact-tile-icon {
    background-repeat: no-repeat;
    background-position: center center;
    height: 50px;
    width: 50px;
    background-size: contain;
    position: absolute;
    left: 20px;
    top: 20px
}

#vue-form,.pagination {
    text-align: center
}

.pagination {
    margin: 20px 0
}

.Promo-content-wrapper-owl .owl-carousel .owl-item img,.pagination * {
    display: inline-block
}

.pagination li {
    border-radius: 50%;
    height: 40px;
    float: left;
    margin-left: 5px;
    width: 40px
}

@media (min-width:768px) {
    .pagination li {
        height: 30px;
        width: 30px
    }
}

[dir=rtl] .pagination li {
    float: right
}

.pagination li:hover:not(.pagination-current) {
    background-color: #f3f3f3
}

.pagination li:hover:not(.pagination-current) a,.pagination li:hover:not(.pagination-current) span {
    color: rgba(21, 31, 38, 1);
    text-decoration: none
}

.pagination a,.pagination span {
    font-size: 15px;
    color: #395568;
    padding: 10px 12px
}

@media (min-width:768px) {
    .pagination a,.pagination span {
        font-size: 13px;
        padding: 5px 12px
    }
}

.pagination-current {
    background-color: rgba(0, 97, 213, 1)
}

.pagination-current a,.pagination-current span {
    color: #FFFFFF
}

.pagination-first {
    border-radius: 3px 0 0 3px
}

.pagination-last,[dir=rtl] .pagination-first {
    border-radius: 0 3px 3px 0
}

[dir=rtl] .pagination-last {
    border-radius: 3px 0 0 3px
}

.meta-group {
    display: block
}

.meta-group * {
    display: inline
}

.meta-data {
    color: #395568;
    font-size: 13px;
    font-weight: 400
}

.meta-data:not(:last-child)::after {
    content: "·";
    margin: 0 5px
}

.actions .dropdown-toggle::before,.article-vote::before,.attachments .attachment-item::before,.collapsible-nav-toggle::after,.collapsible-sidebar-toggle::after,.icon,.recent-activity-item-comment span::before,.search::before,.share a::before,.vote-down::before,.vote-up::before,[class*=" icon-"]::before,[class^=icon-]::before {
    font-family: "copenhagen-icons";
    font-style: normal;
    font-weight: 400;
    speak: none;
    line-height: 1em;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased
}

.icon-lock::before {
    content: "🔒"
}

.icon-star::before {
    content: "★"
}

.icon-linkedin::before {
    content: ""
}

.icon-twitter::before {
    content: ""
}

.icon-facebook::before {
    content: ""
}

.icon-agent::before {
    content: "👤"
}

.icon-close::before {
    content: "✕"
}

.icon-arrow-up::before {
    content: "⬆"
}

.icon-arrow-down::before {
    content: "⬇"
}

.icon-attachments::before {
    content: "📎"
}

.icon-comments::before {
    content: "💬"
}

.icon-search::before {
    content: "🔍"
}

.icon-vote::before {
    content: "👍"
}

.icon-handle::before {
    content: "▾"
}

.icon-check::before {
    content: "✓"
}

.icon-gear::before {
    content: "⚙"
}

.icon-article::before {
    content: "📄"
}

.icon-post::before {
    content: "📔"
}

.icon-notification-alert::before {
    content: "⚠"
}

.icon-notification-error::before {
    content: "×"
}

.icon-notification-info::before {
    content: "ℹ"
}

.icon-notification-success::before {
    content: "✔"
}

.profile-header {
    padding: 30px 0;
    background-color: #f7f7f7
}

.profile-header .container {
    display: flex;
    flex-wrap: wrap
}

@media (min-width:768px) {
    .profile-header .container {
        flex-wrap: nowrap
    }
}

.profile-header .profile-info {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    min-width: 0
}

.profile-avatar {
    position: relative;
    line-height: 0;
    align-self: center;
    margin-right: 10px
}

[dir=rtl] .profile-avatar {
    margin-left: 10px;
    margin-right: 0
}

.profile-avatar .user-avatar {
    width: 65px;
    height: 65px
}

.profile-avatar .icon-agent::before {
    bottom: 0;
    right: 0
}

.profile-header .basic-info {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0
}

.profile-header .basic-info .name {
    margin: 0
}

.profile-header .options {
    display: flex;
    flex-basis: 100%;
    margin-top: 12px;
    align-items: flex-start;
    flex-wrap: wrap
}

@media (min-width:768px) {
    .profile-header .options {
        flex-wrap: nowrap;
        flex-basis: auto;
        margin-top: 0;
        margin-left: 10px
    }

    [dir=rtl] .profile-header .options {
        margin-left: 0;
        margin-right: 10px
    }

    .profile-header .options>:not(:last-child) {
        margin-bottom: 0;
        margin-right: 10px
    }

    [dir=rtl] .profile-header .options>:not(:last-child) {
        margin-left: 10px;
        margin-right: 0
    }
}

.profile-header .options [data-action=edit-profile] {
    background-color: rgba(0, 97, 213, 1);
    border: 0;
    color: #FFFFFF;
    line-height: normal;
    padding: 8px 20px;
    outline-color: rgba(0, 97, 213, 1)
}

.profile-header .description {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
    margin: 15px 0;
    flex-basis: 100%
}

.profile-stats {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    flex-basis: 100%
}

.profile-stats .stat {
    display: flex;
    margin-bottom: 10px
}

.profile-stats .stat-label {
    color: #395568;
    font-weight: 400;
    flex: 0 0 100px;
    margin-right: 10px
}

[dir=rtl] .profile-stats .stat-label {
    margin-left: 10px;
    margin-right: 0
}

.profile-stats-activity {
    border-top: solid 1px #ddd;
    margin-top: 15px
}

@media (min-width:768px) {
    .profile-stats-activity {
        border-top: 0;
        flex-direction: row
    }

    .profile-stats-activity .stat {
        flex-direction: column
    }
}

.profile-stats-activity .stat:first-child {
    margin-top: 10px
}

@media (min-width:768px) {
    .profile-stats-activity .stat:first-child {
        margin-top: 0
    }

    .profile-stats-activity .stat:not(:last-child) {
        margin-right: 40px
    }

    [dir=rtl] .profile-stats-activity .stat:not(:last-child) {
        margin-left: 40px;
        margin-right: 0
    }

    .profile-stats-activity .stat-label {
        flex: 0 1 auto
    }
}

.profile-stats-counters {
    border-bottom: solid 1px #ddd
}

@media (min-width:768px) {
    .profile-stats-counters {
        flex: 0 0 200px;
        border-bottom: 0;
        margin-left: 40px
    }

    [dir=rtl] .profile-stats-counters {
        margin-left: 0;
        margin-right: 40px
    }
}

@media (min-width:1024px) {
    .profile-stats-counters {
        flex: 0 0 270px;
        margin-left: 60px
    }

    [dir=rtl] .profile-stats-counters {
        margin-right: 60px;
        margin-left: 0
    }
}

@media (min-width:768px) {
    .profile-stats-counters .stat {
        flex-direction: column
    }
}

@media (min-width:1024px) {
    .profile-stats-counters .stat {
        flex-direction: row
    }
}

@media (min-width:768px) {
    .profile-stats-counters .stat:not(:last-child) {
        margin-bottom: 15px
    }

    .profile-stats-counters .stat-label {
        flex: 0 1 auto
    }
}

@media (min-width:1024px) {
    .profile-stats-counters .stat-label {
        flex: 0 0 100px
    }
}

.profile-private-badge {
    flex-basis: 100%;
    border: solid 1px rgba(0, 97, 213, 1);
    border-radius: 4px;
    color: rgba(0, 97, 213, 1);
    padding: 5px 20px;
    font-size: 12px;
    text-align: center
}

.profile-private-badge::after {
    content: "🔒";
    margin-left: 5px;
    font-family: "copenhagen-icons";
    vertical-align: middle;
    line-height: 15px
}

@media (min-width:768px) {
    .profile-private-badge {
        flex-basis: auto
    }
}

.profile-nav {
    background-color: #f2f2f2;
    margin-bottom: 37px
}

.profile-section {
    width: 100%
}

@media (min-width:1024px) {
    .profile-section {
        width: calc(100% - 330px)
    }
}

.profile-section-header {
    display: flex;
    flex-wrap: wrap
}

.profile-section-title {
    flex-basis: 100%;
    margin-bottom: 0
}

.profile-section-description {
    flex-basis: 100%;
    padding: 10px 0;
    color: #395568;
    font-weight: 400;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (min-width:768px) {
    .profile-section-description {
        flex: 1 0 50%;
        padding-bottom: 0
    }
}

.profile-section-sorter {
    flex-basis: 100%;
    border-top: solid 1px #eee;
    font-size: 13px
}

.profile-section-sorter .dropdown-toggle {
    padding: 10px 0;
    width: 100%
}

.profile-section-sorter .dropdown-toggle::after {
    position: absolute;
    right: 0
}

[dir=rtl] .profile-section-sorter .dropdown-toggle::after {
    left: 0;
    right: initial
}

@media (min-width:768px) {
    .profile-section-sorter .dropdown-toggle::after {
        position: relative
    }

    .profile-section-sorter {
        flex: 0 1 auto;
        padding-top: 0;
        border-top: 0;
        margin-left: 20px
    }

    [dir=rtl] .profile-section-sorter {
        margin-left: 0;
        margin-right: 20px
    }
}

.profile-contribution {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
    padding: 20px 0;
    position: relative
}

.profile-contribution-header {
    margin-bottom: 5px
}

.profile-contribution-title {
    margin: 0 0 5px;
    display: inline;
    line-height: 21px;
    font-size: 15px;
    vertical-align: middle
}

.profile-contribution-body {
    margin: 10px 0
}

.profile-contribution-list>.profile-contribution {
    border-top: 1px solid #eee
}

@media (min-width:768px) {
    .profile-contribution-list>.profile-contribution {
        padding-left: 30px
    }

    [dir=rtl] .profile-contribution-list>.profile-contribution {
        padding-right: 30px;
        padding-left: 0
    }
}

.profile-contribution-list>.profile-contribution:last-child {
    border-bottom: 1px solid #eee
}

.profile-contribution-list>.profile-contribution::before {
    left: 0;
    position: absolute;
    font-size: 16px;
    color: #ccc;
    font-family: "copenhagen-icons";
    line-height: 25px
}

[dir=rtl] .profile-contribution-list>.profile-contribution::before {
    right: 0
}

.profile-contribution-list .profile-contribution-header {
    margin-left: 30px
}

[dir=rtl] .profile-contribution-list .profile-contribution-header {
    padding-right: 30px;
    padding-left: 0
}

@media (min-width:768px) {
    .profile-contribution-list .profile-contribution-header {
        margin-left: 0
    }

    [dir=rtl] .profile-contribution-list .profile-contribution-header {
        padding-right: 0
    }
}

.profile-comments .profile-contribution-breadcrumbs {
    margin-left: 30px
}

[dir=rtl] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 30px;
    padding-left: 0
}

@media (min-width:768px) {
    .profile-comments .profile-contribution-breadcrumbs {
        margin-left: 0
    }

    [dir=rtl] .profile-comments .profile-contribution-breadcrumbs {
        padding-right: 0
    }
}

.profile-section .no-activity,.profile-section .private-activity {
    display: block;
    margin-top: 40px;
    color: #999
}

.profile-section .private-activity::before {
    content: "🔒";
    font-family: "copenhagen-icons";
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    vertical-align: middle;
    margin-right: 10px
}

[dir=rtl] .profile-section .private-activity::before {
    margin-right: 0;
    margin-left: 10px
}

.profile-activity-list {
    margin-top: 25px
}

.profile-activity {
    position: relative;
    padding-bottom: 30px
}

@media (min-width:768px) {
    .profile-activity {
        padding-left: 20px
    }

    [dir=rtl] .profile-activity {
        padding-right: 20px;
        padding-left: 0
    }

    .profile-activity:not(:last-child) {
        border-left: 1px solid #ddd
    }

    [dir=rtl] .profile-activity:not(:last-child) {
        border-left: 0;
        border-right: 1px solid #ddd
    }
}

.profile-activity-header {
    display: flex;
    align-items: center;
    margin-left: 35px
}

[dir=rtl] .profile-activity-header {
    margin-left: 0;
    margin-right: 35px
}

@media (min-width:768px) {
    .profile-activity-header {
        margin-left: 0
    }

    [dir=rtl] .profile-activity-header {
        margin-right: 0
    }
}

.profile-activity-header .user-avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    min-width: 40px;
    align-self: flex-start
}

[dir=rtl] .profile-activity-header .user-avatar {
    margin-left: 10px;
    margin-right: 0
}

.profile-activity-description {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
    margin: 0;
    min-width: 0;
    width: 100%
}

.profile-activity-description span:first-child {
    font-weight: 600;
    display: inline
}

.profile-activity-contribution {
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    background-color: #f7f7f7
}

@media (min-width:768px) {
    .profile-activity-contribution {
        margin-top: 0;
        margin-left: 50px
    }

    [dir=rtl] .profile-activity-contribution {
        margin-left: 0;
        margin-right: 50px
    }
}

.profile-activity::before {
    position: absolute;
    left: 0;
    width: 28px;
    border-radius: 50%;
    content: "";
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    background-position: 50% 50%;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #ccc;
    font-family: "copenhagen-icons"
}

[dir=rtl] .profile-activity::before {
    right: 0
}

@media (min-width:768px) {
    .profile-activity::before {
        left: -14px
    }

    [dir=rtl] .profile-activity::before {
        right: -14px
    }
}

.profile-activity-list>li[class$=-article]::before,.profile-articles>.profile-contribution::before {
    content: "📄"
}

.profile-activity-list>li[class$=-post]::before,.profile-posts>.profile-contribution::before {
    content: "📔"
}

.profile-activity-list>li[class$=-comment]::before,.profile-comments>.profile-contribution::before {
    content: "💬";
    line-height: 35px
}

.search-results {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between
}

@media (min-width:1024px) {
    .search-results {
        flex-direction: row
    }
}

.search-results-column {
    flex: 1
}

@media (min-width:1024px) {
    .search-results-column {
        flex: 0 0 75%
    }
}

.search-results-sidebar {
    border-top: 1px solid #ddd;
    flex: 1 0 auto;
    margin-bottom: 20px;
    padding: 0
}

@media (min-width:1024px) {
    .search-results-sidebar {
        border: 0;
        flex: 0 0 20%;
        height: auto
    }
}

.search-results-sidebar .sidenav-item:hover,.search-results-sidebar .sidenav-item[aria-selected=true] {
    background-color: #e9ebed;
    color: inherit;
    text-decoration: none
}

.search-results-sidebar .sidenav-subitem {
    unicode-bidi: embed
}

.search-results-sidebar .collapsible-sidebar {
    margin-bottom: 30px
}

.search-results-sidebar .collapsible-sidebar[aria-expanded=false] .multibrand-filter-list {
    display: none
}

@media (min-width:1024px) {
    .search-results-sidebar .collapsible-sidebar[aria-expanded=false] .multibrand-filter-list {
        display: block
    }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(n+6) {
    display: none
}

.search-results-sidebar .multibrand-filter-list .doc-count {
    color: #999
}

.search-results-sidebar .see-all-filters {
    background: 0 0;
    border: 0;
    cursor: pointer;
    display: block;
    padding: 10px;
    color: #1F73B7
}

.search-results-sidebar .see-all-filters[aria-hidden=true] {
    display: none
}

.search-results-sidebar .see-all-filters:hover {
    text-decoration: underline
}

.search-results-sidebar .see-all-filters::after {
    content: " ⌄";
    font-weight: 700
}

.search-results-subheading {
    font-size: 18px;
    font-weight: 600
}

.search-results-list {
    margin-bottom: 25px
}

.search-results-list>li {
    padding: 20px 0
}

.search-results-list>li:first-child {
    border-top: 1px solid #ddd
}

.search-results .meta-group {
    display: block;
    align-items: center;
    clear: both;
    color: #666
}

@media (min-width:1024px) {
    .search-results .meta-group {
        display: flex
    }
}

.search-results .meta-group>li {
    display: block
}

@media (min-width:1024px) {
    .search-results .meta-group>li {
        display: inline
    }

    .search-results .meta-group li:first-child {
        flex: 1
    }
}

.search-results .meta-group .meta-data {
    color: inherit
}

[dir=ltr] .search-results .meta-group .meta-data:not(:last-child) {
    margin-right: 20px
}

[dir=rtl] .search-results .meta-group .meta-data:not(:last-child) {
    margin-left: 20px
}

.search-results .meta-group .meta-data::after {
    content: none
}

.search-results-description {
    margin-top: 10px;
    word-break: break-word
}

.search-result-title {
    font-size: 16px;
    display: inline-block
}

[dir=ltr] .search-result-icons {
    float: right
}

[dir=rtl] .search-result-icons {
    float: left
}

.search-result-meta-count,.search-result-votes {
    color: #395568;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    padding: 4px 5px;
    position: relative
}

.search-result-meta-count-icon,.search-result-votes-icon {
    color: rgba(0, 97, 213, 1);
    vertical-align: middle;
    width: 13px;
    height: 13px
}

[dir=ltr] .search-result-meta-count,[dir=ltr] .search-result-votes {
    margin-left: 5px
}

[dir=ltr] .search-result-meta-count::before,[dir=ltr] .search-result-votes::before {
    margin-right: 3px
}

[dir=rtl] .search-result-meta-count,[dir=rtl] .search-result-votes {
    margin-right: 5px
}

[dir=rtl] .search-result-meta-count::before,[dir=rtl] .search-result-votes::before {
    margin-left: 3px
}

#user_nav,.search-result .meta-group {
    align-items: center
}

.search-result-breadcrumbs,figure,section.section.knowledge-base.center-align.page-header {
    margin: 0
}

@media (min-width:1024px) {
    .search-result-breadcrumbs {
        display: table-row
    }

    .search-result-breadcrumbs li {
        display: table-cell
    }
}

.search-result-breadcrumbs li,.search-result-breadcrumbs li a,.search-result-breadcrumbs li a:visited {
    color: inherit
}

.search-results-description em {
    font-style: normal;
    font-weight: 700
}

html[lang|=zh] .search-results-description em {
    font-style: normal;
    background: #ff0
}

.iti__flag {
    background-image: url(//theme.zdassets.com/theme_assets/88181/21572c9751e5a3dc20395befa0fcb349c32c4811.png)!important
}

@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi) {
    .iti__flag {
        background-image: url(//theme.zdassets.com/theme_assets/88181/d6f843711c3cfe6d9a037e4c61d293f563e55802.png)!important
    }
}

.iti {
    width: 100%
}

.searchbox-suggestions {
    border-bottom: 1px solid #ddd
}

.btn-form-continue,.btn-product-feedback {
    margin-top: .5rem;
    display: block;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px
}

.sso-form-notes {
    list-style: unset;
    margin: 1rem;
    padding: 1rem
}

#user_nav {
    display: flex
}

@media (max-width:768px) {
    .logo img {
        max-height: 20px
    }

    .box-status-label {
        display: block
    }

    .footer-links {
        display: flex;
        flex-direction: column!important
    }

    .language-selector .dropdown-menu-end {
        left: 0!important
    }

    .dropdown-mobile-container .dropbtn {
        padding: 0!important
    }
}

@media (min-width:768px) {
    .dropdown-menu-caret::after,.dropdown-menu-caret::before {
        top: -15px;
        left: 0;
        right: calc(50% - 15px);
        border-right: 15px solid transparent;
        border-bottom: 15px solid #fff;
        border-left: 15px solid transparent
    }
}

.nesty-panel.logged-in [id="360002479454"],[id="360002467873"] {
    display: none!important
}

.nesty-panel:not(.logged-in-as-box) [id="360002404653"] {
    display: none!important
}

.nesty-panel.logged-in [id="123"] {
    display: show
}

[v-cloak] {
    display: none
}

#call-me-tooltip {
    font-size: .8em;
    color: #646464
}

.articles,.categories.blocks,.new-homepage-2023 .hero-banner .banner-wrapper .search-container form label {
    width: 100%
}

.articles .promoted-articles {
    width: 100%;
    justify-content: space-around
}

#user #user-name {
    max-width: 120px
}

@media (max-width:1250px) {
    #user #user-name {
        max-width: 70px
    }
}

@media (min-width:1250px) and (max-width:1350px) {
    #user #user-name {
        max-width: 100px
    }
}

@media (min-width:1515px) {
    #user #user-name {
        max-width: 180px
    }
}

.japanese-translation,.recent-conversations .recent-articles .recent-article .article-engagement .engagement a {
    pointer-events: none
}

.premier-support>p {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
    width: 300px
}

.premier-support>p:last-child {
    border-bottom: none
}

.premier-support>p>span {
    float: right;
    padding-left: 20px;
    font-weight: 700
}

.contact-tile.premier-support-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    display: inline-block;
    width: 375px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    margin: 1em 1em 15px;
    padding: 15px 0 5px 55px;
    transition: .3s box-shadow ease-in-out
}

.premier-support-container {
    flex-direction: row;
    width: 300px
}

#support-options {
    text-align: center;
    padding: 0 40px;
    justify-content: space-evenly
}

.support-subscription {
    padding: 15px 0 20px
}

.support-slas {
    margin: auto
}

.support-slas tr {
    padding: 0;
    margin: 0
}

.support-slas td,.support-slas th {
    width: 200px;
    border-collapse: collapse;
    border: 0
}

.support-slas th {
    padding: 5px;
    margin: 5px;
    background-color: rgba(0, 97, 213, 1);
    color: #fff
}

.support-slas td {
    padding: 0
}

.priorityDefinitions {
    margin-top: 10px;
    font-size: .8em;
    padding: 5px
}

.priorityDefinitions th {
    width: 75px;
    background-color: rgba(0, 97, 213, 1);
    color: #fff
}

.priorityDefinitions td,.priorityDefinitions th {
    padding: 5px;
    border-bottom: 1px solid #fff
}

.home-page-header {
    font-size: 24px;
    border-bottom: 1px #ccc solid;
    text-align: left;
    width: 100%;
    font-weight: 700;
    padding-bottom: 5px;
    margin-bottom: 20px
}

.hide {
    display: none
}

.container-kb {
    margin: 0 auto;
    padding: 0
}

.Promo-content-wrapper {
    text-align: center;
    margin: 20px auto auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

@media (min-width:700px) {
    .lia-quilt-column-12 {
        width: 50%
    }
}

@media (max-width:699px) {
    .lia-quilt-column-12 {
        width: 100%
    }
}

.lia-quilt-column-12 .button {
    width: auto
}

@media (max-width:991px) {
    .promo-content-item .content-right-inner {
        float: none;
        margin-left: 0;
        width: auto
    }

    .promo-content-item .content-left-inner {
        float: none;
        margin-right: 0;
        width: auto
    }
}

@media screen and (max-width:991px) {
    .Promo-content-wrapper .content-left,.Promo-content-wrapper .content-right {
        display: inline-block
    }
}

.lia-quilt-column-12.content-left {
    background: #dde6ed 0 0
}

.lia-quilt-column-12.content-right {
    background: #e9eef3 0 0
}

.lia-quilt-column-12 img {
    height: 35px!important
}

.lia-quilt-column-12 .promo-title {
    font-size: 22px
}

.lia-quilt-column-12 .Promo-content {
    font-size: 14px
}

.content-left-inner {
    float: right;
    margin-right: 40px
}

.content-right-inner {
    float: left;
    margin-left: 40px
}

.content-left-inner,.content-right-inner {
    width: 320px;
    text-align: center
}

.promo-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 18px
}

#lia-body .lia-button.lia-button-primary {
    background: #0061d5;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    border: 1px solid transparent;
    min-width: 120px;
    border-radius: 4px;
    text-transform: capitalize
}

.cookie-banner {
    height: 85px;
    transition: 400ms ease all 1s;
    background: RGBA(252,98,122,.85);
    position: fixed;
    bottom: 0;
    z-index: 9999;
    text-align: center;
    color: #fff;
    width: 100%;
    display: flex;
    font-size: 16px;
    padding: 12px 24px
}

@media (max-width:767px) {
    .cookie-banner {
        height: 145px
    }
}

.close {
    height: 20px;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    float: right;
    position: absolute;
    right: 11px;
    z-index: 9999;
    font-size: 20px;
    font-weight: 700
}

.close,.white-svg {
    color: #fff
}

.box-community-info-box {
    background-color: #fbf2d0;
    padding: 10px;
    margin: 15px 15px 15px 0;
    border-color: #d1caad;
    border-left-width: 5px;
    border-left-style: solid;
    color: #06363c
}

.article-note,.box-community-warn-box {
    color: #06363c
}

.article-important,.article-note,.article-tip,.box-community-warn-box {
    padding: 10px;
    margin: 15px 15px 15px 0;
    border-color: #d1caad;
    border-left-width: 5px;
    border-left-style: solid
}

.article-note,.box-community-warn-box {
    background-color: #fbead0
}

.article-tip {
    background-color: #0061d5;
    color: #fff
}

.article-important {
    background-color: #2486fc;
    color: #fff
}

.breadcrumbs li,.breadcrumbs li a {
    color: #0061d5;
    font-size: 16px;
    font-weight: 400
}

.breadcrumbs li a:visited,.community_topic_page .community-follow [role=button][aria-selected=true]::after,.post-container .community-follow [role=button][aria-selected=true]::after {
    color: #0061d5
}

.breadcrumbs li a:active,.breadcrumbs li+li::before {
    color: #72848e
}

.breadcrumbs li:last-child,.breadcrumbs li:last-child a,.breadcrumbs li:last-child a:visited {
    color: #72848e
}

.search input[type=search] {
    border: 1.5px solid #ddd;
    background-color: #f5f6f8;
    border-radius: 4px
}

.search input[type=search]::placeholder {
    color: #b1b5b9;
    opacity: 1;
    font-weight: 400
}

.search::before {
    background-color: #f5f6f8;
    color: #b1b5b9
}

.post-container .post-header .status-label {
    text-align: center;
    letter-spacing: .43px;
    text-transform: uppercase;
    height: 28px;
    vertical-align: middle;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-left: 14px
}

.post-container .community-follow a {
    font-size: 16px;
    line-height: 46px
}

.post-container .community-follow [role=button][aria-selected=true] {
    background-color: #e9eef3;
    color: #0061d5;
    border-color: #e9eef3
}

.post-container .community-follow [role=button] {
    padding: 0 62px 0 10px;
    width: 150px
}

.post-container .community-follow [role=button]::after {
    position: absolute;
    right: 18px;
    padding-left: 18px
}

.post-container .community-follow [role=button][aria-selected=false]:hover {
    background-color: #0061d5
}

.post-container .post-to-community {
    margin-left: 30px
}

.post-container .post-to-community a {
    min-width: auto;
    font-size: 16px;
    line-height: 48px;
    background-color: #0061d5;
    width: 150px
}

.post-container .post-title h1 {
    font-weight: 400;
    font-size: 36px;
    color: #151f26;
    word-break: break-word;
    word-wrap: break-word
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .post-container .post-title h1 {
        display: block
    }
}

.post-container .post {
    flex: 1;
    max-width: none
}

.post-container .actions .dropdown .dropdown-menu {
    left: auto;
    right: 0
}

.post-container .actions .dropdown .dropdown-toggle {
    margin: 15px 0 0
}

.post-container .comment-info,.post-container .post-info {
    padding-right: 0;
    width: calc(100% - 150px)
}

.post-container .comment-actions-container,.post-container .post-actions-wrapper {
    width: 150px;
    text-align: center
}

.post-container .post-header {
    margin-bottom: 40px
}

.post-container .comment-info .comment-author .comment-meta a,.post-container .post-info .post-author .post-meta a {
    color: #0061d5;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6
}

.post-container .meta-data {
    color: #72848e;
    font-size: 16px;
    font-weight: 400
}

.post-container .avatar img {
    height: 60px;
    width: 60px
}

.post-container .comment-meta {
    align-self: baseline
}

.post-container .comment-sorter {
    margin-right: 40px
}

.post-container .comment-sorter .dropdown-toggle {
    font-size: 16px;
    color: #72848e;
    font-weight: 400
}

.post-container .comment-sorter .dropdown-toggle:active,.post-container .comment-sorter .dropdown-toggle:focus {
    color: #151f26;
    font-weight: 700;
    text-decoration: none
}

.post-container .comment-sorter .dropdown-menu {
    left: initial;
    right: 0
}

.post-container .comment-sorter .dropdown-menu [role=menuitem] {
    color: #151f26;
    font-size: 16px
}

.post-container .comment-sorter .dropdown-menu [role=menuitem][aria-selected=true] {
    font-weight: 700;
    background-color: #f5f6f8
}

.post-container .comment-sorter .dropdown-menu [role=menuitem][aria-selected=true]::after {
    content: "";
    margin-left: 30px;
    height: 6px;
    width: 9px;
    border: 2px solid #0061d5;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg) translateY(-40%);
    display: inline-block
}

.post-container .post-comment-count {
    margin-right: 56px
}

.post-container .comment-heading {
    font-size: 20px;
    color: #151f26;
    margin-bottom: 15px
}

.post-container .comment-callout {
    color: #72848e;
    font-weight: 400;
    font-size: 16px
}

.post-container .comment-body,.post-container .post-content {
    color: #72848e;
    font-size: 16px;
    word-break: break-word;
    word-wrap: break-word
}

.post-container .actions .dropdown-toggle::before,.post-container .vote-down::before,.post-container .vote-sum,.post-container .vote-up::before {
    color: #72848e
}

.post-container .comment-container textarea[name="community_comment[body]"] {
    background: #f5f6f8 0 0 no-repeat padding-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none
}

.post-container .post-share ul.share li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    position: relative;
    margin-right: 12px
}

.post-container .post-share ul.share li a:before {
    width: 34px;
    background-color: #0061d5;
    color: #fff;
    line-height: 30px;
    font-size: 34px;
    position: absolute;
    top: 0;
    left: -2px
}

.post-container .post-footer {
    padding-bottom: 70px
}

.post-container .comment-overview {
    border-top: none;
    padding-bottom: 25px
}

@media (max-width:767px) {
    .post-container .community-follow {
        width: 100%;
        margin: 0
    }

    .post-container .post-to-community {
        margin: -48px 0 0;
        align-self: flex-end
    }

    .post-container .comment-info,.post-container .post-info {
        width: calc(100% - 35px)
    }

    .post-container .comment-actions-container,.post-container .post-actions-wrapper {
        width: 35px
    }

    .post-container .comment-sorter,.post-container .post-comment-count {
        margin-right: 0
    }
}

@media (max-width:350px) {
    .post-container .community-follow {
        margin: 0;
        width: auto;
        align-self: center
    }

    .post-container .post-to-community {
        align-self: center;
        margin: 20px 0 0
    }
}

.community_topic_page .striped-list-item .striped-list-info {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%
}

.community_topic_page .striped-list-item .striped-list-info .post-overview-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 120px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.community_topic_page .status-label {
    text-transform: uppercase;
    margin-bottom: 6px
}

.community_topic_page .status-label:last-child,.recommended-posts-wrapper>div:last-child {
    margin-bottom: 0
}

.community_topic_page {
    margin-bottom: 70px
}

.community_topic_page .community-follow a {
    font-size: 16px;
    line-height: 46px
}

.community_topic_page .community-follow [role=button][aria-selected=true] {
    background-color: #e9eef3;
    color: #0061d5;
    border-color: #e9eef3
}

.community_topic_page .community-follow [role=button] {
    padding: 0 62px 0 10px;
    width: 150px
}

.community_topic_page .community-follow [role=button]::after {
    position: absolute;
    right: 18px;
    padding-left: 18px
}

.community_topic_page .community-follow [role=button][aria-selected=false]:hover {
    background-color: #0061d5
}

.community_topic_page .post-to-community {
    margin-left: 30px
}

.community_topic_page .post-to-community a {
    min-width: auto;
    font-size: 16px;
    line-height: 48px;
    background-color: #0061d5;
    width: 150px
}

.community_topic_page .page-header {
    align-items: flex-start
}

.community_topic_page .page-header h1 {
    font-weight: 400;
    font-size: 36px;
    color: #151f26;
    width: calc(100% - 330px);
    padding-right: 20px
}

.community_topic_page .page-header-description {
    color: #72848e;
    font-size: 16px;
    font-weight: 400;
    font-style: normal
}

.community_topic_page .topic-filters .dropdown-toggle,.community_topic_page .topic-header .topic-header-vote-comment {
    color: #72848e;
    font-size: 16px;
    font-weight: 400
}

.community_topic_page .topic-filters .dropdown:first-child .dropdown-toggle {
    color: #151f26;
    font-weight: 700
}

.community_topic_page .topic-filters .dropdown-toggle:active,.community_topic_page .topic-filters .dropdown-toggle:focus {
    outline: 0;
    text-decoration: none;
    color: #151f26;
    font-weight: 700;
    font-size: 16px
}

.community_topic_page .topic-filters .dropdown-menu [role=menuitem] {
    color: #151f26;
    font-size: 16px
}

.community_topic_page .topic-filters .dropdown-menu [role=menuitem][aria-selected=true] {
    font-weight: 700;
    background-color: #f5f6f8
}

.community_topic_page .dropdown-menu [role=menuitem][aria-selected=true]::after {
    content: "";
    margin-left: 10px;
    height: 6px;
    width: 9px;
    border: 2px solid #0061d5;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg) translateY(-40%);
    display: inline-block
}

.community_topic_page .striped-list-item .striped-list-title {
    color: #151f26;
    font-size: 20px;
    font-weight: 700;
    padding-right: 130px;
    margin-bottom: 6px;
    line-height: normal;
    word-break: break-word;
    word-wrap: break-word
}

.community_topic_page .striped-list .meta-group {
    margin: 0 0 10px;
    line-height: normal
}

.community_topic_page .striped-list-item .meta-data {
    color: #72848e;
    font-size: 16px;
    font-weight: 400;
    line-height: normal
}

.community_topic_page .striped-list-item .striped-list-number {
    color: #151f26;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle
}

.community_topic_page .striped-list-item .striped-list-count-item:nth-child(2) .striped-list-number {
    color: #0061d5
}

.community_topic_page .striped-list-item .striped-list-count-item.comment-count-zero:nth-child(2) .striped-list-number {
    color: #72848e
}

.community_topic_page .topic-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent
}

.community_topic_page .topic-header .topic-filters {
    flex: 2;
    justify-content: space-between;
    display: flex
}

.community_topic_page .topic-header .topic-header-vote-comment {
    flex: 1;
    display: flex;
    justify-content: space-around;
    margin-top: -1px
}

.community_topic_page .topic-header .topic-header-vote-comment>span:nth-child(1) {
    padding-left: 16px
}

.community_topic_page .topic-header .topic-header-vote-comment>span:nth-child(2) {
    padding-left: 20px
}

.community_topic_page .topic-header .dropdown-status {
    min-width: 120px;
    margin-right: 0
}

.community_topic_page .striped-list-item .striped-list-count-item:nth-child(2):before {
    content: " ";
    height: 18px;
    width: 18px;
    display: inline-block;
    padding: 0 5px;
    vertical-align: middle;
    background: url(//theme.zdassets.com/theme_assets/88181/c55ce9889aa1fc6ded8d0996fff5334bc79c0f3c.png)center no-repeat;
    background-size: contain
}

.community_topic_page .striped-list-item .striped-list-count-item.comment-count-zero:nth-child(2):before {
    background: url(//theme.zdassets.com/theme_assets/88181/342585bb44f7d4e81be6a8779a5a30f55dbdc62b.png)center no-repeat;
    background-size: contain
}

.status-label-answered {
    background-color: #f6ba31;
    color: #fff
}

.status-label-planned {
    background-color: #585c60;
    color: #fff
}

.status-label-not-planned {
    background-color: #ee4b67;
    color: #fff
}

.status-label-completed {
    background-color: #3bc88d;
    color: #fff
}

.community_topic_page .striped-list-item .striped-list-count-item {
    text-align: center;
    align-self: center
}

.community_topic_page .striped-list-item .striped-list-count-item p {
    color: #72848e;
    font-size: 12px;
    margin: 0
}

@media (max-width:767px) {
    .community_topic_page .page-header h1 {
        padding: 0;
        order: 1;
        margin: 20px 0 0;
        width: 100%;
        font-size: 28px
    }

    .community_topic_page .community-follow {
        margin: 0
    }

    .community_topic_page .post-to-community {
        margin-left: 30px;
        align-self: flex-end;
        margin-top: -48px
    }

    .community_topic_page .topic-header .dropdown {
        border: 0
    }

    .community_topic_page .topic-header {
        flex-direction: column;
        align-items: initial
    }

    .community_topic_page .topic-header .topic-header-vote-comment {
        justify-content: flex-start
    }

    .community_topic_page .topic-header .topic-header-vote-comment>span {
        margin-right: 10px;
        padding-left: 0!important
    }

    .community_topic_page .community-header {
        margin-bottom: 20px
    }
}

@media (max-width:480px) {
    .community_topic_page .page-header h1 {
        font-size: 24px
    }
}

@media (max-width:350px) {
    .community_topic_page .community-follow {
        margin: 0;
        width: auto;
        align-self: center
    }

    .community_topic_page .post-to-community {
        align-self: center;
        margin: 20px 0 0
    }
}

.topic-page-body-wrapper {
    display: flex
}

.topic-page-leftrail-wrapper {
    width: 71%
}

.topic-page-rightrail-wrapper {
    width: calc(29% - 60px);
    margin-left: 60px
}

.recommended-posts-wrapper,.related-communities-wrapper {
    background-color: #f5f6f8;
    border-radius: 10px;
    padding: 20px 30px 25px;
    margin-bottom: 30px;
    min-width: 230px
}

.recommended-posts-wrapper {
    max-height: 343px;
    overflow: hidden
}

.recommended-posts-wrapper>div>a {
    color: #151f26
}

.recommended-posts-wrapper>div>a>div {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.recommended-posts-wrapper>div>p {
    color: #72848e;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.related-communities-wrapper a {
    display: block;
    margin-bottom: 15px
}

.related-communities-wrapper a:last-child {
    margin-bottom: 0
}

@media (max-width:1024px) {
    .topic-page-body-wrapper {
        flex-wrap: wrap
    }

    .topic-page-leftrail-wrapper {
        width: 100%;
        margin-bottom: 50px
    }

    .topic-page-rightrail-wrapper {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between
    }

    .community_topic_page .recommended-posts-wrapper,.community_topic_page .related-communities-wrapper {
        width: 49%
    }
}

@media (max-width:767px) {
    .community_topic_page .topic-header .dropdown-status {
        min-width: 100px
    }

    .community_topic_page .striped-list-item {
        position: relative
    }

    .community_topic_page .striped-list-item .striped-list-info {
        position: static
    }

    .community_topic_page .striped-list-item .striped-list-count-item p {
        display: inline-block;
        line-height: 22px;
        vertical-align: text-top;
        margin-left: 5px
    }

    .topic-page-rightrail-wrapper {
        flex-wrap: wrap
    }

    .community_topic_page .recommended-posts-wrapper,.community_topic_page .related-communities-wrapper {
        width: 100%
    }
}

.icon-svg-4415765329299 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/dd5cc003babccf747e23fbc0b9589efec05fc940.svg)
}

.icon-svg-360003187914 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/502e9d2962ce2951d43045643bfbc3de411476aa.svg)
}

.icon-svg-360003200713 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/59829d41e93518463b1caba37d97a9cb0d0e0197.svg)
}

.icon-svg-360003187974 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/d9049856b8cb32980e310ba09807aacce32395b9.svg)
}

.icon-svg-360003188114 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/dcdd83d476d147e0e82ce3fe355a058a12efaaee.svg)
}

.icon-svg-360003187954 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/8a9bd1e91041a5ff5a1a828071b55766c638e671.svg)
}

.icon-svg-360003187934 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/764d7f64c1b972a1d40d7400e4165f3a48ed7d19.svg)
}

.icon-svg-360003200833 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/90b972d6d8b5325176a89bb0a65d24a843943609.svg)
}

.icon-svg-360003188054 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/43ec1ae86b3a32b7fca5c5455e58c017946a6a3b.svg)
}

.icon-svg-360003308753 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/e3a38944eb42cbd939ea621c7088e975792f7be1.svg)
}

.icon-svg-360003200733 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7f6840638f108dda92ae8f8bbbd4fb13667d7eea.svg)
}

.icon-svg-360003188134 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/815c6d24e83799a01a4056515f19584a5982e19b.svg)
}

.icon-svg-360003200853 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/6f580e42adabac2d09bb5ce345a1c1c50f827333.svg)
}

.icon-svg-360003200753 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/31b3a5f8799a1e32fab57ec1d32b1ffedc8c223c.svg)
}

.icon-svg-360003200773 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2e6bdca6bddd872927c1667040514061da6e8522.svg)
}

.icon-svg-360003188094 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7ae45108936e6abc890efe1a10ec1f0f2e55d29b.svg)
}

.icon-svg-360003200813 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/75e1331e09ac33a474afd9f9f55a3df41a23ab43.svg)
}

.icon-svg-360003188034 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/8f6eea72ee78c056f2beb1dc9996a873082afeb7.svg)
}

.icon-svg-360003200793 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2eb80459ceaea42fcd9aa3f8530dd119006923b3.svg)
}

.icon-svg-360003188074 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7d34d620d0b94e2fd237861bb3f39f50460b88c1.svg)
}

.icon-svg-360003187994 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7f10879d9d63e0f86ff74ad7e47edfeecc5862d4.svg)
}

.icon-svg-360003188014 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/b671e71103c1a83d21e2b32e87f3a38afb005d0d.svg)
}

.icon-svg-360004130774 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/5d2343ad5e8db3933738e8f2f6ef66015b602952.svg)
}

.icon-svg-4408821162515 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/aad25ab77162c326075f7928636ff75c298975e2.svg)
}

.icon-svg-4407503008147 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/50e68b1a7ab176bfda3760920ea08ac49579b539.svg)
}

.icon-svg-1500002545282 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2408bbf9eaf55f10d04dae9f8510c1e864177472.svg)
}

.icon-svg-360009151293 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/746bc92889cb3c68557bdb456ebb1b419ce94087.svg)
}

.icon-svg-360009050574 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/63f7b5cd9adbd4de045b25de63b56dabff8fa0ba.svg)
}

.icon-svg-360009151233 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/f88c72839726af1f6f45117f93c2fcd9746ebb59.svg)
}

.icon-svg-360009473734 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/3dea9b197798db183ecf51b3132e9a8b8c5e8638.svg)
}

.icon-svg-shuttle {
    background-image: url(//theme.zdassets.com/theme_assets/88181/95dc0c525cdea1d4bb13d80b51f3772a00c56d9c.svg)
}

.icon-svg-1500002198102 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/be3c32e54401aed8fe673714160cf7ef608b21f8.svg)
}

.icon-svg-contact-support {
    background-image: url(//theme.zdassets.com/theme_assets/88181/ebb3d8e21cf5e803886ac29c28f313cf2a4cf71a.svg)
}

.new_post_page .form {
    width: 600px;
    display: inline-block;
    vertical-align: top;
    margin-right: 120px
}

.new_post_page .form.suggestion-wrapper {
    width: 400px;
    margin: 0
}

.new_post_page .form-header {
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px
}

.new_post_page .form {
    margin-top: 30px
}

.new_post_page .form-field label {
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 10px
}

.new_post_page #community_post_details,.new_post_page #hc-wysiwyg,.new_post_page .form-field .nesty-input,.new_post_page .form-field input[type=text] {
    border: 1.5px solid #ddd;
    background: #f5f6f8 0 0 no-repeat padding-box;
    resize: none;
    font-size: 16px;
    font-weight: 400
}

.new_post_page .form-field .nesty-input {
    height: 48px;
    width: 330px;
    line-height: 43px;
    padding: 0 35px 0 20px
}

.new_post_page .form-field .nesty-input~.notification {
    width: 330px
}

.new_post_page .form-field input[type=text] {
    padding: 12px 20px 14px
}

.new_post_page .nesty-input:after {
    content: "";
    height: 8px;
    width: 8px;
    border: 2px solid #0061d5;
    border-top: none;
    border-left: none;
    transform: matrix(.71,.71,-.71,.71,0,0) translateY(-110%);
    right: 28px;
    top: 50%
}

.new_post_page #community_post_details {
    height: 96px;
    border-radius: 4px;
    padding: 12px 20px
}

.new_post_page .form footer {
    margin: 0;
    padding-top: 20px;
    text-align: right
}

.new_post_page .form footer input[type=submit] {
    width: 150px;
    height: 48px
}

.new_post_page .form .suggestion-list label {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 28px;
    line-height: 32px
}

.new_post_page .searchbox-suggestions {
    margin-top: 10px;
    border-bottom: none
}

.new_post_page .searchbox-suggestions li a,.topic_list_page .recent-activity-controls a {
    color: #0061d5;
    font-size: 16px
}

.new_post_page .searchbox-suggestions li a:visited,.recent-conversations .recent-articles .recent-article .recent-article-meta-data .article-meta-data .highlighted-text a {
    color: #0061d5
}

@media (max-width:767px) {
    .new_post_page .form {
        width: 100%;
        margin-right: 0;
        max-width: 100%
    }

    .new_post_page .form.suggestion-wrapper {
        width: 100%;
        max-width: 100%;
        padding-top: 20px
    }
}

@media (max-width:480px) {
    .new_post_page .form-field .nesty-input,.new_post_page .form-field .nesty-input~.notification {
        width: 100%
    }

    .new_post_page .form-header {
        font-size: 26px
    }
}

.box-basics-wrapper {
    background: #f5f6f8 0 0 no-repeat padding-box
}

.Promo-content-wrapper-owl {
    margin: 0 auto;
    max-width: 1150px;
    text-align: center
}

.Promo-content-wrapper-owl-heading {
    margin: 0;
    font-size: 36px;
    font-weight: 400
}

.promo-content-item {
    display: inline-block;
    position: relative;
    padding: 20px
}

.Promo-content-wrapper-owl .promo-content-item .button {
    width: auto;
    position: absolute;
    bottom: 50px;
    left: 80px;
    color: #c3d1d9;
    border: 0;
    font-size: 16px;
    background-color: transparent
}

.Promo-content-wrapper-owl .content-left-inner,.Promo-content-wrapper-owl .content-right-inner {
    background: #003c84 0 0 no-repeat padding-box;
    margin: 0!important;
    height: 342px;
    width: 240px;
    color: #fff;
    border-radius: 8px;
    padding: 40px 30px 30px;
    -webkit-box-shadow: 0 18px 18px -3px #d3d3d3;
    -moz-box-shadow: 0 18px 18px -3px #d3d3d3;
    box-shadow: 0 18px 18px -3px #d3d3d3
}

.Promo-content {
    font-size: 16px;
    min-height: 70px;
    color: #fff;
    padding: 10px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 116px;
    text-overflow: ellipsis;
    position: relative
}

.Promo-content-phone {
    font-size: 16px;
    min-height: 70px;
    color: #fff;
    padding: 10px 0px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: visible;
    height: 116px;
    text-overflow: ellipsis;
    position: relative
}

.owl-carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px
}

#home-categories .box-basics-wrapper .box-basics,.owl-carousel {
    padding-bottom: 60px
}

#home-categories .box-basics h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: 400
}

#home-categories .home-page-header {
    font-size: 36px;
    font-weight: 400;
    border: 0;
    text-align: center;
    padding: 0
}

#home-categories .blocks-list {
    justify-content: center;
    margin: 0
}

#home-categories .blocks-item {
    flex: 0 20%;
    margin: 0
}

@media (max-width:767px) {
    #home-categories .blocks-item {
        flex: 0 33%
    }
}

@media (max-width:480px) {
    #home-categories .blocks-item {
        flex: 0 100%
    }
}

#home-categories .blocks-item .blocks-item-link {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent
}

#home-categories .product-icon {
    margin: 0;
    min-width: 40px;
    height: 56px;
    width: 56px
}

#home-categories .blocks-item-title {
    margin: 20px 0 8px;
    line-height: normal;
    text-align: center;
    font-weight: 700;
    background-color: transparent;
    width: 100%
}

#home-categories .product-icon:focus,#home-categories .product-icon:hover {
    filter: none
}

.Promo-content-wrapper-owl>h2 {
    font-size: 36px;
    font-weight: 400;
    margin: 0
}

.section.hero {
    padding-top: 45px;
    padding-bottom: 50px
}

.section.hero .hero-inner h1 {
    font-size: 48px;
    line-height: 20px;
    font-family: lato;
    white-space: normal;
    font-weight: 400
}

@media (max-width:380px) {
    .section.hero .hero-inner h1 {
        font-size: 36px
    }
}

.section.hero .hero-inner .welcome-text {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px
}

.custom-section-page.sub-nav .search_form.answers,.search_form.answers,.section.hero .hero-inner .search {
    width: 510px;
    margin: 0 auto
}

.search_form.answers input:focus {
    border-radius: 5px 0 0 5px
}

.sub-nav .search_form.answers {
    width: auto;
    margin: 0
}

@media (max-width:767px) {
    .search_form.answers,.section.hero .hero-inner .search {
        width: 100%
    }
}

.section.hero .hero-inner .search input[type=search] {
    height: 48px;
    border: 0;
    background-color: #fff;
    border-radius: 4px;
    font-size: 16px;
    padding-bottom: 6px
}

.section.hero .hero-inner .search input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

.section.hero .hero-inner .search input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

.section.hero .hero-inner .search input[type=search]::-webkit-search-cancel-button,.section.hero .hero-inner .search input[type=search]::-webkit-search-decoration,.section.hero .hero-inner .search input[type=search]::-webkit-search-results-button,.section.hero .hero-inner .search input[type=search]::-webkit-search-results-decoration {
    display: none
}

.section.hero .hero-inner .search::before {
    background-color: #fff;
    color: #b8bbbd
}

.cards-wrapper h2 {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px
}

.topic_list_page .recent-activity-header {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px
}

.topic_list_page .recent-activity-item-parent {
    font-size: 20px;
    font-weight: 700;
    word-break: break-word;
    word-wrap: break-word
}

.topic_list_page .recent-activity-item-comment,.topic_list_page .recent-activity-item-link,.topic_list_page .recent-activity-item-time {
    color: #72848e;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.topic_list_page .recent-activity-item-comment span::before {
    content: " ";
    height: 18px;
    width: 18px;
    display: inline-block;
    padding: 0 5px;
    vertical-align: middle;
    background: url(//theme.zdassets.com/theme_assets/88181/c55ce9889aa1fc6ded8d0996fff5334bc79c0f3c.png)center no-repeat;
    background-size: contain
}

.topic_list_page .recent-activity-item-comment span {
    color: rgba(0, 97, 213, 1)
}

.topics-list-wrapper {
    display: flex
}

.topic-list-page-leftrail-wrapper {
    width: 68%
}

.topic-list-page-rightrail-wrapper {
    width: calc(32% - 30px);
    margin-left: 30px;
    margin-bottom: 30px
}

.topic_list_page .recent-activity-item {
    border: 1px solid transparent;
    border-bottom: 1px solid #ddd;
    padding: 20px
}

.topic_list_page .recent-activity-item:hover {
    background-color: #f4f9ff;
    border: 1px solid #d8e6f9;
    border-radius: 10px
}

@media (max-width:1199px) {
    .topics-list-wrapper {
        flex-wrap: wrap
    }

    .topic-list-page-leftrail-wrapper {
        width: 100%;
        margin-bottom: 50px
    }

    .topic-list-page-rightrail-wrapper {
        width: 100%;
        margin: 0 0 50px;
        display: flex;
        justify-content: space-between
    }

    .topic_list_page .recommended-posts-wrapper,.topic_list_page .related-communities-wrapper {
        width: 49%
    }
}

@media (max-width:767px) {
    .topic-list-page-rightrail-wrapper {
        flex-wrap: wrap
    }

    .topic_list_page .recommended-posts-wrapper,.topic_list_page .related-communities-wrapper {
        width: 100%
    }
}

@media (min-width:768px) {
    .topic_list_page .recent-activity-item-meta {
        margin-top: -20px
    }
}

.topic_list_page .activity {
    border-top: none;
    padding-top: 0;
    padding-bottom: 30px
}

.topic_list_page .recent-activity-controls {
    padding-top: 30px;
    text-align: center;
    color: #0061d5
}

.cards-wrapper {
    background-color: #f5f6f8;
    padding: 60px 0
}

.welcome-cards {
    text-align: center
}

.welcome-card {
    border-radius: 8px;
    padding: 22px 30px 30px;
    width: 240px;
    -webkit-box-shadow: 0 15px 25px 0#d3d3d3;
    -moz-box-shadow: 0 15px 25px 0#d3d3d3;
    box-shadow: 0 15px 25px 0#d3d3d3;
    display: inline-block;
    margin: 20px 15px;
    min-height: 214px;
    vertical-align: top;
    background: #fff
}

.welcome-card.head-box-local {
    width: calc(100% - 100px);
    text-align: center;
    margin-left: 0;
    margin-right: 0
}

.welcome-card.head-box-local ul {
    column-count: 4;
    column-gap: 50px;
    text-align: center
}

@media (max-width:990px) {
    .welcome-card.head-box-local ul {
        column-count: 3
    }
}

@media (max-width:767px) {
    .welcome-card.head-box-local ul {
        column-count: 2
    }

    .welcome-card.head-box-local {
        width: 100%
    }
}

@media (max-width:480px) {
    .welcome-card.head-box-local ul {
        column-count: 1
    }

    .welcome-card.head-box-local {
        width: 240px
    }
}

.welcome-card .heading h3 {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700
}

.welcome-card .heading-icon {
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.welcome-card .heading-icon.welcome {
    background-image: url(//theme.zdassets.com/theme_assets/88181/1d15e9f1931ab4cc540169175f92de4e9f820c0a.svg)
}

.welcome-card .heading-icon.developer-community {
    background-image: url(//theme.zdassets.com/theme_assets/88181/5d92682f5ea720564c1443535f76da6e5abfc52f.svg)
}

.welcome-card .heading-icon.product {
    background-image: url(//theme.zdassets.com/theme_assets/88181/b1949ee6f2dd70b2b83d5d3aaa904ad3a5dda317.svg)
}

.welcome-card .heading-icon.box-local {
    background-image: url(//theme.zdassets.com/theme_assets/88181/ed96466938f061570d7e0220d8fb10e7eadf8b6e.svg)
}

.welcome-card .heading-icon.certifications {
    background-image: url(//theme.zdassets.com/theme_assets/88181/55e09699128d841dfa68dece35c79b776bfdcd74.svg)
}

.welcome-card li {
    padding: 8px 0
}

.welcome-card .card-item-link {
    margin: 20px 0;
    color: #0061d5;
    font-size: 16px
}

.community-footer-title {
    margin-bottom: 36px
}

.community-footer a.button-large[role=button] {
    width: 240px;
    height: 48px
}

.community-footer {
    padding-top: 62px
}

.footer {
    margin-top: 80px
}

.header-container {
    padding: 0 20px
}

.header {
    max-width: none
}

.user-info>[role=button]::after {
    padding-right: 0;
    opacity: .6
}

.nav-wrapper .center-nav .dropdown-res>a,.nav-wrapper .center-nav .dropdown>a,.nav-wrapper .center-nav>a {
    font-size: 16px;
    font-weight: 700;
    opacity: .6
}

.nav-wrapper .center-nav .dropdown-res:active>a,.nav-wrapper .center-nav .dropdown-res:focus>a,.nav-wrapper .center-nav .dropdown-res:hover>a,.nav-wrapper .center-nav .dropdown:active>a,.nav-wrapper .center-nav .dropdown:focus>a,.nav-wrapper .center-nav .dropdown:hover>a,.nav-wrapper .center-nav>a:active,.nav-wrapper .center-nav>a:focus,.nav-wrapper .center-nav>a:hover {
    opacity: 1
}

.logo img {
    height: 29px;
    max-height: 29px
}

#user #user-name,.box-status-label {
    font-size: 16px;
    font-weight: 700
}

#user #user-name {
    margin-left: 8px
}

.user-avatar {
    height: 32px;
    width: 32px
}

/***** User info in header *****/
.user-info {
    margin-left: 20px
}

.user-info .btn {
    padding-bottom: 0
}

.nav-wrapper .center-nav .dropdown-res:after,.nav-wrapper .center-nav .dropdown:after {
    color: #fff;
    content: "";
    display: inline-block;
    font-family: "entypo";
    bottom: 0;
    left: 50%;
    opacity: .6;
    position: absolute;
    line-height: 1.8;
    transform: translateX(-50%)
}

.article-comment-count,.meta-data.product-page::after,.nav-wrapper .center-nav .dropdown-res:hover:after,.nav-wrapper .center-nav .dropdown:hover:after {
    display: none
}

.dropdown-mobile-container .dropbtn {
    padding: 0!important
}

@media (max-width:999px) {
    .nav-wrapper .center-nav .dropdown-res:after,.nav-wrapper .center-nav .dropdown:after {
        display: none
    }

    .header .nav-wrapper {
        width: auto
    }
}

@media (min-width:1000px) {
    .user-nav[aria-expanded=true] {
        display: none
    }
}

.article-container .product-article-label {
    margin-bottom: 30px;
    border: 1px solid rgba(0, 97, 213, 1);
    display: inline-block;
    padding: 2px 10px;
    background-color: rgba(0, 97, 213, 1);
    color: #fff
}

#box-incident,#box-incident2,#support-delays {
    border-radius: 8px;
    box-shadow: 0 18px 18px -3px #d3d3d3;
    border: 1px solid #ccc
}

#box-incident,#box-incident2 {
    background: #ffe6e6 0 0 no-repeat padding-box;
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 2px;
    font-size: 16px
}

#support-delays {
    background: #ffe 0 0 no-repeat padding-box;
    padding: 10px;
    margin-top: 10px
}

.article-body pre {
    white-space: pre-wrap;
    width: 870px
}

.print-button-wrapper {
    float: right
}

@media print {
    body {
        margin: 0;
        color: #000;
        background-color: red
    }

    #preview-bar-container,#vue-header,.article-footer,.article-more-questions,.article-relatives,.article-return-to-top,.article-sidebar,.article-votes,.comment-actions-container,.comment-callout,.comment-form,.comment-meta .meta-data,.comments,.dropdown.comment-sorter,.footer,.sub-nav {
        display: none
    }

    .comment-overview {
        border: 0
    }
}

.toc {
    margin: 0 auto
}

.toc .article-body ul li {
    line-height: 24px
}

.article-body .toc ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0
}

.article-body .toc ul ul {
    list-style-type: none;
    margin-left: 20px
}

.article-body .toc ul li {
    margin-top: 10px
}

.toc a {
    cursor: pointer
}

span.dropdown.dropdown-status .dropdown-menu a:nth-child(1),span.dropdown.dropdown-status .dropdown-menu a:nth-child(4) {
    pointer-events: auto;
    opacity: 1
}

span.dropdown.dropdown-status .dropdown-menu a {
    pointer-events: none;
    opacity: .2
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 32px;
    z-index: 999;
    border-radius: 25px;
    padding: 6px 20px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: .1px;
    border: 1px solid #dadce0;
    background-color: #fff;
    display: none;
    text-align: center
}

.back-to-top,.back-to-top:active,.back-to-top:focus,.back-to-top:hover,.back-to-top:visited {
    color: #151f26
}

@media (max-width:767px) {
    .back-to-top {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px
    }
}

.responsiveBanner {
    width: 98%;
    height: auto
}

main .heading.eyebrow {
    display: block;
    margin-bottom: 15px;
    opacity: .8;
    font: 900 16px/1.5 Lato
}

li.yxt-AutoComplete-option--item {
    text-align: left
}

.article_labels_list {
    display: none
}


/* BOX-REVAMP CSS*/
/* CSS for Box-Revamp */
.box-revamp *,.box-revamp ::after,.box-revamp ::before {
    padding: 0;
    margin: 0
}

.box-revamp ol,.box-revamp ul {
    list-style: none
}

body,html {
    height: 100%
}

html {
    scroll-behavior: smooth
}

body {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
    font-family: "Lato",sans-serif;
    -webkit-font-smoothing: antialiased
}

a:hover {
    transition: all .25s ease
}

.box-revamp a:active,.box-revamp a:focus {
    text-decoration: none
}

.container-max {
    width: 100%;
    max-width: 1290px;
    padding: 0 15px;
    margin: 0 auto
}

b,strong {
    font-weight: 700
}

.link-cta {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: ""
}

.mt-0 {
    margin-top: 0
}

.mb-20 {
    margin-bottom: 20px
}

.mt-20 {
    margin-top: 20px
}

.box-revamp span {
    display: inline-block
}

.bg-orange {
    background-color: #f1811a
}

.bg-purple {
    background-color: #9f3fed
}

.bg-green {
    background-color: #26c281
}

.bg-blue {
    background-color: #0061d5
}

.bg-red {
    background-color: #fef5f6
}

.bg-green-1 {
    background-color: #f4fcf8
}

.bg-purple-1 {
    background-color: #faf5fe
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    margin: 0
}

.box-revamp h1,.box-revamp h2 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0
}

.box-revamp h2 {
    font-size: 36px;
    line-height: 48px
}

.clearfix::after {
    clear: both;
    content: "";
    display: table
}

.hide-text {
    overflow: hidden;
    padding: 0;
    text-indent: 101%;
    white-space: nowrap
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.d-inline-block {
    display: inline-block
}

.bg-white {
    background-color: #fff
}

.bg-black {
    background-color: #000
}

.text-uppercase {
    text-transform: uppercase
}

.text-lowercase {
    text-transform: lowercase
}

.text-decoration-underline {
    text-decoration: underline
}

.text-center {
    text-align: center
}

.new-homepage-2023 .hero-banner .banner-wrapper h1,.text-white {
    color: #fff
}

.text-black {
    color: #000
}

.m-0 {
    margin: 0!important
}

.mb-0 {
    margin-bottom: 0
}

.mt-10px {
    margin-top: 10px
}

.mb-10px {
    margin-bottom: 10px
}

.mt-20px {
    margin-top: 20px
}

.mb-20px {
    margin-bottom: 20px
}

.fw-medium {
    font-weight: 500
}

.integeration-page-2023,.new-homepage-2023 {
    background-color: #f5f6f8
}

.new-homepage-2023 .hero-banner {
    background: linear-gradient(180deg,#003c84 0,#002959 100%);
    margin: -3px auto 0
}

.new-homepage-2023 .hero-banner .banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 15px 65px
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container {
    margin-top: 30px;
    width: 100%
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container form {
    display: flex;
    align-items: center;
    position: relative
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container form label .search-input {
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    background: rgba(0,40,89,.2);
    border: 1px solid #2486fc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    width: 100%;
    line-height: 24px
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container form label .search-input:focus-visible {
    outline: 0
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container form label .search-input::placeholder {
    color: #fff
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container form .btn-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -5px
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container form .btn-search .search-bar-icon {
    height: 16px;
    width: 16px
}

.products-listing .cards {
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.admins-users-guide .wrapper .guide .guide-content .card ul li a:hover,.home-widget span a,.links-wrapper a:hover,.products-listing .cards .card .card-content .link:hover,.products-listing .cards .card .card-content:hover {
    text-decoration: none
}

.products-listing .cards .card {
    border-radius: 10px;
    border: 1px solid #e1ecfa;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    max-width: 14.28%;
    width: 100%;
    min-height: 226px;
    position: relative;
    transition: transform .25s ease
}

.products-listing .cards .card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 10px;
    overflow: hidden;
    text-align: center
}

.products-listing .cards .card .card-content .card__heading {
    line-height: 16px;
    margin-top: 10px;
    font-size: 16px;
    color: #000
}

.products-listing .cards .card .card-content .card__description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #767676;
    text-align: center
}

.products-listing .cards .card .card-content .link {
    margin-top: 10px;
    color: #0061d5;
    font-weight: 700;
    line-height: 16px
}

.products-listing .cards .card:hover {
    background-color: #0061d5;
    color: #fff;
    transform: scale(1.05);
    z-index: 1
}

.admins-users-guide .wrapper .guide .guide-content .card ul li:hover span,.download-apps h2,.products-listing .cards .card:hover .card__description,.products-listing .cards .card:hover .card__heading,.products-listing .cards .card:hover .link {
    color: #fff
}

.admins-users-guide .wrapper .guide .guide-content .card ul li:hover,.products-listing .cards .card.box-21356707082387:hover {
    background-color: #0061d5
}

.products-listing .cards .card.box-21356760348691:hover {
    background-color: #003c84
}

.products-listing .cards .card.box-21356718529939:hover {
    background-color: #f1811a
}

.products-listing .cards .card.box-21356742765843:hover {
    background-color: #ed3757
}

.products-listing .cards .card.box-21356730826259:hover {
    background-color: #003c84
}

.products-listing .cards .card.box-21356713045779:hover {
    background-color: #222
}

.products-listing .cards .card.box-22012531180947:hover {
    background-color: #eb0287
}

.products-listing .cards .card.box-21356750924563:hover {
    background-color: #003c84
}

.products-listing .cards .card.box-360002795274:hover {
    background-color: #26c281
}

.products-listing .cards .card.box-21356759103507:hover {
    background-color: #9f3fed
}

.products-listing .cards .card.box-21356759774611:hover {
    background-color: #222
}

.products-listing .cards .card.box-21356758812563:hover {
    background-color: #58bec4
}

.products-listing .cards .card.box-21356758455059:hover {
    background-color: #9f3fed
}

.products-listing .cards .card.box-21356734487443:hover {
    background-color: #ed3757
}

.products-listing .cards .card.box-360002795174:hover {
    background-color: #26c281
}

.products-listing .cards .card.box-sync:hover {
    background-color: #5ebe86
}

.products-listing .load-more {
    margin-top: 20px
}

.products-listing .load-more .load-more-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
    cursor: pointer
}

.products-listing .load-more .load-more-wrapper:hover svg #circle {
    fill: #0061d5;
    fill-opacity: 1
}

.products-listing .load-more .load-more-wrapper:hover svg #vector-1,.products-listing .load-more .load-more-wrapper:hover svg #vector-2 {
    fill: #fff
}

.products-listing .load-more .load-more-wrapper:hover .load-more-text,.recent-conversations .recent-articles .recent-article .recent-article-description p:hover {
    text-decoration: underline
}

.products-listing .load-more .load-more-wrapper .load-more-blue {
    display: none
}

.products-listing .load-more .load-more-wrapper .load-more-text {
    color: #0061d5;
    line-height: 16px;
    font-size: 16px;
    font-weight: 700
}

.products-listing .cards .card .card__image img,.recent-article-image a img {
    border-radius: 50%
}

.products-listing .cards .card .card__image>img {
    border: 3px solid #fff;
    border-radius: 50%
}

.recent-conversations .recent-articles .recent-article-description>a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: none
}

.recent-conversations .recent-articles {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.recent-conversations .recent-articles .recent-article {
    position: relative;
    display: flex;
    gap: 10px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px
}

.recent-conversations .recent-articles .recent-article.pinned-article {
    border: 1px solid #2486fc;
    order: -1
}

.recent-conversations .recent-articles .recent-article .pin-icon-wrapper {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(8px,8px)
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container .search_form.answers.component.yxt-Answers-component.yxt-SearchBar-wrapper,.recent-conversations .recent-articles .recent-article .pin-icon-wrapper img,.top-tips .top-tip-cards .top-tip-card .link-learn-more:hover::after {
    width: 100%
}

.recent-conversations .recent-articles .recent-article .recent-article-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 950px;
    width: 100%
}

.recent-conversations .recent-articles .recent-article .recent-article-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #151b17;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left
}

.recent-conversations .recent-articles .recent-article .recent-article-meta-data {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap
}

.recent-conversations .recent-articles .recent-article .recent-article-meta-data .article-meta-data {
    padding: 4px 16px;
    background-color: #e1ecfa;
    border-radius: 30px;
    font-size: 13px;
    color: #151f26
}

.recent-conversations .recent-articles .recent-article .recent-article-meta-data .article-meta-data .highlighted-text {
    color: #0061d5;
    font-weight: 700;
    margin-left: 6px
}

.recent-conversations .recent-articles .recent-article .recent-article-meta-data .article-meta-data .highlighted-text a:hover {
    text-decoration: underline;
    color: #0061d5
}

.recent-conversations .recent-articles .recent-article .article-engagement {
    display: flex;
    gap: 30px;
    margin-left: auto;
    align-items: center
}

.recent-conversations .recent-articles .recent-article .article-engagement .engagement {
    display: block;
    text-align: center;
    border-left: 1px solid #e1ecfa;
    padding-left: 30px
}

.recent-conversations .recent-articles .recent-article .article-engagement .engagement p {
    font-size: 13px;
    color: #8ea6b2
}

.recent-conversations .load-more {
    margin-top: 20px
}

.recent-conversations .load-more .load-more-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
    cursor: pointer
}

.recent-conversations .load-more .load-more-wrapper:hover svg #circle {
    fill: #0061d5;
    fill-opacity: 1
}

.recent-conversations .load-more .load-more-wrapper:hover svg #vector-1,.recent-conversations .load-more .load-more-wrapper:hover svg #vector-2 {
    fill: #fff
}

.recent-conversations .load-more .load-more-wrapper:hover .load-more-text {
    text-decoration: underline
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container .button.js-yxt-SearchBar-clear.yxt-SearchBar-clear.component.yxt-Answers-component,.new-homepage-2023 .hero-banner .banner-wrapper .search-container button.js-yxt-SearchBar-clear.yxt-SearchBar-clear.component.yxt-Answers-component,.recent-conversations .load-more .load-more-wrapper .load-more-blue {
    display: none
}

.recent-conversations .load-more .load-more-wrapper .load-more-text {
    color: #0061d5;
    line-height: 16px;
    font-size: 16px;
    font-weight: 700
}

.download-apps {
    background: linear-gradient(180deg,#2486fc 0,#005bc9 100%);
    padding: 60px 0;
    margin-bottom: 0
}

.download-apps .apps-card {
    display: flex;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px
}

.download-apps .apps-card .app-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: calc((100% - 60px)/3);
    width: 100%;
    text-align: center
}

.download-apps .apps-card .app-card .app-card__heading {
    line-height: 16px;
    margin-top: 10px;
    font-size: 16px
}

.download-apps .apps-card .app-card .app-card__description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #767676;
    font-size: 12px;
    line-height: 20px;
    margin-top: 8px
}

.download-apps .apps-card .app-card .app-card__links {
    margin: 10px 0 0
}

.download-apps .apps-card .app-card .app-card__links li a {
    color: #0061d5;
    font-weight: 700;
    line-height: 28px
}

.latest-release-announcements .release-announcement-wrapper {
    display: flex;
    gap: 20px
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper {
    background-color: #fff;
    max-width: 50%;
    width: 100%;
    padding: 20px;
    border-radius: 10px
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper h3 {
    line-height: normal;
    font-size: 25px
}

.cta-banner .cta-content .cta-description,.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card {
    padding: 9px;
    border-radius: 10px;
    border: 1px solid #e1ecfa;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-heading a {
    color: #000;
    font-weight: 600;
    font-size: 16px
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-description {
    max-width: 70%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.admins-users-guide .wrapper .guide .guide-content .card ul li span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #151f26
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-description .post-card-heading>a {
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-description .post-card-creation {
    color: #767676;
    font-size: 12px;
    line-height: normal
}

.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-type-wrapper .post-type {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 6px 10px
}

.cta-banner {
    background-image: url(//theme.zdassets.com/theme_assets/88181/8e137b84eeed48bada7cfe9acea10f2c121ff206.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.cta-banner .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cta-banner .cta-content .cta-description {
    color: #fff;
    max-width: 700px
}

.cta-banner .cta-content .cta-description h2 {
    font-size: 35px
}

.cta-banner .cta-content .cta-description p {
    font-size: 20px;
    line-height: 30px
}

.cta-banner .cta-content .cta-button {
    margin-right: 151px
}

.cta-banner .cta-content .cta-button a {
    cursor: pointer;
    padding: 15px 40px;
    text-decoration: none
}

.cta-banner,section.top-tips {
    padding: 60px 0;
    margin: 0
}

.top-tips .top-tip-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    counter-reset: li
}

.top-tips .top-tip-cards .top-tip-card {
    padding: 30px 20px;
    border-radius: 10px;
    max-width: calc((100% - 60px)/3);
    position: relative;
    z-index: 1
}

.top-tips .top-tip-cards .top-tip-card:before {
    counter-increment: li;
    content: counter(li,decimal-leading-zero);
    color: rgba(221,221,221,.3);
    margin-right: .25em;
    position: absolute;
    left: 2px;
    top: 0;
    display: inline-block;
    font-size: 120px;
    font-weight: 700;
    line-height: 90px;
    margin-left: 2px;
    z-index: -1
}

.top-tips .top-tip-cards .top-tip-card.bg-green-1:before {
    color: #e9f8f2
}

.top-tips .top-tip-cards .top-tip-card.bg-red:before {
    color: #fdebee
}

.top-tips .top-tip-cards .top-tip-card.bg-purple-1:before {
    color: #f5ebfd
}

.top-tips .top-tip-cards .top-tip-card .top-tip-card-content .top-tip-heading {
    font-size: 20px;
    line-height: 32px
}

.top-tips .top-tip-cards .top-tip-card .top-tip-card-content .top-tip-description {
    color: #767676;
    margin-top: 4px
}

.top-tips .top-tip-cards .top-tip-card .link-learn-more {
    color: #0061d5;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    line-height: 16px;
    position: relative;
    text-decoration: none
}

.top-tips .top-tip-cards .top-tip-card .link-learn-more::after,.underline-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0061d5;
    transition: width 300ms ease-in-out
}

.admins-users-guide .wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.admins-users-guide .wrapper .guide {
    max-width: calc((100% - 20px)/2);
    width: 100%
}

.admins-users-guide h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    color: #151f26
}

.admins-users-guide .wrapper .guide h3>a {
    text-decoration: none;
    color: #000
}

.admins-users-guide .wrapper .guide .guide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px
}

.admins-users-guide .wrapper .guide .guide-content .card {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px
}

.admins-users-guide .wrapper .guide .guide-content .card h3 {
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.admins-users-guide .wrapper .guide .guide-content .card ul {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.admins-users-guide .wrapper .guide .guide-content .card ul li {
    border-radius: 10px;
    border: 1px solid var(--e-1-ecfa, #e1ecfa);
    width: 100%;
    padding: 11px 19px;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    transition: background-color .25s ease-in-out
}

.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Rectangle,.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Subtract_2,.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Vector {
    fill: #fff;
    fill-opacity: .4
}

.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Subtract,.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Vector-1,.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Vector-2,.admins-users-guide .wrapper .guide .guide-content .card ul li:hover>a>svg #Vector-3,.footer-2023 footer .social-media-buttons>li:hover a svg .vector-1,footer .social-media-buttons>li:hover a svg .vector-2 {
    fill: #fff
}

.admins-users-guide .wrapper .guide .guide-content .card ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px
}

.admins-users-guide .wrapper .guide .guide-content .card ul li a svg {
    display: inline-block;
    height: 30px;
    width: 30px
}

.integration-page-2023 .btn,.new-homepage-2023 .btn {
    padding: 20px 40px;
    background-color: #2486fc;
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 16px;
    line-height: 16px
}

.new-homepage-2023 .btn:hover,.new-homepage-2023 .hero-banner .banner-wrapper .search-container search::after:hover {
    background-color: #0061d5
}

.new-homepage-2023 .overlay-loader,.new-homepage-2023 div .overlay-loader,.new-homepage-2023 section .overlay-loader {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.8);
    z-index: 999
}

.new-homepage-2023 div .overlay-loader,.new-homepage-2023 section .overlay-loader {
    position: absolute
}

.new-homepage-2023 div.overlay-loader-main,.new-homepage-2023 section.overlay-loader-main {
    min-height: 500px;
    position: relative
}

.new-homepage-2023 div.overlay-loader-main .overlay-loader,.new-homepage-2023 section.overlay-loader-main .overlay-loader {
    display: block
}

.new-homepage-2023 #drift-frame-controller {
    display: none!important
}

#PA_block,#RN_block,.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-type-wrapper,.recent-conversations {
    position: relative
}

.new-homepage-2023 .search,.search_form.answers:not(.sub-nav .search_form.answers) {
    width: 100%
}

.new-homepage-2023 .products-listing .cards .card.box-360002795174:hover {
    background-color: #26c281
}

.new-homepage-2023 .products-listing .cards .card.box-19978018002451:hover {
    background-color: #5ebe86
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container input::placeholder {
    color: #8ea6b2
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container .yxt-SearchBar-container {
    border: 0;
    background-color: transparent
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container input#yxt-SearchBar-input--search-bar {
    color: #8ea6b2;
    padding: 15px 20px;
    font-size: 16px;
    background-color: #fff;
    border: 0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    width: 100%;
    line-height: 24px;
    margin-right: -4px
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container button.js-yext-submit.yxt-SearchBar-button {
    padding: 18px 40px;
    background-color: #2486fc;
    color: #fff;
    border: 0;
    font-size: 16px;
    line-height: 16px;
    border-radius: 0
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container button.js-yext-submit.yxt-SearchBar-button:after {
    content: "Search";
    margin-left: 10px
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container button.js-yext-submit.yxt-SearchBar-button:hover {
    cursor: pointer;
    background-color: #0061d5
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container input#query {
    background-color: #fff;
    color: #8ea6b2;
    padding: 25.5px 20px;
    width: calc(100% - 60px);
    border-radius: 0 6px 6px 0;
    position: relative;
    left: 60px;
    max-width: 100%
}

.new-homepage-2023 .hero-banner .banner-wrapper .search.active input#query {
    left: 0
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container .search-submit,.new-homepage-2023 .search::before {
    background-color: #2486fc;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    border-radius: 6px 0 0 6px;
    width: 100%;
    text-align: center;
    margin: 0;
    border: 0
}

.new-homepage-2023 .search::before {
    max-width: 60px;
    height: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.new-homepage-2023 .search.active::before {
    content: unset!important
}

.new-homepage-2023 .hero-banner .banner-wrapper .search-container .search-submit {
    order: -1;
    position: relative;
    padding: 10px;
    max-width: 154px;
    height: 53px;
    z-index: 2
}

.underline-link:hover {
    transition: all .25s ease
}

.underline-link:hover::after {
    width: 100%
}

@media screen and (max-width:1280px) {
    .cta-banner .cta-content .cta-button {
        margin-right: 0
    }
}

@media screen and (max-width:991px) {
    .products-listing .cards .card {
        max-width: 20%
    }

    .download-apps .apps-card .app-card .app-card__links li a {
        font-size: 14px
    }

    .cta-banner {
        background-position: right
    }

    .cta-banner .cta-content {
        flex-direction: column;
        gap: 30px
    }
}

@media screen and (max-width:768px) {
    h1 {
        line-height: 34px
    }

    h1,h2 {
        font-size: 28px
    }

    .new-homepage-2023 .hero-banner .banner-wrapper .search-container form label .search-input {
        padding: 7px 10px;
        font-size: 10px
    }

    .new-homepage-2023 .hero-banner .banner-wrapper .search-container form .btn-search {
        padding: 12px 15px;
        font-size: 12px
    }

    .products-listing .cards .card {
        max-width: 33.3333333333%
    }

    .products-listing .cards .card:hover {
        transform: scale(1.05)
    }

    .recent-conversations .recent-articles .recent-article .recent-article-description p {
        -webkit-line-clamp: 3
    }

    .recent-conversations .recent-articles .recent-article .article-engagement {
        flex-wrap: wrap;
        gap: 0
    }

    .recent-conversations .recent-articles .recent-article .article-engagement .engagement p {
        font-size: 10px
    }

    .recent-conversations .recent-articles .recent-article .article-engagement .engagement img {
        height: 15px;
        width: 15px
    }

    .recent-conversations .recent-articles .recent-article .article-engagement .engagement {
        border: 0;
        padding-left: 0
    }

    .download-apps .apps-card .app-card {
        max-width: calc((100% - 60px)/2)
    }

    .latest-release-announcements .release-announcement-wrapper {
        flex-direction: column
    }

    .latest-release-announcements .release-announcement-wrapper .post-cards-wrapper {
        max-width: 100%
    }

    .cta-banner .cta-content .cta-description h2 {
        font-size: 20px;
        line-height: 30px
    }

    .cta-banner .cta-content .cta-description p {
        font-size: 16px;
        margin-top: 20px;
        line-height: 26px
    }

    .cta-banner .cta-content .cta-button a {
        padding: 15px 25px;
        font-size: 14px
    }

    .top-tips .top-tip-cards .top-tip-card {
        max-width: calc((100% - 30px)/2)
    }

    .admins-users-guide .wrapper .guide {
        max-width: 100%
    }

    .box-revamp h1,.box-revamp h2 {
        font-size: 36px;
        line-height: 1.2
    }

    .box-revamp h2 {
        font-size: 28px
    }
}

@media screen and (max-width:575px) {
    .box-revamp h1 {
        font-size: 36px;
        line-height: 1.2
    }

    .box-revamp h2 {
        font-size: 26px
    }

    .new-homepage-2023 .hero-banner .banner-wrapper .search-container input#yxt-SearchBar-input--search-bar {
        padding: 10px 12px;
        font-size: 14px
    }

    .new-homepage-2023 .hero-banner .banner-wrapper .search-container button.js-yext-submit.yxt-SearchBar-button {
        padding: 13px 12px;
        font-size: 14px
    }

    .products-listing .cards .card {
        max-width: 50%
    }

    .recent-conversations .recent-articles .recent-article .pin-icon-wrapper {
        width: 14px;
        height: 14px
    }

    .recent-conversations .recent-articles .recent-article .recent-article-description p {
        font-size: 12px
    }

    .recent-conversations .recent-articles .recent-article .recent-article-meta-data .article-meta-data {
        font-size: 10px;
        padding: 0 10px
    }

    .download-apps .apps-card .app-card,.latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-description,.top-tips .top-tip-cards .top-tip-card {
        max-width: 100%
    }

    .latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards {
        gap: 15px
    }

    .latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card {
        flex-wrap: wrap
    }

    .latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-description .post-card-heading>a {
        -webkit-line-clamp: 3
    }

    .latest-release-announcements .release-announcement-wrapper .post-cards-wrapper .post-cards .post-card .post-card-type-wrapper {
        margin-top: 8px
    }

    .admins-users-guide .wrapper .guide .guide-content .card h3 {
        font-size: 20px
    }

    .admins-users-guide .wrapper .guide .guide-content .card ul li a {
        height: 20px
    }

    .admins-users-guide .wrapper .guide .guide-content .card ul li a svg {
        height: 20px;
        width: 20px
    }

    .admins-users-guide .wrapper .guide .guide-content .card ul li span {
        font-size: 15px
    }
}

.product-page-2023 {
    background-color: #fff
}

.home-widget {
    display: flex;
    gap: 8px
}

.home-widget-wrapper {
    display: flex;
    align-items: center
}

.product-page-widget {
    padding: 20px 0
}

.product-documentation {
    background-color: #f5f9fd;
    padding-top: 60px
}

.sub-nav .breadcrumbs li a {
    text-decoration: none;
    color: #1f73b7;
    font-weight: 700;
    text-transform: capitalize
}

.sub-nav .breadcrumbs li a:active {
    color: #1f73b7
}

.sub-nav .breadcrumbs li:first-child::before {
    content: url(//theme.zdassets.com/theme_assets/88181/c4a148d9fa30b7acf2277f9313bde85bed544a39.svg);
    display: inline-block
}

.sub-nav .breadcrumbs li:first-child a {
    margin-left: 5px
}

.sub-nav .breadcrumbs li:last-child a {
    text-transform: capitalize;
    color: #767676;
    font-weight: 700;
    text-decoration: none
}

.sub-nav .breadcrumbs li:last-child a:active {
    color: #767676
}

.sub-nav .breadcrumbs li+li::before {
    content: "●";
    display: inline-block;
    color: #8ea6b2;
    font-size: 10px;
    vertical-align: middle;
    line-height: normal;
    margin-top: -3px
}

.product-wrapper {
    display: flex;
    align-items: center;
    gap: 10px
}

.product-banner {
    background-color: #f5f9fd
}

.box-drive span,.home-widget span {
    text-transform: capitalize;
    line-height: 16px
}

.home-widget span {
    color: #0061d5;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700
}

.box-drive span {
    color: #767676
}

.product-page-heading h1 {
    font-weight: 700;
    padding-top: 30px;
    text-align: center
}

.box-drive-btn {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.box-btn,.box-drive span {
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700
}

.box-btn {
    padding: 15px 25px;
    background-color: #2486fc;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    line-height: 18px
}

.box-btn:focus {
    text-decoration: none
}

.box-btn:hover,.card-list:hover {
    cursor: pointer;
    color: #fff;
    background-color: #0061d5;
    text-decoration: none
}

.product-page-description p {
    color: #767676;
    text-align: center;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px
}

.links-wrapper {
    padding: 10px 0 16px
}

.links-wrapper a {
    color: #0061d5;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px
}

.integration-links-wrapper a span,.links-wrapper a span {
    padding-left: 4px
}

.product-card-wrapper {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.product-docs-card {
    text-align: left;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    width: calc(33% - 48px/3);
    margin: 0
}

@media screen and (max-width:767px) {
    .product-docs-card {
        width: 100%
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .product-docs-card {
        width: calc(50% - 48px/2)
    }
}

@media screen and (min-width:992px) {
    .product-docs-card {
        width: calc(33% - 60px/3)
    }
}

.product-docs-card li:last-child .card-list {
    margin-bottom: 0
}

.card-list {
    display: block;
    color: #151f26;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
    background: rgb(229 239 250/.4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width:320px) and (max-width:767px) {
    .troubleshooting-box a {
        font-size: 18px
    }
}

.recent-conversations.community {
    background-color: #e5effa
}

.education-card {
    background-color: #f5f9fd;
    padding: 60px 0
}

.education-card-heading {
    padding-bottom: 20px
}

.edu-content-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap
}

.edu-user-heading .user-content,.resources-heading h2 {
    color: #151f26;
    font-family: Lato;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.resources-heading h2 {
    color: #fff;
    text-align: center;
    font-size: 36px;
    line-height: 48px
}

.edu-admin-wrapper,.edu-user-wrapper {
    width: calc(50% - 30px)
}

@media screen and (max-width:991px) {
    .edu-admin-wrapper,.edu-user-wrapper {
        width: 100%
    }
}

.edu-admin-heading,.edu-user-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
    gap: 30px
}

.admin-view-all a,.course-card .course-title a,.course-card .course-title h4,.edu-view-all a {
    font-family: Lato;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px
}

.user-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.course-card {
    position: relative
}

@media screen and (min-width:992px) {
    .edu-admin-wrapper.full-width,.edu-user-wrapper.full-width {
        width: 100%
    }

    .edu-admin-wrapper.full-width .course-card,.edu-user-wrapper.full-width .course-card {
        max-width: 290px
    }

    .user-cards-wrapper {
        justify-content: flex-start
    }

    .edu-admin-wrapper.full-width .user-cards-wrapper,.edu-user-wrapper.full-width .user-cards-wrapper {
        justify-content: center
    }
}

@media screen and (max-width:575px) {
    .course-card {
        max-width: calc(100% - 10px)
    }
}

.course-card iframe {
    width: 100%;
    border-radius: 10px;
    border: 0
}

.course-card .course-title,.roundtable-content img {
    width: 100%
}

.course-card .course-title a,.course-card .course-title h4 {
    color: #000;
    padding: 20px 0 10px
}

.resources {
    background: linear-gradient(180deg,#2486fc 0,#005bc9 100%)
}

.resources-wrapper {
    padding: 30px 0
}

.resources-heading {
    margin-bottom: 20px
}

@media screen and (min-width:320px) and (max-width:767px) {
    .resources-card svg {
        width: 45px
    }
}

@media screen and (max-width:767px) {
    .resources-card span {
        font-size: 18px
    }
}

@media screen and (max-width:991px) {
    .resources-card span {
        font-size: 20px
    }
}

@media screen and (min-width:320px) and (max-width:574px) {
    .resources-card {
        padding: 15px;
        max-width: 400px;
        align-items: center;
        width: 100%
    }
}

@media screen and (min-width:575px) and (max-width:767px) {
    .resources-card {
        padding: 15px;
        align-items: center;
        width: calc(100% - 29px/2);
        max-width: 298px
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .resources-cards-wrapper {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
        flex-wrap: nowrap
    }

    .resources-card {
        padding: 15px;
        max-width: 285px;
        align-items: center;
        width: calc(100% - 29px/3)
    }
}

.resources-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 15px
}

@media screen and (min-width:767px) and (max-width:1199px) {
    .resources-cards-wrapper {
        gap: 15px;
        flex-wrap: initial
    }
}

.roundtable-card-date .roundtable-date,.roundtable-title span {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.roundtable-title span {
    color: var(--151F26, #151f26);
    font-size: 20px;
    padding: 20px 0 10px
}

.roundtable-date-place span,.roundtable-desc p {
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

.roundtable-desc p {
    width: 100%;
    max-width: 580px;
    color: #767676
}

.roundtable-date-place span {
    color: #979797;
    padding: 20px 0
}

.roundtable-heading-left {
    padding-bottom: 20px
}

.roundtable-card-date .roundtable-date {
    color: #0061d5;
    text-align: center;
    font-size: 30px;
    border-bottom: 1px solid rgba(0,0,0,.1)
}

.roundtable-heading-left h2,.roundtable-heading-right h2 {
    color: #151f26;
    font-family: Lato;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .roundtable-heading-left h2,.roundtable-heading-right h2 {
        font-size: 32px
    }
}

@media screen and (min-width:576px) and (max-width:767px) {
    .roundtable-heading-left h2,.roundtable-heading-right h2 {
        font-size: 28px
    }
}

@media screen and (min-width:320px) and (max-width:575px) {
    .roundtable-heading-left h2,.roundtable-heading-right h2 {
        font-size: 24px
    }

    .roundtable-card-title {
        font-size: 18px
    }

    .roundtable-date {
        font-size: 22px
    }
}

.integration-home-widget span a,.integration-links-wrapper a:hover {
    text-decoration: none
}

.product-roundtable-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center
}

.roundtable-event-left,.roundtable-event-right {
    width: 50%
}

@media screen and (max-width:768px) {
    .product-roundtable-wrapper {
        flex-wrap: wrap
    }

    .roundtable-event-left,.roundtable-event-right {
        width: 100%
    }
}

.roundtable-card-date .roundtable-month {
    color: #767676;
    font-family: Lato;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    text-align: center;
    padding-top: 4px
}

.roundtable-card-content .roundtable-card-title {
    color: #151f26;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 10px
}

.roundtable-card-content .roundtable-card-link {
    color: #0061d5;
    text-align: left;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    display: block
}

.roundtable-card-warpper {
    padding: 19px 20px 18px 23px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #f5f6f8;
    margin-bottom: 20px
}

.integration-docs-card li:last-child .integration-card-list,.roundtable-card-warpper:last-child {
    margin-bottom: 0
}

.roundtable-card-content {
    padding-left: 20px
}

.roundtable-card-date {
    border-right: 1px solid rgba(0,0,0,.1);
    padding-right: 22px
}

.roundtable-heading-right h2 {
    padding-bottom: 20px
}

.roundtable-footer-content {
    background: #f5f6f8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0 20px
}

.roundtable-content {
    display: flex
}

.box-revamp .product-roundtable {
    background-color: #fff
}

.integration-page-widget {
    padding: 20px 0;
    border-bottom: 1px solid rgba(142,166,178,.3);
    margin: 0
}

.integration-wrapper {
    display: flex;
    align-items: center;
    gap: 10px
}

.integration-home-widget {
    display: flex;
    gap: 8px
}

.integration-home-widget-wrapper {
    display: flex;
    align-items: center
}

.integration-box-drive span {
    text-transform: capitalize;
    color: #767676;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px
}

.integration-home-widget span {
    text-transform: capitalize
}

.integration-documentation {
    background-color: #f5f9fd;
    padding-top: 60px
}

.integration-education-card {
    background-color: #f5f9fd;
    padding: 60px 0
}

.integration-banner {
    background-color: #f5f9fd
}

.integration-page-heading h1 {
    font-weight: 700;
    padding-top: 30px
}

.integration-box-drive-btn {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.integration-partner-box-btn {
    padding: 15px 40px;
    background-color: #2486fc;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px
}

.integration-card-list:hover,.integration-partner-box-btn:hover,.troubleshooting-box a:hover {
    cursor: pointer;
    color: #fff;
    background-color: #0061d5;
    text-decoration: none
}

.integration-page-description p {
    color: #222;
    text-align: center;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px
}

.integration-links-wrapper {
    padding: 10px 0 16px
}

.integration-home-widget span,.integration-links-wrapper a {
    color: #0061d5;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px
}

.card-heading,.integration-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.integration-card-wrapper {
    gap: 20px
}

.card-heading {
    color: #151f26;
    font-family: Lato;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
    align-items: center;
    gap: 8px
}

.integration-docs-card {
    text-align: left;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    width: calc(25% - 60px/4);
    margin: 0
}

@media screen and (max-width:767px) {
    .integration-docs-card {
        width: 100%
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .integration-docs-card {
        width: calc(50% - 48px/2)
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .integration-docs-card {
        width: calc(33% - 42px/3)
    }
}

.integration-card-list,.troubleshooting-box a {
    color: #151f26;
    text-align: center;
    font-family: Lato;
    border-radius: 10px;
    display: block
}

.integration-card-list {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding: 10px;
    margin-bottom: 10px;
    background: rgb(229 239 250/.4)
}

.troubleshooting-box {
    margin-top: 30px;
    border-radius: 10px;
    border: 1px solid #e1ecfa;
    background: #fff
}

.troubleshooting-box a {
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
    padding: 15px 0;
    text-decoration: none
}

.integration-education-card-heading {
    padding-bottom: 20px
}

.integration-edu-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap
}

.admin-content,.course-desc p,.integration-edu-user-heading .user-content {
    color: #151f26;
    font-family: Lato;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.integration-edu-admin-wrapper,.integration-edu-user-wrapper {
    width: calc(50% - 30px)
}

@media screen and (max-width:991px) {
    .integration-edu-admin-wrapper,.integration-edu-user-wrapper {
        width: 100%
    }
}

.integration-edu-admin-heading,.integration-edu-user-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 10px
}

.integration-admin-view-all a,.integration-edu-view-all a {
    font-family: Lato;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px
}

.integration-user-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start
}

.course-card {
    padding: 10px 10px 20px;
    border-radius: 10px;
    background: #fff;
    width: 100%;
    max-width: calc(50% - 10px)
}

@media screen and (max-width:575px) {
    .course-card {
        max-width: calc(100% - 10px)
    }

    .integration-user-cards-wrapper {
        justify-content: center
    }
}

.course-card img {
    border-radius: 10px;
    width: 100%
}

.course-desc,.course-tilte,.integration-roundtable-content img,section.topics-list-wrapper .featured_wrapper a {
    width: 100%
}

.course-desc p {
    overflow: hidden;
    color: #767676;
    font-size: 12px;
    font-weight: 400;
    display: -webkit-box;
    line-height: 20px;
    width: 100%;
    -webkit-line-clamp: 3;
    height: 60px;
    text-overflow: ellipsis
}

.course-tilte a,.integration-resources-heading h2,.resources-card span {
    font-family: Lato;
    font-style: normal;
    font-weight: 700
}

.course-tilte a {
    color: #000;
    font-size: 16px;
    line-height: 16px;
    padding: 20px 0 10px;
    text-decoration: none
}

.integration-resources {
    background: linear-gradient(180deg,#2486fc 0,#005bc9 100%)
}

.integeration-page-2023 section,.integration-resources-wrapper,.product-page-2023 section {
    padding: 30px 0
}

.integration-resources-heading h2 {
    color: #fff;
    text-align: center;
    font-size: 36px;
    line-height: 48px
}

.resources-card {
    border-radius: 10px;
    border-right: 1px solid #e1ecfa;
    border-bottom: 1px solid #e1ecfa;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
    max-width: 400px;
    width: 100%
}

.resources-card:hover {
    text-decoration: none;
    cursor: pointer
}

.resources-card span {
    color: var(--151F26, #151f26);
    font-size: 25px;
    line-height: normal;
    padding-left: 20px
}

@media screen and (max-width:767px) {
    .resources-card span {
        font-size: 18px
    }
}

@media screen and (max-width:991px) {
    .resources-card span {
        font-size: 20px
    }
}

.integration-resources-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 15px
}

.integration-roundtable-title span {
    color: var(--151F26, #151f26);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 0 10px
}

.integration-roundtable-date-place span,.integration-roundtable-desc p {
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px
}

.integration-roundtable-desc p {
    width: 100%;
    max-width: 580px;
    color: #767676
}

.integration-roundtable-date-place span {
    color: #979797;
    padding: 20px 0
}

.integration-roundtable-heading-left {
    padding-bottom: 20px
}

.integration-roundtable-heading-left h2,.integration-roundtable-heading-right h2 {
    color: #151f26;
    font-family: Lato;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .integration-roundtable-heading-left h2,.integration-roundtable-heading-right h2 {
        font-size: 32px
    }
}

.integration-roundtable-wrapper {
    display: flex;
    gap: 20px;
    padding-top: 60px;
    justify-content: center
}

.integration-roundtable-event-left,.integration-roundtable-event-right {
    width: 50%
}

@media screen and (max-width:768px) {
    .integration-roundtable-wrapper {
        flex-wrap: wrap
    }

    .integration-roundtable-event-left,.integration-roundtable-event-right {
        width: 100%
    }
}

.integration-roundtable-card-date .roundtable-date {
    color: #0061d5;
    text-align: center;
    font-family: Lato;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-bottom: 1px solid rgba(0,0,0,.1)
}

.integration-roundtable-card-date .roundtable-month {
    color: #767676;
    font-family: Lato;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    text-align: center;
    padding-top: 4px
}

.integration-roundtable-card-content .integration-roundtable-card-title {
    color: #151f26;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 10px
}

.integration-roundtable-card-content .roundtable-card-link {
    color: #0061d5;
    text-align: left;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none;
    display: block
}

.integration-roundtable-card-warpper {
    padding: 19px 20px 18px 23px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #f5f6f8;
    margin-bottom: 20px
}

.integration-roundtable-card-warpper:last-child {
    margin-bottom: 0
}

.integration-roundtable-card-content {
    padding-left: 20px
}

.integration-roundtable-card-date {
    border-right: 1px solid rgba(0,0,0,.1);
    padding-right: 22px
}

.integration-roundtable-heading-right h2 {
    padding-bottom: 20px
}

.integration-roundtable-footer-content {
    background: #f5f6f8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0 20px
}

.integration-roundtable-content {
    display: flex
}

.box-revamp .integration-roundtable {
    background-color: #fff;
    padding-bottom: 60px
}

.join-link,.product-guidance-btn {
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700
}

.join-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0061d5;
    text-align: right;
    line-height: 16px;
    padding-bottom: 30px
}

.join-link:hover {
    text-decoration: none
}

.product-guidance-btn {
    padding: 15px 50px;
    background-color: #2486fc;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    line-height: 18px
}

.product-guidance-btn:hover {
    cursor: pointer;
    text-decoration: none
}

.product-guidance-services {
    background: linear-gradient(180deg,#2486fc 0,#005bc9 100%)
}

.product-guidance-services-wrapper {
    padding: 60px 0
}

.product-guidance-services-heading .product-guidance-services-title {
    color: var(--ffffff, #fff);
    text-align: center;
    font-family: Lato;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px
}

.product-guidance-services-heading .product-guidance-services-desc {
    color: #fff;
    text-align: center;
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    padding: 20px 15px 30px
}

.blue-background {
    background-color: #f5f9fd
}

.white-background {
    background-color: #fff
}

.section-classes {
    padding: 60px 0
}

.integeration-page-2023 .cards,.product-page-2023 .cards {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.integeration-page-2023 .card,.product-page-2023 .card {
    border-radius: 10px;
    display: flex;
    flex-direction: column
}

.integeration-page-2023 .card .card-image img,.product-page-2023 .card .card-image img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    object-position: top
}

.integeration-page-2023 .card .card-content,.product-page-2023 .card .card-content {
    padding: 0 20px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.integeration-page-2023 .card .card-content .card-heading,.product-page-2023 .card .card-content .card-heading {
    color: #151f26;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 20px
}

.integeration-page-2023 .card .card-content .card-description,.product-page-2023 .card .card-content .card-description {
    font-size: 20px;
    line-height: 32px;
    margin-top: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.more-link {
    font-weight: 700;
    color: #0061d5;
    line-height: 16px;
    margin-top: 10px
}

.more-link,.more-link .underline-link:hover {
    text-decoration: none
}

.card-background-gray {
    background-color: #f5f6f8
}

.card-background-white {
    background-color: #fff
}

.icon.arrow-icon {
    height: 8px;
    width: 12px
}

.section-list #see-all-sections-trigger,.section-list i.section-empty,svg.hidden {
    display: none
}

.box-guidance-banner .wrapper .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0 0;
    justify-content: center
}

.box-guidance-banner .wrapper .service-cards .service-card {
    padding: 20px;
    max-width: calc((100% - 60px)/3);
    border-radius: 10px;
    background: #f5f6f8;
    text-align: center
}

@media screen and (max-width:768px) {
    .box-guidance-banner .wrapper .service-cards .service-card {
        max-width: calc((100% - 60px)/2)
    }
}

@media screen and (max-width:575px) {
    .box-guidance-banner .wrapper .service-cards .service-card {
        max-width: 100%
    }
}

.box-guidance-banner .wrapper .service-cards .service-card .service-icon-heading {
    font-size: 24px;
    line-height: 32px;
    margin-top: 14px
}

.box-guidance-banner .wrapper .service-cards .service-card .service-icon-description {
    font-size: 20px;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
    color: #767676
}

.box-guidance-banner .wrapper .service-cards .service-card .link-learn-more {
    color: #0061d5;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    line-height: 16px;
    position: relative;
    text-decoration: none
}

.box-on-demand a,.customer-stories .more-link a,.demos a {
    text-decoration: none;
    color: #0061d5;
    font-weight: 700;
    margin-top: auto;
    position: relative
}

.customer-stories .cards {
    gap: 30px
}

.customer-stories .card {
    border-radius: 10px;
    max-width: calc((100% - 60px)/3)
}

.box-on-demand .card,.demos .card {
    border-radius: 10px
}

@media screen and (max-width:768px) {
    .box-on-demand .card,.customer-stories .card,.demos .card {
        max-width: calc((100% - 60px)/2)
    }
}

@media screen and (max-width:575px) {
    .box-on-demand .card,.customer-stories .card,.demos .card {
        max-width: 100%;
        width: 100%
    }
}

.customer-stories .card .card-image {
    max-height: 220px;
    height: 100%
}

.customer-stories .card .card-content .card-description {
    color: #767676
}

.customer-stories a.watch-link.more-link {
    position: relative;
    text-decoration: none;
    margin-top: auto;
    padding-top: 20px
}

@media screen and (max-width:575px) {
    .box-on-demand .card,.customer-stories .card,.demos .card {
        height: auto
    }
}

.box-on-demand .cards,.demos .cards {
    gap: 20px
}

.box-on-demand .card,.demos .card {
    max-width: calc((100% - 60px)/4)
}

@media screen and (max-width:991px) {
    .box-on-demand .card,.demos .card {
        max-width: calc((100% - 60px)/2)
    }
}

@media screen and (max-width:575px) {
    .box-on-demand .card,.demos .card {
        max-width: 100%
    }
}

.box-on-demand .card .card-image,.demos .card .card-image {
    max-height: 180px
}

.box-on-demand .card .card-description {
    margin-top: 10px;
    -webkit-line-clamp: 9;
    font-weight: 400;
    line-height: 22px;
    color: #767676;
    font-size: 16px;
    margin-bottom: 20px
}

.demos .card {
    text-align: center
}

.demos .card .card-heading {
    color: #8ea6b2;
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.demos .card .card-description {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #151f26
}

.demos .card .card-content {
    align-items: center
}

.demos .card .card-image {
    max-width: 100%;
    height: 180px
}

.demos .card .watch-link.more-link {
    margin-top: 20px
}

.box-revamp .latest-release-announcements {
    margin-bottom: 0;
    padding-bottom: 60px
}

.label-undefined,
.products-listing .cards .card.box-21358356019347,
.products-listing .cards .card.box-21358357475731,
.products-listing .cards .card.box-21356689952531,
.products-listing .cards .card.box-21356761602963,
.products-listing .cards .card.box-21356747387027,
.products-listing .cards .card.box-21356747556755,
.products-listing .cards .card.box-21356747770771,
.products-listing .cards .card.box-21356762395539,
.products-listing .cards .card.box-26102544955027,
.label-NA {
    display: none !important;
}

.label-Coming.soon span{
  background-color: #0061D5;
}
.label-Rolling.out span{
  background-color: #F1811A;
}
.label-Launched span{
  background-color: #26C281;
}
.label-Deprecation span,
.label-Deprecated span{
  background-color: #222222;
}
.label-Announcements span{
  background-color: #9F3FED;
}
.label-Feature span{
  background-color: #9F3FED;
}
.label-Update span{
  background-color: #F5B31B;
}
.label-Private.beta span{
  background-color: #72848E;
}
.label-Public.beta span{
  background-color: #26C281;
}
.label-GA span{
  background-color: #0061D5;
}
.label-LIMITED.GA span,
.label-Limited.GA span{
  background-color: #003C84;
}
.label-PHASED.GA span,
.label-Phased.GA span{
  background-color: #2486FC;
}

/* header icon starts */
.icon-svg-21358356019347 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/48127031a7613d8214f1a9678805444cb608d6f2.svg)
}

.icon-svg-21358357475731 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/6b33cc3c9ab3b9de534f46db8eafabe61451ffed.svg)
}

.icon-svg-21356689952531,.icon-svg-21356725103763 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/06c5199d7eb05b08618bda32dc296e580aa63683.svg)
}

.icon-svg-21356685098899,.icon-svg-21356713045779 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/cc318f282c2bcc283d47c4009ccba9e691d6ca4b.svg)
}

.icon-svg-22012531180947 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/506dab10b4f31d4e2bcb3e93bc43440087114eb6.svg)
}

.icon-svg-21356718529939 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7072696b679f5dfffaf94b7735055784aae588d6.svg)
}

.icon-svg-21356742765843 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/670eb307834d11db979c91e9b61537bf24831cf2.svg)
}

.icon-svg-21356699973139,.icon-svg-21356707082387 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/a9e661b47e83a569cbb84184fa14d6d47e2a2bb3.svg)
}

.icon-svg-21356730826259 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/3bc8b18f2c46b5ef0b0da975668db012433a5d9c.svg)
}

.icon-svg-21356693663763,.icon-svg-21356734487443 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/23318e78b6e63520f0271524092b706c18f02ded.svg)
}

.icon-svg-21356700891283,.icon-svg-21356758455059 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/f02d857c93992b30c06ae1b860e84e0028a87498.svg)
}

.icon-svg-21356656348819,.icon-svg-21356758812563 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/8b33791a7b7422013d28459c443d2bade7a9ca29.svg)
}

.icon-svg-21356673831827,.icon-svg-21356759103507 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/556020f83c9708edfded60f060f6e9e3971cbe64.svg)
}

.icon-svg-21356656539283,.icon-svg-21356759774611 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7809464dc51690c74845210417f060d8b89736d7.svg)
}

.icon-svg-21356686408083,.icon-svg-21356760348691 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/08a6acae673e96f8818ce62aebb0239ea3e6a4df.svg)
}

.icon-svg-21356686495379,.icon-svg-21356750924563 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/5a3d645f400bfa8771c32c1f6d06e3440a0280f2.svg)
}

.icon-svg-21356657538323,.icon-svg-21356761602963 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/f628f21b18aa910425ef14eb98378816b4aa3998.svg)
}

.icon-svg-21356686851475 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/ed1422123e94c99d518270542e6fe338b5d400a7.svg)
}

.icon-svg-21356694850835 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/cc318f282c2bcc283d47c4009ccba9e691d6ca4b.svg)
}

.icon-svg-Accessibility {
    background-image: url(//theme.zdassets.com/theme_assets/88181/34ace7ea4dca2a49379e3b1e134c1d7d197b42eb.svg)
}

.icon-svg-Box-Consulting-Accelerator-Program {
    background-image: url(//theme.zdassets.com/theme_assets/88181/a9e661b47e83a569cbb84184fa14d6d47e2a2bb3.svg)
}

.icon-svg-20679327465235 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/30bd9fc2c35ecadb7ac819fb7dee5319c8df4274.svg)
}

.icon-svg-20679310941331 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/8bc007015dfe002dd023f7eb6f689d44394055a0.svg)
}

.icon-svg-21356298722835 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/ef0a7ed305139b8619d4a709572c914d402d176d.svg)
}

.icon-svg-21356277004563 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/69d948034d672edd6a77204ba51d151eea403612.svg)
}

.icon-svg-21356305970963 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/e0a53df9dcd2cb101924edaa4753d59dd501b5ff.svg)
}

.nav_communitysignup {
    background-image: url(//theme.zdassets.com/theme_assets/88181/0b66945266f977d17c20d91ea2a5407e4b725b85.svg)
}

.nav_forums {
    background-image: url(//theme.zdassets.com/theme_assets/88181/48d3791b63e99489bb8f2df71c6aa8d54474a91a.svg)
}

.nav_PlatformDevForums {
    background-image: url(//theme.zdassets.com/theme_assets/88181/6c8975c5dd70c1f20bebf37196eb40375b5c4692.svg)
}

.nav_supportForums {
    background-image: url(//theme.zdassets.com/theme_assets/88181/7b519e3747c017a5a98d3ff5e96afb815298e92f.svg)
}

.nav_promotion_faq {
    background-image: url(//theme.zdassets.com/theme_assets/88181/6e5360f796a61d05dbbbd1acc792be1d0e4a522c.svg)
}

.nav_support_contact {
    background-image: url(//theme.zdassets.com/theme_assets/88181/72de30192a5d4c91a3a066f741f946db439227f2.svg)
}

.icon-svg-20679289110803 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2dcb3866d66cedb8ff6092892d24eae8969d6295.svg)
}

.icon-svg-20679266842003 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/2d262b96049311e21765fbaa76ac1b9f68a4eb6e.svg)
}

.icon-svg-20679289148051 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/bf9b9253e24fc3d452bea8b6603a6468155fa326.svg)
}

.icon-svg-20679252365331 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/be0d43cc9ca3f4d8814289085501f6630e42eede.svg)
}

.icon-svg-21356747770771 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/34ace7ea4dca2a49379e3b1e134c1d7d197b42eb.svg)
}

.icon-svg-26102544955027 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/ee1f207aa1171fc5d5d17163816b84cf9c63a44c.png)
}

.icon-svg-20679188568211 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/f628f21b18aa910425ef14eb98378816b4aa3998.svg)
}

.icon-svg-21356747556755 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/cc318f282c2bcc283d47c4009ccba9e691d6ca4b.svg)
}

.icon-svg-21356747387027 {
    background-image: url(//theme.zdassets.com/theme_assets/88181/6f67626dc323e59506766caaa817694b0b21ac8a.svg)
}
/* header icon ends */

.messageCard .label {
    background-color: #9aa0a3
}

/*  Hiding integeration menu  */
header.header-2023 .navbar .nav-item.no-icon .dropdown-icon {
    background-image: unset;
    padding-left: 0
}

.overlay-loader .loading-logo-spinner {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center
}

.overlay-loader .loading-logo-spinner .loading-lines {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 10;
    top: 180px
}

.overlay-loader .loading-logo-spinner .loading-lines .loading-line {
    width: 50px;
    height: 5px;
    position: absolute;
    clip: rect(0,0,20px,0)
}

.overlay-loader .loading-logo-spinner .loading-lines .loading-line.line-1 {
    top: 0;
    animation: slide 1.25s ease-in-out 0s infinite;
    background-color: #9725dd
}

.overlay-loader .loading-logo-spinner .loading-lines .loading-line.line-2 {
    top: 15px;
    animation: slide 1.25s ease-in-out .05s infinite;
    background-color: #2596c9
}

.overlay-loader .loading-logo-spinner .loading-lines .loading-line.line-3 {
    top: 30px;
    animation: slide 1.25s ease-in-out .1s infinite;
    background-color: #00c8c0
}

.box-revamp.overlay-loader:after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9
}

.noPageFound {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center
}

/* footer section */
.footer-2023 footer {
    background-color: #222;
    color: #8ea6b2
}

.footer-2023 footer .wrapper {
    max-width: 1440px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%
}

.footer-2023 footer hr {
    color: #fff;
    opacity: .1
}

.footer-2023 footer .social-media-buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0
}

@media screen and (max-width:768px) {
    .footer-2023 footer .social-media-buttons {
        justify-content: center
    }
}

.footer-2023 footer .social-media-buttons>li {
    border-left: 1px solid #464242;
    height: 100px;
    width: 100px
}

.footer-2023 footer .social-media-buttons>li>a {
    height: 100px;
    max-width: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-2023 footer .social-media-buttons>li:hover {
    cursor: pointer
}

.footer-2023 footer .social-media-buttons>li:last-child {
    border-right: 1px solid #464242
}

.footer-2023 footer .nav-footer-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 45px
}

.footer-2023 footer .nav-footer-listing li a {
    color: #8ea7b2
}

.footer-2023 footer .footer-language-selector {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 20px 30px 40px 0
}

@media screen and (max-width:991px) {
    .footer-2023 footer .footer-language-selector {
        padding-right: 0
    }
}

.footer-2023 footer .footer-language-selector .dropdown-toggle {
    background-color: transparent;
    color: #8ea6b2;
    border: 0;
    padding: 10px;
    font-size: 14px;
    display: inline-block;
    width: auto;
    cursor: pointer
}
/* footer section ends*/

.integration-docs-card .card-heading {
    font-size: 20px;
}