@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');

html,body
{
    height: 100%;
    margin: 0px;
    padding: 0px;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

.content ul {
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content ol {
    margin-left: 30px;
}

.content li {
    line-height: 1.5em;
    font-size: 17px;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top: 3px solid #cccccc40;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align: middle;
    border: 2px solid #1b1e6273;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 5px;
}



table {
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-width: 2px;
  border-color: #7ea8f8;
  border-style: solid;
  color: #000000;
}

table td, table th {
  border-width: 2px;
  border-color: #7ea8f8;
  border-style: solid;
  padding: 10px;
}

table thead {
  background-color: #7ea8f8;
}




h1 {
    font-size: 28px;
}
h2 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}
h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
h5 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
}
h6 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
}
p {
    font-size: 17px;
    margin-top:20px;
    margin-bottom:20px;
    line-height: 1.7em;
}













body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;

}
.container{

    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "main";
    max-width: 1248px;
    margin: auto;
    padding: 20px;
    align-items: center;

}


header{
}
main{
    background-color: #54587c0a;
}
footer{
    background: #54587c;
    display: flex;
    height: 70px;
    align-items: center;
    text-align: center;
    justify-content: space-around;
}

footer li{
    display: inline-block;
    padding-right: 10px;
    padding-right: 10px;
}

footer a {
    color: white;
    text-decoration: none;
    position: relative;

}


footer a::hover{

    content: '';
    display: block;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    transform-origin: left;
    transform: scale(1, 0);
    transition: transform ease-in-out 0.2s;

}

footer a::after{

    content: '';
    display: block;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    transform-origin: left;
    transform: scale(1, 0);
    transition: transform ease-in-out 0.2s;

}
footer a:hover::after{

    transform: scale(1, 1);

}




textarea {
  border-color: darkgray;
  border-width: 2px;
  font-size: 17px;
}





@media only screen and (max-width: 1200px) {
    .container{

    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "main";
}
}

@media only screen and (max-width: 768px) {
.container{

    display: block;
    margin: auto;
    padding: 20px;
}

textarea {
    width: 90%;

}
}


@media only screen and (max-width: 530px) {
    .container{

    display: block;
    margin: auto;
    padding: 20px;

}
textarea {
    width: 90%;

}
}


.main-nav{
    background: #54587c;
    color: white;
}
.nav{
    margin: auto;
    max-width: 1248px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55px;
    align-items: center;

}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    padding-left: 10px;
    font-size: 22px;
    font-weight: 600;
}

.tab-nav{

    outline: none;
    display: none;

}


.content_nav{
    font-weight: bold;
    grid-column: 3;
    list-style: none;
    margin: 0;
    padding: 0;

}

.content_nav li{
    display: inline-block;
    padding-right: 10px;

}

.content_nav li a{
    text-decoration: none;
    color: #303030;
    position: relative;
    font-size: 18px;

}

.content_nav li a::hover{

    content: '';
    display: block;
    height: 2px;
    background-color: #303030;
    position: absolute;
    left: 0;
    right: 0;
    transform-origin: left;
    transform: scale(0, 1);
    transition: transform ease-in-out 0.2s;

}

.content_nav li a::after{

    content: '';
    display: block;
    height: 2px;
    background-color: #303030;
    position: absolute;
    left: 0;
    right: 0;
    transform-origin: left;
    transform: scale(0, 1);
    transition: transform ease-in-out 0.2s;

}

.content_nav li a:hover::after{

    transform: scale(1, 1);

}

.content_section{

    height: 120vh;
    background: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    justify-items: center;
    align-items: center;


}

@media screen and (max-width: 768px){

    .label{

        display: grid;
        cursor: pointer;
        grid-column: 3;
        padding-right: 10px;

    }

    .content_nav{
        background: #f6f6fc;
        display: grid;
        grid-template-columns: 1fr;
        grid-column: 1/4;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: all ease-in-out 0.2s;

    }

    .nav input:checked ~ .content_nav{

        max-height: 500px;

    }

    .content_nav li{

        padding: 15px 0px;

    }


}






.topnav {
    height: 40px;
    background: #292b36;
}

.top-nav {
    max-width: 1248px;
    margin: auto;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.nav-end{
    text-align: end;
    margin: 0;
    padding-left: 10px;
}

.nav-end ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}

.nav-end li {
    display: inline-block;
}

.nav-end li a {
    text-decoration: none;
    position: relative;
    display: block;
    padding: 0 8px;
    white-space: nowrap;
    line-height: 40px; /* Menu height */
    height: 40px; /* Menu height */
    cursor: pointer;
    letter-spacing: 1px;
    color: white;
}

.nav-end li a::after {

    content: '';
    display: block;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    transform-origin: right;
    transform: scale(0, 1);
    transition: transform ease-in-out 0.2s;

}

.nav-end li a:hover::after {

    transform: scale(1, 1);

}
.nav-end li a:hover {
    border-radius: 5px;
}






.title{
    margin: 30px 20px 0 20px;
}

.content{
    margin: 0 20px;
}


