.layout-recommendBtn a {
    padding: 15px 25px;
    background: #252525 url(images/rec-panel-close.svg) no-repeat 15px center;
    background-size: 0 0;
    position: fixed;
    bottom: 40px;
    right: 70px;
    display: inline-block;
    border-radius: 25px;
    height: 50px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff!important;
    z-index: 1000;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -ms-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.layout-recommendPanel .close-btn {
    right : 10px;
    top: 10px;
    position: absolute;
}

.layout-recommendBtn a:hover {
    background: #bb2123;
    cursor: pointer
}

.layout-recommendBtn a.active {
    background: #bb2123 url(files/media/rec-panel-close.svg) no-repeat 15px center;
    background-size: 20px 20px;
    cursor: pointer;
    padding-left: 50px
}

.layout-recommendBtn a.wiggle {
    animation: wiggle 60s infinite
}

.layout-recommendBtn a.wiggle:hover {
    animation: none
}

.layout-recommendPanel {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 10000;
    bottom: 110px;
    right: -400px;
    opacity: 0;
    width: 360px;
    height: auto;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    -webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    -ms-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}
section.layout-recommendPanel{padding-bottom:0;}
.layout-recommendPanel.open {
    right: 10px;
    opacity: 1
}

.layout-recommendPanel .top-row {
    background-color: #bb2123;
    border-radius: 8px 8px 0 0;
    padding: 27px 20px 37px 20px;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -ms-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.layout-recommendPanel .top-row .head {
    font-size: 20px;
    color: #fff;
    text-align: center
}

.layout-recommendPanel .top-row .subhead {
    font-size: 14px;
    color: #fff;
    text-align: center
}

.layout-recommendPanel .mid-row {
    display: flex;
    flex-direction: column;
    margin-top: -10px;
    height: auto;
    -webkit-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    -ms-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .5s cubic-bezier(.4, 0, .2, 1);
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.layout-recommendPanel .mid-row .recCat {
    display: none;
    margin-bottom: 10px
}

.layout-recommendPanel .mid-row .recCat.active {
    display: block
}

.layout-recommendPanel .mid-row .eachArticle {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    border: 1px solid #dee3e7;
    margin: 0 20px 7px 20px;
    background-color: #fff;
    width: auto;
    height: auto
}

.layout-recommendPanel .mid-row .eachArticle .imgWrap {
    border-radius: 8px;
    overflow: hidden;
    width: 100px;
    height: 100%;
    min-height: 90px
}

.layout-recommendPanel .mid-row .eachArticle .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.layout-recommendPanel .mid-row .eachArticle .details {
    width: calc(100% - 100px);
    height: auto;
    padding: 7px 14px
}

.layout-recommendPanel .mid-row .eachArticle .details .tagline {
    display: flex;
    flex-direction: row;
    margin-bottom: 8px
}

.layout-recommendPanel .mid-row .eachArticle .details .tagline p {
    font-family: Optima;
    font-size: 11px;
    text-transform: uppercase;
    color: #666
}

.layout-recommendPanel .mid-row .eachArticle .details .tagline p.xxs {
    margin-bottom: 0
}

.layout-recommendPanel .mid-row .eachArticle .details .tagline p a {
    font-family: 'Optima Bold';
    color: #000
}

.layout-recommendPanel .mid-row .eachArticle .details .tagline p a:hover {
    opacity: .8
}

.layout-recommendPanel .mid-row .eachArticle .details .tagline .dot {
    margin: 5px 10px 4px 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #666
}

.layout-recommendPanel .mid-row .eachArticle .details p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px
}

.layout-recommendPanel .mid-row .eachArticle .details p a.articleTitle {
    color: #000
}

.layout-recommendPanel .mid-row .eachArticle .details p a.articleTitle:hover {
    opacity: .8
}

.layout-recommendPanel .bottom-row {
    background-color: #2e2e2e;
    border-radius: 8px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 10px 20px
}

.layout-recommendPanel .bottom-row .catBtn {
    padding: 10px 0 10px 0;
    text-transform: uppercase;
    color: #909090;
    font-family: Optima;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 3px solid #2e2e2e
}

.layout-recommendPanel .bottom-row .catBtn.active {
    color: #fff;
    border-bottom: 3px solid #c00
}

.layout-recommendPanel .bottom-row .catBtn:hover {
    color: #fff;
    cursor: pointer
}

.at-expanding-share-button[data-position=bottom-right] {
    bottom: 40px!important;
    right: 10px
}

.at-expanding-share-button {
    box-sizing: border-box;
    position: fixed;
    z-index: 9999
}

.at-expanding-share-button[data-position=bottom-right] {
    bottom: 10px;
    right: 10px
}

.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-bg,
.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-btn[data-name]:after,
.at-expanding-share-button[data-position=bottom-right] .at-icon-wrapper,
.at-expanding-share-button[data-position=bottom-right] [data-name]:after {
    float: right
}

.at-expanding-share-button[data-position=bottom-right] [data-name]:after {
    margin-right: 10px
}

.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-btn[data-name]:after {
    margin-right: 5px
}

.at-expanding-share-button[data-position=bottom-right] .at-icon-wrapper {
    margin-right: -3px
}

.at-expanding-share-button[data-position=bottom-left] {
    bottom: 10px;
    left: 10px
}

.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-bg,
.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-btn[data-name]:after,
.at-expanding-share-button[data-position=bottom-left] .at-icon-wrapper,
.at-expanding-share-button[data-position=bottom-left] [data-name]:after {
    float: left
}

.at-expanding-share-button[data-position=bottom-left] [data-name]:after {
    margin-left: 10px
}

.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-btn[data-name]:after {
    margin-left: 5px
}

.at-expanding-share-button *,
.at-expanding-share-button :after,
.at-expanding-share-button :before {
    box-sizing: border-box
}

.at-expanding-share-button .at-expanding-share-button-services-list {
    display: none;
    list-style: none;
    margin: 0 5px;
    overflow: visible;
    padding: 0
}

.at-expanding-share-button .at-expanding-share-button-services-list>li {
    display: block;
    height: 45px;
    position: relative;
    overflow: visible
}

.at-expanding-share-button .at-expanding-share-button-toggle-btn,
.at-expanding-share-button .at-share-btn {
    transition: .1s;
    text-decoration: none
}

.at-expanding-share-button .at-share-btn {
    display: block;
    height: 40px;
    padding: 0 3px 0 0
}

.at-expanding-share-button .at-expanding-share-button-toggle-btn {
    position: relative;
    overflow: auto
}

.at-expanding-share-button .at-expanding-share-button-toggle-btn.at-expanding-share-button-hidden[data-name]:after {
    display: none
}

.at-expanding-share-button .at-expanding-share-button-toggle-bg {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    border-radius: 50%;
    position: relative
}

.at-expanding-share-button .at-expanding-share-button-toggle-bg>span {
    background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%200%2032%2032%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Eshare%3C%2Ftitle%3E%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M26%2C13.4285714%20C26%2C13.6220248%2025.9293162%2C13.7894338%2025.7879464%2C13.9308036%20L20.0736607%2C19.6450893%20C19.932291%2C19.786459%2019.7648819%2C19.8571429%2019.5714286%2C19.8571429%20C19.3779752%2C19.8571429%2019.2105662%2C19.786459%2019.0691964%2C19.6450893%20C18.9278267%2C19.5037195%2018.8571429%2C19.3363105%2018.8571429%2C19.1428571%20L18.8571429%2C16.2857143%20L16.3571429%2C16.2857143%20C15.6279725%2C16.2857143%2014.9750773%2C16.3080355%2014.3984375%2C16.3526786%20C13.8217977%2C16.3973217%2013.2488868%2C16.477306%2012.6796875%2C16.5926339%20C12.1104882%2C16.7079619%2011.6157015%2C16.8660704%2011.1953125%2C17.0669643%20C10.7749235%2C17.2678581%2010.3824423%2C17.5264121%2010.0178571%2C17.8426339%20C9.65327199%2C18.1588557%209.35565592%2C18.534596%209.125%2C18.9698661%20C8.89434408%2C19.4051361%208.71391434%2C19.9203839%208.58370536%2C20.515625%20C8.45349637%2C21.1108661%208.38839286%2C21.7842224%208.38839286%2C22.5357143%20C8.38839286%2C22.9449425%208.40699386%2C23.4025272%208.44419643%2C23.9084821%20C8.44419643%2C23.9531252%208.45349693%2C24.0405499%208.47209821%2C24.1707589%20C8.4906995%2C24.3009679%208.5%2C24.3995532%208.5%2C24.4665179%20C8.5%2C24.5781256%208.46837829%2C24.6711306%208.40513393%2C24.7455357%20C8.34188956%2C24.8199408%208.25446484%2C24.8571429%208.14285714%2C24.8571429%20C8.02380893%2C24.8571429%207.9196433%2C24.7938994%207.83035714%2C24.6674107%20C7.77827355%2C24.6004461%207.72991094%2C24.5186017%207.68526786%2C24.421875%20C7.64062478%2C24.3251483%207.59040206%2C24.2135423%207.53459821%2C24.0870536%20C7.47879436%2C23.9605648%207.43973225%2C23.87128%207.41741071%2C23.8191964%20C6.47246551%2C21.6986501%206%2C20.0208395%206%2C18.7857143%20C6%2C17.3050521%206.19717065%2C16.0662252%206.59151786%2C15.0691964%20C7.79688103%2C12.0706695%2011.0520568%2C10.5714286%2016.3571429%2C10.5714286%20L18.8571429%2C10.5714286%20L18.8571429%2C7.71428571%20C18.8571429%2C7.52083237%2018.9278267%2C7.35342333%2019.0691964%2C7.21205357%20C19.2105662%2C7.07068382%2019.3779752%2C7%2019.5714286%2C7%20C19.7648819%2C7%2019.932291%2C7.07068382%2020.0736607%2C7.21205357%20L25.7879464%2C12.9263393%20C25.9293162%2C13.067709%2026%2C13.2351181%2026%2C13.4285714%20L26%2C13.4285714%20Z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform .4s ease;
    border-radius: 50%;
    display: block
}

.at-expanding-share-button .at-icon-wrapper {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px
}

.at-expanding-share-button .at-icon {
    display: inline-block;
    height: 34px;
    margin: 3px 0;
    vertical-align: top;
    width: 34px
}

.at-expanding-share-button [data-name]:after {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    transform: translate(0, -50%);
    transition: .4s;
    background-color: #fff;
    border-radius: 3px;
    color: #666;
    content: attr(data-name);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 9pt;
    line-height: 9pt;
    font-weight: 500;
    opacity: 0;
    padding: 3px 5px;
    position: relative;
    top: 20px;
    white-space: nowrap
}

.at-expanding-share-button.at-expanding-share-button-show-icons .at-expanding-share-button-services-list {
    display: block
}

.at-expanding-share-button.at-expanding-share-button-animate-in .at-expanding-share-button-toggle-bg>span {
    transform: rotate(270deg);
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%3E%3Cpath%20d%3D%22M18%2014V8h-4v6H8v4h6v6h4v-6h6v-4h-6z%22%20fill-rule%3D%22evenodd%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    background-position: center center;
    background-repeat: no-repeat
}

.at-expanding-share-button.at-expanding-share-button-animate-in [data-name]:after {
    opacity: 1
}

.at-expanding-share-button.at-hide-label [data-name]:after {
    display: none
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle {
    height: 50px
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-icon-wrapper:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .5)
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg {
    height: 50px;
    line-height: 50px;
    width: 50px
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg>span {
    height: 50px;
    width: 50px
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg:after {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    transition: opacity .2s ease;
    border-radius: 50%;
    content: '';
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg:hover:after {
    opacity: 1
}

.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-btn[data-name]:after {
    top: 25px
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-services-list {
    margin: 0
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-btn,
.at-expanding-share-button.at-expanding-share-button-mobile .at-share-btn {
    outline: 0
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle {
    height: 40px;
    -webkit-tap-highlight-color: transparent
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg,
.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg span {
    height: 40px;
    line-height: 40px;
    width: 40px
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-click-flash {
    transform: scale(0);
    transition: transform ease, opacity ease-in;
    background-color: hsla(0, 0%, 100%, .3);
    border-radius: 50%;
    height: 40px;
    opacity: 1;
    position: absolute;
    width: 40px;
    z-index: 10000
}

.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-click-flash.at-expanding-share-button-click-flash-animate {
    transform: scale(1);
    opacity: 0
}

.at-expanding-share-button.at-expanding-share-button-mobile+.at-expanding-share-button-mobile-overlay {
    transition: opacity ease;
    bottom: 0;
    background-color: hsla(0, 0%, 87%, .7);
    display: block;
    height: auto;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: auto;
    z-index: 9998
}

.at-expanding-share-button.at-expanding-share-button-mobile+.at-expanding-share-button-mobile-overlay.at-expanding-share-button-hidden {
    height: 0;
    width: 0;
    z-index: -10000
}

.at-expanding-share-button.at-expanding-share-button-mobile.at-expanding-share-button-animate-in+.at-expanding-share-button-mobile-overlay {
    transition: opacity ease;
    opacity: 1
}

.at-icon {
    fill: #fff;
    border: 0
}

html.at-expanded-menu-noscroll {
    overflow-x: visible;
    overflow-y: visible
}

body.at-expanded-menu-noscroll {
    overflow: hidden
}

@keyframes ellipses {
    to {
        width: 1.25em
    }
}

#at-expanded-menu-host * {
    box-sizing: border-box
}

#at-expanded-menu-host .at-expanded-menu-hidden,
#at-expanded-menu-host .at-expanded-menu-top-services-header.at-expanded-menu-hidden {
    display: none;
    visibility: hidden
}

#at-expanded-menu-host #at-expanded-menu-title,
#at-expanded-menu-host .at-branding-logo,
#at-expanded-menu-host .at-copy-link-result-message span,
#at-expanded-menu-host .at-copy-link-share-page-url,
#at-expanded-menu-host .at-expanded-menu,
#at-expanded-menu-host .at-expanded-menu-button-label,
#at-expanded-menu-host .at-expanded-menu-email-disclaimer,
#at-expanded-menu-host .at-expanded-menu-load-btn,
#at-expanded-menu-host .at-expanded-menu-page-title,
#at-expanded-menu-host .at-expanded-menu-page-url,
#at-expanded-menu-host .at-expanded-menu-privacy-link,
#at-expanded-menu-host .at-expanded-menu-search-label-content,
#at-expanded-menu-host .at-expanded-menu-top-services-header {
    font-family: helvetica neue, helvetica, arial, sans-serif
}

#at-expanded-menu-host svg span {
    opacity: 0;
    outline: 0;
    visibility: hidden
}

#at-expanded-menu-host .loading-container {
    display: table;
    height: 75pt;
    width: 100%
}

#at-expanded-menu-host .loading-container .loading-spinner {
    background: url(https://s7.addthis.com/static/30e029c73921e590684320b52cff4e7d.gif) 50% 50% no-repeat;
    display: table-cell;
    height: 100%;
    width: 100%
}

#at-expanded-menu-host .at-expanded-menu-mask {
    background-color: rgba(0, 0, 0, .9);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 16777270
}

#at-expanded-menu-host.at-expanded-menu-standalone .at-expanded-menu-mask {
    background-color: rgba(0, 0, 0, .88)
}

#at-expanded-menu-host .at-expanded-menu {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 100%;
    margin-left: -20pc;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 40px;
    z-index: 16777271;
    text-align: left;
    background: 0 0
}

#at-expanded-menu-host.at-expanded-menu-safari .at-expanded-menu {
    overflow: hidden;
    padding-top: initial
}

#at-expanded-menu-host .at-expanded-menu-fade {
    width: 100%;
    height: 151px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 16777272;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0, #000 100%)
}

#at-expanded-menu-host .at-branding-info.at-expanded-menu-branding,
#at-expanded-menu-host .at-branding-logo.at-expanded-menu-branding {
    cursor: pointer;
    text-decoration: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 16777273
}

