html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reset end */

:root {

    --back: #d5e1ef;

    --light_text: #eceff1;
    --dark_text: #343a4f;
    /*
    --primary: #005bb1;
    --primary_light: #5587e4;
    --primary_dark: #003381;
    */

    --primary: #333;
    --primary_light: #444;
    --primary_dark: #2b2b2b;

    --secondary: #3D9DEA;
    --secondary_light: #4A4EEE;
    --secondary_dark: #9b0000;

    --third: #343A4F;
    --third_dark: #0F1620;

    --img_viewer: rgba(43, 43, 43, 0.9);
}

html {
    scroll-behavior: smooth;
}

#totop {
    bottom: 2%;
    color: var(--secondary);
    font-size: 2.5em;
    left: 1%;
    position: fixed;
}

body {
    background: var(--primary);
    color: var(--back);
    font-family: Tahoma, "lucida sans", "nimbus sans";
    font-size: 16px;
    line-height: 1.3;
    text-shadow: 0px 0px 0.1px var(--dark_text);
}

img {
    height: auto;
    width: 100%;
}

section {
    margin-bottom: 50px;
}

header {
    background: url("../img/header.svg") no-repeat;
    background-size: cover;
    border-bottom: 5px solid var(--primary_light);
    box-shadow: 3px 3px 3px var(--primary_dark);
    padding: 10px;
}

dl {
    font-size: xx-large;
}

dl sub {
    font-size: medium;
}

dt {
    display: flex;
}

.egyenlet {
    padding: 0;
    text-align: center;
}

.definition {
    font-size: medium;
}

.upegyenlet {
    border-bottom: 1px solid black;
}

#header_bar {
    align-items: center;
    color: var(--light_text);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}

#contact_bar {
    color: var(--light_text);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 20px;
}

#logo {
    height: auto;
    max-width: 600px;
    width: 100%;
}

#hamburger {
    cursor: pointer;
    font-size: 2.3vh;
    padding: 10px;
    text-align: center;
    z-index: 4;
}

#hamburger:hover {
    box-shadow: inset 0 1px 3px rgb(0 0 0 / 50%), 0 1px 0 rgb(255 255 255 / 10%);
}

.menu_section_title {
    border-bottom: 1px solid var(--back);
    color: var(--back);
    font-weight: 700;
}

.show .menu_section_title:hover {
    background: none;
    box-shadow: none;
}

.active {
    color: var(--back);
    z-index: 3;
}

.show {
    background: linear-gradient(176deg, var(--third), var(--primary_dark));
    border-left: 5px solid var(--primary_light);
    box-shadow: -3px -3px 3px var(--primary_dark);
    display: block;
    right: 0;
    padding-top: 80px;
    z-index: 3;
}

.show p {
    padding-left: 10px;
}

.show p:hover {
    background: linear-gradient(120deg, var(--third), var(--third_dark));
    box-shadow: inset 0 1px 3px rgb(0 0 0 / 50%), 0 1px 0 rgb(255 255 255 / 10%);
}

.show a:hover {
    color: var(--back);
}

nav {
    display: none;
    height: 100vh;
    line-height: 3;
    right: -250px;
    position: fixed;
    top: 0;
    width: 230px;
}

#webaruhazLink {
    background: linear-gradient(90deg, rgba(5, 51, 142, 1) 0%, rgba(13, 90, 198, 1) 50%, rgba(5, 51, 142, 1) 100%);
    color: #ffd126;
    font-weight: 900;
}

main {
    padding: 0px 5%;
}

#buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    justify-items: center;
}

.top_button img {
    border-radius: 10px;
    height: 85px;
    justify-self: center;
    margin-bottom: 30px;
    width: 300px;
}

.top_button img:hover {
    box-shadow: 5px 5px 5px var(--primary_light);
    transition: 1s;
    transition-timing-function: ease-in-out;
}

.alert_section {
    background: url("../img/cover.webp");
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    color: var(--dark_text);
    line-height: 2;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
}

.alert_title {
    font-size: 2em;
}

#szakuzletMunkatarsAd {
    background: linear-gradient(90deg, rgba(5, 51, 142, 1) 0%, rgba(13, 90, 198, 1) 50%, rgba(5, 51, 142, 1) 100%);
    border-radius: 30px;
    box-shadow: 1px 1px 2px 2px gray;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    text-align: center;
}

