* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
    font-family: "Nunito", sans-serif;
    font-weight: 420;
    vertical-align: middle;
    
}

body {
    background-color: #f7f2e7;
}

#logo {
    max-height: 100px; /* Set a maximum height that fits your content */
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
}

.hidden { 
    display: none !important;
    opacity: 0;
}

.choice-buttons.hidden {
    display: none;
}

.card-box.card-image.hidden {
    display: none;
}

.wrapper {
    position: absolute;
    max-width: 56dvw;
    left: 20%;
    right: 20%;
    height: 100%;
    margin: 0 auto;
}

.centre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2svw;
}

#search_menu {
    transition: width 0.25s ease-in-out;
    position: relative;
    display: flex;
    justify-content: center;
}

.small-text {
    font-size: 0.7em;
    align-items: center;
}

a {
    color: inherit;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    text-decoration: none;
}

a:focus {
    outline: none;
}

a:hover, a:active {
    color: inherit; /* or any other color */
    text-decoration: none;
}

.search-input {
    display: flex;
    z-index: 1;
    position: absolute;
    width: 100%;
    margin-top: 1.7svw;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    border-radius: 85px;
    border: solid 2px  rgb(212,224,211);
    box-shadow: 0 0 5px rgba(46, 105, 68, 0.5); /* Shadow for depth */
    transition: border-color 0.2s, box-shadow 0.5s, height 0.35s; /* Smooth transition */
    justify-content: space-between;
    box-sizing: border-box;
    height: 3em;
    background-color: #e6ede3;
}

.animate {
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 5px rgba(46, 105, 68, 0.5);
    }
    50% {
      box-shadow: 0 0 20px rgba(46, 105, 68, 0.75);
    }
  }

#options_box {
    margin-top: 1.7svw;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    border-radius: 85px;
    height: 3em;
    transition: border-color 0.2s, box-shadow 1s, border-radius 4s cubic-bezier(1, 0, 1, 1), height 1s ease-in-out, margin-top 0.5s, width 1s ease-in-out;
    border-color: #ffffffff;
    box-shadow: 0 0 0px rgba(46, 105, 68, 0.1);
    justify-content: space-around;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    border: solid 2px rgb(212,224,211);
}

#options_box.active {
    margin-top: 7svh;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    border-radius: 23px;
    border: solid 2px rgb(212,224,211);
    box-shadow: 0 10px 20px rgba(46, 105, 68, 0.2);
    transition: box-shadow 0.5s, border 1s, height 1s ease-in-out, width 1s ease-in-out, margin-top 1.5s;
    justify-content: space-around;
    display: flex;
    width: 154%;
    box-sizing: border-box;
    position: absolute;
    height: 72svh;
    padding: 8svh 4svh 4svh 4svh;
    overflow-x: scroll;
    overflow-y: hidden;
}

#product_container, #attributes_container {
    display: none
}

#product_container.active, #attributes_container.active {
    display: flex;
    width: 85%;
    justify-content: space-between;
    border-radius: 15px;
    flex-wrap: wrap;
    margin-left: 0;
}

#attributes_container.active {
    width: 15%;
    border: none;
}

.product_box {
    box-shadow: 0 0 10px rgba(122, 160, 75, 0.5), inset 0 0 25px rgba(122, 160, 75, 0.25);
    border-radius: 15px;
    width: 23%;
    display: flex;
    flex-direction: column;
    min-width: 200px; 
    box-sizing: border-box;
    margin-bottom: 0px;
}

.attributesBox {
    min-width: 100%;
    border-radius: 15px 0 0 15px;
    border: none;
    box-shadow: 0 0 0px;
    display: flex;
    flex-direction: column;
}

.product_image_container, .front_page_image_container {
    border-radius: 15px 15px 10px 10px;
    box-shadow: inset 0 5px 20px rgba(122, 160, 75, 0.25);
    height: 40%;
    min-height: 24%;
    position: relative;
    background-image: url('');
    background-size: contain; 
    background-position: center;
    border-bottom: 2px solid #f8e8ce;
    z-index: 5;
}

