    @keyframes magicTrick{
        0%{
            transform: none;
        }
        49%{
            background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='22.5' y='10' width='5' height='30' fill='black' /%3E%3Crect x='10' y='22.5' width='30' height='5' fill='black' /%3E%3C/svg%3E%0A");
        }
        50%{
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E");
        }
        100%{
            transform: rotate(360deg);
        }
    }
    @keyframes waveAnimation{
        0% {
          background-position-x: 0%;
        }
        100% {
          background-position-x: 200%;
        }
      }
      

      

.swiper-button-next, .swiper-button-prev{
    color:#a8d6c3;
}

html body .swiper-button-next{
    background-color: #a8d6c3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 10px;
    transform: scale(0.8);
    left: 92%;
    right:unset;
    transition: all 0.2s ease-in-out;
}


html body .swiper-button-prev{
    background-color: #a8d6c3;
    color: white;
    width: 60px;
    height: 60px;
    left: unset;
    right: 92%;
    border-radius: 50%;
    padding: 10px;
    transform: scale(0.8);
    transition: all 0.2s ease-in-out;
}

.swiper-button-prev:hover, .swiper-button-next:hover{
    transform: scale(0.7);
}

.swiper-button-prev:active, .swiper-button-next:active{
    transform: scale(0.5);
}



      .itemDropdown li {
        margin-bottom: 0.5em;
    }
      

    .hidden{
        opacity:0;
        position: absolute;
    }
html body .wave {
    background-clip: border-box;
    background-size: 200% 100%;
    background-position-x: 0;
    background-position-y: 4em;
    transition: background-position-y 0.6s ease, color 0.25s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3E%3Cstop stop-color='%2357BBC1' stop-opacity='.25' offset='0%25'/%3E%3Cstop stop-color='%23015871' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z' transform='matrix(-1 0 0 1 1600 0)'/%3E%3C/svg%3E");
    animation: waveAnimation 4s infinite linear;
    background-repeat: repeat-x;  
  }
  
  
html body   .wave:hover {
    background-color: #A8D6C3;
  
    background-position-x: 0;
    background-position-y: 0;
    color: white;
  
  }
  
    

    .itemDropdown li {
        transition: all 0.25s ease-in-out;
        font-family: 'Montserrat';
        font-weight: 400;
    }

    .onlyRow {
        display: flex;
        flex-direction: row;
        padding-left: 1%;
        padding-right: 1%;
        gap: 1em;
        max-height: 80vh;
        margin-top: 1em;
        margin-bottom: 1em;

    }
    


    .itemDropdown ul {
        padding-left: 1em;
    }

    h3, p {
        margin: 0;
        height: fit-content;
    }
 

    .imagePanel img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .configPanel {
        display: flex;
        flex: 6;
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: clip;
        position: relative;
        border: 2.5px solid #EEEDE9;
        border-bottom: 0px;
        height: 100%;
        min-height: 100%;
    }

    .configContainer {
        display: flex;
        width: auto;
        max-height: 80vh;
        flex-direction: column;
        height: 100%;
        min-height: 100%;
    }

    .imagePanel {
        display: flex;
        width:78%;
    }


    .price {
        height: fit-content;
        margin-left: auto;
        border: 1px solid black;
        border-radius: 5px;
        background-color: #5D8C88;
        padding: 0 0.2em;
    }


    header#header {
        position: relative;
    }
    html .header {
        padding-bottom: 1%;
    }

    header#header::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 1px;
        height: 100%;
        z-index: -1;
        box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
    }

    .dropdown {
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: all 0.45s ease-in-out;
        height: 100%;
    }

    .chevron {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpolygon points='4.646,1.646 10.293,8 4.646,14.354 4.646,1.646'%3E%3C/polygon%3E%3C/svg%3E");
        transition: all 0.25s cubic-bezier(0.25, 1.5, 0.5, 1);
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
   

    .equipTitle {
        display: flex;
        flex-direction: row;
        gap: 1em;
        cursor: pointer;
        align-items: center;
        position: relative;
        transform: translateY(10%);
        padding-bottom: 0.5em;
    }
    .equipTitle>* {
        pointer-events: none;
    }

    .activeChevron{
        transform: rotate(90deg);
    }
    .droppedDown {
        max-height: 5000px;
    }
    .tinyImage img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        pointer-events: none;
    }
    .tinyImage {
        display: flex;
        position: relative;
        width: 40%;
        cursor: pointer;
    }
    .imageDisplay {
        display: flex;
        flex-direction: row;
        gap: 0.6em;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        margin-top: 1em;
    }
    .itemDropdown {
        padding: 1em 0.5em;
        padding-left: 1.3em;
    }
    .itemTitle {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.4em;

    }

    .equipTitle h3 {
        font-family: 'Montserrat';
        font-weight: 700;
        font-size: 1.3em;
    }

    .itemTitle h3 {
        font-family: 'Montserrat';
        font-weight: 400;
        font-size: 1em;
        transition: all 0.25s ease-in-out;
    }
    .price p {
        font-family: 'Montserrat';
        font-weight: 400;
        font-size: 1em;
        color: white;
    }
    .checkBox>* {
        pointer-events: none;
    }

    .checkBox {
        width: 30px;
        height: 30px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        aspect-ratio: 1/1;
        min-width: 30px;
        min-height: 30px;
    }
    .checkBox svg{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
.configPanel::-webkit-scrollbar {
    width: 10px; 
}

.configPanel::-webkit-scrollbar-track {
    background: #f1f1f1; 
}


.configPanel::-webkit-scrollbar-thumb {
    background: #888; 
}

.configPanel::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.tinyImage::after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg fill='%23000000' height='800px' width='800px' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 490.4 490.4' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M484.1,454.796l-110.5-110.6c29.8-36.3,47.6-82.8,47.6-133.4c0-116.3-94.3-210.6-210.6-210.6S0,94.496,0,210.796 s94.3,210.6,210.6,210.6c50.8,0,97.4-18,133.8-48l110.5,110.5c12.9,11.8,25,4.2,29.2,0C492.5,475.596,492.5,463.096,484.1,454.796z M41.1,210.796c0-93.6,75.9-169.5,169.5-169.5s169.6,75.9,169.6,169.5s-75.9,169.5-169.5,169.5S41.1,304.396,41.1,210.796z'/%3E%3C/g%3E%3C/svg%3E");
    top: 0;
    right: 0;
    z-index: 2;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transform: translate(-50%,50%);
    transition: all 0.25s ease-in-out;
}