#at-expanded-menu-host .at-branding-info.at-expanded-menu-branding {
    border: 1px solid #ccc;
    color: #ccc
}

#at-expanded-menu-host .at-branding-info.at-expanded-menu-branding:before {
    color: #ccc
}

#at-expanded-menu-host .at-expanded-menu-primary-action-btn {
    background-color: #0295ff;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1pc;
    margin: 15px auto 0;
    padding: 15px 35px;
    transition: background-color .2s ease-in
}

#at-expanded-menu-host .at-expanded-menu-primary-action-btn:hover {
    background-color: #0078ce
}

#at-expanded-menu-host .at-expanded-menu-close {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    z-index: 16777274;
    background: 0 0;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    color: #000;
    font-family: arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: all .4s ease
}

#at-expanded-menu-host .at-expanded-menu-close span {
    font-family: arial, sans-serif;
    font-size: 28px;
    line-height: 0;
    vertical-align: initial
}

#at-expanded-menu-host .at-expanded-menu-close:after {
    content: '';
    display: inline-block;
    height: 22px
}

#at-expanded-menu-host .at-expanded-menu-close:hover {
    background-color: #666;
    color: #fff
}

#at-expanded-menu-host #at-expanded-menu-hd,
#at-expanded-menu-host .at-expanded-menu-ft {
    text-align: center
}

