/* ------- General Settings ------- */
.pm__container {
    width: 80%;
    margin: 70px auto 0 auto;
}
.presentation-module .pm__hide {
    display: none;
}

/* ------- Intro ------- */

.pm__header {
    margin-bottom: 2rem;
    font-weight: 400;
}

@media only screen and (max-width: 992px) {
    .pm__header {
        text-align: center;
    }
    .pm__container {
        width: 100%;
    }
}

/* ------- Settings table -------*/

.pm__settings {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pm__settings-labels,
.pm__settings-expert,
.pm__settings-beginner {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
}

.pm__settings-level,
.pm__settings-level-mobile,
.pm__settings-radio-button {
    text-align: center;
    padding: 10px;
}

.pm__settings .pm__settings-table-labels td {
    width: 25%;
}

.pm__settings-intro {
    font-size: .9rem;
    font-weight: 400;
    margin-top: auto;
    margin-bottom: auto;
}

.pm__settings-level-mobile {
    display: none;
}

.pm__settings-level,
.pm__settings-level-mobile {
    font-weight: 400;
    font-size: .9rem;
}

.pm__settings-system {
    color: var(--black);
    font-size: 1.2rem;
    padding:10px;
    font-weight: 400;
}

.pm__settings-selector {
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.15);
}

.pm__selected {
    background: var(--black);
}

@media only screen and (max-width: 992px) {
    .pm__settings {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 1fr);
        margin-bottom: 30px;
    }

    .pm__greenline-settings {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 1;
        text-align: center;
    }
    .pm__web-settings {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 4;
        grid-row-end: 4;
        text-align: center;
    }

    .pm__settings-level-mobile {
        display: block;
    }
    
    .pm__settings-level,
    .pm__settings-level-mobile {
        font-size: .8rem;
    }
    
    .pm__settings-intro {
        display: none;
    }
}

/* ------- Result Table -------*/

.pm__result {
    display: flex;
    padding: 30px;
    background: var(--background-secondary);
    border-radius: 10px;
    margin-bottom: 5px;
}

.pm__result-descriptions {
    flex-basis: 25%;
    padding-right: 4%;
}

.pm__result-table {
    table-layout: fixed;
    border-collapse: collapse;
    color: var(--black);
    height: fit-content;
    width: 100%;
}

.pm__result-table-wrapper {
    background: var(--background-secondary);
    border-radius: 10px;
    width: 100%;
}

.pm__result-table-table-head-row {
    border-bottom: 1px solid var(--black);
}

.pm__result-description h2 {
    font-weight: bold;
    color: var(--black);
    font-size: 1.2rem;
}

.pm__result-table td,
.pm__result-table th {
    text-align: center;
    padding:0.75em;
}

.pm__result-table-header {
    border-bottom: 1px solid var(--black);
    font-weight: bold;
}

.pm__result-table-footer {
    border-top: 1px solid var(--black);
    font-weight: bold;
}

.pm__result-table-header:not(:first-child),
.pm__result-table-data:not(:first-child),
.pm__result-table-footer:not(:first-child) {
    border-left: 1px solid var(--black);
}

.pm__result-table-data:nth-of-type(2n+1)[class*=pm__web] {
    font-weight: bold;
}

@media only screen and (max-width: 992px) {
    .pm__result {
        flex-direction: column;
        background: var(--white);
        text-align: center;
        padding: 0;
    }
    
    .pm__result-descriptions {
        margin-bottom: 2rem;
    }

    .pm__result-table-wrapper {
        padding: 10px;
        margin-bottom: 1rem;
    }

    .pm__result-table td, 
    .pm__result-table th {
        padding: 0.5em;
        line-height: 1;
    }
}

@media only screen and (max-width: 550px) {
    .pm__result-table {
        font-size: 0.7rem;
    }
}

/* ------- Small Circles ------- */

.pm__small-circles {
    display: flex;
    background: #c7c7c7;
    border-radius: 10px;
    margin-bottom: 50px;
    padding: 30px;
}

