.table-wrapper{
    position: relative;
    overflow-x: auto;
}
.table-wrapper::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #dbdbdb;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background-color: #40AE49;
    border-radius: 19px;
}
.table-wrapper table tr:first-child {
    position: sticky;
	top: 0;
        z-index: 1;
	background-color: #ededed;
}
.table-wrapper table{
	margin-bottom: 5px;
}
.dark-green {
    color: #0b6537;
}

.green {
    color: #40ae49;
}

.uppercase {
    text-transform: uppercase;
}

.fz-14 {
    font-size: 14px;
}

.fz-16 {
    font-size: 16px;
}

.fz-20 {
    font-size: 20px;
}

.fz-24 {
    font-size: 24px;
}

.mr-24 {
    margin-right: 24px;
}

.mb-10 {
    margin-bottom: 10px;
}
.mt-18 {
    margin-top: 18px;
}
.ml-auto {
    margin-left: auto;
}

lh-29px {
    line-height: 29px;
}
.call-back {
    font-family: "RobotoSlab", "Arial", sans-serif;
    padding: 20px;
    color: #3d3d3d;
}

.call-back__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 6px;
}

.call-back__label {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 25px;
}

.call-back input {
    height: 71px;
    width: 100%;
    outline: none;
    padding: 25px;
}

.call-back textarea::-webkit-input-placeholder {
    color: #9d9d9d;
    font-size: 14px;
}

.call-back__button {
    margin-top: 34px;
    background: #009a06;
    height: 70px;
    color: white;
    width: 100%;
    border: none;
}
.call-back__input::placeholder {
    color: #bbb;
}

.success p {
    margin: 1rem 0;
    padding: 1rem 2rem;
    background-color: #329a0442;
    color: #329a04;
    font-size: 18px;
}

.error p {
    margin: 1rem 0;
    padding: 1rem 2rem;
    background-color: #ff000030;
    color: #920000;
    font-size: 18px;
}

.form-outer {
    width: 100%;
}
.loadingSpinner {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border: 4px solid #e8e9ed;
    border-top: 4px solid #7dc481;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.form-outer .loadingSpinner {
    opacity: 0;
    pointer-events: none;
    z-index: -10;
    transition: 0.4s opacity;
    position: absolute;
    left: calc((100% - 50px) / 2);
    top: calc((50% - 50px) / 2);
}
.form-outer.loading .loadingSpinner {
    opacity: 1;
    z-index: 2;
}
.form-outer {
    position: relative;
}
.form-outer form {
    opacity: 1;
    transition: 0.4s opacity;
}
.form-outer.loading form {
    opacity: 0.6;
    pointer-events: none;
}

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

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

.popup-callback-open-btn {
    position: fixed;
    right: 1rem;
    bottom: 8rem;
    z-index: 12;
}

.call-back__note-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: fit-content;
    margin: 16px auto 0;
}

.call-back__note-list input {
    position: absolute;
    z-index: -9999;
    left: -9999px;
    opacity: 0;
}
.call-back__note-list label {
    position: relative;
    padding-left: 19px;
    font-size: 10px;
    line-height: 15px;
    font-weight: 500;
    color: #000;
}
.call-back__note-list label p {
    opacity: 0.3;
}
.call-back__note-list label a {
    text-decoration: underline;
    color: #000;
}
.call-back__note-list label:before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border: 1px solid #bbbbbb;
    left: 0;
    background-color: #fff;
    z-index: 1;
}

.checkbox-item {
    position: absolute;
    left: 2px;
    top: -1px;
}

.call-back__note-list input:checked + label:before {
    background-color: transparent;
}

.header__mobile-bottom {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 50;
    box-shadow: 0px -10px 40px 0px rgba(0, 0, 0, 0.18);
    background-color: white;
}

.header__mobiel-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
}
.header__mobiel-nav ul li.green {
    background-color: rgba(64, 174, 73, 1);
}
.header__mobiel-nav li.green span {
    color: white;
}
.header__mobiel-nav .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 7px 10px 7px;
}
.header__mobiel-nav .item span {
    font-size: 14px;
    font-weight: 500;
    color: #3d3d3d;
    text-align: center;
}
.header__mobiel-nav .item i.icon {
    width: 28px;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.l-mob-cart {
    position: relative;
}

.l-mob-cart-text .count {
    position: absolute;
    right: 10%;
    top: 10%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    background-color: #40ae49;
    color: white !important;
    font-size: 10px !important;
    align-items: center;
    justify-content: center;
}

.l-mob-show {
    display: none;
}

.l-mob-tel {
    display: flex;
    align-items: center;
    gap: 5px;
}
.l-mob-tel span {
    font-weight: 500;
    font-size: 16px;
    color: #40ae4a;
}

@media screen and (max-width: 1300px) {
    .header__mobile-bottom {
        display: block;
    }
    .l-mob-hide {
        display: none !important;
    }
    .l-mob-show {
        display: block;
    }
    .header__bar-middle {
        justify-content: space-between;
    }
    header.header {
        /*background-image: url(./dist/img/bg-header-mob.png) !important;*/
        padding: 19px 0 !important;
    }
    .header .logo__img {
        width: 200px;
    }
    .header-entry {
        margin:  0 !important;
    }
    .burger__opener::after,
    .burger__opener::before {
        display: none;
    }
    .burger__opener {
        width: auto !important;
        height: 72px !important;
    }
}

@media screen and (max-width: 730px) {
    .header__mobiel-nav .item span {
        font-size: 10px;
        line-height: 9px;
    }
    .header__mobiel-nav ul li {
        height: 100%;
    }
}

@media screen and (max-width: 510px) {
    .header .logo__img {
        width: auto;
    }

    .header__mobiel-nav ul li {
        border-right: 1px solid rgba(223, 223, 223, 1);
        border-left: 1px solid rgba(223, 223, 223, 1);
        /* width: 70px; */
        height: 72px;
    }
    .header__mobiel-nav ul li.green {
        border-right: none;
        border-left: none;
    }
    .header__mobiel-nav ul li:first-child,
    .header__mobiel-nav ul li:last-child {
        border: none;
    }
}

.icon-tel {
    background-image: url('/local/templates/main/dist/img/tel-d.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    display: block;
    width: 10px;
    height: 10px;
}

i.icon--user-mob {
    background-image: url('/local/templates/main/dist/img/person-d.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    display: block;
    width: 22px;
    height: 22px;
}

.header__mobiel-nav .item i.icon.icon--menu {
    width: 38px;
}

.icon--menu__fix-center{
    margin-left: 8px;
}

.l-mob-tel-link{
    display: flex;
    gap: 6px;
    align-items: center;
}