.btnput {
  border: 2px solid #E7E9EB;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 15px 5px;
  border-radius: 5px;
}
.button {
    background-color: #7d7dd1;
    border: 2px solid #7d7dd1;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 5px 5px;
    cursor: pointer;
    box-shadow: 5px 5px 2px #dadaf7;
}
.button:hover {
    background-color: #7d7dd1;
    border: 2px solid #7d7dd1;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 5px 5px;
    cursor: pointer;
    box-shadow: 5px 5px 2px #c4c4ef;
}
.button:active {
    background-color: #7d7dd1;
    border: 2px solid #7d7dd1;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 5px 5px;
    cursor: pointer;
    box-shadow: 5px 5px 2px #c4c4ef;
    transform: translateY(1px);
}
.button-codebar {
    background-color: #7695d9;
    border: 0;
    border-radius: .3rem;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    margin: 20px 0;
    cursor: pointer;
}
.button-codebar:hover {
    background-color: #6382c5;
    border: 0;
    border-radius: .3rem;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    margin: 20px 0;
    cursor: pointer;
}
.button-codebar:active {
    background-color: #6382c5;
    border: 0;
    border-radius: .3rem;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    margin: 20px 0;
    cursor: pointer;
}
.prevnext{
    margin: 20px 10px 30px 20px;
}
.prevnext:after {
  content: "";
  display: table;
  clear: both;
}
.prev{
    float: left;
}
.next{
    float: right !important;
}


.copy {

  background-color: white;
  border: 2px solid #E7E9EB;
  color: black;
  padding: 12px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 5px 5px;
  cursor: pointer;
  height: 50px;
}
.copy:hover {
  background-color: white;
  border: 2px solid grey;
  color: black;
  padding: 12px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 5px 5px;
  cursor: pointer;
  height: 50px;
}
.copy:active {
  background-color: white;
  border: 2px solid grey;
  color: black;
  padding: 12px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 5px 5px;
  cursor: pointer;
  height: 50px;
  transform: translateY(1px);
}
.copy a {
  text-decoration: none;
  color: black;
}






.sc-content {
  margin: auto;
  width: 80%;
  padding: 10px;
}


pre {
 display: block;
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 line-height: 1.5em;
 margin: 1.5em 0px;

}

code {
 border-radius: 5px;
 font-size: 14px;
}






.grid-container-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  grid-gap: 30px;
  padding: 10px 0;
  padding-bottom: 30px;
}

.grid-container-tools li {
    list-style-type: none;
}
.grid-container-tools li a {
    text-decoration: none;
    color: white;
}

.card a {
    color: #353138 !important;
}

input:hover {
    border: 2px solid #7d7fb773;
}

input:focus {
    outline: none !important;
    border:2px solid #1b1e6273;
  }

::placeholder {
  color: #6f6f9bba;
  opacity: 1; /* Firefox */
  text-align: center;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #6f6f9bba;
 text-align: center;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #6f6f9bba;
 text-align: center;
}

.searchWrapper {
    background-color: #ffffff;
    color: rgba(0,0,0,.7);
    position: relative;
    padding: 10px 20px 10px 20px;
    border: #2d368f8c;
    border-style: solid;
    border-width: 2px;
    font-size: 20px;
    color: #3a3838;
    font-size: 24px;
    font-family: 'Open Sans';
    min-width: 200px;
    width: 50%;
}

.searchWrapper:focus-within {
  box-shadow: 0 0 0 1px #2d368f8c;
}

#searchWrapper {
    margin-bottom: 40px;
}

.exemples {
    text-decoration: underline;
    color: #353138;
    cursor: pointer;
}

.card {
  position: relative;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  color: #1d2746;
  line-height: 1.4em;
  text-decoration: none;
  box-shadow: 5px 5px 1px rgb(0 0 0 / 5%);
  background-color: #fff;
  border: 1px solid #00000024;
  border-radius: 4px;
}

.card:hover {
  box-shadow: 4px 4px 2px rgb(0 0 0 / 15%);
}

.card-barcode {
  position: relative;
  font-size: 16px;
  padding: 10px 40px;
  color: #1d2746;
  text-decoration: none;
  box-shadow: 5px 5px 1px rgb(0 0 0 / 5%);
  background-color: #fff;
  border: 1px solid #00000024;
  border-radius: 4px;
}

.card-barcode:hover {
  border: 1px solid #00000024;
  box-shadow: 5px 5px 1px rgb(0 0 0 / 5%);
}

.card-barcode div {
  display: flex;
  justify-content: center;
}

.card-barcode p {
  font-size: 15px;
}

.card-barcode ul {
  margin-left: 10px;
  line-height: 2em;
}




.content-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

