#at-expanded-menu-host #at-expanded-menu-hd {
    display: inline-block
}

#at-expanded-menu-host .at-expanded-menu-ft {
    margin: -90px 35px 0;
    padding-bottom: 75pt;
    position: relative;
    width: 575px;
    z-index: 3
}

#at-expanded-menu-host .at-expanded-menu-ft .at-expanded-menu-ft-loading {
    color: #fff;
    display: block;
    position: relative
}

#at-expanded-menu-host .at-expanded-menu-ft .at-expanded-menu-ft-loading:after {
    animation: ellipses 1s steps(4, end) 0s infinite forwards;
    content: " \2026";
    display: inline-block;
    overflow: hidden;
    position: absolute;
    vertical-align: bottom;
    width: 0
}

#at-expanded-menu-host #at-expanded-menu-bd {
    padding: 20px 0;
    text-align: center;
    position: relative
}

#at-expanded-menu-host.at-expanded-menu-safari #at-expanded-menu-bd {
    overflow-y: auto
}

#at-expanded-menu-host .at-expanded-menu-title {
    display: block;
    font-size: 60px;
    font-weight: 300;
    line-height: 60px;
    color: #fff;
    margin: 0 35px 30px;
    padding: 0;
    width: 575px
}

#at-expanded-menu-host .at-expanded-menu-page-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 35px
}

#at-expanded-menu-host .at-expanded-menu-page-title,
#at-expanded-menu-host .at-expanded-menu-page-url {
    display: block;
    line-height: 20px;
    color: #eeecec;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    white-space: nowrap;
    width: 575px
}

