/* trackpipe/public/css/dialog_phone.css */
/*
 * Dialog CSS: phone view.
 *
 * This file is for the base dialog CSS only: don't put rules for specific dialogs here.
 */

.yui-dialog {
    position: absolute;
    /* the top coord is set by YUI Dialog */
    left: 2.5% !important; /* override YUI Dialog's horizontal centering */
    right: 2.5%;
    overflow-x: hidden;
    z-index: 200;
    background: #fff;
    -webkit-box-shadow: 0 0 1rem 0 #404040;
    box-shadow:         0 0 1rem 0 #404040;
}

.yui-dialog .hd {
    padding: 0.625rem 0.625rem;
    background: #5e5e5e;
}

.yui-dialog .hd .content {
    margin-right: 3.5rem; /* make room for the Close button, which for some reason isn't inside the .hd */
    letter-spacing: 0.02rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: bold;
}

.yui-dialog .bd {
    padding: 0.625rem;
}

.yui-dialog .ft {
    padding: 0 0.625rem 0.625rem;
    text-align: right;
}

.yui-dialog .ft button {
    display: inline-block;
    min-width: 5rem;
    min-height: 2rem;
    margin-right: 0.5rem;
    border: none;
    background: #999;
    color: #fff;
    border-radius: 0.3rem;
}

.yui-dialog .ft .button-group > :last-child button {
    margin-right: 0;
}

.yui-dialog .ft button[disabled] {
    opacity: 0.5;
}

.yui-dialog .container-close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    background: #b4b4b4;
    color: #222;
    border-radius: 0.2rem;
}

.yui-dialog .container-close:before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
    background: url(/img/mobile-sprites-20150520.svg) no-repeat;
    background-size: 500% auto;
    background-position: 25% 23.87%; /* 25% == dark */
    vertical-align: text-bottom;
}

.no-svg .yui-dialog .container-close:before {
    background-image: url(/img/mobile-sprites-20150520.png);
}

.masked .mask, .nouveau-masked .nouveau-mask {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    opacity: 0.6;
    /* disable tap highlight on the mask itself */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    z-index: 100;
}

.masked .mask {
    position: absolute;
}

.nouveau-masked .nouveau-mask {
    position: fixed;
}

/* nu-dialog */


.ui-dialog.nu-dialog .ui-dialog-titlebar {
    padding: 0.625rem 1rem;
}

.ui-dialog.nu-dialog .ui-dialog-title {
    font-size: 1rem;
    max-width: 92%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-dialog.nu-dialog .ui-dialog-titlebar-close {
    padding: 0.9375rem 1.25rem 0.9375rem 1.5625rem;
    width: 0.75rem;
    height: 0.75rem;
}

.ui-dialog.nu-dialog .ui-dialog-titlebar-close.ui-state-hover {
    padding: 0.9375rem 1.25rem 0.9375rem 1.5625rem;
    width: 0.75rem;
    height: 0.75rem;
}

.ui-dialog.nu-dialog .ui-dialog-content {
    padding: 25px 20px 30px;
    padding: 1rem;
}

.ui-dialog.nu-dialog {
    font-size: 0.875rem;
}

.ui-dialog.nu-dialog label {
    font-weight: 500;
    display: block;
    margin: 0.875rem 0 0.25rem 0;
}

.ui-dialog.nu-dialog input[type="text"],
.ui-dialog.nu-dialog input[type="email"],
.ui-dialog.nu-dialog input[type="password"] {
    width: 95%;
    padding: 0.25rem;
    box-sizing: border-box;
}

.ui-dialog.nu-dialog input,
.ui-dialog.nu-dialog select,
.ui-dialog.nu-dialog textarea {
    font-size: 16px; /* Setting a font size of 16px or more disables auto-zoom in mobile safari */
}

.ui-dialog.nu-dialog input.error,
.ui-dialog.nu-dialog textarea.error {
    border: 1px solid #e00;
}

.ui-dialog.nu-dialog .error-bubble {
    color: #e00;
    font-size: 0.75rem;
}

.ui-dialog.nu-dialog p {
    color: #333;
}

.ui-dialog.nu-dialog .b {
    font-weight: bold;
}

.ui-dialog.nu-dialog button.submit {
    margin: 1rem 0 0;
    width: 95%;
}

.ui-dialog.nu-dialog a {
    text-decoration: none;
    color: #0687F5;
}
/* trackpipe/public/css/fan/signup/fan_signup_common_phone.css */
/* common buttons */
.signup-common-form button,
.ui-dialog.nu-dialog .signup-common-form button {
    background: rgb(0,161,198);
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: none;

    height: auto;
    min-height: 36px;
    padding: 0.2em 1em;
    vertical-align: top;
}
.signup-common-form button:focus,
.ui-dialog.nu-dialog .signup-common-form button:focus {
    background: rgb(0,161,198);
    border: none;
}
.signup-common-form button:active,
.ui-dialog.nu-dialog .signup-common-form button:active {
    background: rgb(0,161,198);
    border: none;
}
.signup-common-form button[disabled],
.ui-dialog.nu-dialog .signup-common-form button[disabled],
.signup-common-form button[disabled]:focus,
.ui-dialog.nu-dialog .signup-common-form button[disabled]:focus {
    background: #555;
    color: #ccc;
    opacity: 0.3;
    border: none;
}

.ui-widget-content .signup-common-form a,
.signup-common-form a {
    color: rgb(0,161,198);
}

.ui-dialog.nu-dialog.blank-title .ui-dialog-titlebar {
    border: none;
    background-color: #FFF;
}

.ui-dialog.nu-dialog.blank-title .ui-dialog-content {
    padding-top: 0;
}

/* fan action form */

.action-form {
    font-size: 16px;
    line-height: 20px;
}

.action-form .buttons {
    margin: 20px auto 0 auto;
}

.action-form .buttons button {
    width: 47%;
    margin-right: 0;
}

.action-form .buttons button.signup {
    margin-right: 4%;
}

.ui-dialog.nu-dialog .signup-common-form button.submit {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
}

.ui-dialog.nu-dialog .action-form button.login {
    background-color: #FFF;
    color: rgb(0,161,198);
    border: 1px solid rgb(0,161,198);
}

.modal-welcome-message {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

.welcome-form .buttons {
    margin: 20px auto 0 auto;
}

.welcome-form .buttons button {
    width: 47%;
    margin-right: 0;
}

.welcome-form .buttons button.signup {
    margin-right: 4%;
}

.welcome-form .buttons button.ok-button {
    background-color: #FFF;
    color: rgb(0,161,198);
    border: 1px solid rgb(0,161,198);
}

.welcome-form .buttons {
    display: inline-block;
    width: 100%;
}

.welcome-form .buttons .get-app {
    margin-right: 4%;
}

.welcome-form .buttons .ok-button.unsupported {
    display: block;
    margin: 0 auto;
}

.verify-nag.signup-common-form {
     width: auto; 
}

.verify-nag button.nag-send-again,
.verify-nag button.nag-cancel {
    width: 46%;
}

.verify-nag .nag-email-change {
    display: block;
    margin: 24px 0 24px 0;
}

.signup-common-form .signup-common-form button.nag-send-again,
.ui-dialog.nu-dialog .signup-common-form button.nag-send-again {
    padding: 0.2em 0.6em;
}


/* invisible recaptcha used by captcha.js */

#global-invisible-recaptcha .grecaptcha-badge {
    z-index: 2000; /* this needs to be above modal dialog backdrop */
}

/* don't show tooltips on mobile */

.signup-tooltip-outer {
    display: none;
}

#menubar-verify-banner {
    display: none;
}

/* welcome_2 pane */
.signup-common-form.welcome-2-form .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.welcome-2-form {
    margin: -36px 16px 0 16px;
}

.welcome-2-form h1 {
    text-align: center;
    font-size: 26px;
    margin: 20px 0 0 0;
}

.welcome-2-form h2 {
    font-size: 16px;
    margin: 12px 0 12px 0;
    font-weight: 400;
    text-align: center;
}

.welcome-2-form h2.active {
    margin: 34px 0 20px 0;
}

.welcome-2-form h2.welcome {
    font-size: 18px;
    line-height: 22px;
    margin: 6px auto 20px auto;
    width: 100%;
}

.welcome-2-form h2.welcome.no-tooltips {
    margin-top: 36px;
}

.complete-profile-form .item .hint {
    margin: 10px 0 15px 0px;
}

.complete-profile-form .profile-pic label.placeholder-wrapper,
.complete-profile-form .profile-pic label.placeholder-wrapper:hover {
    height: 100%;
    width: 100%;
    border: 4px solid #307d9a;
}

.complete-profile-form .profile-pic label.placeholder-wrapper.loading:focus,
.complete-profile-form .profile-pic label.placeholder-wrapper.loading:hover,
.complete-profile-form .profile-pic label.placeholder-wrapper.loading:hover:focus {
    border: 4px solid #307d9a;
}