.front_page_image_container {
    width: 100%
}

#attributesTopPart {
    background-size: contain; 
    background-position: center;
    border-radius: 15px 15px 0 0;
    height: 40%;
    min-height: 40%;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    background-image: none;
}

.product_image_container::after, .front_page_image_container::after  {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 7px;
}

#attributesTopPartBorder {
    /*background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTZbrP_QxPGGfhzJBfobU72l69VF1k8xbzVrwtawI0-prFXUeef');
    border: 1px solid black;
    */
    border-radius: 15px 0px 0 0;
    height: 80%;
    min-height: 20%;
    background-position: center;
}

.product_name, #attributes_name, .front_page_product_name {
    left: 5%;
    bottom: 4%;
    z-index: 2;
    font-size: 18px;
    position: absolute;
    font-weight: bold;
    color: white;
}

#attributes_name {
    color: rgb(66, 72, 66);
    text-decoration: overline;
    font-style: italic;
    padding: 10px;
}

#page_counter {
    right: 5%;
    bottom: 4%;
    z-index: 2;
    font-size: 18px;
    position: absolute;
    text-decoration: overline;
    font-style: italic;
    padding: 10px;
}

.product_details_container{
     position: relative;
     padding-bottom: 6px; 
     padding-top: 8px;
     display: flex;
     flex-grow: 1;
     flex-direction: column;
     align-items: center;
}

#attribute_names_container {
    border-radius: 15px 0 0 15px;
    border-right: none;
    box-shadow: -10px 0 20px rgba(122, 160, 75, 0.25), inset 0 0 15px rgba(122, 160, 75, 0.2);
    border-top: 2px solid #f0c3752e;
    padding: 1.5svh;
    padding-top: 8px;
}

#pageButtons {
    flex-grow: 1;
    display: flex;
    gap: 16px;
    margin: 8px auto auto auto;
    align-items: center;
}

.pageButton {
    border-radius: 90px;
    border: 2px solid rgb(66, 72, 66); 
    color: rgb(66, 72, 66);
    height: 1.6svw;
    width: 2.2svw;
    text-align: center;
    cursor: pointer;
}

.pageButton:hover {
    border: 2px solid #FF8F00;
    background-color: #e6cba3;
    transition: border 1s, background-color 2s ease-out;
}

.qualitativeDetails {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10%;
    font-size: 13px;
    color: rgb(115, 115, 115);
    box-sizing: border-box;
    width: 100%;
}

.qualitativeDetails > * {
    border: 1px solid rgb(115, 115, 115);
    padding: 2px 6px;
    border-radius: 20px;
    flex-direction: row;
    display: flex;
    align-items: baseline;
}

.qualitativeDetails > *:hover {
    background-color: rgba(240, 240, 240, 0.95);
}

