﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
html, body {
    font-family: 'Open Sans', sans-serif !important;
}
 
app {
    position: relative;
    display: flex;
    flex-direction: column;
} 
.main {
    flex: 1;
} 
.b-layout-sider {
    filter: drop-shadow(0 0 2.5px rgba(0,0,0,0.26));
} 
#blazor-error-ui{
    display:none !important;
} 
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.page-item{
    cursor : pointer !important;
}
.role-label {
    color: #dc2a68;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 700px !important;
        margin: 1.75rem auto;
    }
}

.home-div {
    background: #dc2a68
}

.item-media-img {
    width: 100%;
    height:100%;
    object-fit:cover;
}
.progress{
    background:#fff !important;
}
.search-icon{
    position: absolute;
    right: 25px;
    top: 10px;
    font-size: 20px;
    color: #262626;
}
.order-searchbox .search-icon{
    right:15px;
}
.item-title {
    height: 150px;
} 
h1,h4{
    font-weight:700 !important;
}
h5 {
    font-weight:800 !important;
}
.buyer-card button, .item-card button, .order-row button {
    color: #aaaaaa;
    text-decoration: underline;
}
.order-ispaid-check + .custom-control-label:before {
    border: 1px solid #61a718 !important;
}
.order-ispaid-check + .custom-control-label:after {
    border-radius: 5px !important;
}
.order-status-check + .custom-control-label:before {
    border: 1px solid #f7b500 !important;
}
.order-status-check + .custom-control-label:after {
    border-radius: 5px !important;
}
.order-ispaid-check:checked + .custom-control-label:after {
    background-color: #61a718 !important;
}
.order-status-check:checked + .custom-control-label:after {
    background-color: #f7b500 !important;
}
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #fff;
    opacity:.8;
    z-index:10000;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 8px;
    border-color: #dc2a68;
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.delete-order-btn {
    margin-top: -7px;
    font-weight: 800 !important;
}
.page-item-hidden {
    display: none;
} 