.complete-profile-form .profile-pic .placeholder {
    background: #FFF;
}

.complete-profile-form .profile-pic .placeholder .camera-icon {
    fill: #409fc2;
    top: 26px;
    left: 21px;
}

.complete-profile-form .location-display {
    color: #FFF;
}

.complete-profile-form .profile-pic {
    margin-bottom: 20px;
}

.complete-profile-form .skip {
    color: #FFF;
    opacity: 0.5;
    margin-top: 15px;
    display: inline-block;
    font-size: 14px;
}

.signup-common-form.welcome-2-form .buttons button,
.ui-dialog.nu-dialog .signup-common-form.welcome-2-form .buttons button {
    width: 100%;
    height: auto;
    padding: 12px 14px 12px 14px;
    border-radius: 4px;
}

.signup-common-form.welcome-2-form .buttons.split button,
.ui-dialog.nu-dialog .signup-common-form.welcome-2-form .buttons.split button {
    width: 214px;
    height: auto;
    padding: 12px 14px 12px 14px;
    border-radius: 4px;
    border: 1px solid rgb(0,161,198);
}

.signup-common-form.welcome-2-form .buttons.split button:first-child,
.ui-dialog.nu-dialog .signup-common-form.welcome-2-form .buttons.split button:first-child {
    margin-right: 20px;
}

.signup-common-form.welcome-2-form .buttons.split button:last-child,
.ui-dialog.nu-dialog .signup-common-form.welcome-2-form .buttons.split button:last-child {
    background: #FFF;
    color: rgb(0,161,198);
}

.welcome-2-form .buttons a.no-thanks {
    display: block;
    text-align: center;
    margin: 16px 0 0 0;
}

.welcome-2-form .icon img {
    height: 235px;
    margin: 0 auto;
}

.welcome-2-form .to-bandcamp {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}




/* trackpipe/public/css/fan/signup/fan_signup_genre_picker_phone.css */
/* MOBILE GENRE PICKER */
.genre-picker-form.skinny .search-results {
    left: calc(50% - 160px);
}
.genre-picker-form .search-results.results-visible {
    max-height: 124px;
}
.genre-picker-form.skinny .search-wrapper {
    width: 100%;
}
.genre-picker-form.standalone {
    margin-left: 0px;
    margin-right: 0px;
}
.ui-widget.nu-dialog .genre-picker-form .search-wrapper input {
    margin-bottom: 0px;
    border-radius: 24px;
    font-size: 16px;
}

.genre-picker-form > div {
    flex: 1 0 auto;
    transition: all .5s linear;
}
.genre-picker-form .heading-wrapper h4 {
    padding: 16px 0px;
    margin: 0px;
}
.genre-picker-form .heading-wrapper h3 {
    margin: 0px;
    padding: 18px 18px 0px 0px;
    font-weight: bold;
}
.genre-picker-form .heading-wrapper.mobile h3 {
    line-height: 1.3em;
    margin-bottom: 10px;
}
.genre-picker-form {
    margin: 0px;
    flex-direction: column;
}
.genre-picker-form.mobile ul.genres > li.genre.expanded {
    width: 100%;
    margin: 5px 0px;
}
.genre-picker-form .genres-overflow-wrapper.mobile ul.genres > li.genre.expanded,
.genre-picker-form .genres-overflow-wrapper.mobile ul.genres > li.genre.expanded.long,
.genre-picker-form .genres-overflow-wrapper.mobile ul.genres > li.genre.expanded .content{
    height: auto;
}
.genre-picker-form ul.genres > li.genre.expanded .content {
    width: 100%;
}
.genre-picker-form .selected-genres-wrapper {
    width: 100%;
    height: 44px;
}
.genre-picker-form li.genre.expanded .subgenres {
    justify-content: left;
}
.genre-picker-form,
.genre-picker-form .buttons,
.genre-picker-form .genres-overflow-wrapper,
.genre-picker-form .genres-overflow-wrapper ul {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -ms-overflow-style: none;  /* IE 10+ */
    overflow: -moz-scrollbars-none;  /* Firefox */
}
.genre-picker-form .genres-overflow-wrapper::-webkit-scrollbar { /* Safari and Chrome */
    display: none;
}
.genre-picker-form .genres-overflow-wrapper.mobile ul {
    display: inline-block;
}
.genre-picker-form .genres-overflow-wrapper.mobile li.genre.selected {
    display: block;
}
.genre-picker-form .genres-overflow-wrapper.mobile li.genre {
    display: none;
}
.genre-picker-form .genres-overflow-wrapper.mobile li.genre.selected li.subgenre.selected .genre-icon {
    display: inline-block;
}
.genre-picker-form .genres-overflow-wrapper.mobile .genre-icon {
    display: none;
}
.genre-picker-form li.subgenre.selected h3.subgenre-name:hover .genre-icon {
    background-position: -16px 0%;
}
.genre-picker-form .mobile ul.subgenres h3 {
    padding: 5px 14px;
    font-size: 16px;
}
.genre-picker-form .buttons {
    margin: 16px 0px;
}
.genre-picker-form li.genre.expanded .subgenres {
    margin: 0px 0px 10px 0px;
}
.genre-picker-form .mobile ul.subgenres li {
    margin: 4px 2px;
}
.genre-picker-form .mobile ul.genres > li.genre .content > div.genre-title{
    margin: 0px 0px 10px 0px;
}
.genre-picker-form .mobile ul.genres > li.genre .content {
    background: none;
    font-size: 1.2em;
}
.genre-picker-form .genres-overflow-wrapper {
    height: 63.3vh;
}
.genre-picker-form .genres-overflow-wrapper.mobile {
    height: 75.8vh;
}
@media (width: 1024px) and (height: 1366px) { /* ipad pro */
    .genre-picker-form .genres-overflow-wrapper {
        height: 81.2vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 85.3vh;
    }
}
@media (width: 768px) and (height: 1024px) { /* ipad */
    .genre-picker-form .genres-overflow-wrapper {
        height: 76.3vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 81.7vh;
    }
}
@media (max-width : 414px) and (max-height : 896px) { /* XR, XS MAX*/
    #signup-vm.genre-picker-form {
        margin-left: -10px;
        width: 107%;
    }
    .genre-picker-form .list-wrapper {
    margin: 0px;
    }
    .genre-picker-form .genres-overflow-wrapper {
        height: 51.3vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 59.6vh;
    }
}
@media (width: 411px) and (height: 823px) { /* ipad */
    .genre-picker-form .genres-overflow-wrapper {
        height: 66.9vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 78.1vh;
    }
}
@media (width: 411px) and (height: 731px) { /* ipad */
    .genre-picker-form .genres-overflow-wrapper {
        height: 49.0vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 63.6vh;
    }
}
@media (max-width: 375px) and (max-height: 812px) {
    #signup-vm.genre-picker-form {
        margin-left: -10px;
        width: 107%;
    }
    .genre-picker-form .list-wrapper {
    margin: 0px;
    }
    .genre-picker-form .genres-overflow-wrapper {
        height: 52.5vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 61.3vh;
    }
}
@media (max-width: 375px) and (max-height: 667px) {
    #signup-vm.genre-picker-form {
        margin-left: -10px;
        width: 107%;
    }
    .genre-picker-form .list-wrapper {
    margin: 0px;
    }
    .genre-picker-form .genres-overflow-wrapper {
        height: 41.5vh; /*14*/
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 55.8vh; /*12*/
    }
}
@media (max-width: 360px) {
    .genre-picker-form .genres-overflow-wrapper {
        height: 57.8vh ;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 72.2vh ;
    }
}
@media (max-width: 320px) {
    .genre-picker-form ul.genres > li.genre.top-level,
    .genre-picker-form ul.genres > li.genre.top-level .content {
        width: 131px;
        height: 131px;
    }
    .genre-picker-form .mobile ul.genres > li.genre.top-level,
    .genre-picker-form .mobile ul.genres > li.genre.top-level .content {
        width: 272px;
        height: auto;
    }
    .genre-picker-form .genres-overflow-wrapper {
        height: 32.5vh;
    }
    .genre-picker-form .genres-overflow-wrapper.mobile {
        height: 49.6vh;
    }
    .genre-picker-form.skinny .search-results {
        left: calc(50% - 141px);
        width: 100%;
    }

}
.genre-picker-form .mobile #electronic-box .content, .genre-picker-form .mobile #rock-box .content, .genre-picker-form .mobile #metal-box .content,
.genre-picker-form .mobile #alternative-box .content, .genre-picker-form .mobile #hip-hop-rap-box .content, .genre-picker-form .mobile #experimental-box .content,
.genre-picker-form .mobile #punk-box .content, .genre-picker-form .mobile #folk-box .content, .genre-picker-form .mobile #pop-box .content, .genre-picker-form .mobile #ambient-box .content,
.genre-picker-form .mobile #soundtrack-box .content, .genre-picker-form .mobile #world-box .content,
.genre-picker-form .mobile #jazz-box .content, .genre-picker-form .mobile #acoustic-box .content, .genre-picker-form .mobile #funk-box .content, .genre-picker-form .mobile #r-b-soul-box .content,
.genre-picker-form .mobile #devotional-box .content, .genre-picker-form .mobile #classical-box .content, .genre-picker-form .mobile #reggae-box .content, .genre-picker-form .mobile #podcasts-box .content,
.genre-picker-form .mobile #country-box .content, .genre-picker-form .mobile #spoken-word-box .content, .genre-picker-form .mobile #comedy-box .content, .genre-picker-form .mobile #blues-box .content,
.genre-picker-form .mobile #kids-box .content, .genre-picker-form .mobile #audiobooks-box .content, .genre-picker-form .mobile #latin-box .content {
    background: none;
}
.genre-picker-form .content ul.subgenres h3 {
    color: white;
}
.genre-picker-form #electronic-box .content ul.subgenres h3 {
    background-color: #F9A55B;
}
.genre-picker-form #rock-box .content ul.subgenres h3 {
    background-color: #F7714E;
}
.genre-picker-form #metal-box .content ul.subgenres h3 {
    background-color: #E0222D;
}
.genre-picker-form #alternative-box .content ul.subgenres h3 {
    background-color: #D62F6A;
}
.genre-picker-form #hip-hop-rap-box .content ul.subgenres h3 {
    background-color: #C33AA4;
}
.genre-picker-form #experimental-box .content ul.subgenres h3 {
    background-color: #9A58C0;
}
.genre-picker-form #punk-box .content ul.subgenres h3 {
    background-color: #816FB2;
}
.genre-picker-form #folk-box .content ul.subgenres h3 {
    background-color: #8690CE;
}
.genre-picker-form #pop-box .content ul.subgenres h3 {
    background-color: #87A8C5;
}
.genre-picker-form #ambient-box .content ul.subgenres h3 {
    background-color: #85BFBC;
}
.genre-picker-form #soundtrack-box .content ul.subgenres h3 {
    background-color: #82D23D;
}
.genre-picker-form #world-box .content ul.subgenres h3 {
    background-color: #B0CA3C;
}
.genre-picker-form #jazz-box .content ul.subgenres h3 {
    background-color: #D6BF3D;
}
.genre-picker-form #acoustic-box .content ul.subgenres h3 {
    background-color: #F9A55B;
}
.genre-picker-form #funk-box .content ul.subgenres h3 {
    background-color: #F7714E;
}
.genre-picker-form #r-b-soul-box .content ul.subgenres h3 {
    background-color: #E0222D;
}
.genre-picker-form #devotional-box .content ul.subgenres h3 {
    background-color: #D62F6A;
}
.genre-picker-form #classical-box .content ul.subgenres h3 {
    background-color: #C33AA4;
}
.genre-picker-form #reggae-box .content ul.subgenres h3 {
    background-color: #9A58C0;
}
.genre-picker-form #podcasts-box .content ul.subgenres h3 {
    background-color: #816FB2;
}
.genre-picker-form #country-box .content ul.subgenres h3 {
    background-color: #8690CE;
}
.genre-picker-form #spoken-word-box .content ul.subgenres h3 {
    background-color: #87A8C5;
}
.genre-picker-form #comedy-box .content ul.subgenres h3 {
    background-color: #85BFBC;
}
.genre-picker-form #blues-box .content ul.subgenres h3 {
    background-color: #82D23D;
}
.genre-picker-form #kids-box .content ul.subgenres h3 {
    background-color: #B0CA3C;
}
.genre-picker-form #audiobooks-box .content ul.subgenres h3 {
    background-color: #D6BF3D;
}
.genre-picker-form #latin-box .content ul.subgenres h3 {
    background-color: #F9A55B;
}
.genre-picker-form #electronic-box .content ul.subgenres li.selected h3,
.genre-picker-form #rock-box .content ul.subgenres li.selected h3,
.genre-picker-form #metal-box .content ul.subgenres li.selected h3,
.genre-picker-form #alternative-box .content ul.subgenres li.selected h3,
.genre-picker-form #hip-hop-rap-box .content ul.subgenres li.selected h3,
.genre-picker-form #experimental-box .content ul.subgenres li.selected h3,
.genre-picker-form #punk-box .content ul.subgenres li.selected h3,
.genre-picker-form #folk-box .content ul.subgenres li.selected h3,
.genre-picker-form #pop-box .content ul.subgenres li.selected h3,
.genre-picker-form #ambient-box .content ul.subgenres li.selected h3,
.genre-picker-form #soundtrack-box .content ul.subgenres li.selected h3,
.genre-picker-form #world-box .content ul.subgenres li.selected h3,
.genre-picker-form #jazz-box .content ul.subgenres li.selected h3,
.genre-picker-form #acoustic-box .content ul.subgenres li.selected h3,
.genre-picker-form #funk-box .content ul.subgenres li.selected h3,
.genre-picker-form #r-b-soul-box .content ul.subgenres li.selected h3,
.genre-picker-form #devotional-box .content ul.subgenres li.selected h3,
.genre-picker-form #classical-box .content ul.subgenres li.selected h3,
.genre-picker-form #reggae-box .content ul.subgenres li.selected h3,
.genre-picker-form #podcasts-box .content ul.subgenres li.selected h3,
.genre-picker-form #country-box .content ul.subgenres li.selected h3,
.genre-picker-form #spoken-word-box .content ul.subgenres li.selected h3,
.genre-picker-form #comedy-box .content ul.subgenres li.selected h3,
.genre-picker-form #blues-box .content ul.subgenres li.selected h3,
.genre-picker-form #kids-box .content ul.subgenres li.selected h3,
.genre-picker-form #audiobooks-box .content ul.subgenres li.selected h3,
.genre-picker-form #latin-box .content ul.subgenres li.selected h3 {
    background-color: rgba(51,51,51,1);
}

