/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*/
body {
    font-family: "Open Sans", sans-serif;
    background: #f3f3f3;
    position: relative;
    padding-top: 80px;
}
body.load {
    overflow: hidden;
}
a {
    color:#566770;
}
.table {
    --bs-table-border-color: #f1f1f1;
}
@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.0rem;
    }
}
.top80 {
    padding-top: 80px;
}
.btn {
    border: none;
}
.btn-rounded {
    border-radius: 20px;
}
.btn-primary {
    background: #718bb2;
    transition: .5s;
}
.btn-secondary {
    background: #607487;
    transition: .5s;
}
.btn-primary:hover {
    background: #945227;
}
.btn-gold {
    background: #ebd79a;
}
.btn-gold:hover {
    background: #c9b884;
}
.content img {
    max-width: 100%;
    height:auto;
}
.form-control-custom {
    border-radius: 20px;
    background: #f9f9f9;
    -webkit-box-shadow: 0px 0px 18px 0px rgba(34, 60, 80, 0.2) inset;
    -moz-box-shadow: 0px 0px 18px 0px rgba(34, 60, 80, 0.2) inset;
    box-shadow: 0px 0px 18px 0px rgba(34, 60, 80, 0.2) inset;
    text-align: center;
}
.dropdown-menu {
    max-height: 300px;
    overflow-y: scroll;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus,
.form-check-input:focus,
.form-select:focus{
    border-color: rgb(174 183 197);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgb(207 226 255);
    outline: 0 none;
}
.dropdown-item-select {
    display: flex;
    align-items: center;
    font-size: .8rem;
    cursor: pointer;
}
.dropdown-selected {
    position: relative;
}
.dropdown-selected::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background-color: #D0B68F;
    left: 12px;
    top: 9px;
    border-radius: 50%;
}
.page-link {
    margin: 7px;
    border-radius: 4px;
    color: #945227;
    border: none;
    -webkit-box-shadow: 0px 1px 5px -2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 1px 5px -2px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 1px 5px -2px rgba(34, 60, 80, 0.2);
}
.page-link:hover {
    color: #333;
}
.active>.page-link, .page-link.active {
    background: #945227;
    color:#fff;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link{
    border-radius: 4px;
}
.dropdown-icon {
    display: block;
    width: 24px;
    margin-right: 15px;
}
.form-control,.form-select {
    background-color: #f9f9fb;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(34, 60, 80, 0.1) inset;
    -moz-box-shadow: 0px 0px 3px 0px rgba(34, 60, 80, 0.1) inset;
    box-shadow: 0px 0px 3px 0px rgba(34, 60, 80, 0.1) inset;
}
.logo img {
    display: block;
    width: 50%;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    height: 80px;
    background: #fffcf9;
    -webkit-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    -moz-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    z-index: 10;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu {
    display: flex;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.main-menu a {
    padding: 5px 15px;
    margin: 0 3px;
    text-decoration: none;
    color: #566770;
    transition: 0.5s;
    font-size: 0.9rem;
    font-weight: 600;
}
.main-menu a:hover {
    color: #945227;
}
.menu-burger {
    border: none;
    background: transparent;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 20px;
    display: none;
}
.menu-burger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #444;
    top: 14px;
    border-radius: 2px;
    transition: .5s;
}
.menu-burger::before,.menu-burger::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #444;
    border-radius: 2px;
    transition: .5s;
}
.menu-burger::before {
    top: 3px;
}
.menu-burger::after {
    bottom: 3px;
}
.sub-menu {
    position: absolute;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    top: 40px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2);
    box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.2);
    min-width: 200px;
    transform: scaleY(0);
    transition: .2s;
}
.sub-menu.show {
    display: flex;
    transform: scaleY(1);
}
.sub-menu li a {
    display: block;
    padding: 5px 15px;
    border-bottom: 1px solid transparent;
    transition: 1s;
}
.sub-menu li a:hover {
    border-bottom: 1px solid #eeeeee;
}
.sub-menu::before {
    content: '';
    height: 5px;
}
.sub-menu::after {
    content: '';
    height: 5px;
}
.banner {
    -webkit-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    -moz-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    border-radius: 0 0 3px 3px;
}
.banner-form {
    border-radius: 20px;
    background: #3f3f3f;
    color:#eee;
    min-height: 100%;
    padding: 20px;
    text-align: center;
}
.banner-form h4 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin: 1rem 0;
}
.marketing {
    background: #2b2f32;
    color: #ccc;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.marketing_caption {
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-dots {
    bottom: 5px;
    background-color: transparent;
}
.slick-dots li.slick-active button:before,.slick-dots li button:before {
    color: #fff;
}
.slick-dotted.slick-slider {
    margin: 0;
}
.slider {
}
.slider-item {
    min-height: 600px;
    position: relative;
    border-radius: 0 0 3px 3px;
}
.slider-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
    min-height: 100%;
    width: 100%;
    cursor: pointer;
    border-radius: 0 0 3px 3px;
}
.slider-text {
    color:#ddd;
    padding:20px;
    background: rgba(0,0,0,0.5);
    border-radius: 0 0 3px 3px;

}
.slider-text h2 {
    color:#fff;
    font-weight: 200;
}
.slider-text p {

    font-weight: 200;
}
.bg-image {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.link-login {
    color: #945227;
}
.card {
    border: none;
    -webkit-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    -moz-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
    box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
}
.card-header {
    border: none;
}
.card-product {
    transition: .7s;
}
.card-product:hover {
    /* transform: scale(1.02); */
    -webkit-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.25);
    -moz-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.25);
    box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.25);
}
.lock {
    overflow: hidden;
}
.custom-tooltip {
    --bs-tooltip-bg: #dc6300;
}
.card-price {
    position: absolute;
    background: #877863;
    font-size: .8rem;
    color: #fff;
    display: flex;
    padding: 2px 10px;
    right: 10px;
    top: -20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.3);
    box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.3);
}
.card-price span {
    margin-right: 5px;
    font-size: 1.2rem;
}
.btn-filter-collapse {
    position: relative;
    width: 20px;
    height:20px;
    border: none;
    background: transparent;
}
.btn-filter-collapse span,.btn-filter-collapse::before {
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #2b2f32;
    top:4px;
    transition: .5s;
    left: 0;
}
.btn-filter-collapse::before {
    content: "";
}
.btn-filter-collapse.active::before {
    transform: rotate(90deg);
}
.footer {
    margin-top: 3rem;
    padding: 3rem 0;
    background: #2b2f32;
    color:#eee;
}
.footer-cabinet {
    /*margin-bottom: 56px;*/
}
.form-switch .form-check-input {
    width: 28px;
}
label.form-check-label {
    font-size: 0.9rem;
}
.form-check-input:checked {
    background-color: #874B2F;
    border-color: #874B2F;
    -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.4) inset;
    -moz-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.4) inset;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.4) inset;
}
.image-container {
    position: relative;
}
.image-container_delete,.image-container_main {
    position: absolute;
    width: 24px;
    height: 24px;
    border: none;
    top: 0;
}
.image-container_delete {
    background: #ff253a;
    color: #fff;
    right: 12px;
}
.image-container_main {
    background: #fff;
    color: #aaa;
    left: 12px;
}
.image-container_main.active {
    background: #3c843c;
    color: #fff;
}
.card-btn {
    cursor: pointer;
    transition: .5s;
    border: 1px solid transparent;
}
.card-btn a {
    text-decoration: none;
    color:#333;
}
.card-btn img {
    border-radius: 0.375rem;
    display: block;
    margin: auto;
}
.card-btn:hover,.mark-btn.active {
    border: 1px solid #e1cbc3;
    -webkit-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.1);
    -moz-box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.1);
    box-shadow: 0 5px 10px 2px rgba(34, 60, 80, 0.1);
}
.slider-for {
    cursor: zoom-in;
}
.slider-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 2px;
    margin: 2px auto;
}
.slider-thumb {
    cursor:pointer;
    transition: .2s;
}
.slider-thumb:hover {
    cursor:pointer;
    transform: scale(1.05);
}
.slider-thumb.active {
    cursor: zoom-in;
    transform: scale(1.05);
}
.slick-prev {
    left: 7px;
    z-index: 10;
}
.slick-next {
    right: 7px;
    z-index: 10;
}
.category-btn {
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    margin-bottom: 24px;
    text-decoration: none;
    color:#000;
    -webkit-box-shadow: 0 3px 4px 0 rgba(34, 60, 80, 0.02);
    -moz-box-shadow: 0 3px 4px 0 rgba(34, 60, 80, 0.02);
    box-shadow: 0 3px 4px 0 rgba(34, 60, 80, 0.02);
    transition: .5s;
    align-items: center;
}
.category-btn-icon {
    width: 33%;
    background-color: #b2a592;
    border-radius: 3px 0 0 3px;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    transition: .5s;
    min-height: 50px;
}
.category-btn-caption {
    font-size: .8rem;
    text-align: center;
    width: 67%;
    padding: 5px;
}
.category-btn:hover,.category-btn.active {
    -webkit-box-shadow: 0 3px 8px 0 rgba(34, 60, 80, 0.05);
    -moz-box-shadow: 0 3px 8px 0 rgba(34, 60, 80, 0.05);
    box-shadow: 0 3px 8px 0 rgba(34, 60, 80, 0.05);
}
.category-btn:hover .category-btn-icon, .category-btn.active .category-btn-icon {
    background-color: #92a0b2;
}
.filters label {
    color:#777;
    font-size: .7rem;
}
.message {
    width: 100%;
    position: relative;
}
.message-sender, .message-recipient {
    width: 90%;
    background: #ebf3f0;
    border-radius: 16px 16px 0 16px;
    color: #6c757d;
    padding: 30px 20px 30px 30px;
    margin-bottom: 20px;
    position: relative;
    margin-left: auto;
}
.message-recipient {
    background: #fff7ef;
    border-radius: 16px 16px 16px 0;
    margin-left: 0;
}
.current-messages {
    overflow-y: scroll;
    max-height: 400px;
    background: #fffff3;
}
.sender-avatar {
    position: absolute;
    top: -6px;
    left: -6px;
    max-width: 32px;
    height: auto;
}
.message-author {
    position: absolute;
    top: 10px;
    font-size: .7rem;
    left: 35px;
}
.sender-avatar img {
    border-radius: 36%;
    display: block;
    -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.08);
    -moz-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.08);
    box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.08);
}
.message-status {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: .7rem;
}
.message-time {
    position: absolute;
    right: 10px;
    bottom:10px;
    font-size: .7rem;
}
.btn-message {
    position: fixed;
    bottom: 66px;
    right: 20px;
    z-index: 2;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #dee2e6;
    border-bottom-color: transparent;
}
.table-transparent>:not(caption)>*>* {
    background-color: transparent;
}
.preloader {
    background: rgba(0,0,0,.5);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.rounded-min {
    border-radius: 3px;
}
.btn,.card,.card-img {
    border-radius: 3px;
}
.card-img-top {
     border-radius: 3px 3px 0 0;
 }

@media (max-width: 991px) {
    .logo img {
        width: 40%;
    }
    .main-menu {
        position: absolute;
        top: 80px;
        background: #e7e7e7;
        width: 80%;
        left: -100%;
        z-index: 2;
        flex-direction: column;
        padding: 40px 0;
        height: calc(100vh - 80px);
        -webkit-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
        -moz-box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
        box-shadow: 0 5px 16px -1px rgba(34, 60, 80, 0.05);
        transition:.8s;
    }
    .main-menu a {
        text-align: center;
        margin: 15px 0;
    }
    .main-menu.active{
        left: 0;
    }
    .menu-burger {
        display: block;
    }
    .menu-burger.active span {
        transform: scale(0);
    }
    .menu-burger.active::before {
        transform: rotate(-315deg);
        top: 14px;
    }
    .menu-burger.active::after {
        transform: rotate(315deg);
        bottom: 14px;
    }
    .banner-form,.slider-item,.slider-text {
        border-radius: 0;
    }
    .top80 {
        padding-top: 80px;
    }
    .slider-nav {
        grid-template-columns: repeat(3, 1fr);
    }
    .category-btn-caption {
        font-size: 1rem;
    }
    .slider-item {
        min-height: 200px;
    }
    .slider-text {
        padding:10px;
    }
}
