.salesviewer-base {
    padding: 0 10px;
    border: white;
}

.salesviewer-base label {
    margin: 4px;
}

.salesviewer-base__heading {
    padding: 4px;
    margin: 0;
    /* box-shadow: 0px 0px 1px 1px lightgray; */
    cursor: default;
    user-select: none;
    color: white;
    background: #483954
}

.salesviewer-base__body {
    padding: 4px;
    /* box-shadow: 0px 0px 1px 1px lightgray; */
}

.salesviewer-base__sales {
    /* box-shadow: 0px 0px 1px 1px lightgray; */
}

.salesviewer-base__configs {
    /* box-shadow: 0px 0px 1px 1px lightgray; */
}

.salesviewer-base__sale-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.salesviewer-base__sale-item--year {
    padding: 2px 10px 2px 2px;
}

.salesviewer-base__sale-item--ratio {
    padding: 2px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.salesviewer-base__sale-item--symbol {
    margin: 6px;
    height: 10px;
    width: 10px;
    /* background-color: #bbb; */
    border-radius: 50%;
    display: inline-block;
}

.salesviewer-base__ratio-legend {
    max-height: 200px;
    overflow-y: auto;
}

.salesviewer-base__ratio-legend--item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px;
}

.disabled {
    pointer-events: none;
    opacity: 0.4;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 1px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Toggle Switch */