/* MOBILE NEWSLETTER PICKER */
.newsletter-picker-form {
    margin-top: 56px;
}
.mobile-onboarding .newsletter-picker-form .heading-wrapper {
    display: flex;
    margin-bottom: 22px;
    font-size: 16px;
    align-items: center;
}
.mobile-onboarding .newsletter-picker-form .heading-wrapper .text {
    font-size: 16px;
    padding-right: 10px;
}
.mobile-onboarding .newsletter-picker-form .heading-wrapper .icon {
    margin-top: 0px;
    width: 120px;
    height: auto;
}
.mobile-onboarding .newsletter-picker-form .heading-wrapper .icon img {
    margin-left: -8px;
}
.newsletter-picker-form .buttons,
.newsletter-picker-form .email-abuse {
    width: 100%;
    font-size: 14px;
}
.newsletter-picker-form .buttons {
    white-space: nowrap;
}
.ui-dialog.nu-dialog.mobile-onboarding .signup-common-form.newsletter-picker-form .buttons.split button.no,
.ui-dialog.nu-dialog.mobile-onboarding .signup-common-form.newsletter-picker-form .buttons.split button.yes {
    width: 40vw;
    padding: 12px 5px;
}
@media (max-width: 320px) {
    .ui-dialog.nu-dialog.mobile-onboarding .signup-common-form.newsletter-picker-form .buttons.split button.yes {
        margin-right: 0px;
    }
}
/* trackpipe/public/css/fan/fan_tralbum_phone.css */
/***** wishlist/unwishlist controls ***********************************/

#wishlist-msg, #wishlisted-msg, #purchased-msg {
    display: none;
}

#collect-item-placeholder {
    height: 48px;
}

#collect-item-placeholder.purchased {
    height: 0;
}

#collect-item-placeholder,
#collect-item {
    margin-top: 1.5em;
    padding: 1em 0 0;
}
/* add top border if it follows two or more .buyItem */
.buyItem+.buyItem+#collect-item-placeholder,
.buyItem+.buyItem+#collect-item {
    border-top: 1px solid #cccccc;
}
.invertIconography .buyItem+.buyItem+#collect-item-placeholder, 
.invertIconography .buyItem+.buyItem+#collect-item {
    border-top: solid rgba(255,255,255,0.2) thin;
}
#collect-item.wishlist #wishlist-msg {
    display: block;
}
#collect-item.wishlisted #wishlisted-msg {
    display: block;
}
#collect-item.purchased #purchased-msg {
    display: block;
}
.tralbumCommands #collect-item.purchased #purchased-msg {
    display: none;
}
#wishlist-alert {
    display: none;
    color: red;
    font-weight: bold;
    font-size: 1.1em;
    margin: 4px;
}

#wishlisted-msg {
    position: relative;  /* positioning context for split button, below */
}

#wishlisted-msg .view {  /* split button */
    position: absolute;
    right: 0;
    padding: 0 0.8em;
    border-left: solid thin rgba(0,0,0,0.2);
    font-weight: normal;
}

#collect-item .wishlist-wrapper {
    vertical-align: top;
}

