/*# sourceMappingURL=style.css.map */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    height: 100vh;
}

.navbar {
    width: 300px;
    background-color: rgba(28, 34, 56, 1);
    color: #fefefe;
    padding: 20px;
}

.navbarTitle {
    font-size: 36px;
    font-family: 'Nunito', sans-serif;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(45, 52, 81, 1);
}

.itemsNavbar {
    list-style: none;
    margin-top: 20px;
}

.itemNavbar {
    display: flex;
    align-items: center;
    padding: 9px 11px;
    border: 2px solid rgba(28, 34, 56, 1);
}

.itemNavbar>span {
    padding-left: 10px;
}

.itemNavbar:hover.active {
    border: 2px solid rgba(28, 34, 56, 1);
    border-radius: 5px;
}

.itemNavbar:hover {
    border: 2px solid rgba(30, 114, 239, 1);
    border-radius: 5px;
}

.content {
    padding: 20px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: 200px 200px;
    gap: 20px;
}

.card {
    height: 200px;
    width: minmax(310px, 100%);
    padding: 15px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    transition: box-shadow 0.5s;
}

.card:hover {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15),
        0px 4px 4px rgba(0, 0, 0, 0.25),
        0px 0 0 2px rgb(30 114 239);
}

.cartHeader {
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
}

.cartHeader h2 {
    font-size: 24px;
    font-weight: normal;
}

.cartHeader p {
    font-size: 14px;
    font-weight: normal;
    color: rgba(117, 117, 117, 1);
    margin-top: 4px;
}

.cardWithPic {
    background-image: url('../img/robot.png');
    background-size: cover;
}

.cardWithPic h2 {
    color: black;
}

.arrow {
    margin-left: auto;
}

.wrapper-items {
    padding-left: 20px;
    box-shadow: -1px 1px rgba(45, 52, 81, 1);
}

.itemNavbar.active {
    background-color: rgba(30, 114, 239, 1);
    border-radius: 5px;
    transition: all 0.5s;
}