#at-expanded-menu-host .at-expanded-menu-page-url {
    font-size: 13px;
    font-weight: 300;
    margin: 0 35px 20px;
    opacity: .6
}

#at-expanded-menu-host .at-expanded-menu-top-services-header {
    color: #eeecec;
    display: block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 30px;
    text-transform: uppercase;
    width: 40pc
}

#at-expanded-menu-host .at-branding-logo.at-expanded-menu-branding .at-branding-addthis {
    color: #fff;
    font-size: 9pt
}

#at-expanded-menu-host .at-branding-logo.at-expanded-menu-branding .at-branding-icon {
    background-size: cover;
    height: 13px;
    width: 13px
}

#at-expanded-menu-host .at-branding-logo .at-branding-icon {
    display: inline-block;
    margin-left: 4px;
    margin-right: 3px;
    margin-bottom: -1px;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////+GlNUkcc1QAAAB1JREFUeNpiYIQDBjQmAwMmkwEM0JnY1WIxFyDAABGeAFEudiZsAAAAAElFTkSuQmCC)
}

#at-expanded-menu-host .at-expanded-menu-privacy-link {
    position: fixed;
    bottom: 20px;
    font-size: 9pt;
    left: 20px;
    z-index: 16777273
}

#at-expanded-menu-host .at-expanded-menu-privacy-link a {
    text-decoration: none
}

#at-expanded-menu-host .at-expanded-menu-privacy-link a:hover {
    text-decoration: underline
}

#at-expanded-menu-host .at-expanded-menu-email-disclaimer a,
#at-expanded-menu-host .at-expanded-menu-privacy-link a {
    color: #eeecec
}

#at-expanded-menu-host .at-expanded-menu-notification:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4NCjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMy43MTQgMi4yODZxMy43MzIgMCA2Ljg4NCAxLjgzOXQ0Ljk5MSA0Ljk5MSAxLjgzOSA2Ljg4NC0xLjgzOSA2Ljg4NC00Ljk5MSA0Ljk5MS02Ljg4NCAxLjgzOS02Ljg4NC0xLjgzOS00Ljk5MS00Ljk5MS0xLjgzOS02Ljg4NCAxLjgzOS02Ljg4NCA0Ljk5MS00Ljk5MSA2Ljg4NC0xLjgzOXpNMTYgMjQuNTU0di0zLjM5M3EwLTAuMjUtMC4xNjEtMC40MnQtMC4zOTMtMC4xN2gtMy40MjlxLTAuMjMyIDAtMC40MTEgMC4xNzl0LTAuMTc5IDAuNDExdjMuMzkzcTAgMC4yMzIgMC4xNzkgMC40MTF0MC40MTEgMC4xNzloMy40MjlxMC4yMzIgMCAwLjM5My0wLjE3dDAuMTYxLTAuNDJ6TTE1Ljk2NCAxOC40MTFsMC4zMjEtMTEuMDg5cTAtMC4yMTQtMC4xNzktMC4zMjEtMC4xNzktMC4xNDMtMC40MjktMC4xNDNoLTMuOTI5cS0wLjI1IDAtMC40MjkgMC4xNDMtMC4xNzkgMC4xMDctMC4xNzkgMC4zMjFsMC4zMDQgMTEuMDg5cTAgMC4xNzkgMC4xNzkgMC4zMTN0MC40MjkgMC4xMzRoMy4zMDRxMC4yNSAwIDAuNDItMC4xMzR0MC4xODgtMC4zMTN6Ij48L3BhdGg+DQo8L3N2Zz4=);
    background-size: contain;
    border-radius: 50%;
    content: "";
    display: block;
    float: left;
    font-family: arial, sans-serif;
    height: 20px;
    line-height: 20px;
    margin: 5px 5px 5px 10px;
    padding: 0;
    width: 20px
}

#at-expanded-menu-host .at-expanded-menu-search {
    position: relative;
    overflow: hidden;
    width: 575px;
    margin: 0 35px;
    height: 65px;
    max-height: 65px;
    line-height: 65px
}

#at-expanded-menu-host .at-expanded-menu-search-input[type=text] {
    display: inline-block;
    height: inherit;
    width: 100%;
    padding: 0;
    margin: 0 0 0 1px;
    vertical-align: middle;
    font-size: 18px;
    line-height: 20px;
    background: 0 0;
    outline: 0;
    border: none;
    border-radius: 0;
    color: #fff
}

#at-expanded-menu-host .at-expanded-menu-search-input[type=text]::-ms-clear {
    display: none;
    height: 0;
    width: 0
}

#at-expanded-menu-host #at-expanded-menu-service-filter.at-expanded-menu-search-input[type=text]:focus {
    color: #eeecec;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none
}

#at-expanded-menu-host .at-expanded-menu-search-label {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    height: 55px;
    max-height: 55px;
    line-height: 55px;
    position: absolute;
    top: 0;
    left: 0
}

#at-expanded-menu-host .at-expanded-menu-search-label-content {
    display: block;
    font-size: 19px;
    font-weight: 300;
    color: #eeecec;
    opacity: 1;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all .4s ease
}

#at-expanded-menu-host .at-expanded-menu-search-filled .at-expanded-menu-search-label .at-expanded-menu-search-label-content,
#at-expanded-menu-host .at-expanded-menu-search-input[type=text]:focus+.at-expanded-menu-search-label .at-expanded-menu-search-label-content {
    opacity: .5;
    font-size: 9pt;
    line-height: 9pt
}

#at-expanded-menu-host .at-expanded-menu-search-label:after,
#at-expanded-menu-host .at-expanded-menu-search-label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #eeecec
}

#at-expanded-menu-host .at-expanded-menu-search-label:after {
    border-bottom: 2px solid #eeecec;
    transform: translate3d(-100%, 0, 0);
    transition: transform .3s
}

#at-expanded-menu-host .at-expanded-menu-search-input:focus+.at-expanded-menu-search-label:after {
    transform: translate3d(0, 0, 0)
}