#szakuzletMunkatarsAdText {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1.3rem;
    font-weight: 700;
    justify-content: center;
}

.hidraulikaText {
    color: #ffd126;
}

#jelentkezesBtn,
#szakuzletMunkatarsAdSubmit {
    background: #ffd126;
    border-radius: 30px;
    box-shadow: 1px 1px 1px 1px black;
    border: none;
    cursor: pointer;
    font-weight: 900;
    padding: 5px 20px;
    transition: transform 0.5s ease-in-out;
}

#jelentkezesBtn:hover,
#szakuzletMunkatarsAdSubmit:hover {
    transform: scale(1.05);
}

#SzakuzletMunkatarsAdForm {
    padding: 0;
}

#webaruhazAd {
    align-items: center;
    background: linear-gradient(90deg, rgba(5, 51, 142, 1) 0%, rgba(13, 90, 198, 1) 50%, rgba(5, 51, 142, 1) 100%);
    border-radius: 30px;
    box-shadow: 1px 1px 2px 2px gray;
    color: #ffd126;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-weight: 900;
    font-size: 1.5rem;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    text-align: center;
}

#webaruhazAdBtn {
    background: #ffd126;
    border-radius: 30px;
    box-shadow: 1px 1px 1px 1px black;
    border: none;
    cursor: pointer;
    color: black;
    font-weight: 900;
    padding: 5px 20px;
    transition: transform 0.5s ease-in-out;
    width: max-content;
}

#breadcrumb {
    font-weight: 600;
    line-height: 2;
    margin-top: 30px;
}

#breadcrumb>a {
    background: var(--third);
    border-radius: 5px;
    color: var(--secondary);
    padding: 5px;
}

#title {
    margin: 30px 0px;
}

h1 {
    font-size: clamp(1em, 7vw, 6em);
    font-weight: 700;
}

#title_badge {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#tanusitvany {
    height: auto;
    max-height: 140px;
    width: 100px;
}

h2 {
    font-size: clamp(1em, 1.5vw, 4em);
}

h3 {
    font-size: clamp(1em, 6vw, 5em);
    font-weight: 700;
}

h4 {
    font-weight: 800;
}

b {
    color: var(--secondary);
    font-weight: 600;
}

strong {
    color: var(--secondary);
    font-weight: 800;
}

em {
    font-style: italic;
}

a {
    color: var(--back);
    text-decoration: none;
}

#termekek {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px 80px;
    justify-items: center;
}

/*.termek {
    height: 300px;
    position: relative;
    width: 100%;
}*/

/*.termek_img {
    background: linear-gradient(176deg, orange, wheat);
    border-radius: 10px 10px 0px 0px;
    height: 225px;
    position: relative;
    width: 300px;
}*/

.termek {
    background: linear-gradient(176deg, var(--third), var(--third_dark));
    border-radius: 10px;
    box-shadow: 3px 3px 3px var(--primary_dark);
    height: 280px;
    position: relative;
    width: 300px;
}

.termek img {
    position: absolute;
    height: auto;
    right: -35px;
    top: 90px;
    width: 80%;
    z-index: 2;
}

.termek_content {
    left: 10px;
    line-height: 1.7;
    position: absolute;
    top: 30px;
}

.termek_title {
    font-weight: 700;
}

.raktaron {
    background: limegreen;
}

.rendelesre {
    background: gray;
}

.raktaron,
.rendelesre {
    border-radius: 50%;
    box-shadow: 3px 3px 3px var(--primary_dark);
    color: var(--back);
    height: 90px;
    line-height: 90px;
    position: absolute;
    right: -20px;
    text-align: center;
    top: -10px;
    width: 90px;
}

.reszletek_button {
    background: linear-gradient(120deg, var(--third), var(--primary));
    border-radius: 0px 0px 10px 10px;
    bottom: 0px;
    color: var(--back);
    padding: 10px;
    position: absolute;
    width: 280px;
}

.reszletek_button a {
    color: var(--back);
}

