/* SUPPORT SECTION (öffentlich, kommentar, anonym) */

.item-support .wraparea textarea.form-standard:focus + .form-standard-label,
.item-support .wraparea textarea.form-standard:not(:placeholder-shown) + .form-standard-label {
    transform: scale(0);
}


.item-support .radiobtn.radiobtn--radio p,
.item-support .radiobtn.radiobtn--radio span {
  color: inherit;
}

.item-support .radiobtn input:checked ~ p,
.item-support .radiobtn input:checked ~ span {
  color: inherit;
}



.item-support-persona,
.item-support-comment {
  width: 45%;
}


.item-support-persona-outer {
  display: flex;
  flex-direction: column;
}

.comment-section-outer {
  display: flex;
  flex-direction: row;
}

.item-support-persona-info {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
}

.item-support-persona .form-group-standard.left {
  margin: 0;
}

.item-support-icon {
  width: 10%;
  display: flex;
  flex-direction: column;
}


.item-support-icon-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 80px;
}

.item-support-icon-speech svg {
  display: block;
}


.item-support-icon-speech svg path {
  stroke: var(--main-10-color);
}

.item-support-icon-line {
  width: 100%;
  height: 2px;
  margin-bottom: 3px;
  background: var(--main-10-color);
}


.comment-highlight .item-support-icon-line {
  background: var(--accent1-color);
}

.comment-highlight .item-support-icon-speech svg path {
  stroke: var(--accent1-color);
}



.item-support-comment .form-group-standard.left {
  margin: 15px 0 0 0;
}

.item-support-comment textarea.form-standard:focus {
  border-color: var(--accent1-10-color);
  background: var(--accent1-10-color);
}

.item-support-comment textarea.form-standard {
  border: 2px solid var(--main-5-color);
}

.item-support-comment textarea.form-standard.comment-highlight {
  border: 2px solid var(--accent1-color);
  background: var(--accent1-10-color);
}






.item-support-anonym {
  padding-left: 0px;
  margin-top: 35px;
}


.item-support-anonym .form-group-standard {
  width: fit-content;
}



.item-support-disabled {
  opacity: .5;
}





/* SUPPORT SECTION (Dropdown) */

.dropdown-support:hover svg {
  transform: scale(1.1);
}

.dropdown-support button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.dropdown-support button:focus ~ svg {
  transform: rotate(-180deg);
}

