/*
 * Gebruik nested CSS in je wrapper div: .awcf-wss-quick-scan
 * Meer informatie: https://www.w3schools.com/cssref/sel_nesting.php
 */

.awcf-wss-quick-scan {
    display: block;

    & .voorbeeld-nested-css {
        display: block;
    }

    &>a {
        display: block;
    }
}

.aw-wws-quick-scan-title,
.awcf-wss-quick-scan>h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #08090a;
    margin-top: 0;
    padding-top: 0;
}

#bereken-button {
    margin-top: 15px;
}

#awspinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--e-global-color-5210594);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.aw-resultaat-container {
    background-color: white;
    margin-top: 15px;
    border-radius: 20px;
    display: none;
    padding: 20px;
}

.awcf-wss-quick-scan h1 {
    color: var(--e-global-color-5210594);
}

.awcf-wss-quick-scan .label-cell {
    padding-top: 10px;
}

.aw-resultaat-container h4 {
    font-weight: 700;
    color: var(--e-global-color-5210594);
}

#aw-resultaat h5 {
    font-weight: 700;
    padding: 0;
    margin: 0;
}

#aw-resultaat {
    display: flex;
    flex-direction: column;
    column-gap: 20px;
    flex-wrap: wrap;
}

#aw-resultaat div {
    flex: 0 1 21%;
}

.aw-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.aw-tooltip .aw-tooltiptext {
    visibility: hidden;
    width: 320px;
    max-width: 80vw;
    background-color: black;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -160px;
    font-size: 13px;
    line-height: 1.1em;
    padding: 5px 10px;
}

.aw-tooltip:hover .aw-tooltiptext {
    visibility: visible;
}

@media only screen and (max-width: 675px) {
    #aw-resultaat div {
        flex: 0 1 48%;
    }
}

@media only screen and (max-width: 420px) {
    #aw-resultaat div {
        flex: 0 1 100%;
    }
}