.productDescription {
    position: absolute;
    z-index: 4;
    background-color: rgb(246 242 234);
    width: 92.5%;
    height: 70%;
    padding: 24px 9px 9px 9px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgb(149 146 144);
    font-weight: normal;
    font-size: 15px;
    box-sizing: border-box;
    text-wrap: pretty;
    top: -22px;
    transition: height 0.4s ease-out, padding 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

.productionDescriptionContainer {
    font-size: 12px;
    overflow-y: scroll;
}

.descriptionTitle {
    max-height: 31%;
}

.ratingContainer {
    position: absolute;
    z-index: 4;
    bottom: 42px;
    border: 2px solid rgb(149 146 144);
    border-radius: 20px;
    width: 92.5%;
    height: 46px;
    padding: 3px;
    background-color: rgb(246 242 234);
    transition: width 0.4s ease-out, padding 0.4s ease-out;
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; 
    grid-template-rows: 1.5fr 0.5fr; 
    gap: 0px 0px; 
    grid-template-areas: 
      ". . . . . aiReviewButton"
      ". . . . . ."; 
    box-sizing: border-box;
    right: 3.75%;
    overflow: hidden;
}

.ratingContainer > * {
    justify-self: center;
}

.starScore {
    color: rgb(149 146 144);
    font-size: 9px;
    padding-left: 3px;
}

.starIcon {
    color: #ffa41c;
}

.reviewCount {
    color: rgb(149 146 144);
    font-size: 9px;
}

.reviewDisplay {
    position: absolute;
    z-index: 6;
    bottom: 95px;
    border: 2px solid rgb(149 146 144);
    border-radius: 20px;
    width: 92.5%;
    height: 155px;
    padding: 9px;
    background-color: rgb(246 242 234);
    z-index: 6;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
    text-wrap: pretty;
    transition: height 0.4s ease-out, padding 0.4s ease-out;
}

.aiReviewButton {
    grid-area: aiReviewButton;
}

.aiReviewButton.disabled {
    color: rgb(66, 72, 66);
    cursor:none;
}

.unactive:not(.displayLock) {
    opacity: 0;
    padding: 0px 9px;
    height: 0px;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 0;
}

.scrollableItem.unactive {margin-top: 0;
    transition: max-height 0.5s, height 5s, opacity 1s;
    max-height: 0;
    height: auto;
    padding: initial;
    font-size: initial;
}

.ratingContainer.unactive:not(.displayLock) {
    width: 0px;
    right: 3.75%;
}

.ratingContainer.unactive, .reviewDisplay.unactive, #loadingGameContainer.unactive {
    transition: opacity 1s, padding 2s, height 2s, width 2s, font-size 4s;
}

.productDescription.unactive {
    transition: opacity 1s, padding 2s, height 2s, font-size 4s;
}

#scrollableContainer.unactive, #frontPageItems.unactive, #loadingGameContainer.unactive {
    transition: opacity 0.5s, padding 2s, height 1s, font-size 2s;
}


.loadingGameContainer {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .character {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 48px;
    transition: transform 0.2s;
    line-height: 0;
    color: #ce6a00;
  }
  
  .obstacle {
    position: absolute;
    font-size: 40px;
    line-height: 0;
    color: #215480;
  }

  .score {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: rgb(118, 128, 117);
  }

  .game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    display: none;
    color: rgb(118, 128, 117);
  }

.noClick {
    color: rgb(163 182 163);
    border-color: rgb(163 182 163);
    cursor: no-drop;
}

.displayLock {
    opacity: 1 !important;
    border-color: #39c255 !important;
}

.ratingContainer.displayLock, .ratingContainer:hover {
    width: 92.5%;
    left: auto;
    height: 46px;
    padding: 3px;
    opacity: 1;
}

.reviewDisplay:hover {
    height: 155px;
    padding: 9px;
    opacity: 1;
    overflow: overlay;
}

.productDescription.displayLock, .productDescription:hover {
    height: 70%;
    padding: 24px 9px 9px 9px;
    opacity: 1;
}

.descriptionButton, .ratingButton {
    cursor: pointer;
}

.price_buy, .front_page_price_buy {
    display: flex;
    flex-direction: row;
    height: 2em;
    align-content: center;
    flex-wrap: wrap;
    width: 90%;
    border-radius: 20px;
    border: 2px solid #FF8F00;
    margin-bottom: 10px;
    background-color: #ffa41c;
}

