:root {
    --min-image-height-desktop: 600px;
    --max-image-height-desktop: 70vh;

    /* Main colours */
    --text-colour: #000;
    --background-colour: #edeef1;
    --summary-background: #f4f4f6;

    /* Gray tones */
    --darker-gray: #7c7c7c;
    --dark-gray: #ccc;
    --light-gray: #cdd0d5;

    /* Elements */
    --hover-gray: #e3e5e8;
    --radio-button-background: #9c9ea2;
    
    --dialog-background: #edeef17a;
    --dialogwindow-shadow: #c6c9d2;
    --footer-transparent-bar: #8a8d91ca;

    /* Mobile */
    --mobile-selection-underline: #000;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    font-family: "Montserrat", sans-serif;
    background-color: var(--background-colour);
    color: var(--text-colour);
}

#loading {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 200;
    pointer-events:fill;
    cursor: wait;
}
@keyframes rotation {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}

.splashScreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--background-colour);
    background-image: url(/imgs/Urban_236.png);
    background-repeat: no-repeat;
    background-position: center center;
    pointer-events: none;
    z-index: 1000;

    transition: opacity 0.25s;
}


.leftArrow, .rightArrow {
    position: absolute;
    width: 75px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    user-select: none;

    &:hover {
        background-color: rgb(51, 51, 51, 0.05);
        opacity: 1;
    }
}

.shortcuts {
    line-height: 35px;
    background-color: var(--background-colour);
    padding: 10px 0px;
    display: flex;
    gap: 20px;
    font-size: 1rem;
}
#categoryshortcuts {
    flex: 1 1 auto;
    display: inline-flex;
    gap: 15px;
    text-transform: capitalize;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}
#categoryshortcutsunderline {
    display: block;
    width: 0px;
    height: 2px;
    background-color: var(--dark-gray);
    position: absolute;
    top: 32px;
    left: 0px;

    transition: left 0.5s, width 0.5s;
}

#shortcutsLeftArrow, #shortcutsRightArrow {
    position: absolute;
    top: 10px;
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    background-color: var(--background-colour);
    border-radius: 7px;
    box-shadow: 0px 0px 3px var(--light-gray);
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    transition: background-color 0.25s, opacity 0.25s;
}
#shortcutsLeftArrow:hover, #shortcutsRightArrow:hover {
    background-color: var(--hover-gray);
}
#shortcutsLeftArrow {
    left: 0px;
}
#shortcutsRightArrow {
    right: 90px;
}

.invisible {
    opacity: 0;
    pointer-events: none;
}

#categoryshortcuts input[type="radio"] {
    display: none;
}
#categoryshortcuts input[type="radio"] + label {
    cursor: pointer;
    padding: 0px 5px;
    border-radius: 7px;
    text-wrap: nowrap;

    transition: background-color 0.5s;
}
#categoryshortcuts input[type="radio"] + label:hover {
    background-color: var(--hover-gray);
}
#categoryshortcuts input[type="radio"]:checked + label {
    font-weight: 600;
}
#summaryshortcut {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 0px 5px;
    border-radius: 7px;
    font-weight: 600;

    transition: background-color 0.5s;
}
#summaryshortcut:hover {
    background-color: var(--hover-gray);
}


.optionsContainer { 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0px 15px;
    justify-content: flex-start;

    transition: height 0.2s;
}
.optionsContainer input[type="radio"],
.optionsContainer input[type="checkbox"] {
    display: none;
}
.optionsContainer input[type="radio"] + label,
.optionsContainer input[type="checkbox"] + label {
    cursor: pointer;
    user-select: none;
    font-size: 0.75rem;
    color: var(--dark-gray);
    font-weight: 600;
    line-height: 30px;
}

.optionsContainer input[type="radio"] + label + .price,
.optionsContainer input[type="checkbox"] + label + .price {
    font-size: 0.75rem;
    margin: 0px 0px 0px 20px;
    font-weight: 600;
    color: var(--dark-gray);
}



