@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');

*{
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    outline: none;
}

html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #eee;
}

.hidden{
    display: none;
}

.cc-button{
    position: relative;
    min-width: 80px;
    height: 30px;
    padding: 0px 5px;
    color: #ffffff;
    background-color: #ff3c3c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.cc-button img{
    width: auto;
    height: 14px;
    margin-right: 5px;
    position: relative;
    pointer-events: none;
}

.cc-button span{
    font-size: 16px;
    font-weight: bold;
    position: relative;
    pointer-events: none;
}

.cc-button-core{
    width: 0px;
    height: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff6464;
    pointer-events: none;
    border-radius: 50%;
}

.cc-button-disabled{
    background-color: #aaaaaa;
    cursor: not-allowed;
}

/**CHECKBOX**/
.cc-checkbox{
    min-width: 20px;
    height: 20px;
    color: #777777;
    cursor: pointer;
    display: inline-block;
}

.cc-checkbox:hover{
    color: #777777;
    font-weight: bold;
}

.cc-checkbox img{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: text-bottom;
    pointer-events: none;
}

.cc-checkbox span{
    font-size: 14px;
    vertical-align: center;
    pointer-events: none;
}

.cc-checkbox span:hover{
    font-weight: bold;
}

/**Tooltip**/
.cc-tooltip{
    min-width: 14px;
    min-height: 14px;
    margin-left: 5px;
    float:right;
    position: relative;
}

.cc-tooltip:hover{
    font-weight: normal;
}

.cc-tooltip img{
    width: 14px;
    height: 14px;
    pointer-events: none;
    position: relative;
}

.cc-tooltip-message{
    min-width: 200px;
    min-height: 10px;
    padding: 5px;
    opacity: 0;
    position: absolute;
    top: 14px;
    left: 14px;
    font-weight: normal;
    color: #777;
    background-color: #fff;
    box-shadow: 2px 2px 4px 0px #aaa;
    transition: 0.25s ease;
}

/**INPUT FIELDS**/
.cc-input-outlined{
    min-width: 200px;
    height: 50px;
    padding: 5px;
    position: relative;
    background-color: #fff;
    cursor: text;
}

.cc-input-outlined input{
    width: calc(100% - 10px);
    height: 40px;
    padding-left: 10px;
    border: 1px solid #aaa;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #555555;
    font-size: 14px;
    pointer-events: none;
}

.cc-input-outlined-label{
    position: absolute;
    top: 50%;
    left: 15px;
    padding: 0px 4px;
    transform: translateY(-50%);
    color: #777;
    background-color: #fff;
    font-size: 14px;
    font-weight: normal;
    pointer-events: none;
}

.cc-input-error{
    color: #ff3c3c;
}

.cc-input-underlined{
    min-width: 100px;
    height: 44px;
    position: relative;
    border-bottom: 1px solid #aaa;
    cursor: text;
    background-color: #fff;
    overflow: hidden;
}

.cc-input-underlined input{
    width: calc(100% - 10px);
    height: 30px;
    position: absolute;
    bottom: 0px;
    left: 5px;
    border: none;
    background-color: rgba(0,0,0,0);
    font-size: 14px;
    font-weight: normal;
    color: #777;
    pointer-events: none;
}

.cc-input-underlined-label{
    position: absolute;
    top: 12px;
    left: 5px;
    color: #777;
    font-size: 14px;
    font-weight: normal;
    pointer-events: none;
}

/**MENU**/
.cc-menu{
    min-width: 150px;
    height: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}

.cc-menu-action{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    pointer-events: none;
}

.cc-menu-current{
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cc-menu-options{
    width: 100%;
    height: auto;
    position: absolute;
    top: 40px;
    left: 0px;
}

.cc-menu-option{
    width: 100%;
    height: 40px;
    position: relative;
}

.cc-menu-option:hover{
    background-color: #ddd;
}

.cc-menu-option-hover{
    background-color: #ddd !important;
}

.cc-menu-highlight{
    background-color: #eee;
}

.cc-menu-msg{
    margin: 0;
    font-size: 14px;
    color: #777777;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    pointer-events: none;

}
/**HEADERS**/
h1{
    margin: 0;
    color: #555;
    font-size: 30px;
    font-weight: bold;
}

h2{
    margin: 0;
    color: #555;
    font-size: 26px;
    font-weight: bold;
}

h3{
    margin: 0;
    color: #555;
    font-size: 20px;
    font-weight: bold;
}

h4{
    margin: 0;
    color: #555;
    font-size: 16px;
    font-weight: bold;
}

h5{
    margin: 0;
    color: #555;
    font-size: 14px;
    font-weight: bold;
}

p{
    margin: 0;
    font-size: 14px;
    color: #555;
}

.disclaimer{
    color: #aaa;
    font-size: 10px;
}

.disclaimer a{
    color: #aaa;
    font-size: 10px;
}
/**CARDS**/
.card{
    min-width: 20px;
    min-height: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 2px 2px 4px 0px #aaa;
}

.card-title{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ff3c3c;
}

/**BANNER NOTIFICATION**/
.cc-banner{
    width: 100%;
    height: 0px;
    color: #ffffff;
    background-color: #ff3c3c;
    overflow:hidden;
}

.cc-banner-message{
    width: 100%;
    height: 20px;
    margin: 18px 0px 18px 0px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
}

/**NAVBAR**/
.navbar{
    width: 100%;
    height: 56px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 99;
}

.navbar-left{
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.navbar-right{
    width: 50%;
    height: 100%;
    padding: 20px;
    float: right;
}

.navbar-link{
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #777;
    text-decoration: none;
}

.navbar-link:hover{
    color: #555;
}

.navbar-link-active{
    color: #ff3c3c;
}

.navbar-link-active:hover{
    color: #ff6464;
}

.navbar-user-container{
    width: 200px;
    height: 100%;
    float: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.navbar-user-image{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.navbar-user-image img{
    width: 30px;
    height: 30px;
}

.navbar-user-name{
    height: 14px;
    margin: 18px 0px;
    font-size: 14px;
    font-weight: bold;
    color: #ff3c3c;
    cursor: pointer;
    text-decoration: none;
}

.navbar-user-cart-container{
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
}

.navbar-user-cart-container img{
    width: auto;
    height: 24px;
    margin: 12px 0px;
    cursor: pointer;
}

.navbar-user-cart-badge{
    padding: 2px 6px;
    position: absolute;
    top: 6px;
    left: 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff3c3c;
}

/**CONTAINER**/
.container{
    width: 100%;
    height: calc(100% - 56px);
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
    opacity: 0;
}