.sec-block {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 0 0 0;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container-wrap {
    box-sizing: border-box;
    margin: 0 auto;
    width: 1440px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 960px) {
    .container-wrap {
        box-sizing: border-box;
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding: 0 15px;
    }
}

.select .select-toggle {
    border: none;
    font-family: inherit;
    font-size: inherit;
    background-color: var(--bg-subtle);
    padding: 12px 16px;
    border-bottom: var(--stroke-thin) solid var(--color__grey--400);
    color: var(--text-primary-light);
    display: inline-flex;
    width: 100%;
    height: inherit;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 900;
}

.articlelistingpage .filters .select .select-toggle {
    background-color: var(--bg-default);
    padding: var(--spacing__06) var(--spacing__03);
    border: var(--stroke-thin) solid var(--color__grey--700);
    border-radius: var(--radius-xsmall);
}


.compliance-at {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 10px;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.compliance-at .text-block__inner {
    box-sizing: border-box;
    margin: 0 0;
    padding: 10px 10px;
    width: 70%;
    height: auto;
    text-align: left;
    line-height: 1.6;
    font-size: 18px;
    border-left: solid 1px #eee;
}

@media screen and (max-width: 760px) {
    .container-wrap {
        box-sizing: border-box;
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding: 0 15px;
    }

    .compliance-at .text-block__inner {
        box-sizing: border-box;
        margin: 0 0;
        padding: 10px 10px;
        width: 100%;
        height: auto;
        text-align: left;
        line-height: 1.6;
        font-size: 18px;
        border-left: solid 1px #eee;
    }

    body.menu__mobile--expanded .header .desktop-hidden {
        display: block;
    }


    body.menu__mobile--expanded .header .header__outer .header__bottom {
        height: 100vh;
        display: block;
    }


}


.header .header__bottom .header__bottom-wrapper .header__nav--primary {
    display: flex;
    height: inherit;
    align-items: center;
    width: 100% !important;
}


.menu__mobile--expanded .link__container {
    background-color: var(--bg-default);
    top: 4rem;
    overflow-y: scroll;
    font-weight: var(--font__weight--700);
    line-height: var(--spacing__06);
    display: flex;
    z-index: 999;
}


.benefits-block .card__icon svg {
    height: 36px;
    width: 36px;
    fill: var(--color__white);
    position: absolute;
    left: 10px;
    top: 10px;
}

.benefits-block .card__icon svg use {
    width: 100%;
    height: 100%;
}


.price-item p {
    display: block;
    width: 100%;
    padding: 10px 0 10px 30px;
    border-bottom: solid 1px #000;
    box-sizing: border-box;
    position: relative;
    font-size: 14px;
}

.price-item p::before {
    content: "";
    position: absolute ; 
    z-index: 1; 
    left : 0px ; 
    top : 50% ;
    transform: translateX(0%) translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: solid 2px green;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='green' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}



                             
.uploadprocess {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 0 0 0;
    width: 100%;
    height: 16px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}
.uploadcur {
    width: 0%;
    height: 100%;
    background-color: #009100;
    color: #fff;
    font-size: 12px;
}


#btnSend {
    display: flex;
    cursor: pointer;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    border-radius: var(--radius-pill);
    box-sizing: border-box;
    font-size: var(--font__size--15);
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    transition: var(--duration-large) var(--ease-standard);
    font-family: var(--font__bold);
    height: 36px;
    padding: 0 1.5rem;
    background-color: var(--color__purple--100);
    border: var(--stroke-thick) solid var(--color__purple--100);
    color: var(--text-primary-light);
    width: 100px;
}