:root {
    font-family: 'Roboto', sans-serif;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fuentes/RockoFLF.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #555;
}

p {
    color: #555;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
}


.btn {
    display: inline-block;
    background: rgb(36, 36, 36);
    color: #ffffff;
    ;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}


.header {
    background: radial-gradient(#fff, #ffffff);
}

.header .row {
    margin-top: 70px;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after {
    content: '';
    background: rgb(36, 36, 36);
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h4 {
    color: #555;
    font-weight: normal;
    text-align: justify;
}

small {
    color: #555;
}



ul {
    list-style-type: none;
}

.app-logo {
    margin-top: 20px;
}

.app-logo img {
    width: 140px;
}


select:focus {
    outline: none;
}



input:focus {
    outline: none;
}


table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 5px;
    color: #d3d3d3;
    background: rgb(36, 36, 36);
    font-weight: normal;
}

td {
    padding: 10px 5px;
}



/* Account page */

.account-page {
    padding: 50px 0;
    background: radial-gradient(#fff, #ffffff);
}

.form-container {
    background: #fff;
    width: 300px;
    height: 420px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: rgba(0, 0, 0, .70) 0px 5px 15px;
    overflow: hidden;
}

.form-container span {
    font-weight: bold;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
    width: 100px;
    text-align: center;
    display: inline-block;
}

.form-btn {
    display: inline-block;
}

.form-container form {
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 80px;
    transition: transform 1s;
}

form input {
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #363636;
}

form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}

form .btn:focus {
    outline: none;
}

#LoginForm {
    left: 0px;
}

form a {
    font-size: 0.8rem;
}

#Indicator {
    width: 100px;
    border: none;
    background: rgb(36, 36, 36);
    height: 3px;
    margin-top: 8px;
    transform: translateX(100px);
    transition: transform 1s;
}


/* Media query for menu */

@media only screen and (max-width: 800px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li {
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a {
        color: #ffffff;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
    }
}

#MenuItems {
    z-index: 2;
}

.ImgUserTotal {
    border: #2c2c2c 2px solid;
    border-radius: 50%;
}

.iconNav {
    width: 2rem;
    border-radius: 25%;
    padding-right: 0.2rem;
}

.iconText {
    display: inline-block;
    overflow: hidden;
    max-width: 0;
    transition: max-width 0.7s;
    text-align: left;
    padding-left: 0.4rem;
    height: 2.5rem;
}


.iconText:hover {
    max-width: 5rem;
}

.iconNav:hover+.iconText {
    max-width: 5rem;
}


/* Media query for 600 screen size */

@media only screen and (max-width: 600px) {
    .row {
        text-align: center;
    }
    .col-2,
    .col-3,
    .col-4 {
        flex-basis: 100%;
    }
    .single-product .row {
        text-align: left;
    }
    .single-product .col-2 {
        padding: 20px 0;
    }
    .single-product h1 {
        font-size: 1.7rem;
        line-height: 32px;
    }
    .cart-info p {
        display: none;
    }
}

#MenuItems {
    z-index: 2;
}
.logo img {
    position: absolute;
    width: 5rem;
    height: 5rem;
    right: .5rem;
    top: 1rem;
}
.iconNav.menu{
    font-size: 2rem;
}