/* fonts */
@font-face {
    font-family: 'Dream Orphans Bold Italic';
    src: url('fonts/DreamOrphans-BoldItalic.woff2') format('woff2'),
        url('fonts/DreamOrphans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Dream Orphans Italic';
    src: url('fonts/DreamOrphans-Italic.woff2') format('woff2'),
        url('fonts/DreamOrphans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Dream Orphans Regular';
    src: url('fonts/DreamOrphans-Regular.woff2') format('woff2'),
        url('fonts/DreamOrphans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BodyFontBold';
    src: url('fonts/DreamOrphans-Bold.woff2') format('woff2'),
        url('fonts/DreamOrphans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'The Bold Font';
    src: url('fonts/TheBoldFont.woff2') format('woff2'),
        url('fonts/TheBoldFont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Caviar Dreams italic bold';
    src: url('fonts/CaviarDreams-BoldItalic.woff2') format('woff2'),
        url('fonts/CaviarDreams-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Caviar Dreams italic';
    src: url('fonts/CaviarDreams-Italic.woff2') format('woff2'),
        url('fonts/CaviarDreams-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Title1';
    src: url('fonts/Greywall.woff2') format('woff2'),
        url('fonts/Greywall.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BTN Font';
    src: url('fonts/CaviarDreams-Bold.woff2') format('woff2'),
        url('fonts/CaviarDreams-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/CaviarDreams.woff2') format('woff2'),
        url('fonts/CaviarDreams.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}




/* stops padding from adding to the width/height of a div */
* {
    box-sizing: border-box;
}


/* GENERAL STYLES */

body {
    /* DO NOT REMOVE */
    margin: 0;
    background: #000;
    overflow: hidden;
    
    /* font styles for entire app   --- CHANGED ----Bl*/
    font-family: "Caviar Dreams", sans-serif;
    color: #002856;
    
    /* UNCOMMENT THIS WHEN RUNNING ON TOUCHSCREEN ONLY */
/*    cursor: none;*/
}


/* Title Section Change ----- edits------Bl */
#mytitle1 {
    position: absolute;
    top: 20%;
    left:35%;
}

#foxlogo {
    position: absolute;
    top: 10%;
    left: 82%;
}


main, section, header, footer {
    position: absolute;
}

main {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    background-image: url(../images/touchscreenBG.jpg)
}

header, footer {
    z-index: 9500;
}

header {
    width: 1920px;
    height: 50px;
    
    /* temporary screen text styles - REMOVE AND ADD YOUR OWN */
/*    background-color: #FFF;*/
    color: #4b7492;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer {
    width: 1920px;
    height: 50px;
    bottom: 0;
    
    /* temporary screen text styles - REMOVE AND ADD YOUR OWN */
/*  removed white footer bg  --- change made -- Bl  */
    color: #4b7492;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

section {
    width: 1920px;
    height: 1080px;
}

#promotion {
    z-index: 10000;
}


/* STYLES FOR OUTFIT SCREEN */

#genderTitle {
    position: absolute;
    top: 105px;
    left: 100px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
}

#outfitImgs {
    position: absolute;
    top: 173px;
    left: 180px;
    width: 800px;
    height: 750px;
    overflow: hidden;
}

.swiper-slide {
    width: 800px;
    
    /* temporary screen text styles - REMOVE */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}


/* SLIDER SIZES... height and width can be changed ----CHANGED from 800 - 600 --Bl*/
#headImg {
    width: 600px;
    height: 183px;
}

#torsoImg {
    width: 600px;
    height: 232px;
}

#legsImg {
    width: 600px;
    height: 169px;
}

#feetImg {
    width: 600px;
    height: 166px;
}


/* BUTTON STYLES */

/* for all buttons on both screens */
.btn {
    border: solid 1px #FFF;
    border-radius: 20px;
    padding: 10px;
    color: #FFF;
}

/* style change on click */
.btn:active, .print-receipt-active {
    background-color: #002352;
    border: solid 1px transparent;
    color: #ffffff;
}

.btn:hover {
    cursor: default;
}

/* for all buttons on first screen */
.outfitBtn {
    position: absolute;
    bottom: 100px;
}

/* for individual buttons on first screen put a background image for a button in here, Remember to change image for active states  */
#genderOutfit {
    bottom: auto;
    left: 3%;
    top: 200px;
    right: 1678px;
    background-color: #ffffff;
    color: #002352;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
}

#nextOutfit {
    bottom: auto;
    left: 3%;
    top: 300px;
    right: 1680px;
    background-color: #ffffff;
    color: #002352;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
}

#randomOutfit {
    bottom: auto;
    left: 3%;
    top: 400px;
    right: 1680px;
    background-color: #ffffff;
    color: #002352;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
}

#sideOutfit {
    bottom: auto;
    left: 3%;
    top: 500px;
    right: 1680px;
    background-color: #ffffff;
    color: #002352;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
}

