div.center-horizontally {
    align-items: center;
    display: flex;
    flex-direction: column;
}

div.align-horizontally {
    display: flex;
    flex-direction: row;
}

div.content {
    max-width: 640px;
    padding: var(--padding-outside);
}

div.containsSVG {
    height: 50px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 0;  
    background: none;
    outline: var(--border-style);;
    margin: 0;
    cursor: pointer;
}
  
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 11px;
    border-radius: 0; 
    background: var(--my-black);
    border: none;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 12px;
    height: 11px;
    border-radius: 0; 
    background: var(--my-black);
    border: none;
    cursor: pointer;
}

.width100 {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.open-top {
    padding-top: 0;
    border-top: none;
}

p, h2 { 
    margin: 0;
}

h2 {
    font-size: 16px;
    font-weight: bolder;
}

br {
    display: block;
    margin: 1px;
}

.spacer {
    height: 7px;
    display: block;
}