/* ==========================================================================
   #Custom CSS
   ========================================================================== */

   /* MAIN CSS */
   :root {
      --color-yt-red: #FF0000;
      --color-bg-extremelydark: #0a0708;
      --color-bg-dark: #212121;
      --color-bg-light: #303030;
      --color-bg-lighter: #515151;
      --color-bg-lightest: #5f5f5f;
      --color-text-navlink: #909090;
      --color-text-dark: #9e9e9e;
      --color-text-light: #f5f5f5;
      --color-bootstrap-hover: #323539;

      --color-bg-pureblack: #000000;
      --color-orange: #FFA400;
      --color-darkorange: #2E1D00;
    }

   body {
      color: var(--color-text-light) !important;
      background-color: var(--color-bg-pureblack) !important;
   }
   
   /* OVERLOADED BOOTSTRAP CSS */
   /* Elements */

   input {
      color-scheme: dark;
   }

   input[type=search] { 
      border-color: rgb(130, 121, 107);
   }

   button, input, textarea, select{
      color: var(--color-text-light) !important;
      border-radius: 0.375rem;
      border-color: var(--color-bg-lightest) !important;
      background-color: var(--color-bg-dark) !important;
   }

   button:focus, input:focus, textarea:focus, select:focus, a:focus{
      color: var(--color-text-light) !important;
      outline: none !important;
      border-color: var(--color-bg-dark) !important;
      border-radius: 0.375rem;
      box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-orange) 60%, transparent),
      0 0 12px 8px color-mix(in srgb, var(--color-orange) 40%, transparent) !important;
   }

   textarea:disabled{
      color: rgb(209, 205, 199) !important;
      background-color: rgb(24, 26, 27) !important;
      border-color: rgb(60, 65, 68) !important;
   }

   input::file-selector-button {
      margin: 0.15rem;
      margin-right: 0.5rem;
      color: var(--color-text-dark);
      border: 1px solid;
      padding: 0.2em 0.4em;
      border-radius: 0.375rem;
      border-color: var(--color-orange);
      background-color: transparent;
   }

   input::file-selector-button:hover {
      color: var(--color-text-light);
      border-color: var(--color-orange);
      background-color: var(--color-bg-lighter);
   }

   /* Classes */
   .border-bottom {
      border-color: var(--color-orange) !important;
   }

   .dropdown-menu-dark {
      background: var(--color-bg-light) !important;
      border-color: orange;
   }

   .dropdown-item:hover {
      background: var(--color-bg-lighter) !important;
   }   

   .form-switch .form-check-input{
      background-color: grey;
      border-color: grey;
      border: none;
   }

   .form-switch .form-check-input:focus {
      background-color: grey !important;
      border-color: rgb(1, 57, 137);
      box-shadow: rgba(2, 161, 196, 0.48) 0px 0px 0px 0.25rem;
      outline-color: initial;
   }

   .form-switch .form-check-input:checked {
      background-color: var(--color-orange) !important;
   }

   .list-unstyled li {
      margin-left: 1.5rem;
      margin-top: 0.3rem;
   }

   .table-success td,th{
      background-color: #003320 !important;
      border-bottom-color: #444F54 !important;
   }


   .table-striped-better>tbody>tr:nth-of-type(odd)>td {
      background-color: #0F3A2B !important;
   }

   .card {
      color: #D1CDC7;
      background-color: #181A1B;
      border-color: var(--color-bg-lighter);
   }

   .modal-body {
      color: var(--color-text-dark);
      background-color: var(--color-bg-light);
   }

   .modal-footer {
      color: var(--color-text-light);
      background-color: var(--color-bg-light);
      border-color: grey;
   }
   
   .modal-header {
      color: var(--color-text-light);
      background-color: var(--color-bg-light);
      border-color: grey;
   }
   
   #btn-prev-img {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translate(0, -50%);
      z-index: 1;
      margin-left: 2rem;
      pointer-events: all;
   }


   #btn-next-img {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(0, -50%);
      z-index: 1;
      margin-right: 2rem;
      pointer-events: all;
   }

   .btn-close {
      color: green !important;
      text: green !important;
   }

   .navbar{
      color: var(--color-text-dark) !important;
      background-color: var(--color-darkorange) !important;
   }

   .navbar-brand, .navbar-text {
      color: var(--color-text-dark);
   }

   .navbar-brand:hover, .navbar-text:hover {
      color: var(--color-text-light);
   }

   .footer{
      color: var(--color-text-light) !important;
      background-color: var(--color-darkorange) !important;
   }

   .footer .nav-link, p{
      color: var(--color-text-dark) !important;
   }

   .footer .nav-link:hover{
      color: var(--color-text-light) !important;
   }

   .footer ul{
      border-color: var(--color-text-dark);
   }

   .btn-dark{
      border-color: rgb(130, 121, 107);
   }

   .btn-primary{
      border-color: orange !important;
      background-color: transparent !important;
   }

   .btn-primary:hover{
      border-color: orange;
      background-color: var(--color-bg-lighter) !important;
   }

   .btn-primary:active{
      border-color: orange !important;
      background-color: darkorange !important;
   }

   .btn-primary:disabled{
      pointer-events: none !important;
      background-color: transparent;
   }

   .btn-secondary{
      background-color: transparent;
   }

   .form-select{
      color: rgb(209, 205, 199);
      background-color: rgb(24, 26, 27);
      border-color: rgb(60, 65, 68);
   }

   .form-select:disabled{
      color: rgb(209, 205, 199);
      background-color: rgb(24, 26, 27);
      border-color: rgb(60, 65, 68);
   }

   .table-danger {
      color: white !important;
      background-color: rgba(139, 0, 0, 0.533) !important;      
   }

   .btn-danger{
      border-color: rgb(106, 17, 26);
      background-color: rgba(139, 0, 0, 0.533);
   }

   .btn-danger:hover{
      border-color: red;
      background-color: darkred;
   }

   .btn-danger:active{
      border-color: orange !important;
      background-color: darkred !important;
   }

   .btn-bg-grey {
      background-color: #515151ab;
   }

   .btn-bg-grey:disabled {
      background-color: #515151ab;
   }
   
   .form-select:focus {
      border-color: rgb(1, 57, 137);
      box-shadow: rgb(2 80 196 / 25%) 0px 0px 0px 0.25rem;
   }
   
   .form-control{
      color: rgb(209, 205, 199);
      background-color: rgb(24, 26, 27);
      border-color: rgb(60, 65, 68);
   }
   
   .list-group-item {
      color: white;
      background-color: black;
   }

   .alert-dark {
		color: var(--color-text-light);
		background-color: var(--color-bg-extremelydark);
		border-color: orange;
   }

	.alert-danger {
		color: rgb(223, 122, 131);
		background-color: rgb(67, 12, 17);
		border-color: rgb(106, 17, 26);
	}

   .alert-success {
      color: white;
      background-color: rgb(32, 61, 51);
      border-color: rgb(46, 88, 69);
   }
   
   .alert-info {
      color: white;
      background-color: rgb(5, 64, 77);
      border-color: rgb(6, 99, 119);
   }
   
   .alert-info .list-group{
      background-color: rgb(5, 64, 77);
      border-color: rgb(6, 99, 119);
   }
   
   .alert-info .list-group-item{
      background-color: rgb(5, 64, 77);
      border-color: rgb(6, 99, 119);
   }

   .alert-warning {
		color: rgb(255, 216, 100);
		background-color: rgb(41, 31, 1);
		border-color: rgb(203, 154, 5);
	}

   .dropdown-item-danger:hover {
      background: darkred !important;
   }   

   /* CUSTOM Styles CSS */
   a.nolink, a.nolink:visited{
      color: var(--color-text-light);
      text-decoration: none;
   }

   a.nolink:active, a.nolink:hover{
      color: var(--color-text-dark);
   }

   ::-webkit-scrollbar {
      height: 5px !important;
      width: 5px !important;
      background-color: #202324 !important;
      color: #aba499 !important;
   }

   .modal ::-webkit-scrollbar {
      width: 0px !important;
   }
   
   #collapse-goods ::-webkit-scrollbar {
      height: 7px !important;
   }

   #collapse-plants ::-webkit-scrollbar {
      height: 7px !important;
   }

   ::-webkit-scrollbar-corner {
      background-color: #181a1b !important;
   }

   ::-webkit-scrollbar-thumb {
      background-color: #454a4d !important;
   }

   ::-webkit-scrollbar-thumb:hover {
      background-color: #575e62 !important;
   }

   #ymoe-search-2 {
      box-shadow: none !important;
      border-color: #655E53 orange #655E53 orange !important;
   }

   .qr-code {
      width: 740px;
   }

   .qr-code-sm {
      width: 111px;
   }

   .img-container {
      padding-bottom: 3rem;
   }

   .img-container-closed {
      max-height: 50vh !important;
      overflow-y: hidden;
   }

   .img-container-closed:after {
      content: "";
      position: absolute;
      z-index: 1;
      bottom: 0;
      left: 0;
      pointer-events: all;
      background: linear-gradient(#181a1b00, #181a1b);
      width: 100%;
      height: 6em;
    }

    .container-buttons {
      position: absolute;
      top: 0;
      z-index: 0;
    }

    .button-more-imgs {
      z-index: 2;
      position: absolute;
      bottom: 0;
   }

   .text-grey {
      color: var(--color-text-dark);
   }

   .border-grey {
      border-color: var(--color-text-dark) !important;
   }

   .icon-round-lg {
      width: 1.5rem !important;
      height: 1.5rem !important;
      border-width: 0.09rem !important;
      border-color: orange;
   }

   .icon-round {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 1.2rem;
      height: 1.2rem;
      border-style: outset;
      border-width: 0.06rem;
      border-color: orange;
      border-radius: 50%;
   }

   .button-rect {
      color: var(--color-text-light);
      border-color: orange;
      border-width: 0.09rem;
      border-style: solid;
      padding-left: 1rem;
      padding-right: 1rem;
      padding-top: 0.3rem;
      padding-bottom: 0.3rem;
   }

   .button-rect:hover {
      background-color: var(--color-bg-light) !important;
   }

   .button-rect:active {
      background-color: orange !important;
      border-color: darkorange;
      border-style: inset;
      color: var(--color-bg-light);
   }

   .button-rect:active i{
      border-style: solid;
      border-color: darkorange;
      border-width: 3px;
   }

   @media only screen and (max-width: 739px) {   
      
   }

   .container-playlists:hover {
      background-color: var(--color-bg-light);
   }


   .iframe-yt {
      width:560px;
      height:315px;
   }

   @media only screen and (max-width: 1200px) {   
      .iframe-yt {
         width:280px;
         height:157.5px;
      }
   }

   @media only screen and (max-width: 767px) {   
      .iframe-yt {
         width:50vw;
         height:calc(50vw / 16 * 9);
      }
   }

   @media only screen and (max-width: 575px) {   
      .iframe-yt {
         width:90vw;
         height:calc(90vw / 16 * 9);
      }
   }

   .icon-toggle {
      border-style: outset;
      border-color: orange;
      border-radius: 0.3rem;
      border-width: 0.07rem !important;
      padding-top: 3px;
      padding-right: 2px;
      padding-left: 1px;
   }

   .icon-img {
      height: 1rem;
      width: 1rem;
   }

   .icon-img-lg {
      height: 1.2rem;
      width: 1.2rem;
   }


   .icon-yt {
      color: var(--color-yt-red);
   }

   .hr-orange {
      height: 1px;
      border-top: 3px solid orange;
   }

   .alert-text {
      font-size: 0.8rem;
   }

   /* Webkit-Browser Autofill auf Darkmode angepasst*/
   input:-webkit-autofill,
   input:-webkit-autofill:hover, 
   input:-webkit-autofill:focus,
   textarea:-webkit-autofill,
   textarea:-webkit-autofill:hover,
   textarea:-webkit-autofill:focus,
   select:-webkit-autofill,
   select:-webkit-autofill:hover,
   select:-webkit-autofill:focus {
      -webkit-text-fill-color: white !important;
      -webkit-box-shadow: 0 0 0px 1000px rgb(33, 37, 41) inset !important;
   }

   #ymoe-search-2::-webkit-search-cancel-button{
      -webkit-appearance: none;
      height: 24px;
      width: 24px;
      margin-left: .4em;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='orange'><path 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 12z'/></svg>");
      cursor: pointer;
   }

   /* CUSTOM Elements CSS */
   #cookie-banner {
      display: none;
      position: fixed;
      border-radius: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 999;
   }

   .pe-1px {
      padding-right: 1px !important;
   }

   .w-1 {
      width: 1%;
   }

   .flex-gap-0 {
      gap: 0px;
   }

   .flex-gap-1 {
      gap: 0.25rem;
   }

   .flex-gap-2 {
      gap: 0.5rem;
   }

   .flex-gap-3 {
      gap: 1rem;
   }

   .flex-gap-4 {
      gap: 1.5rem;
   }

   .flex-gap-5 {
      gap: 3rem;
   }

   .font-normal {
      font-size: 1rem;
   }

   .font-small {
      font-size: 0.7rem;
   }

   /* Bootstrap Breakpoints */
   @media only screen and (min-width: 1400px) {

   }
   @media only screen and (min-width: 1200px) {
      .flex-gap-xl-0 {
         gap: 0px;
      }

      .flex-gap-xl-1 {
         gap: 0.25rem !important;
      }
   
      .flex-gap-xl-2 {
         gap: 0.5rem !important;
      }
   
      .flex-gap-xl-3 {
         gap: 1rem !important;
      }
   
      .flex-gap-xl-4 {
         gap: 1.5rem !important;
      }
   
      .flex-gap-xl-5 {
         gap: 3rem !important;
      }

      .font-xl-normal {
         font-size: 1rem !important;
      }

      .font-xl-small {
         font-size: 0.7rem !important;
      }
   }
   @media only screen and (min-width: 992px) {
      .flex-gap-lg-0 {
         gap: 0px;
      }

      .flex-gap-lg-1 {
         gap: 0.25rem !important;
      }
   
      .flex-gap-lg-2 {
         gap: 0.5rem !important;
      }
   
      .flex-gap-lg-3 {
         gap: 1rem !important;
      }
   
      .flex-gap-lg-4 {
         gap: 1.5rem !important;
      }
   
      .flex-gap-lg-5 {
         gap: 3rem !important;
      }

      .font-lg-normal {
         font-size: 1rem !important;
      }

      .font-lg-small {
         font-size: 0.7rem !important;
      }
      .w-lg-25 {
         width: 25% !important;
      }
      .w-lg-50 {
         width: 50% !important;
      }
      .w-lg-75 {
         width: 75% !important;
      }
      .w-lg-100 {
         width: 100% !important;
      }
   }
   @media only screen and (min-width: 768px) {
      .flex-gap-md-0 {
         gap: 0px;
      }

      .flex-gap-md-1 {
         gap: 0.25rem !important;
      }
   
      .flex-gap-md-2 {
         gap: 0.5rem !important;
      }
   
      .flex-gap-md-3 {
         gap: 1rem !important;
      }
   
      .flex-gap-md-4 {
         gap: 1.5rem !important;
      }
   
      .flex-gap-md-5 {
         gap: 3rem !important;
      }

      .font-md-normal {
         font-size: 1rem !important;
      }

      .font-md-small {
         font-size: 0.7rem !important;
      }
      .w-md-25 {
         width: 25% !important;
      }
      .w-md-50 {
         width: 50% !important;
      }
      .w-md-75 {
         width: 75% !important;
      }
      .w-md-100 {
         width: 100% !important;
      }
   }
   @media only screen and (min-width: 576px) {
      .flex-gap-sm-0 {
         gap: 0px;
      }

      .flex-gap-sm-1 {
         gap: 0.25rem !important;
      }
   
      .flex-gap-sm-2 {
         gap: 0.5rem !important;
      }
   
      .flex-gap-sm-3 {
         gap: 1rem !important;
      }
   
      .flex-gap-sm-4 {
         gap: 1.5rem !important;
      }
   
      .flex-gap-sm-5 {
         gap: 3rem !important;
      }

      .font-sm-normal {
         font-size: 1rem !important;
      }

      .font-sm-small {
         font-size: 0.7rem !important;
      }
      .w-sm-25 {
         width: 25% !important;
      }
      .w-sm-50 {
         width: 50% !important;
      }
      .w-sm-75 {
         width: 75% !important;
      }
      .w-sm-100 {
         width: 100% !important;
      }
   }
   @media only screen and (max-width: 576px) {

   }

   #btn-item-menu:hover {
      color: orange !important;
   }

   #btn-item-menu:focus {
      color: orange !important;
   }

   .vw-75 {
      width: 75vw;
   }

   .vw-50 {
      width: 50vw;
   }

   .vw-25 {
      width: 25vw;
   }

   .hidden{
      display: none !important;
   }

   .hidden-soft {
      visibility: hidden;
   }

   .hidden-by-search{
      display: none !important;
   }

   .hidden-by-filter{
      display: none !important;
   }

   .selected{
      border: 5px solid;
      border-style: dotted !important;
      border-color: orange !important;
      border-radius: 10px;
   }

   .goods-list {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: flex-start !important;
      overflow: auto;
   }

   .goods-item {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
      padding-top: 10px;
      padding-bottom: 10px;
   }

   .good-title {
      text-align: center;
      padding-top: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
   }

   .good-title a {
      color: var(--color-text-light) !important;
      text-decoration: none;
   }

   .good-cover {
      max-height: 10vw;
      max-width: 10vw;
      object-fit: contain;
   }

   ul.no-bullets {
      list-style-type: none;
      margin: 0; /* Remove margins */
    }

   a {
      text-decoration: none;
      color: darkorange;
   }

   a:hover {
      text-decoration: none;
      color: orange;
   }


   .alert-icon {
      font-size: xx-large;
   }

   .icon-danger {
      color: red;
   }

   .details-buttons-container {
      border-top: 0.15rem dotted orange;
   }

   .details-buttons-container-2 {
      border-bottom: 0.15rem dotted orange;
   }

   .browse-heading {
      border-top: 0.15rem dotted;
      border-color: orange !important;
   }


   .item-cover-container{
      display: flex;
      position: relative;
      width: 8vw !important;
      height: 8vw !important;
      object-fit: contain;
      text-align: center;
      justify-content: center;
      align-items: center;
      border-style: dotted;
      border-color: orange;
      border-radius: 0.3rem;
      border-width: 0.09rem;
      overflow: hidden;
   }

   .orange-border {
      border-style: dotted;
      border-color: orange;
      border-radius: 0.3rem;
      border-width: 0.09rem;
   }

   .orange-border-sm {
      border-style: dotted;
      border-color: orange;
      border-radius: 0.3rem;
      border-width: 0.07rem !important;
   }

   .item-cover-container-lg{
      width: 20vw !important;
      height: 20vw !important;
      border-radius: 0.3rem;
      border-width: 0.09rem;
   }

   .item-cover{
      max-width: 100%;
      max-height: 100%;
   }

   .cursor-zoomin {
      cursor: zoom-in;
   }

   .cursor-pointer {
      cursor: pointer;
   }

   button.text-grey {
      color: var(--color-text-navlink);
   }

   .hover-grey:hover {
      background-color: #323539 !important;
   }

   .link-icon {
      color: var(--color-text-light);
      border: 2.5px;
      border-style: dotted;
      border-color: orange;
      border-radius: 0.3rem;
      padding: 3px;
   }

   .goods-item .item-cover-container{
      width: 10vw !important;
      height: 10vw !important;
   }

   /* MEDIUM SCREEN CSS */
   @media only screen and (max-width: 1500px) {   
      .item-cover-container{
         width: 10vw !important;
         height: 10vw !important;
      }

      .item-cover-container-lg{
         width: 30vw !important;
         height: 30vw !important;
         border-radius: 0.3rem;
         border-width: 0.09rem;
      }

      .goods-item .item-cover-container{
         width: 15vw !important;
         height: 15vw !important;
      }
   
   }

   /* MEDIUM SCREEN CSS */
   @media only screen and (max-width: 1000px) {   
      .item-cover-container{
         width: 15vw !important;
         height: 15vw !important;
      }

      .item-cover-container-lg{
         width: 43vw !important;
         height: 43vw !important;
         border-radius: 0.3rem;
         border-width: 0.09rem;
      }

      .goods-item .item-cover-container{
         width: 20vw !important;
         height: 20vw !important;
      }

   }
   
   /* SLIM SCREEN CSS */
   @media only screen and (max-width: 500px) {
      .item-cover-container{
         width: 20vw !important;
         height: 20vw !important;
      }
   .item-cover-container-lg{
      width: 50vw !important;
      height: 50vw !important;
      border-radius: 0.3rem;
      border-width: 0.09rem;
   }

   .goods-item .item-cover-container{
      width: 44vw !important;
      height: 44vw !important;
   }

}

