body {
    user-select: none;           /* 标准属性 */
    -webkit-user-select: none;   /* Chrome/Safari */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
}

.green-color {
    color: #135d66;
}

.green-bg {
    background-color: #135d66;
}

.green-bg2 {
    background-color: #025b60;
}


header>div.slogan>h1 {
    font-size: 5rem;
    font-family: none;
    color: #135d66;
    padding-top: 3rem;
}

header>div.slogan>h2 {
    font-size: 3rem;
    font-family: none;
    color: #135d66;
    padding-bottom: 2rem;
    margin-bottom: 0;
}

.icon-search {
    width: 1.5rem;
}

.navbar {
    background-color: #8FC426;
    padding: 0;
    /* height: 70px; */
}

.navbar-brand>img {
    max-width: 5rem;
}

.navbar-nav>li>a {
    height: 70px;
    align-content: center;
}

a {
    color: inherit;
    text-decoration: none;
}


.footer {
    color: #eee;
    line-height: 2rem;
}
.footer > .container {
    background-color: #333;
}

.footer>div:last-child {
    background-color: #333;
}

.footer hr {
    margin: .5rem 0;
}

.footer .contact {
    input, textarea {
        background-color: balck;
        color: #fff;
        border-radius: 0;
    }
    input::placeholder, textarea::placeholder {
        color: #ccc;
        opacity: 1;
    }
    button {
        background-color: rgb(143,196,38);
        border-radius: 0;
        color: #fff;
    }
}

.shopping-cart-icon {
    background-color: #7a8599;
    color: #fff;
    padding: 0.5rem .8rem;
    bottom: 6rem;
    right: 0;
}
.shopping-cart-icon .iconfont {
    font-size: 1.5rem;
}
.shopping-cart-list {
    /* background-color: #7a8599; */
    /* color: #fff; */
    /* padding: 0.5rem .8rem; */
    font-size: .8rem;
    width: 18rem;
    bottom: 0;
    right: 0;
    transition: bottom .3s;
}
.shopping-cart-list.close {
    bottom: -30rem;
}
.shopping-cart-list .card-header {
    background-color: #7a8599;
    color: #ffff;
    font: .8rem bold;
    cursor: pointer;
}
.shopping-cart-list .card-body {
    max-height: 20rem;
    overflow: auto;
}
.shopping-cart-list img {
    max-width: 100px;
}

.icons-tel {
    background: url("../img/icon-tel.png") no-repeat left center;
}

.icons-email {
    background: url("../img/icon-email.png") no-repeat left center;
}

.icons-skype {
    background: url("../img/icon-skype.png") no-repeat left center;
}

.icons-whatsapp {
    background: url("../img/icon-whatsapp.png") no-repeat left center;
}

.icons-addr {
    background: url("../img/icon-addr.png") no-repeat left top;
}


.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.navbar form>button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .navbar form>button.logout {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.navbar form>button.logout:focus,
.navbar form>button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.navbar form>button.logout:focus {
    outline: none;
}

/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
    background-color: var(--bs-gray-200);
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.breadcrumb-item>a {
    text-decoration: none;
}