body.null.comm-page-home,
body.null.comm-page-custom-case {
    max-width: 100% !important;
}

body.null.comm-page-home > .siteforceStarterBody,
body.null.comm-page-custom-case > .siteforceStarterBody {
    padding: 0;
}

body.null > .siteforceStarterBody .cCenterPanel {
    max-width: 100% !important;
}

.tabGroup {
    overflow: hidden;
}
/* Configure the radio buttons to hide off screen */
.tabGroup > input[type="radio"] {
    position: absolute;
    left:-100px;
}
/* Configure maximum width of tabs and align to top */
.tabGroup > div.tablabels {
    display: block;
    background: #F5F5F5;
    padding: 8px 0px 12px 8px;
    float: left;
    box-shadow: 0px 1px 1px #9ca3af;
}
/* Configure labels to look like tabs */
.tabGroup > div.tablabels > label {
    display: inline-block;
    width: 100%;
    height: 46px;
    cursor: pointer;
    font-size: 24px;
    padding: 10px 10px 0px 0px;
    z-index: 10000;
}
/* Focused tabs need to be highlighted as such */
.tabGroup > input.rad1:focus ~ div.tablabels > label.rad1, .tabGroup > input.rad2:focus ~ div.tablabels > label.rad2, .tabGroup > input.rad3:focus ~ div.tablabels > label.rad3 {
    border:1px #D0FF00;
}
/* hovered tabs need to be highlighted as such */
.tabGroup > input.rad1:hover ~ div.tablabels > label.rad1, .tabGroup > input.rad2:hover ~ div.tablabels > label.rad2, .tabGroup > input.rad3:hover ~ div.tablabels > label.rad3 {
    text-shadow: 1px 1px 15px #A1A1A1;
}
/* Checked tabs must be white with the bottom border removed */
.tabGroup > input.rad1:checked ~ div.tablabels > label.rad1, .tabGroup > input.rad2:checked ~ div.tablabels > label.rad2, .tabGroup > input.rad3:checked ~ div.tablabels > label.rad3 {
    font-weight: bold;
    text-shadow: 0 1px #0F1014;
    background: transparent;
    border-left: 6px solid #148dfa;
    box-shadow: -1px 0 0 0 #148dfa;
    cursor: pointer;
    font-size: 24px;
    color: #666666;
}
.tabGroup > div.tabcontent {
    display: block;
    width: 100%;
    overflow: none;
    overflow-y: hidden;
}

.tabGroup > div.tabcontent h1.mb-8 {
    margin-left: 16px;
    margin-top: 76px;
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 24px;
    color: #191919;
}
.tabGroup > div.tabcontent .slds-tabs_default__nav {
    border: 0;
    margin-left: 16px;
}

.tabGroup > div.tabcontent .slds-tabs_default__nav li.slds-is-active a {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    color: #3665F3
}
.tabGroup > div.tabcontent .slds-tabs_default__item.slds-is-active:after,
.tabGroup > div.tabcontent .slds-tabs_default__item:hover:after {
    background-color: #3665F3 !important;
}
.tabGroup > div.tabcontent .slds-tabs_default__nav li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    font-style: normal;
}