.column_wrap {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.columns {
    border-top: 10px solid var(--primary_dark);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.columns img {
    max-width: 500px;
}

.tomites_columns {
    display: block;
}

.more {
    color: var(--back);
    cursor: pointer;
    margin: 0;
}

.column {
    background: linear-gradient(176deg, var(--primary_light), var(--primary));
    box-shadow: 3px 3px 3px var(--primary_dark);
}

.table_column {
    text-align: center;
    padding: 20px;
}

.rajz {
    max-width: 50%;
    width: 150px;
}

.desc {
    background: var(--dark_text);
    color: var(--back);
    padding: 20px;
}

.desc_div {
    background: var(--primary);
    box-shadow: 1px 1px 5px 1px var(--primary_dark);
}

.desc a {
    color: var(--dark_text);
}

#share_div {
    background: var(--secondary_dark);
    padding: 5px;
    width: fit-content;
}

#share_div img {
    padding-right: 5px;
    vertical-align: bottom;
}

.sharebtn {
    height: 25px;
    width: 25px;
}

.tomites_div {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr), auto-fit);*/
    line-height: 2;
}

.tomites_div img {
    max-width: 300px;
}

.abra_caption {
    padding-top: 10px;
    text-align: center;
}

.abra {
    cursor: pointer;
}

.abra:hover {
    opacity: 0.7;
}

.abra_div {
    display: flex;
    gap: 5px;
    position: relative;
    overflow: auto;
}

.abra_div::-webkit-scrollbar {
    background-color: var(--third_dark);
    height: 15px;
}

.abra_div::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 20px;
}

#img_viewer {
    background-color: var(--img_viewer);
    left: 0;
    height: 100%;
    /*padding-top: 50px;*/
    position: fixed;
    overflow: auto;
    top: 0;
    width: 100%;
    z-index: 5;
}

#full-image {
    animation-name: zoom;
    animation-duration: 0.6s;
    display: block;
    height: inherit;
    margin: auto;
    width: 80%;
    max-width: 700px;
}

#close {
    color: var(--back);
    font-size: 3em;
    font-weight: bold;
    position: absolute;
    right: 35px;
    top: 15px;
}

#close:hover {
    color: var(--secondary);
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.tomites_div hr {
    margin: 20px 0px;
    text-align: left;
    width: 50%;
}

.tomites_div p {
    padding-bottom: 10px;
}

.tomites_icon {
    width: 50px;
}

.sm_tomites_icon {
    width: 200px;
}

.speed,
.temp,
.pressure {
    background: white;
}

.tomites_kep_div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;
}

.tomites_abra_div {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 50px;
    padding: 10px;
}

.tomites_abra_div table {
    white-space: unset;
}

#faq {
    color: var(--back);
    margin-top: 50px;
}

#faq a {
    color: var(--back);
}

#faq_column {
    border-top: 10px solid var(--primary_dark);
}

#faq_title {
    color: var(--back);
    line-height: 2;
}

details[open] summary~* {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-bottom: -10px
    }

    100% {
        opacity: 1;
        margin-bottom: 0px
    }
}

details summary::marker {
    display: none;
}

.answer {
    background-color: var(--dark_text);
    padding: 15px;
}

.address {
    background: url(../img/map.svg) no-repeat;
    border-bottom: 1px dotted var(--light_text);
    color: var(--dark_text);
    padding-left: 25px;
}