.optionsContainer input[type="radio"] + label::before,
.optionsContainer input[type="checkbox"] + label::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--background-colour);
    border: 1px solid var(--dark-gray);
    top: 0.5px;
    margin-right: 10px;
}
.optionsContainer input[type="checkbox"] + label::before {
    border-radius: initial;
}
.optionsContainer input[type="radio"]:checked + label::before,
.optionsContainer input[type="checkbox"]:checked + label::before {
    background-color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
}

.swatch .optionsContainer {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.swatch .optionsContainer input[type="radio"] + label {
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
}
.swatch .optionsContainer input[type="radio"] + label::before {
    width: calc(100% - 4px);
    aspect-ratio: 1 / 1;
    height: auto;

    border-radius: 5px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--background-colour);
    margin-bottom: 5px;
    border: 2px solid var(--background-colour);
}
.swatch .optionsContainer input[type="radio"]:checked + label::before {
    border: 2px solid black;
}
.swatch .optionsContainer input[type="radio"] + label + .price,
.swatch .optionsContainer input[type="checkbox"] + label + .price {
    font-size: 0.75rem;
    margin: 0px;
    font-weight: 600;
    color: var(--dark-gray);
}

/*      "Group": "+E41JR" "Name": "Calipers", */
label[for="+QX2DB"]::before { background-image: url('/imgs/S_Caliper_Silver.png') !important; }
label[for="+4P1AQ"]::before { background-image: url('/imgs/S_Caliper_Dark_Silver.png') !important; }
label[for="+ZI86B"]::before { background-image: url('/imgs/S_Caliper_Black.png') !important; }
label[for="+AT7NH"]::before { background-image: url('/imgs/S_Caliper_White.png') !important; }
label[for="+PBHPR"]::before { background-image: url('/imgs/S_Caliper_Red.png') !important; }
/*      "Group": "+C5UHS" "Name": "Bonnet", */
label[for="+RMMTW"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }
label[for="+WQBIG"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+V4223"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+J4YCA"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+A1IDW"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+MCFSG"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+JZQLR"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+ANPGD"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+6SHV3"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
label[for="+AAFZF"]::before { background-image: url('/imgs/S_Carbon_Fiber.png') !important; }
/*      "Group": "+ZYTH9" "Name": "Body Trim", */
label[for="+9B24L"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+NU7O5"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+1F6AF"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+XCNEQ"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+46BC4"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+BJEDA"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+W0Y4X"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+OW8XI"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
label[for="+C7VMV"]::before { background-image: url('/imgs/S_Plastic_Black_Gloss.png') !important; }
label[for="+USCMO"]::before { background-image: url('/imgs/S_Plastic_Black_Matte.png') !important; }
label[for="+H5PXZ"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }
/*      "Group": "+YR9I0" "Name": "Side Vent", */
label[for="+DG6H1"]::before { background-image: url('/imgs/S_Plastic_Black_Gloss.png') !important; }
label[for="+V4NMK"]::before { background-image: url('/imgs/S_Plastic_Black_Matte.png') !important; }
label[for="+5V85E"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }
label[for="+TDBC5"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+23MW2"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+NUICJ"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+6U7QJ"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+23AYD"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+E5BI9"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+PEGI0"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+D6N86"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
/*      "Group": "+BA9KV" "Name": "Body Paint", */
label[for="+R5FS2"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }
label[for="+C8G19"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+3LDS7"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+K6F6B"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+L6264"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+0YGPF"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+ZYJC8"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+3TT4Q"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+OMJAX"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
/*      "Group": "+PUCME" "Name": "Roof", */
label[for="+EJ3OO"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }
label[for="+WIATS"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+XPY0I"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+RRIOU"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+67JXB"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+CS5F1"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+5LY4N"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+Z0V46"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+8UGJH"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
label[for="+U1BYZ"]::before { background-image: url('/imgs/S_Plastic_Black_Gloss.png') !important; }
/*      "Group": "+68EVO" "Name": "A Pillars", */
label[for="+OWW72"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }
label[for="+413VM"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+JZ5TF"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+3RQBS"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+0PMXA"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+S8YOY"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+VHH5J"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+C3SNS"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+0GXZ3"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
label[for="+JVIUG"]::before { background-image: url('/imgs/S_Plastic_Black_Gloss.png') !important; }
/*      "Group": "+MSF0B" "Name": "Wheels", */
label[for="+RXNHA"]::before { background-image: url('/imgs/S_Alloy_Dark_Silver.png') !important; }
label[for="+JV53S"]::before { background-image: url('/imgs/S_Alloy_Black_Gloss.png') !important; }
label[for="+9Q4O0"]::before { background-image: url('/imgs/S_Alloy_White.png') !important; }
label[for="+9KGWT"]::before { background-image: url('/imgs/S_Alloy_Silver.png') !important; }
/*      "Group": "+MAOPO" "Name": "Badging", */
label[for="+5V060"]::before { background-image: url('/imgs/S_Plastic_Black_Gloss.png') !important; }
label[for="+R0XXW"]::before { background-image: url('/imgs/S_Chrome.png') !important; }
/*      "Group": "+IIHQK" "Name": "Bumper", */
label[for="+25LI8"]::before { background-image: url('/imgs/S_Paint_Pangea_Green.png') !important; }
label[for="+Z4B6W"]::before { background-image: url('/imgs/S_Paint_Silver_Silicone.png') !important; }
label[for="+LP12G"]::before { background-image: url('/imgs/S_Paint_Carpathian_Grey.png') !important; }
label[for="+WF9P6"]::before { background-image: url('/imgs/S_Paint_Eiger_Grey.png') !important; }
label[for="+0VJSE"]::before { background-image: url('/imgs/S_Paint_Godwana_Stone.png') !important; }
label[for="+EZM1I"]::before { background-image: url('/imgs/S_Paint_Hakabu_Silver.png') !important; }
label[for="+ZZKDO"]::before { background-image: url('/imgs/S_Paint_Tasman_Blue.png') !important; }
label[for="+RDGBV"]::before { background-image: url('/imgs/S_Paint_Santorini_Black.png') !important; }
label[for="+5HBZ3"]::before { background-image: url('/imgs/S_Plastic_Black_Gloss.png') !important; }
label[for="+8WM4E"]::before { background-image: url('/imgs/S_Plastic_Black_Matte.png') !important; }
label[for="+YDORN"]::before { background-image: url('/imgs/S_Plastic_Silver.png') !important; }
label[for="+GI3QU"]::before { background-image: url('/imgs/S_Plastic_Silver_Dark.png') !important; }
label[for="+HZLV6"]::before { background-image: url('/imgs/S_Paint_Fuji_White.png') !important; }




.optionsContainer input[type="radio"]:checked + label,
.optionsContainer input[type="checkbox"]:checked + label,
.optionsContainer input[type="radio"]:checked + label + .price,
.optionsContainer input[type="checkbox"]:checked + label + .price {
    font-weight: 600;
    color: black;
}
.optionsContainer input[type="radio"]:disabled + label,
.optionsContainer input[type="radio"]:disabled + label + span,
.optionsContainer input[type="checkbox"]:disabled + label {
    display: none;
}

#viewport {
    position: relative;
    min-height: var(--min-image-height-desktop);
    max-height: var(--max-image-height-desktop);
    overflow: hidden;

    transition: opacity 0.5s;
}
.fadeImage {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0px;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    /* filter: blur(5px); */
    
    transition:  opacity 0.25s;
}

.swatch .price {
    margin: 0px;
}


.selectionContainer {
    font-size: 0.75rem;
    font-weight: 600;
    overflow: hidden;
    line-height: 30px;
    height: 10px;
    opacity: 0;
    transition: height 0.2s, opacity 0.2s;
    margin: 0px 15px;
    display: flex;
}
.closed .selectionContainer {
    opacity: 1;
    height: 30px;
    transition: height 0.3s, opacity 0.5s;
}
.selectionName {
    flex: auto;
}

/* MENU */
.modelnamecontainer {
    display: flex;
    width: calc(100% - 30px);
    height: 35px;
    line-height: 35px;
    margin: 10px 15px;
    font-weight: 600;
}
.modelname {
    flex: auto;
    font-size: 1.2rem;
    font-weight: 600;
}
.finalprice {
    color: var(--dark-gray);
    font-size: 0.9rem;
}
/* CATEGORIES */
.categoryTitle {
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
    font-weight: 500;
    font-size: 1.25rem;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 15px;
    border-radius: 5px;
    background-color: var(--background-colour);

    transition: background-color 0.25s;
}
.categoryTitle:hover {
    background-color: var(--hover-gray)
}
.categoryTitle svg {
    position: absolute;
    right: 11px;
    top: 14px;
}
.bar1, .bar2 {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.closed .bar1  {
  transform: rotate(90deg);
}
.closed .bar2  {
  transform: rotate(180deg);
}


.categoryContainer::before {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    background-color: var(--dark-gray);
    position: relative;
    top: 0px;
    left: 15px;
}

/* DESKTOP LAYOUT */
.wrapper {
    max-width: 2560px;
    min-width: 320px;
    margin: 0px auto;
    display: flex;
    height: auto;
    flex-wrap: wrap;
    padding: 45px 30px;
    width: calc(100% - 60px);
}
.brandlogo {
    background-color: aqua;
    width: calc(100% - 470px);
    height: 60px;
    background: url('/imgs/Urban_236.png') no-repeat left top;
    /* background-size: 190px; */
}
.humbergermenu {
    background-color: azure;
    width: 470px;
    height: 60px;
    background: url('/imgs/menu.jpg') no-repeat right top;
}
.viewercontainer {
    width: 100%;
    min-height: calc(100% - 60px);
    height: auto;
    /* background-color: rgb(0, 90, 158); */
    background-color: var(--background-colour);
    display: flex;
}
#viewer {
    width: auto;
    display: block;
    position: sticky;
    top: 0px;
    box-shadow: 0px 0px 20px 11px var(--background-colour);
    height: fit-content;
    flex: 1 1 auto;
    z-index: 1;
    overflow: auto;
}
.viewer, .viewer object img, .fadeImage {
    border-radius: 7px;
    background-color: var(--background-colour);
    object-fit: cover;
    object-position: center;
    height: auto;
    min-height: var(--min-image-height-desktop);
    max-height: var(--max-image-height-desktop);
    user-select: none;
}
#primaryCanvas {
    /* background-color: rgb(50, 200, 50); */
    width: 100%;
    height: auto;
    min-height: var(--min-image-height-desktop);
    max-height: var(--max-image-height-desktop);
    pointer-events: none;
    user-select: none;
}
.viewButtonsContainer {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    gap: 10px;
}

.viewButtonsContainer input[type="radio"] + label,
.viewButtonsContainer input[type="checkbox"] + label {
    height: 52px;
    width: 52px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
}

.viewButtonsContainer input[type="radio"]:checked + label,
.viewButtonsContainer input[type="checkbox"]:checked + label,
.viewButtonsContainer input[type="radio"] + label:hover {
    border: 2px solid var(--radio-button-background);
}

.viewButtonsContainer input[type="radio"],
.viewButtonsContainer input[type="checkbox"],
.viewButtonsContainer input[type="radio"]:disabled + label,
.viewButtonsContainer input[type="checkbox"]:disabled + label {
    display: none;
}

.menubar {
    min-width: 350px;
    min-height: calc(100% - 830px);
    max-width: 540px;
    padding: 0px 0px 0px 30px;
    width: 33%;
}
.optionContainer {
    display: flex;
    line-height: 30px;
    flex-direction: column;

    width: calc(33% - 6.7px);
    aspect-ratio: 1 / 1;
}
.car {
    width: 100%;
    height: auto;
    display: block;
}

/* Summary button */
.summaryButton {
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 5px;
    width: fit-content;
    margin: 60px auto;
    cursor: pointer;

    transition: background-color 0.25s;
}
.summaryButton:hover {
    background-color: var(--hover-gray);
}

/* Summary page */
/* #summary::before {
    content: "";
    display: block;
    width: calc(100% - 60px);
    padding: 0px 30px;
    height: 60px;
} */
#summary {
    max-width: 2560px;
    min-width: 320px;
    margin: 50px auto;
    width: calc(100% - 60px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#summaryImage {
    width: 100%;
    height: auto;
    border-radius: 7px;
}
.summaryTitle {
    text-align: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px;
}
.summaryTitleSmall {
    font-size: 1.25rem;
    color: var(--darker-gray)
}
.summaryTitleBig {
    font-size: 3rem;
    font-weight: 600;
}

/* Summary Details */
#summaryDetails {
    max-width: 2560px;
    min-width: 320px;
    margin: 0px auto;
    width: 100%;
    height: auto;
    background-color: var(--summary-background);
}
.summaryWrapper {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 30px 0px;
}
.summaryDetailsTop {
    width: 50%;
}
.summaryOption {
    height: 3rem;
}
.summaryOptionLine {
    font-size: .75rem;
}
.hor {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.ver {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.half {
    width: 50%;
    flex: 0 0 auto;
    min-width: 400px;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.nameColumn {
    text-align: left;
}
.priceColumn {
    width: 200px;
    text-align: right;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.fineprint {
    font-size: 0.6rem;
    padding: 15px 0px;
    text-align: justify;
}
.separatorAfter {
    border-bottom: 1px solid var(--dark-gray);
}
.separatorBefore {
    border-top: 1px solid var(--dark-gray);
}
.change {
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    user-select: none;
}
.change:hover {
    background-color:var(--hover-gray)
}

#summaryFooter {
    max-width: 2560px;
    min-width: 320px;
    margin: 0px auto;
    width: calc(100% - 120px);
    height: fit-content;
    background-color: black;
    color: white;
    padding: 60px;
    text-align: justify;
    font-size: .85rem;
    line-height: 1.25rem;
}
#summaryFooter hr {
    margin: 30px 0px;
    border-color: var(--darker-gray);
}

/* Modal window */
.dialogbg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(30px);
    background-color: var(--dialog-background);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;

    transition: opacity 0.25s;
}
.dialogwindow {
    max-width: 300px;
    margin: 0px 15px;
    background-color: var(--background-colour);
    border-radius: 7px;
    box-shadow: 1px 2px 6px var(--dialogwindow-shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 30px;
}
.dialogwindow .error {
    color: red;
    font-size: 0.75rem;
}
.dialogwindow input[type="email"] {
    border-radius: 5px;
    outline: none;
    font-family: inherit;
    padding: 5px;
    width: calc(100% - 10px);
}
.dialogwindow button {
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    background-color: var(--hover-gray);
    font-family: inherit;
}
.hidden {
    display: none;
}
#footerBar {
    max-width: 2540px;
    min-width: 320px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: -75px;
    width: calc(100% - 50px);
    border-radius: 7px;
    height: 50px;
    line-height: 50px;
    background-color: var(--footer-transparent-bar);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    padding: 10px;
    transition: bottom 0.5s;
    z-index: 5;
    gap: 30px;
    font-size: 1rem;
}
.showFooter {
    bottom: 15px !important;
}

#footerBar .modelname {
    flex: 0 0 auto;
    font-weight: normal;
}
#footerBar .sendconfig {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 0px 10px;
    border-radius: 7px;
    font-weight: 500;

    transition: background-color 0.25s, color 0.25s;
}
#footerBar .sendconfig:hover {
    background-color: var(--background-colour);
    color: var(--darker-gray);
}
#footerBar .spacer {
    flex: 1 1 auto;
}
#footerBar .pricesummary {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
}
#footerBar .finalprice {
    color: white;
}
.pricesummary .summaryButton {
    margin: 0px;
    padding: 0px 30px;
    background-color: var(--background-colour);
    color: var(--darker-gray);
    font-weight: 500;
    border: none;

    transition: background-color 0.5s;
}
.pricesummary .summaryButton:hover {
    background-color: var(--dark-gray);
}

