@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    box-sizing: border-box;
    font-family: 'Open Sans', serif;
    background-color: #eaeaea;
}

em {
    font-weight: bold;
}

svg text {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.content-holder {
    padding: 0;
    margin-top: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.title-holder {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.section-holder {
    padding: 0;
    margin: 0px .5rem;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 
example below: change size of container and 
watch as svg (without viewport) scales 
to fit 
*/
.svg-holder {
    width: 500px;
    height: 500px;
    box-shadow: 0px 0px 20px #cccaca;
    overflow: hidden;
}

.svg-holder-small {
    width: 250px;
    height: 250px;
    box-shadow: 0px 0px 10px #cccaca;
    overflow: hidden;
}

.svg-holder-slim {
    width: 250px;
    height: 500px;
    box-shadow: 0px 0px 10px #cccaca;
    overflow: hidden;
}

.svg-holder-fat {
    width: 500px;
    height: 250px;
    box-shadow: 0px 0px 10px #cccaca;
    overflow: hidden;
}

svg {
    border: 1px solid rgb(133, 132, 132);
    cursor: default;
    user-select: none;
    /* supported by Chrome and Opera */
    -webkit-user-select: none;
    /* Safari */
}

.info-holder {
    width: 500px;
    ;
    margin: 1rem 0;
    text-align: center;
}

.title {
    width: 100%;
    font-weight: bold;
    font-size: 1.5rem;
}

.subtitle {
    width: 100%;
    font-size: .8rem;
    font-style: italic;

}

.description {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
}

.info {
    width: 500px;
    font-size: .8rem;
    font-style: italic;
    margin: 1rem 0;
    border-bottom: 1px solid #CCCCCC;
}

.small-info {
    width: 500px;
    font-size: .8rem;
    margin: .25rem 0;
}

.descriptive-info-holder {
    width: 490px;
    margin: .5rem 0;
    background: #eeeeee;
    color: black;
    padding: .5rem;
    border: 0.5px solid #eaeaea;
}



/* 
form elements
*/

input[type=text] {
    font-size: 1rem;
    position: relative;
    width: 500px;
    padding: 8px;
    display: block;
    border: none;
    border-bottom: 1px solid #ccc;
}

.button-holder {
    display: flex;
    flex-direction: row;
    justify-content: start;

}

.button {
    display: inline;
    font-size: 16px;
    border: 1px solid #474747;
    padding: 5px 10px;
    margin: .5rem;
    border-radius: 4px;
    background-color: white;
    transition-property: background-color;
    transition-duration: 333ms;
    color: #474747
}

.button:hover {
    background-color: #EAEAEA;
}

/* slider */

.slidecontainer {
    width: 100%
}


/* radio */
.radio-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    gap: 1rem;
}

.radio-label {
    font-size: .8rem;
    font-weight: bold;
    text-align: right;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.radio-group-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

/* The container */
.radio-button-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: .8rem 1rem .8rem 0;
    cursor: pointer;
    font-size: .8rem;
    line-height: 25px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-button-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid grey;
    border-radius: 5%;
    transition: ease-in-out;
    transition-duration: .33s;
    transition-property: all;
}

/* On mouse-over, add a grey background color */
.radio-button-container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-button-container input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-button-container input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-button-container .checkmark:after {
    width: 100%;
    height: 100%;
    border-radius: 5%;
    background: #2196F3;
}




/* animation */