#at-expanded-menu-host .at-expanded-menu-search-icon {
    display: block;
    position: absolute;
    right: 0;
    top: 20px;
    width: 25px;
    height: 25px;
    margin-left: -29px;
    vertical-align: middle;
    text-align: left;
    font-size: 18px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIzMnB4IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAzMiAzMiIgd2lkdGg9IjMycHgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48dGl0bGUvPjxkZXNjLz48ZGVmcy8+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSI+PGcgZmlsbD0iIzkyOTI5MiIgaWQ9Imljb24tMTExLXNlYXJjaCI+PHBhdGggZD0iTTE5LjQyNzExNjQsMjEuNDI3MTE2NCBDMTguMDM3MjQ5NSwyMi40MTc0ODAzIDE2LjMzNjY1MjIsMjMgMTQuNSwyMyBDOS44MDU1NzkzOSwyMyA2LDE5LjE5NDQyMDYgNiwxNC41IEM2LDkuODA1NTc5MzkgOS44MDU1NzkzOSw2IDE0LjUsNiBDMTkuMTk0NDIwNiw2IDIzLDkuODA1NTc5MzkgMjMsMTQuNSBDMjMsMTYuMzM2NjUyMiAyMi40MTc0ODAzLDE4LjAzNzI0OTUgMjEuNDI3MTE2NCwxOS40MjcxMTY0IEwyNy4wMTE5MTc2LDI1LjAxMTkxNzYgQzI3LjU2MjExODYsMjUuNTYyMTE4NiAyNy41NTc1MzEzLDI2LjQ0MjQ2ODcgMjcuMDExNzE4NSwyNi45ODgyODE1IEwyNi45ODgyODE1LDI3LjAxMTcxODUgQzI2LjQ0Mzg2NDgsMjcuNTU2MTM1MiAyNS41NTc2MjA0LDI3LjU1NzYyMDQgMjUuMDExOTE3NiwyNy4wMTE5MTc2IEwxOS40MjcxMTY0LDIxLjQyNzExNjQgTDE5LjQyNzExNjQsMjEuNDI3MTE2NCBaIE0xNC41LDIxIEMxOC4wODk4NTExLDIxIDIxLDE4LjA4OTg1MTEgMjEsMTQuNSBDMjEsMTAuOTEwMTQ4OSAxOC4wODk4NTExLDggMTQuNSw4IEMxMC45MTAxNDg5LDggOCwxMC45MTAxNDg5IDgsMTQuNSBDOCwxOC4wODk4NTExIDEwLjkxMDE0ODksMjEgMTQuNSwyMSBMMTQuNSwyMSBaIiBpZD0ic2VhcmNoIi8+PC9nPjwvZz48L3N2Zz4=);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    filter: brightness(0) invert(1)
}

#at-expanded-menu-host .at-expanded-menu-service-list {
    list-style-type: none;
    padding: 0 0 110px;
    margin: 0;
    width: 40pc
}

#at-expanded-menu-host .at-expanded-menu-service-list.border-before:before {
    border-top: 1px solid #fff;
    content: '';
    display: block;
    margin-left: 75pt;
    margin-top: -5pc;
    padding-bottom: 50px;
    opacity: .4;
    width: 440px
}

#at-expanded-menu-host .at-expanded-menu-service-list li {
    display: inline-block;
    position: relative;
    width: 84px;
    min-width: 84px;
    margin: 0 17px 20px 22px;
    outline-color: #eeecec;
    vertical-align: top
}

#at-expanded-menu-host .at-expanded-menu-service-list li * {
    outline-color: #eeecec
}

#at-expanded-menu-host .at-expanded-menu-service-list button {
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 84px
}

#at-expanded-menu-host .at-expanded-menu-button-label {
    line-spacing: .5px
}

#at-expanded-menu-host .top-service .at-expanded-menu-button-label {
    font-weight: 400
}

#at-expanded-menu-host .at-expanded-menu-load {
    padding: 10px 30px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 30px;
    cursor: pointer
}

#at-expanded-menu-host .at-expanded-menu .at-icon-wrapper {
    display: block;
    width: 84px;
    height: 84px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease
}

#at-expanded-menu-host .at-expanded-menu .at-icon {
    fill: #fff
}

#at-expanded-menu-host .at-expanded-menu-round .at-icon-wrapper {
    border-radius: 50%
}

#at-expanded-menu-host .at-expanded-menu.at-expanded-menu-round .at-expanded-menu-button:focus,
#at-expanded-menu-host .at-expanded-menu.at-expanded-menu-round [class^=at3winsvc_]:hover .at-icon-wrapper {
    transform: scale(1.05, 1.05)
}

#at-expanded-menu-host .at-expanded-menu-round .at-expanded-menu-button-label {
    display: block;
    color: #eeecec;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .8px;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.2
}

#at-expanded-menu-host .at-expanded-menu-round .at-expanded-menu-button-label:hover {
    cursor: pointer
}

#at-expanded-menu-host .at-expanded-menu-round .at-expanded-menu-service-list button,
#at-expanded-menu-host .at-expanded-menu-round .at-expanded-menu-service-list li {
    overflow: visible
}

#at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email {
    left: 0;
    max-height: 100%;
    margin-left: 0;
    text-align: center;
    top: 0
}

#at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-bd {
    padding: 0
}

#at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-title {
    font-size: 2pc;
    line-height: 2pc
}

#at-expanded-menu-host #at-expanded-menu-email-form {
    margin: 0 auto;
    text-align: left;
    width: 575px
}

#at-expanded-menu-host .at-expanded-menu-email-field label {
    color: #d5d4d2;
    display: block;
    font-size: 13px;
    font-weight: 200;
    letter-spacing: .8px;
    margin-bottom: 5px
}

#at-expanded-menu-host .at-expanded-menu-email-field input,
#at-expanded-menu-host .at-expanded-menu-email-field textarea {
    border-radius: 3px;
    border-width: 0;
    color: #333;
    display: block;
    font-size: 1pc;
    margin-bottom: 20px;
    outline-color: #eeecec;
    padding: 10px;
    width: 100%
}

#at-expanded-menu-host .at-expanded-menu-email-field input {
    height: 40px
}

#at-expanded-menu-host .at-expanded-menu-email-field input.at-expanded-menu-email-error-field {
    background-color: #fdd;
    border-radius: 3px 3px 0 0;
    margin-bottom: 0
}

#at-expanded-menu-host .at-expanded-menu-email-field textarea {
    height: 75pt
}

#at-expanded-menu-host .at-expanded-menu-email-error-message {
    background-color: #ff5050;
    border-radius: 0 0 3px 3px;
    color: #fff;
    font-weight: 300;
    font-size: 13px;
    height: 30px;
    margin-bottom: 20px
}

