/** BASE CSS FILE**/

 :root {
    --primary: #F25F20;
    --secondary: #FDDC0B;
    --error: #E93E2C;
    --success: #00BA88;
    --warning: #F4B740;
    --text: #4E4B66;
    --title-active: #14142B;
    --title: #14142A;
    --label: #6E7191;
    --placeholder: #A0A3BD;
    --line: #D6D8E7;
    --bg-input: #EFF0F7;
    --bg-default: #F7F7FC;
    --off-white: #FCFCFC;
    --white: #FFFFFF;
    --indicator: #D9D9D9;
    --precision: #A26B00;
    --orange: #FFE9E0;
    /* FONTS */
    --font-poppins: 'Poppins';
    /* BORDER */
    --border: 2px solid #14142A;
    --border-primary: 2px solid var(--primary);
    --border-secondary: 2px solid var(--secondary);
    --border-error: 2px solid var(--error);
    --border-success: 2px solid var(--success);
    --border-warning: 2px solid var(--warning);
}

#btn4:hover,
.btn4:hover {
    background-color: #f33d29 !important;
    font-weight: bold;
}

.user_info{
    display: flex;
    align-items: center;
}

.user_info a svg{
    scale: 1.3;
    transition: scale 200ms ease-in-out;
}
.user_info a:hover svg{
    scale: 1;
}

.error {
    color: var(--error);
}

.line {
    color: #66738F;
}

.precision {
    color: var(--precision);
}

.success {
    color: var(--success);
}

.warning {
    color: var(--warning);
}

.bg-primary {
    background-color: var(--bg-primary);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-poppins);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 1px;
    overflow-x: hidden !important;
}

.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}


/** BUTTONS **/

.btn-default {
    color: #14142A;
    border: var(--border);
    box-sizing: border-box;
    background-color: transparent;
    width: 240px;
    height: 55px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

.btn-primary {
    color: #14142A;
    border: 2px solid #F25F20;
    box-sizing: border-box;
    background-color: #F25F20;
    color: #FFFFFF;
    width: 20em;
    height: 55px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

.btn-secondary {
    color: #14142A;
    border: 2px solid #FBC10E;
    box-sizing: border-box;
    background-color: #FBC10E;
    color: #14142A;
    width: 240px;
    height: 55px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

button {
    outline: none !important;
    box-shadow: none !important;
    transition: .4s ease-in-out;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}



/** END BUTTONS **/


/** TITLES **/

.title1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 5em;
    line-height: 2em;
    color: var(--title);
}

.title2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 2em;
    line-height: 1.5em;
    color: var(--title);
}

.title3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 1.2em;
}

.title4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 38px;
    /* identical to box height */
    letter-spacing: 1px;
}

.title5 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}


/** END TITLES **/


/** FORM **/

select {
    background: #FFFFFF;
    border: 1px solid   ;
}

input {
    background: #EFF0F7;
    border: none;
    height: 35px;
    outline: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    /* identical to box height */
    color: #14142A;
}

textarea {
    background: #EFF0F7;
    border: none;
    outline: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    /* identical to box height */
    color: #14142A;
    padding: 10px;
}

select {
    background: #FFFFFF;
    border: none;
    background: #EFF0F7;
    height: 35px;
    outline: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    /* identical to box height */
}

select:focus {
    border: 1px solid #F25F20;
}
/** END FROM **/

a,
a:hover {
    text-decoration: none;
    color: inherit;
}


/*** ADD SOME EFFECTS ***/

.btn-primary:hover,
.btn-primary:focus {
    background-color: #ff4d00;
    border-color: #ff4d00;
    color: var(--white);
    font-weight: bold;
}

.btn-default,
.btn-primary {
    transition: all .4s;
}

.btn-default:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.bg-logged{
    background-color: #F7F7FC;
}

.bg-logged div{
    background-color: #F7F7FC;
}
.bg-logged .navbar{
    background-color: #F7F7FC !important;
}

.top_nav{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-left: 0;
}


.top_nav li{
    position: relative;
    list-style: none;
    width: 50%;
    height: 40px;
    text-align: center;
    background: transparent;
    line-height: 40px;
    cursor: pointer;
    transition: background ease 400ms;
}

.top_nav li::after{
    content: attr(data-count);
    position: absolute;
    right: 10px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    top: calc( 50% - 10px);
    color: #fff;
    background-color: #A0A3BD;
    border-radius: 10px;
}

.top_nav li:hover{
    background: #6e71911c;
}

.top_nav::after{
    content: '';
    position: absolute;
    width: 40%;
    left: 5%;
    height: 1px;
    bottom: -5px;
    background: #F25F20;
    transition: left 200ms ease-in-out;
}

.top_nav.activeBasket::after{
    left: 55%;
}

.top_nav li:first-child{
    border-right: 1px solid #A0A3BD;
}

.offcanvas-body>div{
    position: absolute;
    width: 100%;
    height: 100%;
}

div{
    scrollbar-width: none;
}

div#horizontal_scroll_container,
div#notif_message_body{
    scrollbar-width: auto !important;
}

::-webkit-scrollbar {
    width: 3px;
    height: 2px;
}

/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px gray;
    border-radius: 10px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: rgb(69, 162, 158, 0.3);
    cursor: pointer;
}

#submitEmail[disabled] {
    background: #d1d1d1 !important;
    border: 2px #d1d1d1 solid;
    pointer-events: none;
}

#submitEmail[disabled] #spinner_submit {
    display: inline-block !important;
}

/* Init notification View*/

.notif_img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
}

.notif_message{
    max-height: 450px;
    overflow: auto;
    line-height: 1.7rem;
    /*text-align: justify;*/
    padding-bottom: 1.2rem;
}

.notif_type i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #4070f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    transform: rotate(324deg);
}