.invertIconography #wishlisted-msg .view {
    border-left-color: rgba(255,255,255,0.1);
}

#wishlisted-msg .view:after {
    content: ' >';
}

.collect-item-icon, .you-own-this-icon {
    /* sprite h/w ratio: 1/1 */
    content: '';
    display: inline-block;
    width: 1.3em;
    height: 0;
    padding-top: 1.3em; /* height */
    margin-right: 0.3rem;
    background: url(/img/mobile-sprites-20150520.svg) no-repeat;
    background-size: 500% auto;
    background-position: 0 48%;
    vertical-align: text-bottom;
}
.no-svg .collect-item-icon {
    background-image: url(/img/mobile-sprites-20150520.png);
}
.invertIconography .collect-item-icon {
    background-position: 25% 48%; /* 25% == dark */
}

#wishlisted-msg .collect-item-icon {
    background-position: 0 52%;
}
.invertIconography #wishlisted-msg .collect-item-icon {
    background-position: 25% 52%; /* 25% == dark */
}

#purchased-msg .collect-item-icon, .you-own-this .you-own-this-icon {
    background-position: 0 56%;
}
.invertIconography #purchased-msg .collect-item-icon, .invertIconography .you-own-this .you-own-this-icon {
    background-position: 25% 56%; /* 25% == dark */
}

/***** "you own this" text **************************************/

.buyItem h3.you-own-this {
    text-align: center;
    margin-top: 0.75rem;
}

.custom-domain .you-own-this,
.custom-domain .buy-again-wrapper {
    display: none;
}

.owns-digital .buyItem.digital .you-own-this,
.owns-digital .buyItem.digital .buy-again-wrapper,
.owns-bfd .buyItem.buyFullDiscography .you-own-this,
.owns-bfd .buyItem.buyFullDiscography .buy-again-wrapper,
.part_of_purchased_album #buyAlbumLink .you-own-this {
    display: block;
}

.owns-digital .buyItem.digital .compound-button.main-button,
.owns-digital .buyItem.digital .hd button.download-link,
.owns-bfd .buyItem.buyFullDiscography .compound-button.main-button,
.owns-bfd .buyItem.buyFullDiscography .hd .band-link,
.part_of_purchased_album #buyAlbumLink .unowned-album {
    display: none;
}

/***** follow/unfollow button ***********************************/

.compound-button.follow-unfollow.following {
    color: white;
    border: solid 1px #3d7c8f;
    background-color: #408294;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(100%,rgba(51, 104, 126, 0.8)), color-stop(0%,rgba(0, 0, 0, 0)));  /* old webkit syntax; here for Android */
    background-image: -webkit-linear-gradient(bottom, rgba(51, 104, 126, 0.8), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(bottom, rgba(51, 104, 126, 0.8), rgba(0, 0, 0, 0));
    background-image: -ms-linear-gradient(bottom, rgba(51, 104, 126, 0.8) 0%,rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(51, 104, 126, 0.8), rgba(0, 0, 0, 0));
}

.invertIconography .compound-button.follow-unfollow.following {
    color: rgb(190,190,190);
    border: solid 1px #346b7b;
    background-color: #2d5c69;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(100%,rgba(51, 104, 126, 0.5)), color-stop(0%,rgba(0, 0, 0, 0)));  /* old webkit syntax; here for Android */
    background-image: -webkit-linear-gradient(bottom, rgba(51, 104, 126, 0.5), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(bottom, rgba(51, 104, 126, 0.5), rgba(0, 0, 0, 0));
    background-image: -ms-linear-gradient(bottom, rgba(51, 104, 126, 0.5) 0%,rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(51, 104, 126, 0.5), rgba(0, 0, 0, 0));
}

/** First Band Follow Dialog **/
.nu-dialog {
    margin: auto;
    width:96% !important;
}
.band-first-follow-message {
    border-bottom: 1px solid #ededed;
    color: #2e3332;
    margin: 0 0 -.7em;
    padding: 0 0 1.7em;
}
.band-first-follow-message .fan-email {
    color:#777;
    white-space: nowrap;
}
.band-first-follow-message .fan-email:empty:after {
    content:'example-email@website.com';
}
.band-first-follow-image {
    display: none;
}

/* playback limits dialog */
.play-limits-dialog {
}
.play-limits-dialog-header {
    text-align: center;
    margin: 0 0 8px;
}
#play-limits-dialog-fan-img,
#play-limits-dialog-band-img {
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 78px;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.1);
    display: inline-block;
    height: 78px;
    left: inherit;
    opacity: 1.0;
    overflow: hidden;
    position: relative;
    right: inherit;
    width: 78px;
    text-align: center;    
}
.play-limits-dialog-heart {
    display: inline-block;
    width: 72px;
    height: 70px;
    overflow: visible;
    vertical-align: bottom;
}
#play-limits-dialog-heart-img,
#play-limits-dialog-heartbreak-img {
    height: 189px;
    margin-left: -14px;
    width: 100px;
}
#play-limits-dialog-heartbreak-img {
    display: none;
}
.play-limits-dialog > h2 {
    color: #2e3332;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 0 auto 14px;
    opacity: 1.0;
    text-align: center;
    width: inherit;
}
.play-limits-dialog-pkg-art,
.play-limits-dialog-pkg-art .pkg-image,
.no-pkg-art .play-limits-dialog-pkg-art {
    display: none;
}
.play-limits-dialog-perks {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    opacity: 1.0;
    padding: 10px 0 8px;
}
.play-limits-dialog-bullets {
    display: inline-block;
    vertical-align: top;
    width: inherit;
}
.play-limits-dialog-bullets-title {
    font-size: 15px;
    font-weight: 200;
    display: block;
}
.play-limits-dialog-bullets ul {
    padding: 0;
}
.play-limits-dialog-bullets li {
    list-style-type: disc;
    list-style-position: outside;
    color: #619aa9;
    font-size: 12px;
    margin: 7px 0 7px 18px;
}
.play-limits-dialog-bullets li span {
    color: #2e3332;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.play-limits-dialog-bullets .band-name {
    display: inline-block;
}
.play-limits-dialog-button-pane {
    display: block;
    font-size: 0;
    margin: 18px 0 0;
    opacity: 1.0;
}
.ui-dialog.nu-dialog .play-limits-dialog-button-pane button {
    font-size: 14px;
    height: 40px;
    width: 48%;
    display: inline-block;
    margin: 0 4% 18px 0;
}
.ui-dialog.nu-dialog .play-limits-dialog-button-pane button:last-child {
    margin-right:0;
}

.play-limits-dialog-footer {
    text-align: center;
    color: #686868;
}
.ui-dialog.nu-dialog .ui-dialog-content {
    padding: 18px 20px;
}


/* trackpipe/public/css/change_payment_method_phone.css */
.change-payment-method-dlg .row {
    margin: 0 5% 10px;
    width: 90%;
}

.change-payment-method-dlg { 
    width: 100%;
}

/* trackpipe/public/css/payment_prefs_phone.css */
.ui-widget.nu-dialog .payment-pref-dlg input[type="radio"] {
    display:none;
}

.payment-pref-dlg {
    width: 100%;
}

.payment-pref-dlg div.selected, 
.payment-pref-dlg div {
    background: #efefef;
    border: 1px solid rgb(193, 193, 193);
    width: 84%;
    padding: 15px 4% 0 4%;
    margin-left: 4%;
    box-sizing: content-box;
}

@media screen and (max-width: 320px) {
    .payment-pref-dlg div.selected, 
    .payment-pref-dlg div {
        width: 92%;
        margin-left: 0%;
    }
}

.payment-pref-dlg form {
    width: 90%;
    margin-top: 32px;
    margin-bottom: 20px;
    margin-left: 5%;
    margin-right: 5%;
}

.payment-pref-dlg label.credit-card,
.payment-pref-dlg label.paypal {
    margin: 0;
}

.payment-pref-dlg label.credit-card {
    width: 100%;
}

.payment-pref-dlg .credit-card span {
    margin: 0;
}

.payment-pref-dlg .we-accept-these-cards {
    transform: scale(0.8);
    transform-origin: right;
}

.payment-pref-dlg button.proceed {
    display:none;
}

.payment-pref-dlg.paypal-wait div.paypal-wait-msg {
    padding-top: 0;
    padding-bottom: 0;
    background: none;
}

/* trackpipe/public/css/download_panel_phone.css */
/* Buy/download dialog and related (phone view) ---------- */

.buy-dlg {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

.buy-dlg input.numeric {
    width: 72px;
    padding: 0 5px;
    color: #333;
    font-size: 24px;
    text-align: right;
}

.buy-dlg #orderQuantity.numeric {
    text-align: left;
}

.buy-dlg h3 {
    margin: 0 0 0.5em;
    color: #333;
}

.buy-dlg .section {
    margin: 18px 20px;
}
.buy-dlg .section:empty {
    display:none;
}

.buy-dlg .alert {
    margin: 0.3em 0 0;
}