#at-expanded-menu-host .at-expanded-menu-email-error-message span {
    height: 30px;
    letter-spacing: .5px;
    line-height: 30px
}

#at-expanded-menu-host .at-expanded-menu-email-error-message span:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj4NCjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMy43MTQgMi4yODZxMy43MzIgMCA2Ljg4NCAxLjgzOXQ0Ljk5MSA0Ljk5MSAxLjgzOSA2Ljg4NC0xLjgzOSA2Ljg4NC00Ljk5MSA0Ljk5MS02Ljg4NCAxLjgzOS02Ljg4NC0xLjgzOS00Ljk5MS00Ljk5MS0xLjgzOS02Ljg4NCAxLjgzOS02Ljg4NCA0Ljk5MS00Ljk5MSA2Ljg4NC0xLjgzOXpNMTYgMjQuNTU0di0zLjM5M3EwLTAuMjUtMC4xNjEtMC40MnQtMC4zOTMtMC4xN2gtMy40MjlxLTAuMjMyIDAtMC40MTEgMC4xNzl0LTAuMTc5IDAuNDExdjMuMzkzcTAgMC4yMzIgMC4xNzkgMC40MTF0MC40MTEgMC4xNzloMy40MjlxMC4yMzIgMCAwLjM5My0wLjE3dDAuMTYxLTAuNDJ6TTE1Ljk2NCAxOC40MTFsMC4zMjEtMTEuMDg5cTAtMC4yMTQtMC4xNzktMC4zMjEtMC4xNzktMC4xNDMtMC40MjktMC4xNDNoLTMuOTI5cS0wLjI1IDAtMC40MjkgMC4xNDMtMC4xNzkgMC4xMDctMC4xNzkgMC4zMjFsMC4zMDQgMTEuMDg5cTAgMC4xNzkgMC4xNzkgMC4zMTN0MC40MjkgMC4xMzRoMy4zMDRxMC4yNSAwIDAuNDItMC4xMzR0MC4xODgtMC4zMTN6Ij48L3BhdGg+DQo8L3N2Zz4=);
    background-size: contain;
    border-radius: 50%;
    content: "";
    display: block;
    float: left;
    font-family: arial, sans-serif;
    height: 20px;
    line-height: 20px;
    margin: 5px 5px 5px 10px;
    padding: 0;
    width: 20px
}

#at-expanded-menu-host #at-expanded-menu-email-form>.at-expanded-menu-email-error-message {
    border-radius: 3px;
    height: auto;
    margin-bottom: 10px;
    min-height: 40px;
    padding: 10px 10px 10px 40px;
    position: relative
}

#at-expanded-menu-host #at-expanded-menu-email-form>.at-expanded-menu-email-error-message span {
    height: auto;
    line-height: 1.6em
}

#at-expanded-menu-host #at-expanded-menu-email-form>.at-expanded-menu-email-error-message span:before {
    left: 10px;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

#at-expanded-menu-host #at-expanded-menu-captcha-container {
    text-align: center
}

#at-expanded-menu-host #at-expanded-menu-captcha-container>:first-child {
    display: inline-block;
    transform: scale(.8)
}

#at-expanded-menu-host .at-expanded-menu-email-btn {
    background-color: #0295ff;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1pc;
    margin: 15px auto 0;
    padding: 15px 35px;
    transition: background-color .2s ease-in
}

#at-expanded-menu-host .at-expanded-menu-email-btn:hover {
    background-color: #0078ce
}

#at-expanded-menu-host .at-expanded-menu-email-other {
    margin: 20px auto 40px;
    padding-bottom: 20px;
    text-align: center;
    width: 575px
}

#at-expanded-menu-host .at-expanded-menu-email-other p {
    color: #eeecec;
    font-size: 14px;
    font-weight: 300
}

#at-expanded-menu-host .at-expanded-menu-email-services {
    list-style-type: none;
    margin: 0;
    padding: 0
}

#at-expanded-menu-host .at-expanded-menu-email-services li {
    border-radius: 4px;
    display: inline-block;
    height: 2pc;
    margin: 0 4px;
    overflow: hidden;
    width: 2pc
}

#at-expanded-menu-host .at-expanded-menu-email-services li span {
    display: none
}

#at-expanded-menu-host .at-expanded-menu-email-services .at-expanded-menu-button {
    background: 0 0;
    border: none;
    cursor: pointer;
    height: 2pc;
    padding: 0;
    margin: 0;
    width: 2pc
}

#at-expanded-menu-host .at-expanded-menu-email-services .at-icon-wrapper {
    border-radius: 4px
}

#at-expanded-menu-host .at-expanded-menu-email-services svg {
    display: block
}

#at-expanded-menu-host #at-expanded-menu-email-sent {
    left: 0;
    margin-left: 0;
    padding-top: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%)
}

#at-expanded-menu-host #at-expanded-menu-email-sent .at-expanded-menu-email-success-container {
    text-align: center
}

#at-expanded-menu-host #at-expanded-menu-email-sent .at-expanded-menu-service-list {
    margin: 0 auto
}

#at-expanded-menu-host #at-expanded-menu-email-sent .at-expanded-menu-button,
#at-expanded-menu-host #at-expanded-menu-email-sent .at-expanded-menu-service-list li {
    height: 84px;
    width: 84px
}

#at-expanded-menu-host #at-expanded-menu-email-sent .at-expanded-menu-button-label {
    padding-top: 5px
}

#at-expanded-menu-host #at-expanded-menu-email-sent .at-icon-wrapper {
    overflow: hidden
}

#at-expanded-menu-host #at-expanded-menu-email-sent .at-icon-wrapper span {
    opacity: 0
}

#at-expanded-menu-host .at-expanded-menu-email-success-message {
    color: #fff;
    display: block;
    font-size: 36px;
    font-weight: 300;
    padding-bottom: 40px
}

#at-expanded-menu-host .at-expanded-menu-email-disclaimer {
    color: #beb6b6;
    display: block;
    font-size: 9pt;
    text-align: center
}

#at-expanded-menu-host .at-expanded-menu-email-disclaimer span {
    display: block;
    margin-top: 20px
}

#at-expanded-menu-host .at-expanded-menu-email-disclaimer a {
    color: #beb6b6
}

#at-expanded-menu-host .loading-container.loading-container-as-overlay {
    background: rgba(51, 51, 51, .3);
    bottom: 0;
    display: block;
    height: auto;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 16777274
}

