/* ==========================================================
   techOdec Reset
   Modern CSS Reset
   ========================================================== */

/* Box sizing */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Remove default margins */

*{
    margin:0;
}

/* Base */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

/* Images */

img,
picture,
svg,
video,
canvas{

    display:block;

    max-width:100%;

}

/* Form elements */

input,
button,
textarea,
select{

    font:inherit;

}

/* Buttons */

button{

    background:none;

    border:none;

    cursor:pointer;

}

/* Links */

a{

    color:inherit;

    text-decoration:none;

}

/* Lists */

ul,
ol{

    list-style:none;

    padding:0;

}

/* Tables */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* Text overflow */

p,
h1,
h2,
h3,
h4,
h5,
h6{

    overflow-wrap:break-word;

}

/* Textarea */

textarea{

    resize:vertical;

}

/* WooCommerce images */

.woocommerce img{

    height:auto;

}

/* Remove focus outline only when mouse is used */

:focus:not(:focus-visible){

    outline:none;

}