.buy-dlg .disabled {
    color: #999;
    text-decoration: line-through;
}

.buy-dlg .warning {
    background: lightyellow;
    padding: 5px;
    /*margin: -5px;*/
}

.buy-dlg .price-over-minimum {
    border-color: #4F8D26;
    box-shadow: 0 0 5px #4F8D26;
}


/* ----- buttons ------------------------------- */

.buy-dlg .ft {
    font-size: 0;
    text-align: left;
}

.buy-dlg .buttons-section {
    white-space: nowrap;
    clear:both;
}

.buy-dlg .buttons-section button {
    background-color: #4e8e25;
    border: none;
    color: #fff;
    display: block; /* enables margin collapsing */
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    margin: 0;
    text-decoration: none;
}
.buy-dlg .buttons-section button:hover,
.buy-dlg .buttons-section button:focus,
.buy-dlg .buttons-section button:active {
    background-color:#448a19;
}

.buy-dlg .cart-button-wrapper button {
    background-color: #0687f5;
}
.buy-dlg .cart-button-wrapper button:hover,
.buy-dlg .cart-button-wrapper button:focus,
.buy-dlg .cart-button-wrapper button:active {
    background-color: #007deb;
}

html:lang(pt) .buy-dlg .cart-button-wrapper button {
    white-space: normal;
    line-height: 1.1;
}

.buy-dlg .checkout-button-wrapper,
.buy-dlg .cart-button-wrapper {
    display: inline-block;
    margin: 0 4% 0 0;
    width: 48%;
}
.buy-dlg .cart-button-wrapper {
    margin-right: 0;
    vertical-align: top;
}

.buy-dlg .buttons-section .or {
    padding: 0 0.1em;
    color: #999;
}

/* ----- paypal payment ------------------------------- */

.buy-dlg .format-section {
    color: #666;
}

.buy-dlg .nyp-summary {
    display: inline-block; /* don't allow this content to partially wrap; do it all-or-nothing */
    margin-top: 0.3em;     /* margin visible if it wraps */
}

.buy-dlg .price .secondary, .buy-dlg .small-text {
    color: #666;
}

.buy-dlg .small-text {
    font-size: 14px; /* we want footer text to appear, even tho it's in .ft */
}

.buy-dlg .saved-card-details .icon-cc {
    transform: scale(0.9);
}

.buy-dlg .display-price {
    font-size: 24px;
}

.buy-dlg .fixed-price {
    font-weight: bold;
}

.buy-dlg #normal-price-wrapper {
    padding-right: 0.3em;
    font-size: 1.3rem;
    font-weight: bold;
}

.buy-dlg .nyp-summary-discounted-price {
    color: green;
    font-weight: bold;
}

.buy-dlg .pricing-extras {
    margin: 0.3em 0 0;
}

.buy-dlg .button-footer {
    max-width: 100%;
    width: 200px;
    text-align: center;
    margin-top:14px;
}

/* ----- discounts ------------------------------- */

.buy-dlg #discountInput {
    width: 7em;
}

.buy-dlg .discount-display {
    color: rgb(128,128,128);
    font-size: 116%;
    font-weight: bold;
    font-style: italic;
}

.buy-dlg .discount-verified .discount-display {
    color: green;
    font-style: normal;
}

.buy-dlg .discount-verified.error .discount-display {
    color: #CC0000;
    font-style: normal;
}

.buy-dlg .discount-verified .checkmark {
    /* bg img from bc-ui class */
    display: inline-block;
    width: 14px;
    height: 11px;
    margin: 0 3px 0 1px;
    background-position: 0 -6px;
}

.buy-dlg .discount-verified.error .checkmark {
    display: none;
}

.buy-dlg .discount-code .busy-icon {
    display: inline-block;
    height: 1.2em;
    width: 1.2em;
    margin-right: 0.2em;
    vertical-align: text-bottom;
    background: url(/img/loading-dark.gif) no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.buy-dlg .discount-code a.change {
    padding-left: 0.3em;
}

.buy-dlg .discount-code .alert {
    display: block; /* visible by default; let KO manage visibility */
}

.buy-dlg .discount-code .friendly {
    color: #4f8e25;
}

.buy-dlg .subscriber-discount-display {
    padding-right: 0.4em;
    color: green;
    font-weight: bold;
}

.buy-dlg .discount-switch-to-code {
    white-space: nowrap;
}

/* ----- purchase note ------------------------------- */

.buy-dlg .purchase-note-section {
    margin-bottom: 2.5em;
}
.buy-dlg .purchase-note-section.with-notify-me {
    margin-bottom: 1.5em;
}

.buy-dlg .purchase-note-section .emphasis {
    font-weight: bolder;
}

.buy-dlg #purchase-note-footer {
    margin-bottom: 2.5em;
}

.buy-dlg #purchase-note-input {
    width: 96%;
}

.buy-dlg #purchase-note-countdown {
    margin-right: 2%;
    float: right;
}

/* ----- notify me ------------------------------- */

.buy-dlg .notify-me {
    margin-bottom: 2em;
}

.buy-dlg .notify-me-section,
.buy-dlg .notify-me-label-section,
.buy-dlg .notify-me-bc-promo-section {
    display: flex;
    align-items: flex-start;
}

.buy-dlg .notify-me-section input,
.buy-dlg .notify-me-label-section input,
.buy-dlg .notify-me-bc-promo-section input {
    margin: .15em 5px 0 0;
}

.buy-dlg .notify-me-section label,
.buy-dlg .notify-me-label-section label,
.buy-dlg .notify-me-bc-promo-section label {
    font-weight: normal;
    display: block;
    width: 90%;
    margin: 0;
    padding: 0 0 5px;
}

.buy-dlg .bc-promo-signup .privacy-msg {
    margin-left: 1.3em;
}

/* ----- payment nag ------------------------------- */

.buy-dlg .payment-nag-continue {
    color: #666;
    padding-top: 1em;
}
.buy-dlg a.grey-link {
    color: #666;
    text-decoration: none;
    cursor: text;
}


/* ----- email payment ------------------------------- */

.buy-dlg .email-section .subsection {
    margin: 0 0 1em;
}

.buy-dlg #fan_email_address {
    width: 90%;
    margin: 0.2em 0;
}

.buy-dlg #fan_email_country {
    width: 54%; 
}

.buy-dlg #fan_email_postalcode {
    width: 34%;
    margin-left: 1%;
}

.buy-dlg .below-pricing {
    opacity: 1;
    /*min-height: 140px;*/
    transition: min-height 0.1s,
                opacity 0.1s;
}
.buy-dlg .below-pricing.with-purchase-note {
    /*min-height: 140px;*/
}

.buy-dlg .below-pricing.fade-out {
    opacity: 0;
}

.buy-dlg .below-pricing.show-nag {
    /*min-height: 70px;*/
}

/* ----- DSA info ------------------------------------ */

.buy-dlg .trader-details-title {
    font-size: 12px;
    color: #666;
}

.buy-dlg .show-trader-details-wrapper button {
    text-decoration: none;
    color: #0687F5;
    background: none;
    border: none;
    display: inline;
    width: auto;
    padding: 0;
    margin: 0;
    font-size: 12px;
    height: auto;
    min-height: auto;
}

.buy-dlg .show-trader-details-wrapper button:active,
.buy-dlg .show-trader-details-wrapper button:hover,
.buy-dlg .show-trader-details-wrapper button:focus {
    background: none;
    border: none;
}

.trader-details .trader-caret,
.trader-details button.trader-details-close {
    display: none;
}

.trader-details .trader-seller-name {
    font-weight: bold;
}

.trader-details .trader-registered {
    margin-top: 20px;
}

/* ----- gift ------------------------------- */

.gift-panel input[type='text'].has-validation-error, .gift-panel textarea.has-validation-error{
    border-color: #e00;
}

.gift-panel input[type='textarea'].has-validation-error{
    border-color: #e00;
}

.gift-panel #gift_sender_note_error {
    margin-top: 5px;
}

.gift-panel .alert,
.gift-panel .gift-alert {
    color: #e00;
    font-size: 85%;
    font-weight: normal;
    margin: 0 0 8px 0;
}

.gift-panel .alertActive {
    display: block;
}

.gift-panel .alertActive.desktop {
    display: none;
}

.gift-panel .section {
    margin:0 0 9px;
}

.buy-dlg .buttons-section button:disabled {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default;
}

.gift-input, .gift-input-left {
    margin-bottom: 8px;
}

.gift-input-left {
    width: 16em;
}

.gift-options-full {

}

.gift-options-left {
    width: 80%;
    float: left;
}

.gift-options-right {
    width: 20%;
    float: left;
    text-align: center;
}

.gift-confirm-container .phone {
    display: block;
}

.gift-confirm-container .desktop {
    display: none;
}