#cart::before {
    content: "";
    background: url(../img/cart.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#shop::before {
    content: "";
    background: url(../img/shop.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#shipping::before {
    content: "";
    background: url(../img/shipping.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#stock::before {
    content: "";
    background: url(../img/stock.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#customer::before {
    content: "";
    background: url(../img/customer.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#money::before {
    content: "";
    background: url(../img/money.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#cut::before {
    content: "";
    background: url(../img/cut.svg) no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

.question {
    border-bottom: 1px solid var(--dark_text);
    color: var(--light_text);
    cursor: pointer;
    display: block;
    padding: 15px;
    outline: 0;
}

.question:hover {
    background: linear-gradient(120deg, var(--dark_text), #0f1620);
    color: var(--back);
}

/* Offer */

::placeholder {
    color: var(--dark_text);
}

input {
    border-bottom: none;
}

input,
select,
textarea {
    color: var(--dark_text);
}

#offer_column {
    align-items: center;
    border-top: 10px solid var(--primary_dark);
    display: flex;
    gap: 5%;
    flex-wrap: wrap;
    justify-content: center;
}

#form_help,
#contact_div {
    background: var(--dark_text);
    color: var(--back);
    height: max-content;
    margin-bottom: 5%;
    padding: 20px;
}

#form_help p {
    line-height: 3;
}

.survey_btn_div {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

#the_count,
.counter {
    background: var(--back);
    box-sizing: border-box;
    color: var(--dark_text);
    margin-bottom: 18px;
    margin-top: -5px;
    padding-right: 10px;
    resize: vertical;
    text-align: right;
    width: 100%;
}

.grecaptcha-badge {
    visibility: hidden;
}

#submit {
    background: var(--dark_text);
    border: none;
    color: var(--back);
    height: 60px;
    padding: 0px;
    cursor: pointer;
}

#form_recaptcha {
    color: var(--light_text);
    padding-top: 10px;
    text-align: center;
}

.error_message {
    background: crimson;
    color: var(--back);
    padding: 0px;
    margin-top: -20px;
    margin-bottom: 20px;
    text-align: center;
    width: 98%;
}

#offer_title {
    line-height: 2;
}

.success {
    background: limegreen;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: var(--back);
    margin-top: -10px;
    padding: 10px;
    text-align: center;
}

.fail {
    background: #e50914;
    color: var(--back);
    padding: 10px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 507px;
    padding-bottom: 50px;
    padding-top: 2%;
    width: 90%;
}

input {
    background: var(--back);
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 10px;
    resize: vertical;
    width: 100%;
}

input:focus,
textarea:focus {
    border: 2px solid var(--dark_text);
    outline: none;
}

textarea {
    background: var(--back);
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: none;
    box-sizing: border-box;
    height: 120px;
    max-width: 507px;
    padding: 10px;
    resize: vertical;
    width: 100%;
}

footer {
    background: url("../img/header.svg") no-repeat;
    background-size: cover;
    border-top: 5px solid var(--primary_light);
    box-shadow: -3px -3px 3px var(--primary_dark);
    height: 50px;
    margin-top: 50px;
}

.scroll_table {
    display: none;
    grid-template-columns: auto auto;
    gap: 10px;
    overflow-x: auto;
}

.one_table {
    grid-template-columns: 1fr;
}

table {
    border-collapse: separate;
    border-spacing: 2px;
    table-layout: fixed;
    text-align: center;
    white-space: nowrap;
}

tr>th,
td {
    vertical-align: middle;
}

tr>th:first-child {
    text-transform: uppercase;
}

.table_column h2 {
    font-weight: 700;
    padding-bottom: 10px;
}

caption {
    padding: 10px;
    text-align: left;
}

th {
    background: var(--secondary);
    color: var(--dark_text);
    font-weight: 600;
}

th:first-child,
td:first-child {
    left: 0;
    position: sticky;
}

td {
    color: var(--light_text);
    background: var(--primary_dark);
}

td,
th {
    padding: 10px;
}

#contact_title {
    line-height: 2;
}

#contact_div {
    border-top: 10px solid var(--primary_dark);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}

#contact_div img {
    border: 3px solid var(--primary);
    border-radius: 10px;
    max-width: 400px;
}

#contact_div div {
    margin-bottom: 50px;
}

#google_map {
    height: 500px;
    width: 100%;
}

#google_map iframe {
    height: 100%;
    width: 100%;
}

.fade_stock {
    opacity: 0.5;
}

#profil_column {
    margin: auto;
    text-align: center;
    min-width: 320px;
    width: 70%;
}

#download_profil {
    background: var(--primary);
    color: var(--light_text);
    padding: 20px;
    transition: 1s;
}

#download_profil:hover {
    background: var(--secondary_dark);
    color: var(--light_text);
}

.download_icon::before {
    content: "";
    background: url("../img/save.svg") no-repeat;
    display: inline-block;
    height: 50px;
    padding-right: 10px;
    vertical-align: middle;
    width: 50px;
}

#buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

#tomitesprofil_button {
    background: url("../img/tömitesprofil_button.jpg");
}

#arajanlat_button {
    background: url("../img/arajanlat_button.jpg");
}

.tomites_button {
    background-repeat: no-repeat;
    box-shadow: 3px 3px 3px var(--secondary_dark);
    border-radius: 10px;
    display: block;
    height: 85px;
    justify-self: center;
    margin-bottom: 30px;
    width: 300px;
}

.tomites_button:hover,
.termek:hover {
    box-shadow: 5px 5px 5px var(--primary_dark);
    transition: 1s;
    transition-timing-function: ease-in-out;
}

.statusRaktar {
    background: green;
}

.statusRendel {
    background: dimgray;
}