/*!
Theme Name: Themes Shop
Theme URI: https://example.com
Author: Themes Staff
Author URI: https://example.com
Description: Discover the theme that will transform your online business.
Version: 1.0
Tested up to: 5.8
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: botiga
Tags: e-commerce, custom-menu, custom-logo, grid-layout, featured-images, right-sidebar, custom-colors, editor-style, theme-options, threaded-comments, translation-ready, blog, one-column, two-columns

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

*/

body {
    background: #f0f3f5;
    margin: 0;
}


/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 14px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #ffffff; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #000000; /* Color of the scrollbar thumb */
     /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #4f4f4f; /* Color of the thumb on hover */
}

/* For Firefox */
body {
    scrollbar-width: thin; /* Use a thin scrollbar */
    scrollbar-color: #888 #f1f1f1; /* Thumb color and track color */
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

ol {
    list-style: none;
}

li > ul,
li > ol {
    margin: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}



figure {
    margin: 0px;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
.table-container {
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical overflow */
    width: 100%; /* Set the width of the container */
    border: 1px solid #ddd; /* Optional: add a border around the container */
    border-radius: 5px; /* Optional: add rounded corners */
}

table {
    width: 100%; /* Set the table width to 100% */
    border-collapse: collapse; /* Collapse borders for better styling */
}

th, td {
    border: 1px solid #ddd; /* Add borders to table cells */
    padding: 8px; /* Add padding for better spacing */
    text-align: left; /* Align text to the left */
}


table {
    background: #fff;
}
thead {
    border-bottom: 1px solid #c6c6c6;
    text-align: left;
}
tfoot {
  border-top: 1px solid #c6c6c6;
}
table, 
td, 
th {
    padding: 10px;
    border-collapse: collapse;
    text-align: left;
    border: 1px solid #c8c8c8;
}
table {
    border: 1px solid #c8c8c8;
    width: 100%;
}
tbody, 
td, 
tr {
    font-size: 16px;

}

 img{
    -ms-interpolation-mode:bicubic;
    border:0;
    vertical-align:middle;
    max-width:100%;
    height:auto;
}

form {
    outline: 0;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Links
--------------------------------------------- */
a {
    color: #000000;
    cursor: pointer;
    text-decoration: none;
}

a:focus {
    outline: none;
}

a:hover,
a:active {
    outline: 0;
}



.button:hover {
    background-color: #252525;
    color: #ffffff;
}

:focus-visible {
    outline: none;
}

/* Forms
--------------------------------------------- */
.button,button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: none;
    background: #000000;
    color: #ffffff;
    padding: 10px 25px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    display: inline-block;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /* border-color: #0090d4; */
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    /* border-color: #ffb200 #022c52 #f00; */
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #292929;
    padding: 10px;
    width: 100%;
    border: 2px solid #000000;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
    outline:none;
    background: white;
    border: 2px solid #000000;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none; /* Remove the clear button */
}

input[type="search"] {
    -webkit-appearance: none; /* Remove default styles in WebKit browsers */
    -moz-appearance: textfield; /* Remove default styles in Firefox */
}
input[type="checkbox"] {
    cursor:pointer;
}
select {
  /* styling for the select element */
   /* adjust the width as needed */
   /* adjust the height as needed */
  border: 2px solid #000000;
  padding: 10px;
  font-size: 14px;
  color: #333;
  width: 100%;
  cursor: pointer;
}


textarea {
    width: 100%;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
    cursor: pointer;
}
/* Typography
--------------------------------------------- */
body,
input,
select,
optgroup,
textarea {
    color: #000000;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Robosto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    /* margin-bottom: 1.5em; */
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #00000000;
    text-decoration: none;
    padding: 0px 10px;
}

big {
    font-size: 125%;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-row .woocommerce-form-login__rememberme {
    border-bottom: 2px solid #000000;
}

.form-row label {
    border: 2px solid #000;
    background: #fff;
    padding: 10px 10px;
    display: inline-block;
    border-bottom: none;
    font-weight: 700;
}

.form-row {
    margin-bottom: 20px;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.selection .select2-selection {
    border: 2px solid #000000;
    border-radius: 0;
    padding: 5px;
    height: auto;
}

.selection .select2-selection .select2-selection__arrow {
    height: auto;
    position: absolute;
    top: 20px;
    right: 10px;
    width: 9px;
}

.selection .select2-selection .select2-selection__arrow b {
    border-color: #000000 transparent transparent transparent;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}


input[type="radio"]:checked + * { color: black; font-weight: 700; }
input[type="radio"]:checked + *::before { background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMnB4IiBoZWlnaHQ9IjEycHgiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTIgMTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxnPjxwb2x5Z29uIHBvaW50cz0iNC4xNzcsMTAuNTQzIDAuNDM0LDYuOCAxLjU2Niw1LjY2OCA0LjE3Nyw4LjI3OSAxMC40MzUsMi4wMjMgMTEuNTY1LDMuMTU1ICIvPjwvZz48L2c+PC9zdmc+) no-repeat center center; }
input[type="radio"] + *::before {content: "";display: inline-block;vertical-align: bottom;width: 20px;height: 20px;margin-right: 10px;border-style: solid;border-width: 2px;border-color: #000000;color: white;cursor: pointer;}
input[type="radio"] { display: none; }

input[type="checkbox"]:checked + * { color: black; font-weight: 700; }
input[type="checkbox"]:checked + *::before { background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMnB4IiBoZWlnaHQ9IjEycHgiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTIgMTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxnPjxwb2x5Z29uIHBvaW50cz0iNC4xNzcsMTAuNTQzIDAuNDM0LDYuOCAxLjU2Niw1LjY2OCA0LjE3Nyw4LjI3OSAxMC40MzUsMi4wMjMgMTEuNTY1LDMuMTU1ICIvPjwvZz48L2c+PC9zdmc+) no-repeat center center; }
input[type="checkbox"] + *::before { content: ""; display: inline-block; vertical-align: bottom; width: 20px; height: 20px; margin-right: 10px; border-style: solid; border-width: 2px; border-color: #000000; color: white; cursor: pointer;}
input[type="checkbox"] { display: none; }