.gift-confirm-container .gift-options-right > .gift-icon-large,
.gift-panel .gift-options-right > .gift-icon-large {
    width: 4rem;
    height: 68px;
    display: inline-block;
    background: url(/img/mobile-sprites-20150520.svg) no-repeat;
    background-size: 500% auto;
    background-position: 0 80%;
    opacity: 0.1;
    vertical-align: middle;
    margin-bottom: 1rem;
}
.gift-panel .gift-options-right > .gift-icon-large {
    margin-bottom: 0;
}

.gift-primary {
    font-weight: bold;
    margin-bottom: 5px;
}

.gift-recipient-email {
    margin-top: 15px;
    /*font-size: 13.5px;*/
}

.gift-secondary {
    font-weight: normal;
    color: gray;
}

.send-as-gift {
    margin-top: 1.25rem;
}

.gift-field {
    width: 100%;
    margin: 8px 0 0 0;
}
#gift-buttons {
    font-size:0;
}
.buy-dlg .buttons-section button.gift-button {
    padding: 0 1em;
    background: #097EC6;
    display: inline-block;
    margin: 16px 0 0;
}
.buy-dlg .buttons-section button.gift-button.correct,
.buy-dlg .buttons-section button.gift-button.go-back {
    margin-right: 4%;
    padding: 0;
    text-align: center;
    width: 48%;
    white-space: normal;
}

.buy-dlg .buttons-section button.gift-button.go-back {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #007df9;
    margin-right:0;
}

.gift-field > textarea {
    width: 95%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.gift-field > input {
    width: 100%;
}

.gift-field > input[type="text"] { /* to stop input from overflowing the parent container */
   -moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
    box-sizing:        border-box;
}

/* get physical */

.gift-field-half > #countrySelect {
    width: 15em;
}

.gift-field-half > #stateSelect {
    width: 15em;
    margin-top: 5px;
}

.gift-field > .gift-shipping-street {
    margin-bottom: 8px;
}

.gift-field .address-label {
    margin-bottom: 3px;
}

.gift-field .address-title {
    margin-bottom: 8px;
}

.gift-field .gift-country-warning {
    background-color: #fdfac7;
    padding: 5px;
    margin-top: 5px;
    width: 91%;
}

.gift-confirm .physical-address {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}

.gift-confirm .email {
    margin-bottom: 15px;
}

.gift-confirm .address-lines {
    
}

/* ----- dialog footer ------------------------------- */

.purchase-options-footer {
    background-color: #f5f5f5;
    border-top:1px solid #ededed;
    padding: 16px 20px 18px;
}

.purchase-options-footer p.options-desc {
    color: #505958;
    margin: 0 0 6px;
    font-size: inherit;
}

.purchase-options-footer .options-link {
    display: block;
}

/* ----- misc ------------------------------- */

.buy-dlg #download-panel-busy {
    display: none;
    text-align: center;
}

.buy-dlg #download-panel-busy:before {
    content: '';
    display: block;
    width: 10%;
    height: 0;
    padding-top: 10%;
    margin: 2em auto 1em auto;
    background: url(/img/playerbusy.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}

.no-svg .buy-dlg #download-panel-busy:before {
    background-image: url(/img/playerbusy_transp.gif);    
}

.buy-dlg #download-panel-complete {
    display: none;
}

.ui-dialog.gift-dialog.nu-dialog textarea,
.ui-dialog.gift-dialog.nu-dialog input[type="text"],
.ui-dialog.gift-dialog.nu-dialog input[type="email"],
.ui-dialog.gift-dialog.nu-dialog input[type="password"] {
    width: 100%;
    padding: 0.25rem;
    box-sizing: border-box;
}

.ui-dialog.gift-dialog.nu-dialog button#continue.gift-button {
    width: 100%;
}

div.gift-card-info {
    text-align: right;
}

.ui-dialog.gift-dialog span.ui-dialog-title {
    padding-left: 21px;
    background-image: url('/img/_sprite-bc-ui-20170921.png');
    background-position-x: 0px;
    background-position-y: -54px;
    background-size: 15px 90px;
    background-repeat: no-repeat;
}
/* trackpipe/public/css/cart_phone.css */
/* Shopping cart (phone view) ----------- */

#sidecart .switch-messaging {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 14px;
    line-height: 18px;
}

#sidecartBody {
    background: #fff;
}

#sidecartHeader {
    padding: 4.6875%; /* 30/640 */
    text-align: center;
    background: #fff;
}

#sidecartHeader > * {
    vertical-align: middle;
}

#sidecartHeader .title {
    color: #0687F5;
    font-size: 1rem;
}

#sidecart.expanded #sidecartHeader {
    background: #fff;
}

#sidecart.expanded #sidecartHeader  .title {
    color: #888;
}

#sidecartHeader .cart-icon {
    display: inline-block;
    position: absolute;
    top: auto;
    right: 1.5rem;
    width: 1.563rem;
    height: 0;
    padding-top: 1.125rem; /* height */
    background: url(/img/mobile-sprites-20150520.svg) no-repeat;
    background-size: 500% auto;
    background-position: 0 28%;
}

.no-svg #sidecartHeader .cart-icon {
    background-image: url(/img/mobile-sprites-20150520.png);
}

#sidecartHeader .cart-number {
    position: absolute;
    top: -31%;
    left: 75%;
    min-width: 0.75rem;
    padding: 0 0.0625rem;
    background: #5ac523;
    border: 1px solid #43b214;
    border-radius: 0.1875rem;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: bold;
}

#sidecart-phone-reveal {
    display: none;
    margin-top:-12px;
}

.has-menubar-phone #sidecart-phone-reveal {
    padding-top: 1rem;  /* extra whitespace when using the combined navbar/cart UI */
}

#sidecartContents {
    font-size: 0.8125rem;
    color: #333;
}

#sidecartContents {
    margin: 0 3.125%; /* 20/640 */
}

#sidecartContents .item {
    padding: 0.625rem 0;
    border-top: solid #e5e5e5 thin;
    width:100%;
    display:block;
    float: left;
    position: relative;
}

#sidecartContents .item:last-child {
    border-bottom: solid #e5e5e5 thin;
    margin-bottom:20px;
}

#sidecartContents .item a {
    color: black;
    display:block;
    width:50%;
    float:left;
}

#sidecartContents .item a.no-art {
    width: 65%;
}

#sidecartContents .item-type {
    float: left;
    width: 50%;
    display:block;
    color: #898989;
}

#sidecartContents .item-price {
    text-align: right;
    position:absolute;
    top:0%;
    right:10%;
}

#sidecartContents .item p {
    margin: 0;
}

#sidecartContents .cartItemContents {
    position: relative;
}

#sidecartContents .cartItemContents > * {
    vertical-align: top;
}

#sidecartContents .cartItemContents .thumb {
    display: block;
    float: left;
    width: 15%;
    height: 0;
    padding-top: 15%; /* height */
    margin: 0 2% 0 0;
    background: no-repeat; /* image url is set in template */
    background-size: 100% auto;
    outline: 1px solid rgba(0,0,0,0.18);
    outline-offset: -1px;
    position: relative;
}

#sidecartContents .cartItemContents .thumb.package {
    padding-top: 11.25%; /* 4:3 aspect ratio */
    /* When a package has no art, we fall back to its associated album art (if any), which
       uses a 1:1 aspect ratio. Clip it by centering vertically. */
    background-position: center;
}

#sidecartContents .cartItemContents .thumb.bundle {
    margin-left: -3.75em;
}

#sidecartContents .cartItemContents p {
    display: inline-block;
    width: 70%; /* to make room for thumb image and delete button */
    margin-top: -0.1em;
}

#sidecartContents .price {
    display: block;
    padding-top: 0.4em;
}

#sidecartContents .item .delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 7.5%;
    height: 0;
    padding-top: 7.5%; /* height */
    border: solid #e5e5e5 thin;
    border-radius: 0.4em;
}

#sidecartContents .item .delete span {
    display: block;
    text-indent: -9999rem;
    width: 50%;
    height: 0;
    padding-top: 50%; /* height */
    background: url(/img/mobile-sprites-20150520.svg) no-repeat;
    background-size: 500% auto;
    background-position: 0 23.87%;
    margin-top: -77%;
    margin-left: 27.5%;
    opacity: 0.55;
}

.no-svg #sidecartContents .item .delete span {
    background-image: url(/img/mobile-sprites-20150520.png);
}

#sidecartReveal {
    border-bottom: thin solid #ccc;
}

#sidecartFooter {
    margin: 1rem 3.125% 0; /* 20/640 */
    padding-bottom: 5%;
}

#sidecartFooter table#summary {
    width: 76%;
    margin-left: 12%;
}
#sidecartFooter td, #sidecartFooter th {
    padding: 0 0.3em 0.4em 0;
    text-align: left;
}

#sidecartFooter th {
    padding-right: 0.3125rem;
    font-size: 0.875rem;
}
#sidecartFooter td {
    width: auto;
    font-size: 0.875rem;
}

#sidecartFooter .numeric {
    text-align: right;
}

