:root {
    --color-primary: #6E85B7;
    --color-secondary: #9BA17B;
    --color-third: #CFB997;
    --color-fourth: #FAD6A5;
}

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

.bg-secondary {
    background-color: var(--color-secondary) !important;
    color: white;
}

.bg-third {
    background-color: var(--color-third) !important;
    color: white;
}

.bg-fourth {
    background-color: var(--color-fourth) !important;
    color: lightgrey;
}

.bg-gray {
    background-color: #909090;
}

.navbar-brand {
    font-size: x-large;
}

/* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}


/* The search field when it gets focus/clicked on */
#myInput:focus {outline: 3px solid #ddd;}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    border: 1px solid #ddd;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.mt-30 {
    margin-top: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.sizeTitle {
    fill: white;
}

.score-box {
    background-color: rgb(38, 149, 246);
    color: white;
    text-align: center;
    font-size: 36px;
    width: 100px;
    height: 100px;
    padding-top: 22px;
    margin-bottom: 0;
}
.text-tiny {
    color: white;
    font-size: 12px;
}

@media screen and (max-width: 600px) {
    .mobile-product {
      flex-direction: column;
      align-items: center;
    }
  }

.text-gray-300{
    color:#bababa!important
}
.text-gray-300[href]:hover,
.text-gray-350{color:#a6a6a6!important}
.text-gray-350[href]:hover,.text-gray-400{color:#909090!important}
.text-gray-400[href]:hover,
.text-gray-450{color:#767676!important}
.text-gray-450[href]:hover,
.text-gray-500{color:#525252!important}
.text-gray-500[href]:hover{color:#3e3e3e!important}
.text-body[href]:focus,.text-body[href]:hover{color:#303030!important}
.text-muted[href]:focus,.text-muted[href]:hover{color:#525252!important}
a.text-decoration-underline:focus,
a.text-decoration-underline:hover{text-decoration:none!important}

.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url("/public/img/loader.gif") center no-repeat;
}

.alert-fixed {
    position:fixed; 
    top: 0px; 
    left: 0px; 
    width: 100%;
    z-index:9999; 
    border-radius:0px
}