.price_buy > *, .front_page_price_buy > * {
    height: 100%;
    text-align: center;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.price, .price_line {
    flex-grow: 1;
    font-weight: lighter;
    background-color: #ffa41c;
    border-radius: 20px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
}

.priceFilter {
    border-radius: 85px;
    border: 2px solid #39c255;
    box-sizing: border-box;
    width: 40%;
    display: flex;
    padding: 0 5px;
    align-items: center;
    justify-content: flex-start;
    transition: border 0.4s ease-in-out;
}

.priceFilter > * {
    font-weight: lighter;
}

.priceFilter > input {
    width: 30%;
    box-sizing: border-box;
    flex-grow: 1;
    color: rgb(66, 72, 66);
}

.priceFilter > label {
    flex-shrink: 0;
    padding: 0 1px;
}

.priceFilter:focus {
    border: 2px solid #c4bcae;
}

.priceFilter.waiting {
    border: 2px solid #c24539;
}

#to {
    flex-direction: column;
    width: 20%;
    display: flex;
}

#priceConfirm {
    position: absolute;
    margin-top: 36px;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    cursor: pointer;
}

.buy, .buy_line, .front_page_buy {
    background: #f7f2e7;
    border: 2px solid;
    border-radius: 20px;
    box-sizing: border-box;
    border: 2px solid #f7f2e7;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    width: 50%;
    transition: width 1s cubic-bezier(0, 0, 0.5, 1);
}

.attribute_price_buy {
    border: 2px solid rgba(0, 0, 255, 0);
    flex-flow: nowrap;
    background-color: #f7f2e7;
}

.attribute_price_buy > * {
    color: rgb(196 171 81);
}

.buy:hover, .buy:focus, .buy.tapped, .front_page_buy:hover, .front_page_buy:focus, .front_page_buy.tapped {    
    background-image: conic-gradient(from 164deg at 20% 70%, #ec1c80, #dfbe1a, #ec1c80);
    cursor: pointer;
    color: #f7f2e7;
    transition: width 1s cubic-bezier(0, 0, 0.5, 2.5);
    box-sizing: border-box;
    border-color: #f7f2e7;
    width: 63%;
    border: 2px solid;
}

.search-input:hover {
    box-shadow: 0 0 15px rgba(122, 160, 75, 0.65); 
    outline: none;            
}

.product_detail, .attribute_name {
    font-size: 13px;
    color: rgb(66, 72, 66);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.attribute0, .attribute1, .attribute2, .attribute3, .attribute4, .attribute5, .attribute6 {
    background-color: #e3e3e3a3;
}

.detailBox {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid #80808080;
    padding: 2.5px 0;
    width: 80%;
    margin: 0;
    flex-wrap: wrap;
    align-self: center;
    max-width: 200px;
    text-align: center;
    justify-items: center;
}

.detailBox > * {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: rgb(66, 72, 66);
    text-wrap: nowrap;
    border-radius: 6px;
    overflow: hidden;
}

#attribute_name > * {
    width: 100%;
    margin: 0;
    padding: 2.5px 0;
}

.twelveHundredpxWidth {
    display: none;
    color: rgb(115, 115, 115);
    font-style: italic;
    font-size: 12px;
}

.empty {
    text-align: center;
}

.text-input {
    width: 90%;
    vertical-align: middle;
}

.searchicon {
    color: #869aa9; 
}

.searchicon:hover {
    color: #4f5d67; 
    transition: color 0.2s ease-in-out;
    cursor: grab;
}


.card-image {
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 80px;
    height: 50svh;
    overflow: hidden;
}

.begin-button {
    position: absolute;
    top: 80%;
    left: 20%;
    right: 20%;
    bottom: 10%;
    border-radius: 10px;
    display: flex; 
    align-items: center;
    justify-content: center;
    background: #137676;
    border: 2px solid #d6d6d6e2;
    color: #fcfcfc;
    font-size: 1.15em;
    padding: 17px 20px;;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 3px 4px;
}

button {
    cursor: pointer;
    color: white;
}

.pointer {
    cursor: pointer;
}

.heavy_text {
    font-weight: bold;
    font-size: 1.2em;
}

.sticky {
    position: sticky;
    top: 10px;
    background-color: #feffff;
    border-radius: 10px;
    border: 2px solid black;
    margin-bottom: -2px;
    /*z-index: 1000;*/
    box-shadow: 0px 4px 6px -1px rgba(58, 69, 69, 0.4);
}

#affiliate_label {
    bottom: 5px;
    position: absolute;
    right: 5px;
    color: grey;
    font-size: 12px;
    background-color: #f7f2e7e2;
    border-radius: 5px;
}