#sidecartFooter .small, #sidecartFooter .currency {
    font-size: 0.8rem;
}

#sidecartFooter .currency {
    width:5%;
}

#sidecartFooter .total > *, #sidecartFooter .summary-notes {
    padding-top: 0.5em;
}

#sidecartFooter .total th, #sidecartFooter .total .numeric {
    font-weight: bold;
}

#sidecartFooter .summary-notes {
    text-align: center;
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
}

#sidecartFooter .summary-notes > span:not(:first-child):before {
    content: " — "; /* emdash */
}

.sidecart-gift-card-footnote {
    color: #888;
    font-size: 0.75rem;
    margin: 1rem 2% 0 10%;
}

#sidecart a.buttonLink {
    display: block;
    width: 80%;
    margin: 0.625rem auto;
    line-height: 2.25rem;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 0.4em;
    color: #fff;
    background: #4F8E25;
    font-size: 0.8125rem;
}

.gifticon.bc-ui-m {
    float:left;
    margin-right: 3px;
    display: inline-block;
    width: 1.3em;
    height: 0;
    padding-top: 1.3em; /* height */
    background-size: 500%;
    background-position: 0 80%;
    vertical-align: text-bottom;
}

/* gift card balance */
.gift-balance-navbar {
    height: 50px;
    line-height: 50px;
    background: #FFF;
    color: #1DA0C3;
    border-bottom: thin solid #ccc;
    padding: 0px 16px;
    font-size: 13px;
    font-weight: 500;
}

.gift-balance-navbar .info-wrapper {
    width: 40%;
    display: inline-block;
    vertical-align: top;
}

.gift-balance-navbar .fan-info {
    width: 60%;
    display: inline-block;
    text-align: right;
}

.gift-balance-navbar .gift-card-icon-bordered {
    margin-bottom: 3px;
    margin-right: 3px;
}

.gift-balance-navbar a,
.gift-balance-navbar a:active,
.gift-balance-navbar a:hover {
    color: #1DA0C3;
}

.gift-balance-navbar .currency {
    font-size: 10px;
    color: #666;
}

.gift-balance-navbar .fan-name {
    display: inline-block;
    vertical-align: middle;
    max-width: 78%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gift-balance-navbar .fan-bio-photo {
    display: inline-block;
    vertical-align: middle;
    width: 22%;
}

.gift-balance-navbar .fan-bio-photo img {
    width: 32px;
    height: 32px;
    border: thin solid #ccc;
    border-radius: 5px;
}

/* dark */
.invertIconography #sidecartHeader {
    background: #efefef;
}

/* trackpipe/public/css/menubar_mobile_2018.css */
.menubar-2018-phone-wrapper {
    height: 59px;
}
.menubar-2018-phone-wrapper.has-corp-header,
.menubar-2018-phone-wrapper.search-page {
    height: 109px;
}
.menubar-2018-phone {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0px 1px #EEE;
    box-sizing: border-box;
    padding: 0 14px;
    background-color: #ffffff;
    min-height: 59px;
    transition: top 0.25s ease;
}
.menubar-2018-phone.has-search-widget {
    transition: top 0.4s ease;
}
.menubar-2018-phone.fixed {
    position: fixed;
    z-index: 111; /* footer z-index is 110 - higher so we don't get covered by footer on scrolling */
    top: 0;
}
.menubar-2018-phone.admin-impersonating {
    background-color: yellow;
    outline: 50px dotted rgba(255, 0, 0, 0.25);
    outline-offset: -50px;
}
.menubar-2018-phone-wrapper .menubar-2018-phone.hide {
    top: -60px;
}
.menubar-2018-phone-wrapper.has-corp-header .menubar-2018-phone.hide,
.menubar-2018-phone-wrapper.search-page .menubar-2018-phone.hide {
    top: -109px;
}
.special-banner-present .menubar-2018-phone-wrapper.has-corp-header .menubar-2018-phone.hide {
    top: -159px;
}
/* dark theme */
.has-menubar.invertIconography #menubar-2018-phone {
    background-color: #212121;
    box-shadow: 0px 1px rgba(255, 255, 255, 0.08);
}
.menubar-2018-phone .corp-logo-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 59px;
    /*flex: 1; arkark need design input: removing this improves wrapping issues on french loggged out nav. does it create others? (also see .logged-out-nav rules) */
}
.menubar-2018-phone .logo-big {
    background: url(/img/bandcamp-logo-color-bcaqua.svg) 0 0 no-repeat;
    background-size: 100%;
    height: 17px;
    width: 108px;
    margin: 15px 0 15px 0;
}
.menubar-2018-phone .logo-sm {
    background: url('/img/bandcamp-logo-bc-color-bcaqua.svg') 30% 50% no-repeat;
    background-size: 100%;
    width: 45px;
    height: 17px;
    margin: 15px 0 15px 0;
}
.has-menubar.invertIconography #menubar-2018-phone .logo-big {
    background: url('/img/logo-white.svg') 0 0 no-repeat;
    background-size: 100%;
    height: 17px;
    width: 108px;
}
.has-menubar.invertIconography #menubar-2018-phone .logo-sm {
    background: url('/img/bandcamp-logo-bc-white.svg') 30% 50% no-repeat;
    background-size: 100%;
    width: 45px;
    height: 17px;
    margin: 15px 0 15px 0;
}
.menubar-2018-phone .logo-sm > span,
.menubar-2018-phone .logo-big > span {
    display: none;
}
.menubar-2018-phone .userpic {
    display: block;
    float: right;
    background: transparent;
    width: 29px;
    height: 29px;
    border-radius: 50% 50%;
}
.menubar-2018-phone .userpic.admin {
    border: 3px red solid;
}

.menubar-2018-phone .userpic > img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50% 50%;
}
/* mobile autocomplete */
.menubar-2018-phone .mobile-autocomplete-wrapper {
    height: 100vh;
    width: 100%;
    position: fixed;
    background: #ffffff;
    z-index: 200;
    top: 0;
    left: 0;

    -ms-overflow-style: none;
}
.menubar-2018-phone .mobile-autocomplete-wrapper::-webkit-scrollbar {
    display: none;
}
.menubar-2018-phone .mobile-autocomplete-wrapper .clear-autocomplete {
    display: block;
    position: absolute;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    top: 17px;
    color: #9B9B9B;
}

body:lang(en) .menubar-2018-phone .mobile-autocomplete-wrapper .clear-autocomplete {
    left: calc(100% - 92px);
}
body:lang(ja) .menubar-2018-phone .mobile-autocomplete-wrapper .clear-autocomplete {
    left: calc(100% - 120px);
}
body:lang(fr) .menubar-2018-phone .mobile-autocomplete-wrapper .clear-autocomplete {
    left: calc(100% - 98px);
}

body:lang(en) .mobile-searchbar-2018 .is-loading .loading-icon {
    left: calc(100% - 94px);
}
body:lang(ja) .mobile-searchbar-2018 .is-loading .loading-icon {
    left: calc(100% - 122px);
}
body:lang(fr) .mobile-searchbar-2018 .is-loading .loading-icon {
    left: calc(100% - 100px);
}

