html {
    font-size: 1vh;
    overflow: hidden;
    height: 100%;
}

body {
    overflow: hidden;
    height: 100%;
    font-family: "Wix Madefor Display", serif !important;
    background-color: #e5eefd !important;
    font-weight: 500 !important;
    margin: 0;
}

.main-container {
    margin: 0 1rem 0 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.deal-card:last-child {
    margin-bottom: 0;
}

.deal-card {
    position: relative;
    background-color: white;
    border-radius: 1vh;
    margin-bottom: 1rem;
    padding: 1rem;
    -webkit-box-shadow: 0px 0px 0.75rem 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 0.75rem 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 0.75rem 0px rgba(0, 0, 0, 0.25);
}

.deal-card.inactive {
    opacity: 0.5;
}

h1 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

p {
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.green-circle {
    position: absolute;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #28a745;
    border-radius: 50%;
    top: 1rem;
    right: 1rem;
}

.red-circle {
    position: absolute;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #a72828;
    border-radius: 50%;
    top: 1rem;
    right: 1rem;
}





.loader {
    display: none;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 20px;
    padding: 10px;
    aspect-ratio: 1;
    border-radius: 60%;
    background: #007BFF;
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
    z-index: 999;
}
@keyframes l3 {to{transform: rotate(1turn)}}


.warning {
    display: none;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    fill: #007BFF;
    z-index: 999;
}



.notification {
    max-width: 300px;
    position: fixed;
    top: 20px;
    right: -300px;
    background-color: #017eff;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}