/* Stil für den Formular-Container */
.formholder {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #d1d1d1;
    border-radius: 8px;  margin-top: 5rem;
}
.shortcodeexample{margin-top:0rem;font-weight:bold;cursor:pointer;  display:inline-block;}
.cboxholder
{
    display: inline-block;
    vertical-align: top;
    width: calc(33% - 1rem);
    min-width:300px;
    margin-bottom: 2rem;
  padding: .5rem;
}
.item-container
{
    margin-bottom: 2rem;
}



.cboxholder input[type="checkbox"]::before {
    color: #fff;
    background-color: transparent;border:0px;
}
.cboxholder input[type="checkbox"], .cboxholder input[type="radio"] {
    position: relative;
    z-index: 101;
    padding: 0;
    float: none;
    width: 20px;
    height: 20px;
    margin-top: -2px;
    margin-right: 10px;
    margin-bottom: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    background: transparent;border:0px;
}
.cboxholder input[type="checkbox"]::before, .cboxholder input[type="radio"]::before {
    font-size: 8px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border: 1px solid #000;
    border-radius: 1px;
    top: 3px;
    box-shadow: none;
    background: #fff;
}
.cboxholder input[type="checkbox"]::before,.cboxholder input[type="radio"]::before {
    position: relative;
    content: "";
    font-size: 12px;
    font-family: 'FontAwesome';
    display: block;
    text-align: center;
    color: #fff;
    border-color: #333 !important;border:1px solid;
    border-radius: 1px;
    margin-top: 0px;  margin-left: 0;
}
.cboxholder input[type="checkbox"]:checked::before {
    content: "\2713";color:#1e90ff ;
    border-color: dodgerblue !important;
    line-height:1rem;
}
.formholder button,.formholder .button
{
    background: dodgerblue;
    padding: .5rem 1rem;
    border: 0;
    color: #fff;
    cursor: pointer;
    margin: 2rem 0;
}
.cboxholder div
{
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: center;
}
/* Stil für einzelne Blöcke innerhalb des Formulars */
.formholder .sw-block-field__block {
    margin-bottom: 20px;
}

/* Stil für Labels */
.formholder label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.erfolg{color:green}
/* Stil für Select-Boxen */
.formholder select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    background-color: white;
    box-sizing: border-box;
}

/* Stil für Textarea */
.formholder textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    background-color: white;
    box-sizing: border-box;
    resize: vertical; /* Erlaubt vertikales Resize */
}

/* Stil für Nachrichten */
.formholder .message {
    margin-top: 10px;
    padding: 10px;
    background-color: #e9f6ff;
    border: 1px solid #bde5f8;
    border-radius: 4px;
    color: #31708f;
}
.copytext {
  display: inline-block;cursor:pointer;
}
.copytext div {
  display: none;
}
.import.icon {
  color: #000;
  position: relative;
  margin-left: 0px;
  margin-right:.5rem;
  margin-top: 8px;
  width: 11px;
  height: 11px;
  border: solid 1px currentColor;
  border-radius: 1px;  display: inline-block;
}
.import.icon:before {
  content: '';
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 10px;
  background-color: currentColor;
  border-left: solid 3px #f0f0f1;
  border-right: solid 3px #f0f0f1;
}
.import.icon:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 4px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.visdiv-style {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    padding: 10px;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 100%;
    height: 200px; /* Oder die gewünschte Höhe */
    overflow-y: auto; /* Für vertikales Scrollen bei zu viel Inhalt */
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border im Width enthalten sind */
    margin-bottom: 1rem;
}

.visdiv-style:focus {
    border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
    outline: 0;
}