body {
    font-family: Helvetica, sans-serif;
    font-weight: lighter;
    font-size: 14px;
}
#header {
    border-bottom: solid;
    border-width: 0.5px;
    border-color: #00000033;
    margin-bottom: 20px;
    background-color: white !important;
}

.utility_bar {
    background-color: #00463b;
    width: 100%;
    color: white;
    font-size: small;
    letter-spacing: 1px;
    word-wrap: break-word;
    text-align: center;
    align-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.utility_bar span {
    padding-top: 3px;
    margin-bottom: 10px !important;

}

.logo {
    width: 150px;
    height: auto;
}
.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content {
    margin-left: 5%;
    margin-right: 5%;
}

.uk-button-primary {
    background-color: #00463b !important;
}

.agent_badge {
    background: #d20000;
    color: white;
    text-align: center;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 20px;
    border-radius: 3px 3px 0 0;
    font-size: small;
    padding: 5px;
    height: 15px;
}

.footer {
    margin-top: auto;
    display: flex;
    height: auto;
    background: #00463b;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;

}
.last-one-badge {
    background-color: red !important;
    width: fit-content;
    align-self: center;
    margin-top: 10px;
    width: 110px !important;
    height: 25px !important;

}
.stock-level-badge {
    background: #00463b !important;
    height: 25px !important;
}
.variant-title {
    min-width: 350px;
}

#swatch-image {
    margin-left: 30px;
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 2;
}
#swatch-image:hover {
    transform: scale(2.2); 
    transition: transform 0.3s ease;
}
.search-clear {
    position: absolute;
    top: 10px;
    right: 15px !important;
}
.featured-h3 {
    margin: 0px;
    color: white;
    padding-left: 30px;
    font-size: medium;
    padding-top: 20px;
}

.featured-p {
    color: white;
    font-size: small;
}
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.number-toggle-button-minus {
    width: 35px;
    height: 39px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid black !important;
    border-top: 1px solid black !important;
    border-right: 1px solid black !important;
    border-left: 0px !important;
}

.number-toggle-button-plus {
    width: 35px;
    height: 39px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid black !important;
    border-top: 1px solid black !important;
    border-left: 0px !important;
    border-right: 1px solid !important;
    border-radius: 0 5px 5px 0 !important;
}

.number-toggle-input {
    border-radius: 5px 0 0 5px !important;
    border-style: solid !important;
    border-color: black;
    border-width: 1px;
    text-align: center;
    width: 35px;
}

.input-toggle-container {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 0px;
}

.uk-notification-message{
    border-radius: 10px !important;
    font-size: small !important;
    background: #fff !important;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.2));
}
.review-star:hover {
    transform: scale(1.4);
    transition: transform 0.2s ease-in-out;
}
#search-input:focus{
    border-color: #00463b !important;
}


@media screen and (max-width: 700px) {
    .table-overflow {
        overflow-x: auto;
        overflow-y: hidden;
    }
    .variant-title {
        min-width: 0px;
    }
    .logo {
        width: 100px;
    }

}

.rotating-animation {
    animation: rotate forwards 1s;
}

@keyframes rotate{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}   