.tinyImage::before {
    content: "";
    display: block;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    background: linear-gradient(60deg, rgba(2,0,36,0) 0%, rgba(255,255,255,0.8) 55%, rgba(255,255,255,0.8) 100%);
}
.tinyImage:hover::after {
    transform: translate(-50%, 50%) scale(1.2) rotate(87deg);
}

.bottomButtons {
    display: flex;
    flex-direction: column;
    justify-content: CENTER;
    gap: 1em;
    flex: 1;
    padding: 1%;
    background-color: #EEEDE9;
    padding-top: 2%;
}

.bottomPrice p {
    width: fit-content;
    font-family: 'Montserrat';
    font-size: 1.3em;
    line-height: 100%;
    font-weight: bold;
}
.bottomPrice {
    display: flex;
    gap: 0.5em;
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.bButtons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    margin-bottom: 0.6em;
}

.bButtons a {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 1.2em;
    text-align: center;
    width: fit-content;
    color: #5D8C88;
    background-color: #A8D6C3!important;
    padding: 1.4% 4%;
    border-radius: 25px;
    cursor: pointer;
}


.dropdown>div:not(:last-child) {
    border-bottom: 1px black dashed;
}
.equipItem {
    padding: 1em 1%;
    transition: all 0.25s ease-in-out;
}
.itemDropdown p {
    transition: all 0.25s ease-in-out;
    font-family: 'Montserrat';
    font-weight: 400;
}
.activeCheckBox{
 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.boughtItem {
    background-color: #A8D6C3!important;
}

.equipItem{
    background-color:white;
}

.equipment {
    background-color: #eeede97a;
}
header#header::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 1px;
    height: 100%;
    z-index: -1;
    box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.2);
}

.equipItem.boughtItem .itemDropdown>p, .boughtItem h3, .boughtItem li {
    color: #5D8C88;
}



  @keyframes coinFlip {
    from{
        transform: rotateY(0deg);
    }
    to{
        transform: rotateY(90deg);
   }
  }
  
  @keyframes coinFlip2 {
    from{
        transform: rotateY(90deg);
    }
    to{
        transform: rotateY(0deg);
   }
  }

  .coinFlip{
    animation: coinFlip 0.25s forwards;
  }
  .coinFlip2{
    animation: coinFlip2 0.25s forwards;
  }


  .circleMore {
    stroke: #5d8c88;
    stroke-miterlimit: 10;
    stroke-width: 1.5;
    filter: url(#dropShadowCircle);
  }

  .lineHor {
    fill: #a8d6c3;
    transform: translate(10%, 45%);
  }

  .lineVer {
    transform-origin: center;
    fill: #a8d6c3;
    transform: translate(43%, 20%);
  }

  .tickOkX {
    transform: rotate(40deg) translate(56%, 35%);
    width: 50%;
    height: 3px;
  }

  .tickOkY {
    transform: rotate(35deg) translate(62%, 16%);
    width: 3px;
    height: 60%;
  }

  .activeCheckBox .lineVer, .activeCheckBox .lineHor {
    fill: #5D8C88!important;
}

@media only screen and (max-width:1600px){
    html body .onlyRow {
        padding: 0;
        gap: 0.3em;
    }
    html body .configContainer {
        flex: 1.7;
    }

}



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



    .swiper {
    box-sizing: border-box!important;
}
.imagePanel {
    display: flex;
    width: 100%;
}


html body .swiper-button-next {
    width: 40px;
    height: 40px;
    transform: scale(0.6);
    left: 85%;
}


html body .swiper-button-prev {
    width: 40px;
    height: 40px;
    transform: scale(0.6);
    right: 85%;
}



html body .swiper-button-prev:active{
transform:scale(0.5)
}

html body .swiper-button-next:active {
transform:scale(0.5)

}



    html body .onlyRow {
        flex-direction: column;
        padding-left:1%;
        padding-right:1%;
        max-height: none!important;
    }
    html .configContainer {
        min-height: 100%;
        max-height: none;
    }
    html body .bottomButtons{
        padding: 1em;
    }
    .configPanel{
        max-height: 50vh!important;
    }
}

@supports (-webkit-touch-callout: none) {
    .wave{
        background-repeat:no-repeat;
    }
    .wave:hover{
        background-repeat:round no-repeat!important;
    }
  }