#countrySelectorContainer {
    position: absolute; 
    top: 40px; 
    right: 20px;
    transition: all 0.3s ease-in-out;
}

#countrySelector {
    font-family: "Nunito", sans-serif; /* Consistent font usage */
    background-color: #e6ede3; /* Light green background to match the search input */
    border-radius: 85px; /* Rounded borders */
    border: 2px solid rgb(212,224,211); /* Subtle border color */
    padding: 10px; /* Padding for better text visibility */
    font-size: 14px;
    color: rgb(66, 72, 66); /* Text color for readability */
    box-shadow: 0 0 5px rgba(46, 105, 68, 0.5); /* Soft shadow for depth */
    cursor: pointer; /* Cursor indicates it's clickable */
    outline: none; /* Removes the default focus outline */
    transition: all 0.3s ease-in-out;
}

#countrySelector:hover {
    background-color: #d4e0d3df; /* Slightly darker on hover for feedback */
    box-shadow: 0 0 10px rgba(46, 105, 68, 0.75); /* Increased shadow on hover */
}

#countrySelector:focus {
    border-color: #a4b2a3; /* Change border color on focus for visibility */
    box-shadow: 0 0 15px rgba(46, 105, 68, 0.9); /* More prominent shadow on focus */
}

#title {
    cursor: pointer;
    text-align: center;
    font-size: 2.1em;
    padding: 0 0.5em;
    background-image: linear-gradient(
      -205deg,
      #fff800 5%,
      #ff1361 22%,
      #137676 67%,
      #231557 80%,
      #b62bf7 100% );
}
@keyframes textclip {
    0%   {background-position: 0% center;   }
    50%  {background-position: 100% center; }
    100% {background-position: 0% center;   }
  }

.animatedColour {
    font-weight: bold;
    color: #137676;
    background-image: linear-gradient(
      -205deg,
      #de0c72 22%,
      #0e7676 67%,
      #2c1191 80%,
      #a122db 100% );
    background-clip: border-box;
    background-size: 300% auto;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    animation: textclip 6s linear infinite;
}

#scrollableContainer {    
    margin-top: calc(4.1svw + 3em);
    display: flex;
    width: 154%;
    margin-left: -27%;
    margin-right: -27%;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 32px 16px 32px;
    border-radius: 8px;
    height: calc(520px - 7.1svw);
    box-shadow: 0 0 10px rgba(122, 160, 75, 0.5), inset 0 0 25px rgba(122, 160, 75, 0.25);
    transition: box-shadow 0.5s, border 1s, height 1s ease-in-out, width 1s ease-in-out, margin-top 1s;
  }
  
  .scrollableItem {
    width: 30%;
    padding-bottom: 6px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 1000px;
  }

  .front_page_text{
    font-size: 15px; 
    line-height: 1.6; 
    padding: 0px 10px;
    overflow: overlay;
    max-height: 80%;
    color: #444;
  }
  .front_page_text:first-child {
    font-weight: 500;
    color: #222;
  }
  .front_page_text:last-child {
    color: #222;
  }
  .front_page_text:not(:last-child) {
    margin-bottom: 10px;
  }

  .front_page_descriptor{
    padding-top: 1.5svh;
    max-height: 80%;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

.front_page_text::-webkit-scrollbar {
    width: 12px;
}
.productionDescriptionContainer::-webkit-scrollbar, #options_box::-webkit-scrollbar {
    width: 6px;
  }

::-webkit-scrollbar-thumb {
    background: rgba(122, 160, 75, 0.2); 
    border-radius: 8px;
    border: 2px solid #ffffffac; /* Matches the container's background */
}

.productionDescriptionContainer::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }

.front_page_text::-webkit-scrollbar-track, #options_box::-webkit-scrollbar {
    background: #f0f0f000;
    border-radius: 10px;
}

.productionDescriptionContainer::-webkit-scrollbar-track {
  border-radius: 4px;
}

.productionDescriptionContainer::-webkit-scrollbar-thumb:hover {
    background: rgba(122, 160, 75, 0.2);
  }

#subtitle {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: rgb(118, 128, 117);
}

#menu_bar {
    display: flex;
    bottom: 10vh;
    position: fixed;
    width: auto;
    left: 0;
    z-index: 1000;
    right: 0;
    align-items: center;
    justify-content: space-around;
    max-width: 750px;
    margin: auto;
  }

#ephemeralBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 65%;
    transition: all 2.5s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000;
}

#ephemeralContent {
    background-color: #f6f6f6f1;
    border: 1px white solid;
    box-shadow: 0px 4px 8px 2px rgba(58, 69, 69, 0.4);
    border-radius: 40px;
    padding: 5px 10px;
    width: 100%;
}

@media (max-width: 1350px) {
    #options_box.active {
        margin-top: 7svh;
        padding: 6svh 2svh 2svh 2svh;
        width: 162%;
    }
    #attributes_container.active {
        width: 25%;
    }
    .fa-solid {
        vertical-align: text-top;
    }
}

@media (max-width: 1200px) {
    #product_container.active {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        min-height: 300px;
        gap: 30px;
        padding: 0;
        width: 100%;
    }
    #product_container.active::after {
        content: "";
        display: block;
        width: calc(6svh - 30px);
        flex-shrink: 0;
    }
    .product_details_container {    
        padding-top: 8px;
    }
    .price_buy {
        margin-bottom: 8px;
    }
    .product_box {
        width: 100%;
        margin-bottom: 0px;
        min-height: 450px;
    }
    #options_box.active {
        margin-top: 4svh;
        padding: 6svh 6svh 0svh 6svh;
    }
    .detailBox {
        max-width: none;
    }
    .qualitativeDetails {
        padding-top: 6px;
    }
  }

  @media (max-width: 850px) {
      #options_box.active {
          margin-top: 5svh;
          min-height: 80svh;
          padding-bottom: 2svh;
      }
      #attributesTopPart {
          display: none;
      }
      .product_detail {
        margin-bottom: 10px;
      }
      .detailBox {
        flex-direction: column;
        max-width: none;
        gap: 1px;
      }
      #attributes_container, #attributes_container.active {
        display: none;
      }
      .twelveHundredpxWidth {
        flex-direction: column;
        max-width: none;
        gap: 1px;
        font-size: 12px;
        display: block;
      }
      .detailBox > * {
        font-size: 13px;
      }
      .product_image_container, .front_page_image_container {
        height: 28%;
        min-height: 10%;
      }
      #scrollableContainer {
        flex-direction: column;
        height: auto;
        margin-bottom: 50px;
      }
      .scrollableItem {
        width: 100%;
      }
      .front_page_text {
        max-height: 100%;
      }
      #affiliate_label {
        padding: 2px;
        z-index: 999;
      }
      #countrySelectorContainer {
        top: 225px;
        font-size: 12px;
        z-index: 1000000;
      }
      .pageButton {
        height: 2svw;
        width: 2.5svw;
      }
    }

    @media (max-width: 440px) {
        .product_image_container, .front_page_image_container {
            height: 29%;
            min-height: 24%;
        }
        .product_details_container {
            flex-grow: inherit;
        }
        #product_container.active {
            height: 69svh;
        }
        #affiliate_label {
            position: fixed;
        }
        #options_box.active {
            padding-top: 5svh;
            padding-bottom: 4svh;
            margin-top: 3svh;
            min-height: 78svh;
        }
        .detailBox {
            gap: 2px;
            padding: 3px 0;
        }
        .loadingGameContainer {
            width: 140%;
            left: -70px;
        }

    }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}