@import url(./root.css);

/* style for Bornieky Lacerda */
.body {
    display: flex;
}

.models {
    display: none;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 60px;
    background-color: #acffba;
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.menu-openner {
    margin-right: 15px;
    font-size: 26px;
    background-color: #35af4a;
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 5px;
}

.menu-openner span {
    margin-right: 10px;
}

.menu-closer {
    width: 32px;
    height: 32px;
    display: none;
    font-size: 30px;
}

aside {
    background-color: #acffba;
    width: 0vw;
    font-family: 'Hepta Slab', Helvetica, Arial;
    transition: all ease .2s;
    overflow-x: hidden;
}

aside.show {
    width: 30vw;
}

.cart--area {
    padding: 20px;
}

.cart {
    margin-bottom: 20px;
    font-size: 1rem;
}

.cart--item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.cart--item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.cart--item-nome {
    flex: 1;
}

.cart--item--qtdArea {
    display: inline-flex;
    background-color: #EEE;
    border-radius: 10px;
    height: 30px;
}

.cart--item--qtdArea button {
    border: 0;
    background-color: transparent;
    font-size: 17px;
    outline: 0;
    cursor: pointer;
    padding: 0px 10px;
    color: #333;
}

.cart--item--qt {
    line-height: 30px;
    font-size: 12px;
    font-weight: bold;
    padding: 0px 5px;
    color: #000;
}

.cart--totalitem {
    padding: 15px 0;
    border-top: 1px solid #79b9dd;
    color: #315970;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.cart--totalitem span:first-child {
    font-weight: bold;
}

.cart--totalitem.big {
    font-size: 20px;
    color: #000;
    font-weight: bold;
}

.cart--finalizar {
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #48d05f;
    color: #000000;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    margin-top: 20px;
    border: 2px solid #63f77c;
    transition: all ease .2s;
}

.cart--finalizar:hover {
    background-color: #35af4a;
    color: #FFFFFF;
}

main {
    flex: 1;
    padding: 20px;
}

h1 {
    font-family: 'Hepta Slab', Helvetica, Arial;
}

.item-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.item {
    text-align: center;
    max-width: 250px;
    font-family: 'Hepta Slab', Helvetica, Arial;
    margin: 0 auto 50px auto;
}

.item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.item--img {
    width: 200px;
    height: 200px;
    background-color: #EEE;
    border-radius: 100px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
}

.item--img img {
    width: 100%;
    height: auto;
}

.item--add {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #388bc5;
    text-align: center;
    color: #FFF;
    font-size: 22px;
    cursor: pointer;
    margin-top: -25px;
    transition: all ease .2s;
}

.item a:hover .item--add {
    background-color: #244c88;
}

.item--price {
    font-size: 15px;
    color: #333;
    margin-top: 5px;
}

.item--name {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-top: 5px;
}

.item--desc {
    font-size: 13px;
    color: #555;
    margin-top: 10px;
}

.itemWindowArea {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    display: none;
    transition: all ease .5s;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.itemWindowBody {
    width: 900px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 0px 15px #999;
    display: flex;
    margin: 20px 0px;
    padding: 20px 0;
}

.itemBig {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itemBig--back {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #000;
}

.itemBig img {
    height: 400px;
    width: auto;
}

.itemInfo {
    flex: 1;
    font-family: 'Hepta Slab', Helvetica, Arial;
    padding-bottom: 50px;
}

.itemInfo h1 {
    margin-top: 50px;
}

.itemInfo .itemInfo--desc {
    font-size: 15px;
    color: #999;
    margin-top: 10px;
    font-family: 'Lato', Helvetica, Arial;
}

.itemInfo--sector {
    color: #CCC;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.itemInfo--sizes {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
}

.itemInfo--size {
    padding: 10px 15px;
    color: #000;
    background-color: #EEE;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}

.itemInfo--size:hover {
    background-color: #CCC;
}

.itemInfo--size.selected {
    background-color: #399ade;
    color: #FFF;
}

.itemInfo--size.selected span {
    color: #D6D6D6;
}

.itemInfo--size span {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

.itemInfo--price {
    display: flex;
    align-items: center;
}

.itemInfo--actualPrice {
    font-size: 28px;
    margin-right: 30px;
}

.itemInfo--qtdArea {
    display: inline-flex;
    background-color: #EEE;
    border-radius: 10px;
    height: 30px;
}

.itemInfo--qtdArea button {
    border: 0;
    background-color: transparent;
    font-size: 17px;
    outline: 0;
    cursor: pointer;
    padding: 0px 10px;
    color: #333;
}

.itemInfo--qtd {
    line-height: 30px;
    font-size: 12px;
    font-weight: bold;
    padding: 0px 5px;
    color: #000;
}

.itemInfo--addButton {
    margin-top: 30px;
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #48d05f;
    color: #000000;
    display: inline-block;
    cursor: pointer;
    margin-right: 30px;
}

.itemInfo--addButton:hover {
    background-color: #32a345;
    color: #FFFFFF;
}

.itemInfo--cancelButton {
    margin-top: 30px;
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #FFA500;
    color: #FFF;
    display: inline-block;
    cursor: pointer;
    margin-right: 30px;
}

.itemInfo--cancelButton:hover {
    background-color: #f4bf5c;
    color: #000000;
}

.itemInfo--cancelMobileButton {
    display: none;
    width: 120px;
    margin: 30px 0;
    padding: 10px 30px;
    border-radius: 20px;
    background-color: #FFA500;
    color: #FFF;
    text-align: center;
    cursor: pointer;
}

.itemInfo--cancelMobileButton:hover {
    background-color: #f4bf5c;
    color: #000000;
}



@media (max-width:1000px) {
    .item-area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 930px) {
    body {
        flex-direction: column;
    }

    .item-area {
        display: block;
    }

    .item {
        max-width: 100%;
    }

    header {
        display: flex;
    }

    main {
        padding-top: 60px;
    }

    aside {
        width: auto;
        position: fixed;
        left: 100vw;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all ease .2s;
    }

    aside.show {
        width: auto;
    }

    .cart--area {
        width: 95vw;
    }

    .menu-closer {
        display: block;
    }

    .itemWindowArea {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .itemWindowBody {
        width: 100vw;
        display: block;
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }

    .itemInfo h1 {
        margin-top: 20px;
    }

    .itemInfo--qtdArea {
        height: 60px;
    }

    .itemInfo--qtdArea button {
        font-size: 25px;
        padding: 0px 20px;
    }

    .itemInfo--qtd {
        line-height: 60px;
        font-size: 20px;
    }

    .itemInfo--addButton {
        font-size: 20px;
        display: block;
        text-align: center;
        margin: 30px auto;
    }

    .itemInfo--cancelButton {
        display: none;
    }

    .itemInfo--cancelMobileButton {
        display: block;
    }
}

@media (max-width: 480px) {
    .itemBig img {
        width: 75%;
        height: auto;
    }
}