html {
  font-size: 14px;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, th, .title-font {
    font-family: "Maven Pro", Helvetica, sans-serif;
    font-weight: 700;
    color: #000000;
    letter-spacing: .05em;
}
span, p, b, a, td,  .form-group {
    font-family: "Roboto", Helvetica, sans-serif;
    color: #000000;
}

.product-stock {
    margin-top: 10px;
    font-weight: bold;
}
.warning-color {
    color: #e67e22;
}
.general-link-color {
    color: #0197ed;
}
.warning_text_decoration{
    text-decoration: underline;
}

.custom-button {
    margin: 10px 0;
    background: #0197ed !important;
    color: white;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; 
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-button span {
    color: white;
}

.custom-button:active {
    box-shadow: none;
    background: #ff7c2e;
    border-color: #ff7c2e;
}

.custom-button:hover {
    background: #ff7c2e !important;
    border-color: #ff7c2e !important;
}


.alert{
    margin: 0 14px;
}
html {
    font-family: "Roboto", Helvetica, sans-serif;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, th, .title-font {
        font-size: 13px;
        letter-spacing: .05em;
    }

    span, p, b, a, td{
        font-size: 12.5px;
    }

    .custom-button {
        margin: 5px 0;
    }
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}