#at-expanded-menu-host .loading-container.loading-container-as-overlay .loading-spinner {
    display: block
}

#at-expanded-menu-host .at-copy-link-share {
    margin: 0 35px;
    width: 575px
}

#at-expanded-menu-host .at-copy-link-share-icon {
    display: block;
    float: left;
    height: 50px;
    width: 50px
}

#at-expanded-menu-host .at-copy-link-share-icon .at-icon-wrapper {
    border-radius: 4px 0 0 4px
}

#at-expanded-menu-host .at-copy-link-share-page-url {
    border-radius: 0 4px 4px 0;
    color: #333;
    display: block;
    font-size: 18px;
    height: 50px;
    width: calc(100% - 50px)
}

#at-expanded-menu-host .at-copy-link-share-button {
    text-align: center;
    width: 130px
}

#at-expanded-menu-host .at-copy-link-result-message {
    background-color: #1ece8e;
    border-radius: 3px;
    color: #fff;
    display: block;
    margin: 20px auto;
    opacity: 0;
    padding: 5px;
    width: 200px;
    transition: opacity .5s ease-in
}

#at-expanded-menu-host .at-copy-link-result-message span {
    font-size: 14px;
    line-height: 20px
}

#at-expanded-menu-host .at-copy-link-result-message.at-copy-link-show-result {
    opacity: 1;
    transition: opacity .5s ease-in
}

#at-expanded-menu-host .at-copy-link-result-message:before {
    margin: 0 5px
}

@media screen and (max-width:950px) {
    #at-expanded-menu-host .at-expanded-menu:not(.at-expanded-menu-email) {
        margin-left: -289px
    }
    #at-expanded-menu-host .at-expanded-menu-ft,
    #at-expanded-menu-host .at-expanded-menu-page-title,
    #at-expanded-menu-host .at-expanded-menu-page-url,
    #at-expanded-menu-host .at-expanded-menu-search,
    #at-expanded-menu-host .at-expanded-menu-title {
        width: 508px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list,
    #at-expanded-menu-host .at-expanded-menu-top-services-header {
        width: 578px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list.border-before:before,
    #at-expanded-menu-host .at-expanded-menu-top-services-header.border-before:before {
        width: 378px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list li,
    #at-expanded-menu-host .at-expanded-menu-top-services-header li {
        margin-left: 28px;
        margin-right: 29px
    }
    #at-expanded-menu-host .at-copy-link-share {
        margin: 0;
        width: 578px
    }
}

@media screen and (max-width:569px) {
    #at-expanded-menu-host .at-expanded-menu:not(.at-expanded-menu-email) {
        margin-left: -214px
    }
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-bd,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-hd,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email .at-expanded-menu-email-other {
        padding-left: 10px;
        padding-right: 10px
    }
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-bd,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-email-form,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-hd,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-title,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email .at-expanded-menu-page-title,
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email .at-expanded-menu-page-url {
        margin: 0;
        width: 100%
    }
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email .at-expanded-menu-email-other {
        width: 100%
    }
    #at-expanded-menu-host .at-expanded-menu.at-expanded-menu-email #at-expanded-menu-title {
        margin-bottom: 30px
    }
    #at-expanded-menu-host .at-expanded-menu-ft,
    #at-expanded-menu-host .at-expanded-menu-page-title,
    #at-expanded-menu-host .at-expanded-menu-page-url,
    #at-expanded-menu-host .at-expanded-menu-search,
    #at-expanded-menu-host .at-expanded-menu-title {
        margin-left: 22px;
        margin-right: 22px;
        width: 380px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list,
    #at-expanded-menu-host .at-expanded-menu-top-services-header {
        width: 420px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list.border-before:before,
    #at-expanded-menu-host .at-expanded-menu-top-services-header.border-before:before {
        width: 15pc
    }
    #at-expanded-menu-host .at-expanded-menu-service-list li,
    #at-expanded-menu-host .at-expanded-menu-top-services-header li {
        margin-left: 14px;
        margin-right: 7px
    }
    #at-expanded-menu-host .at-copy-link-share {
        width: 420px
    }
}

@media screen and (max-width:449px) {
    #at-expanded-menu-host #at-expanded-menu-title {
        font-size: 28px;
        line-height: 2pc
    }
    #at-expanded-menu-host .at-expanded-menu-page-title {
        font-size: 14px;
        font-weight: 300
    }
    #at-expanded-menu-host .at-expanded-menu:not(.at-expanded-menu-email) {
        margin-left: -180px
    }
    #at-expanded-menu-host .at-expanded-menu-ft,
    #at-expanded-menu-host .at-expanded-menu-page-title,
    #at-expanded-menu-host .at-expanded-menu-page-url,
    #at-expanded-menu-host .at-expanded-menu-search,
    #at-expanded-menu-host .at-expanded-menu-title {
        margin-left: 10px;
        margin-right: 10px;
        width: 340px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list,
    #at-expanded-menu-host .at-expanded-menu-top-services-header {
        width: 360px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list.border-before:before,
    #at-expanded-menu-host .at-expanded-menu-top-services-header.border-before:before {
        margin-left: 5pc;
        width: 200px
    }
    #at-expanded-menu-host .at-copy-link-share {
        width: 360px
    }
}

@media screen and (max-width:369px) {
    #at-expanded-menu-host .at-expanded-menu:not(.at-expanded-menu-email) {
        margin-left: -10pc
    }
    #at-expanded-menu-host .at-expanded-menu-page-url {
        margin-bottom: 25px
    }
    #at-expanded-menu-host .at-expanded-menu-ft,
    #at-expanded-menu-host .at-expanded-menu-page-title,
    #at-expanded-menu-host .at-expanded-menu-page-url,
    #at-expanded-menu-host .at-expanded-menu-search,
    #at-expanded-menu-host .at-expanded-menu-title {
        width: 300px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list,
    #at-expanded-menu-host .at-expanded-menu-top-services-header {
        width: 20pc
    }
    #at-expanded-menu-host .at-expanded-menu-service-list.border-before:before,
    #at-expanded-menu-host .at-expanded-menu-top-services-header.border-before:before {
        margin-left: 60px;
        width: 200px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list li,
    #at-expanded-menu-host .at-expanded-menu-top-services-header li {
        margin-left: 8px;
        margin-right: 8px
    }
    #at-expanded-menu-host .at-copy-link-share {
        width: 20pc
    }
}