.pm__small-circles-circles {
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
}

.pm__small-circles-heading {
    flex-basis: 25%;
    font-weight: bold;
    max-width: 25%;
    color: var(--black);
    margin: auto;
    font-size: 1rem;
}

.pm__small-circle {
    background: var(--black);
    color: #ffffff;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pm__small-circle-counter {
    font-weight: bold;
    font-size: 1.9rem;
}

.pm__small-circle-per {
    font-size: .8rem;
}

@media only screen and (max-width: 992px) {
    .pm__small-circles {
        flex-direction: column;
        background: var(--white);
        padding: 0;
    }
    .pm__small-circles-heading {
        margin-bottom: 1rem;
    }
    
    .pm__small-circles-circles {
        background: #ededed;
        width: 100%;
        padding: 30px;
        border-radius: 10px;
        flex-wrap: wrap;
        column-gap: 30px;
        row-gap: 30px;
        justify-content: initial;
    }
    .pm__small-circle {
        width: 40% !important;
        flex-grow: 1;
    }
    
    .pm__small-circle-counter {
        font-size: 2.9rem;
    }
}

@media only screen and (max-width: 668px) {
    .pm__small-circle-counter {
        font-size: 1.9rem;
    }
}

@media only screen and (max-width: 512px) {

    .pm__small-circles-circles {
        padding: 15px;
        column-gap: 15px;
        row-gap: 15px;
    }
    
    .pm__small-circle-counter {
    }
}

@media only screen and (max-width: 400px) {
    .pm__small-circle-counter {
        font-size: 1.2rem;
    }
}

 /* ------- Slider ------- */

.pm__slider-container {
    display: flex;
    margin-bottom: 40px;
}

.pm__slider-range-we {
    text-align: center;
    padding-left: 10px;
}

.pm__slider-range-i {
    text-align: center;
}

.pm__slider-output {
    position: relative;
    color: var(--black);
    font-weight: bold;
    top: 20px;
}

.pm__slider {
    flex-grow: 1;
}

.pm__slide {
    width: 100%;
    -webkit-appearance: none;
    height: 3px;
    border-radius: 5px;
    background: rgba(17,17,17,0.5);
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .pm__slide::-moz-range-progress {
        background-color: var(--black);
    }

    .pm__slide::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--black);
        cursor: pointer;
        border-color: var(--black);
    }

/* ------- Big Circles ------- */

.pm__big-circles-circles {
    display: flex;
    justify-content: space-around;
}

.pm__big-circles h2 {
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
}

.pm__big-circle {
    display: flex;
    background: var(--background-secondary);
    border-radius: 50%;
    width: 40%;
    aspect-ratio: 1;
    color: var(--black);
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: 1rem;
}

.pm__big-circle-counter,
.pm__big-circle-suffix {
    font-size: 4rem;
}

.pm__big-circle-under {
    font-size: 0.8rem;
}

@media only screen and (max-width: 992px) {
    .pm__big-circles-circles {
        flex-direction: column;
    }
    .pm__big-circle {
        width: 74%;
        margin: 0 13% 5% 13%;
    }
    
    .pm__big-circle-counter,
    .pm__big-circle-suffix {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 794px) {
    .pm__big-circle-counter,
    .pm__big-circle-suffix {
        font-size: 3rem;
    }
}
@media only screen and (max-width: 550px) {
    
    .pm__big-circle {
        width:100%;
        margin: 0 0 13% 0;
    }
    
    .pm__big-circle-counter,
    .pm__big-circle-suffix {
        font-size: 4rem;
    }
    
    .pm__big-circle-pre,
    .pm__big-circle-under {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 480px) {
    .pm__big-circle-counter,
    .pm__big-circle-suffix {
        font-size: 3rem;
    }

    .pm__big-circle-pre,
    .pm__big-circle-under {
        font-size: 0.8rem;
    }
}