.dropdown-support .options {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.item-support-persona .radiobtns label {
  margin-bottom: 0;
}





.item-support-persona-dropdown {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: relative;
}

.item-support-persona-image {
  width: 15%;
  padding-right: 10px;
}

.item-support-persona-image img {
  border-radius: 50px;
  max-width: 50px;
  width: 100%;
}

.item-support-persona-name {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.item-support-persona-arrow {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.dropdown-custom-new {
  z-index: 2;
  border-radius: 5px;
  margin-top: 15px;
  opacity: 1;
}

.pointer-none {
  pointer-events: none;
}

/*.item-support-persona .radiobtn input:checked ~ .dropdown-custom-new {
  opacity: 1;
}
*/
/*.item-support-persona .radiobtn input:checked ~ .item-support-comment .form-group-standard {
  border: 2px solid red;
}
*/
.dropdown-custom-new .wrapper {
  position: relative;
  top: 0px;
  left: 0%;
  transform: translate(0%,0%);
  z-index: 2;
}

.dropdown-custom-new .wrapper .title {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.dropdown-custom-new .select_wrap {
  position: relative;
  user-select: none;
}

.dropdown-custom-new .select_wrap .default_option {
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.dropdown-custom-new .select_wrap .default_option li {
    padding: 10px; 
}

.dropdown-custom-new .select_wrap.active .default_option li {
    border-radius: 5px 5px 0px 0px;
}

.dropdown-custom-new .select_wrap .default_option:before {
    content: "";
    position: absolute;
    top: 25px;
    right: 25px;
    width: 13px;
    height: 13px;
    border: 1px solid;
    border-color: transparent transparent #555555 #555555;
    transform: rotate(-45deg);
}

.dropdown-custom-new .select_wrap .select_ul {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0px 0px 5px 5px;
  max-height: 0;
  transition: max-height .5s ease-out;
  overflow: hidden;
}

.dropdown-custom-new .select_wrap .select_ul li {
  padding: 10px 20px;
  cursor: pointer;
}

.dropdown-custom-new .select_wrap .select_ul li.add-new {
  padding: 20px 0;
  margin: 0 20px;
}

.dropdown-custom-new .select_wrap .select_ul li:first-child:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.dropdown-custom-new .select_wrap .select_ul li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}



.dropdown-custom-new .select_wrap .select_ul li.add-new:hover {
  background: inherit;
}

.dropdown-custom-new .select_wrap .select_ul li.add-new .add-new2 button {
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em 1.15em;
    outline: 0;
    cursor: pointer;
    margin: 0;
}


.dropdown-custom-new .select_wrap .option{
  display: flex;
  align-items: center;
}

.dropdown-custom-new .select_wrap .option .icon {
  display: flex;
  max-width: 50px;
  max-height: 50px;
}

.dropdown-custom-new .select_wrap .option .icon img {
  border-radius: 25px;
}

.dropdown-custom-new .select_wrap .option p {
    padding-left: 15px;
}


.dropdown-custom-new .select_wrap .option .icon.addpic a {
  width: 100%;
  height: 100%;
  display: block;
}

.dropdown-custom-new .select_wrap .option p {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.form-container-cart-item .upload-profilepic {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}

.dropdown-custom-new .select_wrap.active .select_ul {
  max-height: 1300px;
  transition: max-height 1s ease-in-out;
}

.dropdown-custom-new .select_wrap.active .default_option:before{
  top: 32px;
  transform: rotate(-225deg);
}


.add-new-persona {
  max-height: 0;
  transition: max-height .5s ease-out;
  overflow: hidden;
}

.add-new-persona.open {
  cursor: default;
  margin-top: 20px;
  max-height: 1300px;
  transition: max-height 1s ease-in-out;
}

.add-new-persona .form-container-cart-item label {
  display: flex;
  justify-content: space-between;
}

.add-new-persona .form-container-cart-item label span {
  display: none;
}

.add-new-persona .form-container-cart-item label span.show-error {
  display: block;
}



.form-container-cart {
  margin: 15px 0;
}

.form-container-cart-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-container-cart-item.city {
  flex-direction: row;
  justify-content: space-between;
}

.form-container-cart-item-inner {
  display: flex;
  flex-direction: column;
}

.form-container-cart-item-inner:first-child {
  width: 30%;
}
.form-container-cart-item-inner:last-child {
  width: 65%;
}

.form-container-cart-item:last-child {
  margin-bottom: 0px;
}

.item-support-persona .radiobtns .form-container-cart label {
  width: 100%;
}

.item-support-persona .form-group-standard .radiobtn .form-container-cart input[type="text"] {
  z-index: 0;
  position: relative;
  opacity: 1;
  padding: 0 10px;
  height: 50px;
  width: 100%;
  box-shadow: none;
}

.form-container-cart-action {
  padding: 20px 0 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.form-container-cart-action button {
  margin: 0;
}

.form-container-cart-action a {
  padding: 10px 0;
}

.form-container-cart-action button,
.form-container-cart-action a {
  cursor: pointer;
}





/* Tablet Portrait */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {


  .item-support-comment .wraparea {
    min-height: 75px;
  }


}




/* Mobile Portrait */
@media only screen and (max-width: 767px) {


  .item-support {
    flex-direction: column;
  }

  .comment-section-outer {
    flex-direction: column;
  }

  .item-support-persona, 
  .item-support-comment,
  .item-support-icon {
    width: 100%;
    max-width: 600px;
  }

  .item-support-icon-line {
    width: 0px;
    height: 0px;
  }

  .item-support-persona-image {
    width: 25%;
  }

  .item-support-icon-inner {
    margin-top: 0px;
  }

  .item-support-persona-info {
    margin-top: 2px;
    display: block;
  }

  .item-support-persona-outer {
    flex-direction: column;
  }

  .item-support-persona {
    padding-right: 0px;
    margin-bottom: 15px;
  }

  .item-support-persona-info {
    margin-left: -15px;
  }

  .item-support-comment .item-support-persona-info {
    margin-left: 0px;
  }

  .item-support-icon,
  .item-support-comment {
    padding-left: 35px;
  }

  .item-support-icon {
    margin-bottom: 15px;
  }

  .item-support-icon-speech {
    transform: rotate(180deg);
  }

  .item-support-comment .form-group-standard.left {
    margin: 10px 0 0 0;
  }

  .dropdown-custom-new {
    margin-left: -15px;
    margin-top: 10px;
  }

  .dropdown-custom-new .select_wrap .default_option li {
    padding: 10px;
  }

  .dropdown-custom-new .select_wrap .option .icon {
    width: 40px;
    height: 40px;
    margin-right: 25px;
  }

  .dropdown-custom-new .select_wrap .option .icon img {
    max-width: 40px;
  }

  .dropdown-custom-new .select_wrap .option .icon.addpic a svg {
    width: 40px;
    height: 40px;
  }

  .dropdown-custom-new .select_wrap .default_option:before {
    top: 20px;
    right: 20px;
  }



}
/*Anpassungen*/
.item-support-disabled .item-support-comment {pointer-events: none;}