:root {
    --color-black: #000;
    --color-white: #fff;
    --color-green: #007934;
    --color-green-2: #31B56C;
    --color-gray: #D9D9D9;
    --color-gray-2: #F2F2F2;
    --color-gray-3: #C3C3C3;
    --color-gray-4: #313131;
    --color-yellow: #ECEE85;
    --bs-green: #007934;
    --bs-success-rgb: 0, 121, 52;
    --heart-icon: unset;
    --heart-icon-active: unset;
    --star-icon: unset;
    --bg-quote-send: #50bb85;
}
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

html, body {
    /*height: 100%;*/
    margin: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    /*margin-bottom: 60px;*/
}

/*section, main {
    padding: 2rem 0;
}*/
header {
    position: sticky;
    z-index: 1000;
    top: 0;
}

.main-container{
    min-height: 32.8rem;
}

footer {
    background-color: var(--color-green, #31B56C);
    border-top: 4px solid var(--color-gray-4);
    border-bottom: 4px solid var(--color-gray-4);
}
header, footer {
    width: 100%;
}

footer .logo{
    width: 100%;
    max-width: 11rem;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.add-to-cart {
    font-size: 0.8rem;
    white-space: nowrap;
    color: #fff;
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

#social-links {
    background-color: var(--color-black, #000);
}
#social-links ul.nav {
    padding-right: 4rem;
}
.logo{
    width: 7rem;
}

.search-container {
    border-radius: 10px;
    overflow: hidden;
}

.search-input {
    width: 100%;
    border-radius: unset !important;
}

.user-name, .agent-label, .agent-name {
    margin-bottom: 0;
}

.user-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*.nav-profile{
    max-width: 18rem;
    width: 100%;
}*/

.agent-label {
    font-weight: bold;
}

.agent-label, .agent-name {
    font-size: 10px;
}

.profile-image {
    width: 100%;
    max-width: 5rem;
    height: auto;
}

.profile-link {
    color: var(--color-white) !important;
    font-size: 0.8rem;
}

.cart-quantity {
    right: -4px;
    bottom: -6px;
    --bs-secondary-rgb: 217, 217, 217;
    padding: 0px 5px;
    line-height: 1rem;
}

.cart-quantity span {
    color: #398C43;
    font-size: 0.7rem;
    font-weight: bold;
}

.unset-border-right {
    border-top-right-radius: unset !important;
    border-bottom-right-radius: unset !important;
}

/*Gap*/
.row-gap-3 {
    row-gap: 1rem;
}
/*END Gap*/

.fs-7 {
    font-size: 12px;
}

.text-green{
    color: var(--color-green);
}

/*BUTTONS*/
.btn-icon-mfa {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2rem;
    height: 2rem;
}
.btn-heart {
    background-image: var(--heart-icon);
}
.btn-heart:hover {
    background-image: var(--heart-icon-active);
}
.btn-heart.active {
    background-image: var(--heart-icon-active);
}
.btn-star {
    background-image: var(--star-icon);
}
.btn-secondary {
    background-color: var(--color-gray);
    border-color: var(--color-gray);
    color: var(--color-black);
}
.btn-secondary:hover {
    background-color: var(--color-gray-3);
    border-color: var(--color-gray-3);
    color: var(--color-black);
}
/*END BUTTONS*/

/*CART*/
.shopping-cart {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}


.btn-light {
    background-color: #D9D9D9;
}

.shopping-cart-item {
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.shopping-cart-item-delete {
    position: absolute;
    top: 0;
    right: 0;
}
/*END CART*/
#myModal{
    border-radius: 2rem;
}
#myModal .modal-header {
    border-bottom: 5px solid var(--color-green);
}
/*Product quantity btns*/
.product-quantity-btns {
    display: flex;
    flex-direction: row;
}

.product-quantity-btns btn {
    display: flex;
    flex-direction: row;
}

.product-quantity-btns input {
    border-radius: unset !important;
    border: none;
    max-width: 3rem;
    text-align: center;
    max-width: 4.5rem;
    width: 100%;
}

.product-quantity-btns input:focus {
    box-shadow: unset;
    border-color: unset;
}
/*FORMS*/
.form-floating label {
    z-index: 4;
    color: var(--color-gray-3);
}
/*END FORMS*/

/*Toast Notifications*/
#toastConfirmation{
    background-color: rgba(255, 255, 255, 1);
}

.title-slider {
    display: inline-block; 
    border-bottom-right-radius: 0.5rem;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 1rem !important;
    padding: 0.3rem 1rem 0.3rem 0.5rem;
}

.card-img-top-mfa{
    width: 100%;
    padding: 0 1rem;
}

.bg-quote-send{
    background-color: var(--bg-quote-send) !important;
}
/*MEDIA QUERYS*/

/*Small devices (landscape phones, 576px and up)*/
@media (max-width: 575.98px) {
    .search-input {
        min-width: 10rem;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .search-input {
        min-width: 12rem;
        width: 100%;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #navigation-bar {
        position: sticky !important;
        z-index: 999;
    }
    .nav-profile{
        max-width: 10rem;
    }
}