.btn-copy {
    background-color: white !important;
    border: 2px solid grey !important;
    color: black !important;
    padding: 12px 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 18px !important;
    cursor: pointer !important;
}





        /* CSS styles */
    .body {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      word-break: break-word;
    }

    .tool-wrapper {
      width: 100%;
      display: inline-block;
      margin-bottom: 25px;
    }

    .box-input{
      float: left;
      width: 48%;
    top: 0;
    font-size: 0;
    transition: width 0.2s ease;
    position: relative;
    display: inline-block;
    font-family: monospace;
    }
    
    .box-output {
      float: right;
      width: 48%;
    top: 0;
    font-size: 0;
    transition: width 0.2s ease;
    position: relative;
    display: inline-block;
    font-family: monospace;
    }

    .box-wrapper {

    }

    textarea {
    width: 100%;
    height: 300px;
    resize: none;
    padding: 3px;
    box-sizing: border-box;
    user-select: none;
    position: relative;
    margin-bottom: 15px;
    color: #3a4456;
    font-size: 14px;
    line-height: 20px;
    }

    .buttons {
      display: flex;
      justify-content: space-between;
    }

    .button {
      width: 100%;
      font-family: monospace;
      font-weight: 600;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
      .box-input,
      .box-output {
        width: 100%;
        float: none;
      }
    }
.label-box {
    font-size: 26px;
    margin-bottom: 15px;
    text-decoration: underline;
}

.btn-save-as {
    background-color: white !important;
    border: 2px solid grey !important;
    color: black !important;
    padding: 12px 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 18px !important;
    cursor: pointer !important;
}
.btn-load{
    background-color: white !important;
    border: 2px solid grey !important;
    color: black !important;
    padding: 12px 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 18px !important;
    cursor: pointer !important;
}
.btn-load:hover{
    padding: 12px 10px;
}
.btn-load:active{
    padding: 12px 10px;
}

.options {
  display: block !important;
}


.options-box {
  background-color: #4a7ebb0d;
  padding: 25px;
}
.option {
    position: relative;
}

.btn-options {
    background-color: white !important;
    border: 2px solid grey !important;
    color: black !important;
    padding: 12px 10px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 18px !important;
    cursor: pointer !important;
}

textarea:focus-visible {
    outline: 1px solid darkgray;
}

.data-output::selection {
  color: #313a44;
  background: rgb(205 235 229 / 99%);
}
.data-input::selection {
  color: #313a44;
  background: rgb(205 235 229 / 99%);
}
/*
.option-group{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.opt {
    display: grid;
}
.option-group-title {
    font-size: 17px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 15px;
} */
.lab {
    margin: 20px;
}
label {
    display: block;
    cursor: pointer;
}

legend {
  background-color: #7f718b;
  color: white;
  padding: 5px 10px;
}

.load-image{
    height: 200px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    padding: 50px 0;
    margin: 1em 0;
    color: #333;
    border: 2px dashed #555;
    cursor: default;
    background-color: #bad9fd;
    margin: 0 auto;
    margin-top: 10px;
}
.ctrl{
    font-size: 16px;
    margin-top: 10px;
}




































.tool {
    display: flex;
    padding: 16px 0;
    margin: 0 20px;
}

.related {
    margin: 0 20px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    width: 100%;
}

.main-widget, .tabs-widget {
    flex: 1 1 48%;
    padding: 16px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.container-barcode-parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20PX;
    height: 100%;
}

.container-barcode {
    flex-direction: column;
    display: flex;
    align-items: center;
    border: dashed 1px grey;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-barcode {
    display: block;
    vertical-align: middle;
    max-width: 100%;
}

#barcode-preview {
    height: auto;
    display: block;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 16px;
}

button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.label-design, .controls {
    margin-bottom: 16px;
}

h4 {
    margin-bottom: 15px;
    color: #333;
}

.carousel {
    display: flex;
    gap: 16px;
}

.carousel-item {
    cursor: pointer;
}

.highlight {
    border: 2px solid #446bc3 !important;
}

.carousel-item img {
    border-radius: 8px;
    border: 2px solid #ddd;
    width: 100%;
    height: auto;
}

.controls input[type="range"] {
    margin-top: 8px;
    cursor: grab;
}

.controls select, .controls input[type="text"], .controls input[type="range"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #b1b1b1;
    border-radius: 4px;
    box-sizing: border-box;
}

.controls select, .controls input[type="text"] {
    background-color: #f9fafb;
}

.controls select:focus, .controls input[type="text"]:focus {
    border: 1px solid #3f83f8;
    box-shadow: 0 0 0 1px #3f83f8;
}

.controls select:focus-visible, .controls input[type="text"]:focus-visible {
    border: 1px solid #3f83f8;
    box-shadow: 0 0 0 1px #3f83f8;
    outline: #3f83f8;
}

.dimensions {

}

.dimensions label {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.dimensions input[type="range"] {
    margin-top: 8px;
}

.dlbutton {
    font-size: .875rem;
    line-height: 1.25rem;
    background-color: #446bc3;
}

.dlbutton:hover {
    font-size: .875rem;
    line-height: 1.25rem;
    background-color: #2d5dc9;
}

.bc-image {
    padding: 10px;
    border: dashed 1px #a3a3a3;
    border-radius: .3rem;
    background: white;
}

.card-barcode h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-widget, .tabs-widget {
        flex: 1 1 100%;
    }

    .logo-text {
        display: none;
    }

    .nav-end {
        display: none;
      }

    .content-index {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


}