#orderOutfit {
    right: 120px;
    bottom: auto;
    left: 85%;
    top: 950px;
    background-color: #ffffff;
    color: #002352;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
}

#help {
    right: 120px;
    bottom: auto;
    left: 85%;
    top: 125px;
    background-color: #ffffff;
    color: #002352;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
}

#myhelp {
    display: none;
    position: absolute;
    z-index: 9999;
}

/* OUTFIT INFORMATION STYLES */

.info {
    position: absolute; /* DO NOT REMOVE */
/*  change made --- transparency increased by from .2 to .4 Borders changed as well  Bl   */
    left: 1000px;
    width: 800px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px;
    padding-bottom: 40px;
    border-left: solid 8px #002352;
    border-bottom: solid 1px #002352;
    
}

.info h2 {
    margin: 0;
}

.info p {
    font-size: 20px;
    margin-bottom: 0;
}
/*  change made --- positions to match provided text ----  Bl   */

#headInfo {
   top: 200px;
}

#torsoInfo {
    top: 395px;
}

#legsInfo {
    top: 590px;
}

#feetInfo {
    top: 785px;
}


/* SHOPPING CART STYLES  ////////////////// */

#cart {
    z-index: 9000; /* DO NOT REMOVE */
    
    background-image: url(../images/cartBG1.jpg)
}

/* selected products list */
#products {
    position: absolute;
    width: 1200px;
    top: 150px;
    left: 100px;
    overflow: auto;
}

/* close cart/return button  --- changed --- Bl */
#close-cart {
    position: absolute;
    left: 100px;
    bottom: 150px;
    text-align: center;
    transition: all 1s;
    bottom: auto;
    top: 870px;
    background-color: #ffffff;
    color: #4b7492;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
}

/* header row style --- changed --- Bl */
#column-labels {
    border: none;
    border-bottom: solid 1px #002352;
    padding-bottom: 5px;
    margin-top: 10px;
    font-size: 120%;
    font-weight: bold;
}

/* row styles  --- changed --- Bl*/
.row {
    display: flex;
    flex-direction: row;
    width: 1200px;
    border: solid 1px #FFF;
    border-bottom: solid 1px #002352;
    border-left: solid 8px #002352;
    padding: 10px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.4);   
}

.row:hover {
    cursor: default; /* DO NOT REMOVE */
}

/* column styles */
.column {
    margin-right: 10px;
}

.image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border: solid 1px #FFF;
}

/* removes image styles from column label row */
#column-labels .image {
    height: auto;
    overflow: auto;
    border: none;
}

.image img {
    height: 100%;
    width: auto;
}

.title-desc {
    width: 25%;
}

.title-desc h2 {
    margin-bottom: 0;
}

.size {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
}
/* Changes Made --- radius, width and colour  --- Bl*/
.size-select {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60px;
    height: 50px;
    padding: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    opacity: 0.5;
    transition: all 1s;
    background-color: #002352;
    color: #ffffff;
    border-radius: 50%;
}

.size-select:nth-child(n+5) {
    margin-bottom: 0;
}

.size-select-active {
    opacity: 1;
}

.size-select:last-child {
    margin-right: 0;
}

.colour {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
}

/* Changes Made --- radius, width & margin  --- Bl*/
.colour-select {
    width: 40px;
    height: 50px;
    margin-right: 20px;
    margin-bottom: 10px;
    opacity: 0.5;
    transition: all 1s;
    border-radius: 30%;
    border: solid 1px transparent;
}

.colour-select:nth-child(n+5) {
    margin-bottom: 0;
}

.colour-select-active {
    opacity: 1;
    
    border: solid 1px #FFF;
}

.colour-select:last-child {
    margin-right: 0;
}

.price {
    width: 10%;
    
    font-size: 120%;
    font-weight: bold;
}

.remove {
    width: 5%;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    font-size: 150%;
    font-weight: bold;
}

.column h2 {
    margin: 0;
}

/* styles for summary/total list */
#total-print {
    position: absolute;
    width: 400px;
    top: 150px;
    right: 100px;
    overflow: auto;
    
    border: solid 1px #FFF;
    padding: 10px;  
}

#total-print h1 {
    margin-top: 0;
    font-size: 200%;
}

#total-print span {
    display: inline-block;
    float: right;
}

#total-print h2 {
    margin-bottom: 0;
}

#selection div {
    overflow: auto;
}

#selection h3 {
    margin-bottom: 0;
}

#selection p {
    margin-top: 0;
}

/* print receipt button */
#print-receipt {
    text-align: center;
    transition: all 1s;
    right: 120px;
    bottom: auto;
    left: 85%;
    top: 950px;
    background-color: #ffffff;
    color: #4b7492;
    font-family: "BTN Font";
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
}