:root {
    --colorTransparent: linear-gradient(rgba(0, 0, 0, 0.5), var(--blue));
    --colorPrimary: #fafafa;
    --colorPrimaryLight: #ffffff;
    --colorPrimaryDark: #c7c7c7;
    --colorAccent: #2d3192;
    --colorDivider: rgba(0, 0, 0, 0.3);
    --green: #43a047;
    --red: #dc3545;
    --red: #dc3545;
    --background: rgb(240, 240, 243);
}

#all_content {
    padding: 0px !important;
    margin: 0px !important;
    width: 100%;
    height: 100%;
    overflow: auto;
}

body, html {
    padding: 0px !important;
    margin: 0px !important;
    width: 100%;
    height: 100%;
    background: var(--background);
}

h1, h2, h3, h4, h5, h6, p, span {
    color: var(--colorAccent);
}

.card {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.content {
    width: 100%;
    position: absolute;
    top: 0px;
}

#carousel {
    height: 340px;
}

@media screen and (max-width:1024px) {
    #carousel {
        height: 244px;
    }
}

.material-icons {
    vertical-align: bottom;
}

.action-button {
    cursor: pointer;
    user-select: none;
    padding: 16px;
}

.profile-icon {
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid var(--colorAccent);
}

.border-button {
    display: inline-flex;
    transition: 0.3s;
    max-height: 60px;
    color: white;
    background: var(--colorPrimary);
}

.profile-button-off h5 {
    margin-bottom: 16px !important;
}

 

.nav-bar {
    user-select: none;
    z-index: 8;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 72px;
    padding-bottom: 8px;
    padding-top: 8px;
    background: var(--colorPrimary);
}

.corporation-logo {
    object-fit: contain;
    height: 56px;
    
}

.main-content {
    margin-top: 72px;
    height: calc(100% - 72px);
}

.menu-left {
    display: none !important;
}

.right-menu-dots {
    display: none !important;
}

.products-button {
    height: fit-content;
    user-select: none;
    cursor: pointer;
    margin-right: 16px;
    
}

.btn-right-text {
    padding-right: 16px;
}

/* Menu Drawer Config End*/

@media screen and (max-width:580px) {
    .products-button {
        right: 64px;
    }
    .btn-right-text {
        display: none;
    }
    .right-menu {
        display: none;
    }
    .right-menu-dots {
        display: inline-flex !important;
    }
    .menu-left {
        display: inline-flex !important;
    }
    .product-container {
        padding: 0px;
    }
}

@media screen and (min-width:580px) {
    .options-menu {
        display: none;
    }
}

.product-header {
    border-bottom: 1px solid var(--colorDivider);
    user-select: none;
}

.product-container {
    transition: 0.2s;
    background: var(--colorPrimaryDark);
}

.product-container.hide {
    height: 0px;
    padding: 0px !important;
}

.product-container.hide .card {
    height: 0px;
    transform: scaleY(0);
}

@media screen and (min-width:520px) {
    .container-selected {
        width: 600px;
    }
}

#divider_logo_hidden{
    display: none;
}

@media screen and (max-width:520px) {
    .container-selected {
        width: 100%;
    }
    .corporation-logo{
        display: none;
    }

    #divider_logo_hidden{
        display: block;
    }
}

.container-selected {
    z-index: 16;
    position: fixed;
    top: 72px;
    height: calc(100% - 72px);
}

.container-selected .product-container {
    height: calc(100% - (89px) - (72px));
    overflow-y: auto;
    overflow-x: hidden;
}

.list-item {
    user-select: none;
    padding: 8px 16px 8px 16px;
    border-bottom: 1px solid var(--colorDivider);
    cursor: pointer;
}

.list-item:hover {
    background: rgb(226, 226, 226)
}

.options-menu {
    z-index: 8;
}

.options-menu-item {
    cursor: pointer;
    border-bottom: 1px solid var(--colorDivider);
    user-select: none;
}

.options-menu.hide {
    display: none;
}

.cart-remove {
    transition: 0.5s;
    transform: translate(600px);
}

.add-cart-container {
    display: inline-flex;
    height: 48px;
}

.main-interfaces {
    width: 100%;
    border: none !important;
}

.error_label {
    color: var(--red);
}

.exit-button {
    display: none;
}

.item_detail {
    color: var(--blue);
    text-align: right;
    margin-right: 74px;
}

.item_detail:hover {
    text-decoration: underline;
}