@media screen and (max-width:879px) {
    #at-expanded-menu-host .at-branding-info.at-expanded-menu-branding,
    #at-expanded-menu-host .at-branding-logo.at-expanded-menu-branding {
        bottom: initial;
        left: 20px;
        right: initial;
        top: 20px
    }
    #instagram .profile span,
    #instagram .description p,
    #instagram .description a {
        font-size: 16px;
    }
    #instagram .description div {
        height: 70px;
    }
}

@media screen and (max-width:347px) {
    #at-expanded-menu-host .at-branding-info.at-expanded-menu-branding,
    #at-expanded-menu-host .at-branding-logo.at-expanded-menu-branding {
        bottom: initial;
        left: 10px;
        right: initial;
        top: 10px
    }
    #at-expanded-menu-host .at-expanded-menu-close {
        right: 10px;
        top: 10px
    }
}

@media screen and (max-height:800px),
screen and (max-width:639px) {
    #at-expanded-menu-host .at-expanded-menu-service-list button {
        width: 4pc
    }
    #at-expanded-menu-host .at-expanded-menu .at-icon-wrapper {
        width: 4pc;
        height: 4pc
    }
}

@media screen and (max-height:800px) and (min-width:480px) {
    #at-expanded-menu-host .at-expanded-menu-page-url {
        margin-top: 0;
        margin-bottom: 10px
    }
}

@media screen and (max-height:800px) {
    #at-expanded-menu-host .at-expanded-menu-title {
        font-size: 3pc;
        font-weight: 300;
        line-height: 3pc;
        color: #fff;
        margin-bottom: 20px;
        margin-top: 0;
        padding: 0
    }
    #at-expanded-menu-host .at-expanded-menu-page-url {
        margin-top: 0;
        margin-bottom: 10px
    }
    #at-expanded-menu-host .at-expanded-menu-search {
        height: 50px;
        max-height: 50px;
        line-height: 50px
    }
    #at-expanded-menu-host .at-expanded-menu-search-input[type=text] {
        font-size: 15px!important;
        height: 50px;
        position: relative;
        top: -4px
    }
    #at-expanded-menu-host .at-expanded-menu-search-label {
        height: 35px;
        max-height: 35px;
        line-height: 35px
    }
    #at-expanded-menu-host .at-expanded-menu-search-label-content {
        font-size: 1pc
    }
    #at-expanded-menu-host .at-expanded-menu-search-label:after,
    #at-expanded-menu-host .at-expanded-menu-search-label:before {
        height: 35px
    }
    #at-expanded-menu-host .at-expanded-menu-search-icon {
        top: 5px
    }
    #at-expanded-menu-host .at-expanded-menu-top-services-header {
        margin: 0 0 20px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list {
        padding: 0 0 90px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list.border-before:before {
        padding-bottom: 30px
    }
    #at-expanded-menu-host .at-expanded-menu-service-list li {
        margin-bottom: 15px;
        margin-top: 0
    }
}

@media screen and (max-height:550px) {
    #at-expanded-menu-host #at-expanded-menu-title {
        line-height: 28px;
        margin-bottom: 10px
    }
    #at-expanded-menu-host .at-expanded-menu-page-title {
        font-size: 13px
    }
    #at-expanded-menu-host .at-expanded-menu-page-url {
        font-size: 9pt
    }
    #at-expanded-menu-host #at-expanded-menu-bd {
        padding-top: 10px
    }
}

@media print {
    #at-expanded-menu-host #at-expanded-menu-container {
        display: none
    }
}

#at-expanded-menu-container.at-expanded-menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 16777269;
    overflow: hidden
}

#at-expanded-menu-container.at-expanded-menu-mobile>.loading-container {
    height: 100%;
    position: relative;
    z-index: 16777274
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu {
    overflow-x: initial;
    overflow-y: initial;
    padding-bottom: 50px;
    padding-top: 60px;
    top: 0;
    bottom: 0
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu.at-expanded-menu-copy-link,
#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu.at-expanded-menu-email {
    left: initial;
    margin-left: 0
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu.at-expanded-menu-email {
    margin-bottom: 50px;
    margin-top: 70px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 10px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu.at-expanded-menu-copy-link {
    bottom: initial;
    padding: 0;
    top: 50%;
    transform: translateY(-50%)
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-hd {
    position: fixed
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-copy-link #at-expanded-menu-hd,
#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-email #at-expanded-menu-hd {
    display: block;
    padding-bottom: 10px;
    position: static
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-email #at-expanded-menu-title {
    margin: 0 auto
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-copy-link #at-expanded-menu-title {
    margin-bottom: 5px;
    width: auto
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-copy-link .at-expanded-menu-page-title,
#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-copy-link .at-expanded-menu-page-url {
    width: auto
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-search-input[type=text] {
    font-size: 13px!important
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-search-icon {
    height: 22px;
    top: 7px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-search-label {
    height: 45px;
    line-height: 45px;
    max-height: 45px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-search-label-content {
    font-size: 13px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-search-filled .at-expanded-menu-search-label .at-expanded-menu-search-label-content,
#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-search-input[type=text]:focus+.at-expanded-menu-search-label .at-expanded-menu-search-label-content {
    display: none
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-top-services-header {
    margin: 0 0 18px
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-bd {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-round .at-expanded-menu-button-label {
    font-size: 9pt
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu .at-icon-wrapper {
    height: 54px;
    margin: 0 auto;
    width: 54px
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-email-form {
    width: auto
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-captcha-container {
    padding-top: 15px
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-captcha-container>:first-child {
    margin: 0 auto
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-email-other {
    margin-bottom: 0;
    padding-bottom: 0;
    width: auto
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-email-sent {
    width: 100%
}

#at-expanded-menu-container.at-expanded-menu-mobile #at-expanded-menu-email-sent .at-expanded-menu-button {
    height: 4pc;
    width: 4pc
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-email-success-message {
    font-size: 24px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-email-error-message {
    font-size: 10px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-copy-link-share {
    margin: 0 10px;
    width: auto
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-copy-link-share-button {
    margin-top: 25px;
    padding: 10px 25px
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-ft {
    margin-top: -5pc
}

#at-expanded-menu-container.at-expanded-menu-mobile .at-expanded-menu-fade {
    height: 50px
}