@media (max-width:1710px) {
    .optionContainer {
        width: calc(50% - 5px);
    }
}

/* TABLET LAYOUT */
@media (max-width:1280px) {
    .brandlogo,
    .humbergermenu {
        width: 50%;
        height: 60px;
    }
  
    #viewer {
        top: 0px;
    }
  
    .viewercontainer {
        width: 100%;
        height: auto;
        min-height: initial;
        z-index: 1;
        flex-direction: column;
    }
    .menubar {
        margin: 20px 0px 0px 0px;
        padding: 0px;
        width: 100%;
        height: auto;
        min-height: initial;
        max-width: fit-content;
    }

    .optionContainer {
        width: calc(25% - 7.5px);
    }
    #summary {
        margin: 0px;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
    #summaryImage {
        width: auto;
        height: 100%;
        border-radius: 7px;
    }

    #viewport,
    #primaryCanvas,
    .viewer, .viewer object img, .fadeImage {
        min-height: initial;
        max-height: calc(80vh - 100px);
        height: auto;
    }
    .viewer, .viewer object img, .fadeImage {
        object-fit: cover;
    }
}
/* MOBILE LAYOUT */
@media (max-width:800px) {
    
    .wrapper {
        padding: 0px;
        width: 100%;
    }
    
    .brandlogo {
        background: url('/imgs/Urban_156.png') no-repeat left top;
        background-position: center;
        background-position-x: 10px;
    }

    .humbergermenu {
        background-size: 20px;
        background-position: center;
        background-position-x: calc(100% - 10px);
    }
    .viewer, .viewer object img, .fadeImage {
        border-radius: 0px;
    }

    
    .viewButtonsContainer {
        left: 5px;
        bottom: 5px;
        gap: 5px;
    }
    .viewButtonsContainer input[type="radio"] + label,
    .viewButtonsContainer input[type="checkbox"] + label,
    .viewButtonsContainer input[type="radio"] + label img,
    .viewButtonsContainer input[type="checkbox"] + label img {
        height: 26px;
        width: 26px;
    }

    .summaryTitle {
        gap: 5px;
        top: 50px;
    }

    .summaryTitleSmall {
        font-size: 1rem;
    }
    .summaryTitleBig {
        font-size: 2rem;
    }
    .summaryButtons {
        flex-direction: column;
    }
    #buttonEmail, #buttomContact {
        width: calc(100% - 90px);;
    }
    #summaryDetails {
        border-radius: 0px;
        box-shadow: none;
        background-color: inherit;
        width: calc(100% - 30px);
    }
    
    .priceColumn {
        width: 100px;
    }
    .summaryDetailsTop {
        width: 100%;
        box-shadow: none;
        border-radius: 0px;
    }

    .shortcuts {
        line-height: 30px;
        padding: 10px 15px;
        text-align: center;
        justify-content: center;
    }
    #categoryshortcutsunderline {
        top: 28px;
        height: 2px;
        background-color: var(--dark-gray);
    }
    #categoryshortcuts::before {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--dark-gray);
        position: absolute;
        top: 28px;
    }
    #categoryshortcuts input[type="radio"]:not(:checked) + label,
    #summaryshortcut {
        display: none;
    }
    #shortcutsLeftArrow, #shortcutsRightArrow {
        display: none;
    }
    #categoryshortcuts input[type="radio"] + label {
        width: 100%;
        text-align: left;
        position: relative;
        font-size: 1rem;
        font-weight: 500;
    }
    #categoryshortcuts input[type="radio"] + label::after {
        content: " \203A";
        display: inline-block;
        position: absolute;
        right: 0px;
        font-size: 1rem;
        font-weight: 500;
    }
    #categoryshortcuts input[type="radio"] + label:hover {
        background-color: initial;
    }

    .summaryButton {
        padding: 0px 10px !important;
    }
    .sendconfig {
        display: none;
    }
    #footerBar {
        width: calc(100% - 50px);
        left: 15px;
        transform: initial;
    }

    .mobileShortcutsMenu {
        width: calc(100% - 60px);
        height: calc(100% - 60px);
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
    }
    .mobileShortcutsMenu .menuItem {
        margin-bottom: 20px;
        font-size: 1.25rem;
        font-weight: 600;
        border-bottom: 2px transparent;
    }
    .mobileShortcutsMenu .menuItem.selected {
        border-bottom: 2px solid var(--mobile-selection-underline)
    }
    .mobileShortcutsMenu .close {
        width: 100%;
        text-align: right;

    }

    .optionContainer {
        width: calc(33% - 6.7px);
    }
}

@media (max-width:430px) {
    .priceColumn {
        width: 130px;
    }
    .optionContainer {
        width: calc(50% - 5px);
    }
    #summaryFooter {
        width: calc(100% - 60px);
        padding: 30px;
    }
    #footerBar {
        gap: initial;
    }
    .totalPriceText {
        display: none;
    }
}