/* The tab content must fill the widgets size and have a nice border */
.tabGroup > div.tabcontent > div {
    display: none;
    padding: 12px 12px;
    height: 100%;
    overflow: auto;
    overflow-y: hidden;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

/* This matchs tabs displaying to thier associated radio inputs */
.tabGroup > .tab1 ~ div.tabcontent > .tab1,
.tabGroup > .tab2 ~ div.tabcontent > .tab2 {
    display: block;
}

.tabGroup > .tab2 ~ div.tabcontent > .tab2 {
    overflow: hidden;
}

.fade-in {
    animation: fadeIn linear .15s;
    -webkit-animation: fadeIn linear .15s;
    -moz-animation: fadeIn linear .15s;
    -o-animation: fadeIn linear .15s;
    -ms-animation: fadeIn linear .15s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.tabGroup > div.tabcontent > div > legend{
    text-align: left;
    color: #666;
    font-size: 24px;
}
.tabGroup > div.tabcontent > div > .required_notification {
    color: #d45252;
    margin: 5px 0 0 0;
    display: inline;
    float: right;
}
.tabGroup > div.tabcontent > div > p{
    float:left;
    clear:both;
    margin:5px 0px;
    background: linear-gradient(#111111,#222222);
    border:1px solid #000;
    width:400px;
    padding:10px;
    margin-left:100px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
}
.tabGroup > div.tabcontent > div > p label{
    width:160px;
    float:left;
    text-align:right;
    line-height:26px;
    color:#666;
    text-shadow:1px 1px 1px #000;
    font-weight:bold;
    background: #111;
    -webkit-box-shadow: inset 0 1px 3px rgba(51,51,51,0.95);
    -moz-box-shadow: inset 0 1px 3px rgba(51,51,51,0.95);
    box-shadow: inset 0 1px 3px rgba(51,51,51,0.95);
}
.tabGroup > div.tabcontent > div > input:not([type=radio]),
.tabGroup > div.tabcontent > div > textarea,
.tabGroup > div.tabcontent > div > select{
    background: #000;
    border: 1px solid #ddd;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    padding: 5px;
    width: 200px;
    float:left;
}
.tabGroup > div.tabcontent > div > input:focus{
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    background-color:#FFFEEF;
}
.tabGroup > div.tabcontent > div > p.submit{
    background:none;
    border:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}
.tabGroup > div.tabcontent > div > button {
    border:none;
    outline:none;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #ffffff;
    display: block;
    cursor:pointer;
    margin: 0px auto;
    clear:both;
    padding: 7px 25px;
    text-shadow: 0 1px 1px #777;
    font-weight:bold;
    font-family:"Century Gothic", Helvetica, sans-serif;
    font-size:22px;
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    background:#4797ED;
}
.tabGroup > div.tabcontent > div > button:hover {
    background:#d8d8d8;
    color:#666;
    text-shadow:1px 1px 1px #fff;
}

.logo-tab {
    display: block;
    display: block;
    text-indent: -9999px;
    width: auto;
    height: 74px;
    background: url(../img/fig-ebay-ori.svg) no-repeat;
    background-position: left;
    transition: 0.3s;
}

.sidebar.closed .logo-tab {
    transition: 0.3s width;
}

.footer-links {
    bottom: 20px;
    position: absolute;
}

.welcome-hero {
    background: url(../img/fig-welcome.svg) no-repeat;
    background-position: 100% 144px;
}

/*sidebar nav ref - https://codepen.io/ilyasbilgihan/pen/BadPLRd*/

.logo,
.footer a {
    color: #707070;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}
.logo:hover {
    color: #181820;
}
nav li a {
    color: #707070;
}
nav li a:hover {
    color: #333333 !important;
}
.footer .more:hover,
.footer .icon:hover,
.footer a:hover {
    color: #333333;
}
ul li.withDivider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
nav li.active a {
    color: #191919 !important;
}
.toggle {
    transition: 0.3s left, 1s background;
    color: #bdbcb8;
    position: fixed;
    bottom: 48px;
    left: 234px;
}

.toggle:hover {
    color: #181820;
}

.sidebar {
    width: 290px;
    min-height: 100%;
    height: 100vh;
    background-color: #FAFAFA;
    transition: 0.3s width, 1s background;
    color: #E9E9E9;
    box-shadow: 1px 0px 0px #E9E9E9;
}

.sidebar nav {
    overflow-y: overlay;
    overflow-x: hidden;
    color: #21212b;
    transition: 1s color;
    position: fixed;
    top: 120px;
    left: 0;
}
.sidebar ul li.active a {
    color: #fefefe;
}
.sidebar ul li.withDivider {
    border-top: 1px solid rgba(238, 238, 238, 0.1);
}
.sidebar ul .indicator {
    animation: blink 1.5s infinite;
}
.sidebar ul a span {
    white-space: nowrap;
    transition: 0.3s opacity;
}
.sidebar .footer {
    transition: 1s background;
    padding-left: 32px;
    position: fixed;
    bottom: 48px;
}
.sidebar .footer a {
    transition: 0.3s color;
    line-height: 26px;
}
.sidebar.closed {
    width: 6rem;
}
.sidebar.closed .toggle {
    transform: rotate(180deg);
    left: 32px;
}
.sidebar.closed nav ul li a span {
    opacity: 0;
    width: 0;
}
.sidebar.closed .indicator {
    transform: translate(-15px, -8px);
}
.sidebar.closed .footer .more {
    opacity: 0;
}
.sidebar.closed .footer .briefcase {
    opacity: 0;
}
.sidebar.closed ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb {
    width: 16px;
    border-radius: 8px;
    background-clip: padding-box;
    border: 6px solid transparent;
}

*::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0 10px;
}

@keyframes blink {
    50% {
        background: transparent;
    }
}
.toggle-container {
    width: 70px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 5px;
    position: relative;
    transition: background 0.5s;
    overflow: hidden;
}
.toggle-container .icon svg {
    stroke: #fff;
    stroke-width: 1.5px;
    width: 19px;
}
.toggle-container .toggle-dark-icon {
    margin-left: 12px;
    margin-top: 1px;
}
.toggle-container .toggle-dark-icon svg {
    transition: transform 0.9s;
    transform: translateX(0px);
}
.toggle-container .toggle-light-icon {
    margin-top: 2px;
}
.toggle-container .toggle-light-icon svg {
    transform-origin: center;
    transform: scale(0.7) rotate(0deg);
    position: relative;
    right: 30px;
    transition: transform 0.9s, right 0.5s;
}
.toggle-container .toggle-circle {
    width: 24px;
    height: 24px;
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    left: 5%;
    transition: left 0.5s;
}

.input-search-box lightning-input div div.slds-form-element__control {
    margin-top: -12px;
}

.input-search-box lightning-input div div.slds-form-element__control .slds-input,
.input-search-box lightning-input div div.slds-form-element__control .slds-input:focus,
.input-search-box lightning-input div div.slds-form-element__control .slds-input:active {
    border: none;
    outline: 0;
    --slds-c-input-shadow: none;
}

.combobox lightning-combobox.page-size-combobox.combobox__control,
.case-subject-lines .combobox lightning-combobox.combobox__control {
    text-align: left;
}

.combobox lightning-combobox.page-size-combobox.combobox__control .slds-form-element__help,
.case-subject-lines .combobox lightning-combobox.combobox__control .slds-form-element__help {
    position: absolute;
    margin-top: 40px;
}

.case-subject-lines .reason-code .combobox lightning-combobox.combobox__control .slds-form-element__help {
    position: absolute;
    margin-top: 0;
}

.combobox lightning-combobox.page-size-combobox.combobox__control button.slds-combobox__input,
.case-subject-lines .combobox lightning-combobox.combobox__control button.slds-combobox__input {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding-right: 10px;
    padding-left: 0px;
}
a.mailto-color,
a.link-color {
    color: #3665F3;
}
/**modal add another rights owner*/
section.slds-modal.slds-modal_small .slds-modal__container {
    min-width: 30rem !important;
    width: 30rem !important;
}

section.slds-modal.slds-modal_small .slds-modal__container lightning-modal-body[c-veromodaladdanotherrightsowner_veromodaladdanotherrightsowner] .slds-modal__content {
    height : 260px;
}

.file-upload--link.btn.btn--secondary .slds-file-selector .slds-file-selector__dropzone label.slds-file-selector__body {
    width: 26rem;
    border: 0px;
}

.file-upload--link.btn.btn--secondary .slds-form-element .slds-form-element__label {
    margin-left: 60px;
    width: 200px;
}

.upload-case-detail .slds-form-element__label {
    margin-left: 45px !important;
    color: #000 !important;
}

[file-error="false"][is-portal="true"] .upload-case-detail .slds-form-element__label {
    top: calc(50% - 20px);
}

.upload-case-detail .slds-file-selector__body {
    width: 150px !important;
    height: 40px !important;
    min-height: 40px !important;
}

.upload-case-detail .icon.icon--upload-16 {
    margin-left: 0 !important;
    margin-top: 0 !important;
    position: absolute;
    top: 13px;
    left: 15px;
    color: #000 !important;
}

.upload-case-detail .slds-file-selector__body {
    border-color: #000 !important;
}

.combobox.combobox-complete-details.custom-combobox lightning-combobox.combobox__control button.slds-combobox__input{
    border-radius: 99px 0px 0px 99px !important;
}
.combobox.combobox-complete-details.custom-combobox .slds-input{
	border-color: #9E9E9E !important;
    border-left: none !important;
    border-radius: 0px 99px 99px 0px !important;
}
.custom-modal-body-brand .slds-modal__content.slds-p-around_medium {
    min-height: 70px !important;
}
.brand-pill-wrapper .slds-pill {
    height: 34px;
    width: 100%;
}

.brand-pill-wrapper lightning-pill {
  width: 100%;
}

[lang='de'] .upload-case-detail .slds-form-element__label,
[lang='fr'] .upload-case-detail .slds-form-element__label {
    margin-left: 40px !important;
    width: 130px;
}
[lang='de'] .btn.btn--secondary .slds-file-selector .slds-file-selector__dropzone label.slds-file-selector__body {
    min-width: 163px;
}
[lang='fr'] .btn.btn--secondary .slds-file-selector .slds-file-selector__dropzone label.slds-file-selector__body {
    min-width: 170px;
}
[lang='de'] .reg-footer {
    height: inherit;
}
[lang='de'] .btn-primary-no-min-width {
	width: inherit;
}
[lang='de'] .truncate.truncate-original-case {
	max-width: 260px;
}
[lang="fr"] .link-btn-login {
    width: 145px;
}
[lang="fr"] .tc-content[c-veroLogin_veroLogin],
[lang="es"] .tc-content[c-veroLogin_veroLogin],
[lang="de"] .tc-content[c-veroLogin_veroLogin]{
    margin-top: 231px;
}

[lang="it"] .custom-filter[c-veroMembers_veroMembers],
[lang="fr"] .custom-filter[c-veroMembers_veroMembers],
[lang="es"] .custom-filter[c-veroMembers_veroMembers]
{
    width: 135px;    
}

[lang="fr"] .btn-custom-width[c-veroRelationship_veroRelationship],
[lang="de"] .btn-custom-width[c-veroRelationship_veroRelationship],
[lang="it"] .btn-custom-width[c-veroRelationship_veroRelationship]{
    min-width: 310px;
}
[lang="es"] .btn-custom-width[c-veroRelationship_veroRelationship]{
    min-width: 332px;
}

svg.icon.icon--upload-16[c-veroModalAddAnotherRightsOwner_veroModalAddAnotherRightsOwner]{
    position: absolute;
    bottom: 36%;
    margin-left: 0 !important;
    left: 0;
}
.file-upload-space[c-veromodaladdanotherrightsowner_veromodaladdanotherrightsowner] {
    position: relative;
}
[c-veromodaladdanotherrightsowner_veromodaladdanotherrightsowner] .file-upload--link.btn.btn--secondary .slds-form-element .slds-form-element__label {
    margin-left: 25px;
    width: 250px;
}

@media only screen and (max-height: 700px) {
    [lang="fr"] .tc-content[c-verologin_verologin],
    [lang="es"] .tc-content[c-verologin_verologin],
    [lang="de"] .tc-content[c-verologin_verologin]{
        margin-top: 134px;
    }
}