.menubar-2018-phone .mobile-autocomplete-wrapper .cancel-autocomplete {
    display: inline-block;
    top: 8px;
    left: calc(100% - 100px);
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    padding: 20px 13px 10px 12px;
    color: #9B9B9B;
}
.menubar-2018-phone #autocomplete-results.header-rework-2018 .autocomplete-tags {
    width: calc(100% - 40px);
    position: fixed;
    bottom: 0px;
    opacity: 1;
}
.menubar-2018-phone #autocomplete-results.header-rework-2018 .see-all {
    display: none;
}
.menubar-2018-phone #autocomplete-results.header-rework-2018 .results-list {
    max-height: calc(100vh - 63px);
    overflow-y: scroll;
    box-shadow: 0 0 0 2px #fff;
    -webkit-overflow-scrolling: touch;
}
.menubar-2018-phone #autocomplete-results.header-rework-2018 .results-list.tag-room {
    max-height: calc(100vh - 110px);
}
.menubar-2018-phone .mobile-autocomplete-wrapper .flex {
    display: flex;
}
/* mobile blue user menu */
.menubar-2018-phone .user-menu-wrapper {
    background: -webkit-linear-gradient(300deg, #2eaec3, #1aa2e6);
    height: 101vh;
    width: 80vw;
    position: fixed;
    background-color: #1aa2e6;
    z-index: 200;
    right: 0px;
    top: 0;
    border-left: solid 20vw rgba(0, 0, 0, .5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: white;
}
.menubar-2018-phone .user-menu-wrapper .close {
    display: block;
    top: 10px;
    left: calc(100% - 50px);
    font-size: 40px;
    font-weight: 100;
    position: absolute;
    text-align: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
    line-height: 40px;
}
.menubar-2018-phone .user-menu-wrapper .menu-content {
    line-height: 1.3;
    font-size: 20px;
    position: absolute;
    top: 53px;
    left: 20px;
    right: 20px;
}
.menubar-2018-phone .user-menu-wrapper a {
    color: #fff;
}
.menubar-2018-phone .user-menu-wrapper .menurow.userdata div {
    display: inline-block;
    float:left;
    clear: left;
}
.menubar-2018-phone .user-menu-wrapper {
    font: 24px 'Helvetica Neue',Helvetica,Arial,sans-serif;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}
.menubar-2018-phone .user-menu-wrapper .app-links {
    margin-top: 67px;
}
.menubar-2018-phone .user-menu-wrapper .app-links.fan-only {
    margin-top: 47px;
}
.menubar-2018-phone .user-menu-wrapper .small-links {
    margin-top: 57px;
}
.menubar-2018-phone .user-menu-wrapper .small-links.fan-only {
    margin-top: 61px;
}
.menubar-2018-phone img {
    display: inline-block;
}
.menubar-2018-phone .user-menu-wrapper img.usermenu-userpic,
.menubar-2018-phone .user-menu-wrapper .no-image-placeholder {
    border-radius: 50%;
    height: 29px;
    width: 29px;
    margin: 0 0 0 11px;
}
.menubar-2018-phone .user-menu-wrapper .view-site-collection {
    font-size: 14px;
    top: 1px;
    position: relative;
}
.menubar-2018-phone .user-menu-wrapper .app-icon {
    height: 23px;
    width: 23px;
    margin: 4px 0 0 9px;
}
.menubar-2018-phone .user-menu-wrapper .small {
    font-size: 14px;
    font-weight:  500;
    margin-top: 24px;
}

.menubar-2018-phone .user-menu-wrapper .small .lang {
    color: rgba(255,255,255,0.6);
}
.menubar-2018-phone .menurow {
    display: flex;
    word-break: break-word;
    margin-top: 20px;
}
.menubar-2018-phone .menurow .col1 {
    min-width: 50px;
}
.menubar-2018-phone .menurow.fan-row {
    margin-top: 40px;
}
.menubar-2018-phone .menurow.purchases {
    margin-top: 30px;
}
.menubar-2018-phone .menurow.header-discover-2023 {
    margin-top: 20px;
    font-size: 16px;
}
.menubar-2018-phone .menurow.categories {
    margin-top: 16px;
    font-size: 12px;
}
.menubar-2018-phone .logged-out-nav,
.menubar-2018-phone .logged-in-nav {
    flex: 1; /* for menubar-2018 parent flex container alignment */

    display: flex;
    justify-content: flex-end;
    align-items: center; 
}
.menubar-2018-phone .logged-out-nav > div,
.menubar-2018-phone .logged-in-nav > div {
    padding-left: 22px;
    /*flex-shrink: 0; arkark need design input: removing this improves wrapping issues on french loggged out nav. does it create others? (also see .corp-logo-wrapper rules) */
}
.menubar-2018-phone .logged-out-nav > div > a,
.menubar-2018-phone .logged-in-nav > div > a {
    font: 14px/1 'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight: 500;
    color: #000000;
}
.has-menubar.invertIconography #menubar-2018-phone .logged-out-nav > div > a,
.has-menubar.invertIconography #menubar-2018-phone .logged-in-nav > div > a {
    color: #FFFFFF;
}
.menubar-2018-phone .menubar-search-icon,
.menubar-2018-phone .menubar-collection-icon {
    fill: #000000;
}
#menubar-2018-phone.mobile-cd.loading .hidden-while-loading,
.menubar-2018-phone.loading .hidden-while-loading {
    display: none !important;
}
.menubar-2018-phone .no-image-placeholder {
    background-color: #408ea3;
    background: -webkit-linear-gradient(left, #6046FE, #1DA0C3);
    width: 29px;
    height: 29px;
    border-radius: 50%;
}
.hd-banner-mobile-2018 {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    min-height: 50px;
    padding: 0 14px;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 1px solid #EEE;
    font-weight: 500;
}
.hd-banner-mobile-2018-inner {
    line-height: 50px;
    display: block;
}
.hd-banner-mobile-2018-inner .blue-gradient {
    font-weight: bold;
    margin: 0;
    color: #408ea3;
    background: -webkit-linear-gradient(left, #6046FE, #1DA0C3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hd-banner-mobile-2018-inner a:hover {
    text-decoration: none;
}

/* mobile expando cart */
.menubar-2018-phone .cart-mobile {
    position: relative;
    fill: #000000;
}
#menubar-2018-phone.mobile-cd svg.menubar-cart-icon text,
.menubar-2018-phone .cart-mobile svg.menubar-cart-icon text {
    font-size: 9px;
    font-weight: 600;
    stroke: none;
}

.menubar-2018-phone.fixed .cart-mobile.expanded .cart-up,
.menubar-2018-phone .cart-mobile .cart-up {
    display: none;
}
.menubar-2018-phone .cart-mobile.expanded .cart-up {
    display: block;
    position: absolute;
    bottom: -10px;
    z-index: 2;
}

/* new mobile sidecart styles, menubar 2018 */
#sidecart.menubar-2018-mobile-cart #sidecartReveal {
    border: none;
}
#sidecart.menubar-2018-mobile-cart #sidecart-phone-reveal {
    margin-top: 0;
    border-top: thin solid #EEE;
    border-bottom: thin solid #EEE;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents {
    font-size: 12px;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .item {
    border: none;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .itemName {
    font-weight: bold;
    padding-top: 6px;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .cartItemContents .thumb {
    width: 50px;
    height: 50px;
    margin-right: 7px;
    padding-top: 0;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .cartItemContents .thumb.package {
    height: 40px;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .item .delete {
    /* most of these are set to undo the pre-2018 menubar rework sidecart css rules */
    border: none;
    font-weight: 400;
    background:none;
    width: auto;
    text-indent: 0; 
    opacity: 1;
    position: absolute;
    right: 0;
    padding-top: 6px;
    top: 0;
    height: 15px;
    line-height: 15px;
    padding-right: 3px;
    color: #898989;
    font-size: 12px;
}
html:lang(de) #sidecart.menubar-2018-mobile-cart #sidecartContents .item .delete {
    right: -0.5em;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .item .delete span {
    text-indent: 0;
    background: none;
    opacity: 1;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}
#sidecart.menubar-2018-mobile-cart #sidecartContents .item-price {
    padding-top: 6px;
    right: 52px;
    height: 15px;
    line-height: 15px;
}
#sidecart.menubar-2018-mobile-cart #sidecartFooter {
    margin: 0 3.125%;
    padding-bottom: 0;
}
#sidecart.menubar-2018-mobile-cart #sidecartFooter table#summary {
    width: auto;
    margin: 0 52px 0 57px;
}
#sidecart.menubar-2018-mobile-cart #sidecartFooter table#summary .currency {
    padding-right: 0;
    font-weight: bold;
}
#sidecart.menubar-2018-mobile-cart #sidecartFooter .total th {
    font-weight: normal;
}
#sidecart.menubar-2018-mobile-cart #sidecartFooter .card-details {
    text-align: right;
    padding-right: 0;
}
#sidecart.menubar-2018-mobile-cart #sidecartFooter .icon-cc {
    text-align: left; /* to hide text for image replacing */
}
#sidecart.menubar-2018-mobile-cart a#sidecartCheckout.buttonLink {
    width: 100%;
    height: 41px;
    line-height: 41px;
    border-radius: 3px;
    background-color: #2d9100;
    font-size: 14px;
}
#sidecart.menubar-2018-mobile-cart .sidecart-gift-card-footnote {
    margin: 0;
    text-align: center;
    padding-bottom: 10px;
    width: 100%;
}

/* icons with dark theme */
.has-menubar.invertIconography #menubar-2018-phone .menubar-search-icon,
.has-menubar.invertIconography #menubar-2018-phone .cart-mobile,
.has-menubar.invertIconography #menubar-2018-phone .menubar-cart-icon,
.has-menubar.invertIconography #menubar-2018-phone .menubar-collection-icon {
    fill: #FFF;
}
.menubar-2018-phone .login-link {
    padding-right: 5px;
}
/* override rules from download_phone_2016 */
.menubar-2018-phone.download-page * {
    box-sizing: content-box;
}
/* custom domain mobile mini menubar */
#menubar-2018-phone .mobile-cd {
    background: #fff;
}
#menubar-2018-phone #sidecartHeader .menubar-cart-icon-wrapper {
    display: inline-block;
    position: absolute;
    top: auto;
    margin-top: -4px;
    right: 1.5rem;
}
#menubar-2018-phone #sidecartHeader .title {
    color: black;
}
.invertIconography #menubar-2018-phone #sidecartHeader {
    background-color: #212121;
    fill: #fff;
}
.invertIconography #menubar-2018-phone #sidecartReveal {
    border-bottom: thin solid #777;
}
.invertIconography #menubar-2018-phone #sidecartHeader .title {
    color: #fff;
}

