@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');
@import url(header.css);
@import url(buttons.css);
@import url(configurator.css);
@import url(library.css);
@import url(footer.css);
@import url(sellingpoints.css);
@import url(basket.css);
@import url(discount.css);

html, body {
    font-family: Poppins;
    font-size: 13px;
    margin: 0px;
    padding: 0px;
    background: #e4ecef;
    color: #3a4150;
}

.content {
    max-width: 1300px;
    margin: 0px auto;
    position: relative;
}

.dz-preview, .dz-file-preview {
    display: none;
}

table th, table td {
    text-align: left;
    font-size: 14px;
}

table th {
    font-weight: 600;
    width: 160px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
}

.columns > .column {
    flex: 1 0;
    margin-right: 50px;
    min-width: 500px;
}
.columns > .column:last-of-type {
    margin-right: 0px;
}

input[type=text],
input[type=email],
textarea {
    font-family: Poppins;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    padding: 7px;
    background: #ecf4f7;
    border-radius: 5px;
    font-weight: 500;
    font-family: 'Poppins';
    border: 1px solid #c8dadf;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    border: 1px solid #2395e5;
    box-shadow: 0px 2px 10px rgb(49 145 255 / 36%);
    background: #ebf2f7;
    color: #2089d2;
}

#scroller {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

#scroller > .scroller-1 {
    white-space: nowrap;
    animation: scroll-1 infinite linear 100s;
    font-size: 0;
}

#scroller > .scroller-2 {
    white-space: nowrap;
    animation: scroll-2 infinite linear 100s;
    font-size: 0;
}

#scroller > .scroller-1 > img,
#scroller > .scroller-2 > img {
    height: 200px;
    display: inline-block;
}

@keyframes scroll-1 {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes scroll-2 {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}


::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: rgba(241, 241, 241, 0.7);
}

::-webkit-scrollbar-thumb {
    background: #8d939f;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.show-mobile {
    display: none;
}

@media (max-width: 1000px) {
    .content {
        padding: 0px 20px;
    }

    .hide-mobile {
        display: none;
    }

    .show-mobile {
        display: block;
    }

    .columns > .column {
        min-width: 250px;
        margin-right: 0px;
        margin-bottom: 25px;
    }

    table th {
        font-weight: 600;
        width: 120px;
    }
}
