.unmarkedItems, .markedItems{
    display: flex;
    flex-wrap: wrap;              
    justify-content: center;      
    gap: 16px;  
}
.cardShiny{
    position: relative;
    overflow: hidden;  
    width: 120px;
    background: #41414169;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #282828;
    border-radius: 3px;
    box-shadow: 0 0 20px #000;
    padding: 10px 10px;
    text-align: center;
    box-sizing: border-box;
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease;
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}
.cardName{
    color: #dfdfdf;
    font-size: 16px;
    text-shadow: 0 3px 2px #000;
}
.titleLine{
    border: 1px solid #dfdfdf;
    margin-bottom: 25px;
}
.shinyTitle,.shinyTitle2{
    color: #dfdfdf;
    font-size: 25px;
    text-shadow: 0 3px 2px #000;
    display:flex;
    justify-content: center;
}
.shinyTitle2{
    margin-top:35px;
}
.shinyTitle{
    margin-top: 5px;
}
.cardName{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}
.regularImage, .shinyImage{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}


.regularImage{
    padding-top:20px;
}


.shinyswitch{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.stsetswitchtext{
    color:white;
    margin-left:10px;
    align-content: center;
    margin-right: 10px;
}

#shinyswitch .slider:hover{
  background-color:var(--primary-bg-color);
}
#shinyswitch .slider:hover{
  transition: 0.77s background-color ease;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

input:checked + .slider {
  background-color: var(--primary-bg-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-bg-color);
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.switch{
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.cardWrap{
    padding-top:15px;
}
.shinyText{
    color: white;
    margin-left: 10px;
    align-content: center;
    margin-right: 10px;
}

.cardShiny:hover{
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.is-marked{
    box-shadow: 0 0 20px #427929;
    border:1px solid #427929;
}

.btn {
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
  }
  .btn-ok {
    background: var(--primary-bg-color);
  }
  .btn-bad {
    background: #d35400;
  }
  .btn-error {
    background: #555;
  }

  .shinyswitch button{
    position: absolute;
    margin-right: 10px;
    right: 0px;
  }

#shinyItemCounterName {
    color: white;
    margin-left: 10px;
    align-content: center;
    font-size: 14px;
}
#shinyItemCounter {
    color: white;
    align-content: center;
    margin-right: 10px;
    font-size: 18px;
    margin-left: 5px;
}
.shinyItemCounterRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}
.markedItems, .unmarkedItems{
    max-width: 1260px;
    margin: auto;
}
.searchShiny{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}
#shinySearch{
    font-size: 18px;
    width: 200px;
    padding: 10px;
    color:var(--primary-bg-color);
}