p {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: Montserrat-Reqular;
    src: url(fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Montserrat-Medium-bold;
    src: url(fonts/Montserrat-Bold.ttf);
}

/*  Скролбар  */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #398997;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(57, 137, 151, 0.75);
}

/*  Скролбар  */

html{
    height: 100%;
}

body {
    background: #f0f4f1;
    font-family: Montserrat-Reqular, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bg-banner img {
    width: -webkit-fill-available;
    height: 100%;
    min-height: 120px;
    max-height: 200px;
    object-fit: cover;
    background-position: 50%;
    background-size: cover;
}

a {
    color: #398997;
}

/*a:hover{*/
/*    opacity: 0.8;*/
/*}*/

header{
    background: #fff;
    margin-bottom: 2em;
}

.navbar-light .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
}

main{
    flex: 1 0 auto;
}

.main-categories-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 10px;
    overflow: hidden;
    margin: 1em 0;
    padding: 1em;
}

.main-categories-list a {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    padding: 0.6em;
    color: #122330;
    background: #FFFFFF;
    box-shadow: 0 0 15px 3px rgba(18, 35, 48, 0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: all ease-in-out .3s;
    white-space: nowrap;
}

.main-categories-list a:hover {
    color: #398997;
    box-shadow: 0 0 15px 3px rgba(18, 35, 48, 0.3);
}

.main-categories-list a .category_count {
    background: rgba(57, 137, 151, 0.75);
    color: #fff;
    border-radius: 6px;
    padding: 2px 6px;
}

.products {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}

.products .product-preview {
    border-radius: 8px;
    overflow: hidden;
    max-height: 190px;
    min-height: 190px;
    width: 100%;
}

.products .product-action a {
    background: #546E7A;
    border-radius: 10px;
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 0.3em;
}

.products .product-action a:hover {
    background: #398997;

}

.products .product-detail {
    background: #FFFFFF;
    box-shadow: 0 0 15px 3px rgba(18, 35, 48, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    transition: all ease-in-out .3s;
}
.products .product-detail:hover {
    box-shadow: 0 0 15px 3px rgba(18, 35, 48, 0.4);
}

.products .product-action {
    /*padding: 0.8em;*/
}

.products .product-detail-info .price {
    color: #24282d;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.products .product-detail-info .btn-store {
    background: #398997;
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
}

.products .product-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 10px;
}

.products .product-preview .category-name {
    background: #00000080;
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    top: 5px;
    left: 5px;
}

.products .product-detail-info .name {
    display: -webkit-box;
    color: #122330;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    margin-bottom: 15px;
    height: 36px;
    font-size: 15px;
    font-weight: 600;
    width: -webkit-fill-available;
}

.products .product-detail-info .product-action {
    justify-content: space-between;
    align-items: baseline;
    display: flex;
    margin-top: auto;
}

.products .product-detail-info .category-name a {
    color: #546E7A !important;
    font-size: 10px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.carousel-info{
    background: rgba(24, 59, 65, 0.5);
    backdrop-filter: blur(3px);
    height: 70px;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}

.carousel-caption{
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    text-align: left;
    font-weight: 500;
    font-size: 30px;
    line-height: 100%;
}

.carousel-info .carousel-name{
    display: inline-block;
}

.carousel-info .carousel-price{
    display: inline-block;
}

.carousel-info .carousel-action{
    float: right;
    font-size: 20px;
    bottom: 0;
    position: relative;
}


.carousel-read{
    background: #398997;
    border-radius: 12px;
    color: #fff;
    padding: 0.7em;
    text-decoration: none;
    font-size: 14px;
    font-family: Montserrat-Reqular, sans-serif;
}

.carousel-read:hover{
    opacity: 0.8;
    color: #fff;
}

.carousel-control-prev-icon, .carousel-control-next-icon{
    border: 1px solid rgba(230, 238, 248, 0.75);
    backdrop-filter: blur(4px);
    font-size: 20px;
    border-radius: 50px;
    background-color: rgba(18, 35, 48, 0.5);
}

.carousel-control-prev, .carousel-control-next{
    top: 47%;
    width: 48px !important;
    height: 48px;
}

.carousel img{
    background: #546E7A;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.05);
    height: 350px;
}

footer{
    margin-top: 2em;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    font-size: 15px;
    width: 100%;

    flex: 0 0 auto;

}

ul, li{
    list-style: none;
    margin: 0;
    padding: 0;
}

footer h4{
    font-size: 15px;
    color: #122330;
}

footer a{
    color: #546E7A !important;
    text-decoration: none;
}

footer .fa{
    width: 10px;
}

.navbar ul li a{
    font-weight: 600;
    /*font-family: Montserrat-Reqular, serif;*/
    color: #122330 !important;
    font-size: 14px;
    margin: 0 0.7em;
}

.navbar ul li a:hover{
    opacity: 0.8;
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail .right-info{
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
}

.product-detail .right-info .hr{
    height: 2px;
    background-color: rgba(57, 137, 151, 0.75);
}

.product-detail .right-info .name{
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #398997FF;
    /*margin: 10px 0 0 0;*/
}

.product-detail .right-info .P69BS {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-detail .right-info ul span{
    float: right;
}

.product-detail .right-info ul li {
    padding: 0.4em 1em;
    font-size: 12px;
    color: #546E7A;
}

.product-detail .right-info .add-cart {
    background: rgba(57, 137, 151, 0.75);
    border-radius: 12px !important;
    color: #fff;
    border: none;
    padding: 0.6em 1em;
    display: inline-block;
    transition: all ease-in-out .3s;
    height: 100%;
    width: -webkit-fill-available;
}

.product-detail .right-info .add-cart:hover {
    background: #398997;
}

.product-detail .right-info .buy-now{
    background: rgba(84, 110, 122, 0.5);
    border-radius: 10px !important;
    color: #fff;
    border: none;
    padding: 0.6em;
}


.product-detail .right-info .count-input{
    padding: 0.4em 1em;
    display: flex;
}

.product-detail .right-info .count-input input{
    padding: 8px;
    width: 15%;
    height: 32px;
    text-align: center;
    float: left;
}


.product-detail .right-info .count-input .button-left {
    border-radius: 10px 0 0 10px;
    border-left: 1px solid #122330;
    border-right: 0;
    float: left;
    height: 32px;
}


.product-detail .right-info .count-input .button-right {
    border-radius: 0 10px 10px 0;
    border-right: 1px solid #122330;
    border-left: 0;
    float: left;
    height: 32px;
}

.product-detail .right-info .input-group {
    gap: 10px;
    flex-wrap: nowrap;
}

.product-detail .SQH0B {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: center;
    gap: 30px;
}
.product-detail .SQH0B .GDZKZ {
    width: 100%;
    max-width: 633px;
}
.product-detail .SQH0B .N85IK {
    display: flex;
    flex-wrap: wrap;
    /*gap: 20px;*/
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    max-width: 633px;
}

.product-detail .img-product img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    min-width: 340px;
    height: 100%;
    min-height: 190px;
    max-height: 360px;
}

header .cart .icon {
    position: relative;
    margin-right: 10px;
}

header .cart-header {
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
}

header .count-products {
    background: #E02742;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    position: absolute;
    right: -8px;
    top: 0;
    padding: 3px;
    font-size: 13px;
    line-height: 1;
    height: 20px;
    color: #fff;
    width: 20px;
    text-align: center;
}

body .copyright{
    background: #546E7A;
    color: #fff;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    padding: 1em 1em;
    display: inline-block;
    position: relative;
    bottom: 0;
    width: inherit;
}

footer .copyright a{
    color: white !important;
    text-decoration: none;
}

footer .links-contacts {
    color: #546E7A;
}

footer .links-contacts li span{
    margin-left: 10px;
}

footer .description p{
    font-weight: 500;
    font-size: 12px;
    word-wrap: break-word;
}

.carousel-inner {
    border-radius: 12px;
}

main .page {
    background: #FFFFFF;
    /*box-shadow: 0 10px 15px rgba(84, 110, 122, 0.25);*/
    border-radius: 12px;
    padding: 1em;
}

main .page .A26ARJ {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

main .page .A26ARJ a {
    background: #398997;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    gap: 10px;
    height: 42px;
    width: 150px;
}

.breadcrumb .breadcrumb-item a{
    color: #546E7A;
    text-decoration: none;
}

.breadcrumb .breadcrumb-item.active {
    color: #398997;
}


.contacts .item{
    background: #546E7A;
    border-radius: 10px;
    margin: 0.5em;
    color: #fff;
    text-align: center;
    padding: 1em 0.5em;
    font-size: 1.1em;
    height: 45px;
}

.pagination .disabled span{
    display: block;
    color: #0d6efd;
    padding: 0.375rem 0.75rem;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.product-detail .nav li{
    flex: auto;
    text-align: center;
}

.product-detail .nav li a {
    border: none;
    font-size: 15px;
    color: #122330;
    background-color: #fff;
}

.product-detail .nav li a.active {
    font-weight: 600;
    color: #398997;
    border-bottom: 2px solid #398997;
}

.product-detail .product-preview img{
    object-fit: cover;
    max-height: 190px;
    min-height: 190px;
    width: 100%;
}

.product-detail .img-additional{
    margin: 0.5em 0em;

}

.product-detail .img-additional img{
    width: 150px;
    height: 84px;
    border: 1px solid #122330;
    border-radius: 7px;
}

.product-detail .right-info .select-type .option-button{
    font-family: Montserrat-Reqular;
    font-style: normal;
    padding: 0.5em 0.9em;
    background: #FFFFFF;
    font-weight: 600;
    font-size: 12px;
    border: 2px solid rgba(18, 35, 48, 0.5);
    border-radius: 10px;
    margin-top: 10px;
}

.product-detail .right-info .select-type .option-button.active{
    border: 2px solid #398997;
    color: #398997;
}

.product-detail .right-info .select-type .form-check-inline{
    margin-right: 0.3em;
}

.product-detail .right-info .select-type .form-check input {
    margin: 3px 0 0 0;
}

.product-detail .right-info .select-type .form-check label{
    padding-left: 4px;
}

.help-block{
    color: #c52828;
}

.product-detail .right-info #price_product{
    font-size: 18px;
    padding: 12px
}

.contacts a{
    text-decoration: none;
}


.product-detail #myTabContent {
    background: #FFFFFF;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 15px;
}

.product-detail #gallery{
    overflow-x: scroll;
}

.swiper {
    background: #ffffff40;
    backdrop-filter: blur(5px);
    border-radius: 12px 12px 0 0;
    bottom: 0;
    position: absolute !important;
    padding: 10px;
    width: 100%;
    height: 100px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    /*margin-left: 10px;*/
    /*margin-right: 20px !important;*/
    overflow: hidden;
    border-radius: 12px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide a img {
    width: 180px !important;
    height: 120px;
    object-fit: cover;
}

:root {
    --swiper-navigation-size: 18px !important;
}

.swiper-button-next:after, .swiper-button-prev:after{
    color: white;
}
.swiper-button-next {
    background: #46464680;
    backdrop-filter: blur(3px);
    height: -webkit-fill-available;
    right: 0;
    left: auto;
    width: 20px;
}
.swiper-button-prev {
    background: #46464680;
    backdrop-filter: blur(3px);
    height: -webkit-fill-available;
    left: 0;
    right: auto;
    width: 20px;
}

.swiper-button-next, .swiper-button-prev {
    top: 0;
}

.mfp-bg {
    background: #0b0b0bd4;
    backdrop-filter: blur(5px);
    opacity: 1;
}

img.mfp-img {
    max-height: 900px !important;
}


.product-detail .link-degisseller {
    background: rgba(57, 137, 151, 0.75);
    border-radius: 12px !important;
    color: #fff;
    border: none;
    padding: 0.6em 1em;
    display: inline-block;
    text-align: center;
    transition: all ease-in-out .3s;
    height: 100%;
    width: -webkit-fill-available;
}

.product-detail .right-info .add-cart:hover,
.product-detail .link-degisseller:hover {
    background: #398997;
}

.product-detail .W8KH5F .product-detail-description {
    border-radius: 12px;
    overflow: hidden;
}









/*--------------------------------------------*/

h3.cart-header {
    font-weight: 700;
    text-align: center;
}

.container-KVN5TR {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-QC2SXO {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 520px;
    width: 100%;
}

.cart-QC2SXO .cart-page {
    background: #fff;
    box-shadow: 0px 10px 10px rgb(84 110 122 / 10%);
    border-radius: 12px;
}

.cart-QC2SXO .cart-page .btn-store {
    background: #398997;
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
}

.cart-page .detail-payment {
    /*background: rgba(84, 110, 122, 0.05);*/
    padding: 1.2em;
    border-radius: 0px 0px 10px 0px;
}

.cart-page .detail-payment .input-group .form-control {
    border-radius: 12px;
}

.cart-page .detail-payment .input-group.coupon {
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 12px;
    /*padding: 0.375rem 0.75rem;*/
    overflow: hidden;
}
.cart-page .detail-payment .input-group.coupon .form-control {
    border: none;
    /*padding: 0;*/
}

.cart-page .detail-payment .input-group.coupon .btn-trans {
    background: transparent;
    border: none;
    border-radius: 8px !important;
    color: #122330;
    font-size: 15px;
    font-weight: 600;
    padding: 3px 8px;
    margin: 4px !important;
    transition: all ease-in-out .3s;
}

.cart-page .detail-payment .input-group.coupon .btn-trans:hover {
    background: rgba(0, 0, 0, 0.25);
}

.cart-page .detail-payment #form_pay .select-pay-method {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-page .detail-payment #form_pay .select-pay-method a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-radius: 12px;
    padding: 10px;
    border: 2px solid #bfbfbf;
    color: #212529;
}

.cart-page .detail-payment #form_pay .select-pay-method a .G6ONPY {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-page .detail-payment #form_pay .select-pay-method a.active{
    border: 2px solid #398997;
    background: transparent;
    color: #398997 !important;
    font-weight: 600;
}

.cart-page .detail-payment #form_pay .select-pay-method a .BT34AK {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.1);
    border-radius: 6px;
    width: 18px;
    height: 18px;
}

.cart-page .detail-payment #form_pay .select-pay-method a .BT34AK .IQHZJT {
    display: none;
    font-size: 22px;
    color: aliceblue;
}

.cart-page .detail-payment #form_pay .select-pay-method a.active .BT34AK {
    background: rgba(57, 137, 151, 0.75);
}

.cart-page .detail-payment #form_pay .select-pay-method a.active .BT34AK .IQHZJT  {
    display: block;
}

.cart-page .detail-payment #form_pay .select-pay-method a img {
    width: 30px;
    height: 30px;
}

.cart-page .detail-payment #form_pay .result-order {
    display: flex;
    text-align: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 600;
}
.cart-page .detail-payment #form_pay .result-order .wdgt3 {
    display: flex;
    flex: 1 0 auto;
    white-space: nowrap;
}

.cart-page .detail-payment #form_pay .result-order .wdgt3:after {
    border-bottom: 4px dotted rgba(18, 20, 22, .25);
    content: "";
    display: block;
    margin: 0 8px;
    width: 100%;
}


.cart-page .order-info .result-order .price {
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
}

.cart-page .detail-payment #form_pay .form-check {
    font-size: 18px;
    font-weight: 600;
}

.cart-page .detail-payment #form_pay .form-check-input:checked {
    background-color: #398997;
    border-color: #398997;
}

.cart-page .cart-header {
    font-size: 15px;
    padding: 0.6em 1.2em;
    display: block;
    border-bottom: 1px solid #546E7A;
}

.cart-page .products-list .preview-imgs {
    border-radius: 12px;
    width: 90px;
    height: 58px;
    margin-right: 10px;
    overflow: hidden;
}

.cart-page .products-list .preview-imgs img {
    object-fit: cover;
    width: 90px !important;
    height: 58px !important;
}

.cart-page .order-info {
    padding: 10px;
}

.cart-page .products-list {
    width: 100%;
}

.cart-page .products-list tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-page .products-list .info-price {
    padding-left: 10px;
    width: 100%;
}

.cart-page .products-list .info-price .name {
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
}

.cart-page .products-list .info-price .KZT8KR{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-page .products-list .info-price .KZT8KR .count-input {
    display: flex;
    border-radius: 8px;
    border: 1px solid;
    overflow: hidden;
    width: min-content;
}

.cart-page .products-list .info-price .KZT8KR .remove {
    font-size: 18px;
    color: #e12222;
}

.cart-page .order-info h4, .cart-page .detail-payment h4 {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    color: #122330;
}


/*.products-list .count-input {*/
/*    padding: 0.4em 1em;*/
/*    display: flex;*/
/*}*/

.products-list .count-input input {
    border: none;
    text-align: center;
    /*padding: 8px 6px 8px 6px;*/
    height: 25px;
    width: 5%;
}

.products-list .count-input button {
    background: transparent;
    font-size: 18px;
    width: 25px;
}

.products-list  .count-input .button-left {
    /*border-radius: 10px 0 0 10px;*/
    border: none;
    /*border-right: 0;*/
}
.products-list  .count-input .button-left:hover,
.products-list .count-input .button-right:hover {
    background: rgba(0, 0, 0, 0.1);
}

.products-list .count-input .button-right {
    /*border-radius: 0 10px 10px 0;*/
    border: none;
    /*border-left: 0;*/
}


.products-list .info{
    padding-left: 15px;
}

.products-list .info .name{
    font-size: 12px;
    color: #122330;
}

.products-list .info .category{
    font-size: 12px;
    color: #546E7A;
}

.products-list .price{
    font-weight: 700;
    font-size: 20px;
    color: #122330;
    vertical-align: bottom;
    text-align: right;
}

.cart-page .detail-payment .select-pay-method a.active {
    border: 1px solid #398997;
    background: rgba(57, 137, 151, 0.25);
}


.cart-page .detail-payment .pay-button {
    background: #398997;
    border-radius: 12px;
    border: none;
    padding: 15px;
    font-size: 18px;
    width: 100%;
    font-weight: 700;
    color: #fff;
    transition: all ease-in-out .3s;
}

.cart-page .detail-payment .pay-button:hover {
    background: #285e67;
}

.cart-page .detail-payment .contract label {
    font-size: 12px;
    line-height: 100%;
    color: #122330;
}

/*.cart-page .detail-payment p, .cart-page .order-info p {*/
/*    color: #546E7A;*/
/*}*/

.cart-QC2SXO div.hr {
    height: 1px;
    background-color: #bfbfbf;
}

/*.products-list .count-input{*/
/*    padding: 0 !important;*/
/*    padding-top: 15px;*/
/*    position: relative;*/
/*    top: 8px;*/
/*}*/


/* Стили в текстовом редакторе доп страниц и товаров. */
.ckeditor {
    position: relative;
}

.ckeditor img {
    width: inherit !important;
    max-width: 100%;
    height: inherit !important;
    max-height: 100%;
}

.ckeditor div {
    background: #A8B1C10C !important;
    border: 1px solid #A8B1C10C !important;
    border-radius: 5px !important;
    padding: 1rem !important;
    margin: 10px 0;
}

.ckeditor ol li {
    list-style-type: auto;
    margin-left: 10px;
}

.ckeditor ul li {
    list-style-type: disc;
    margin-left: 10px;
}

.ckeditor ol,
.ckeditor ul {
    padding-left: 2rem;
}

.ckeditor details {
    border: 1px solid #A8B1C10C !important;
    border-radius: 5px !important;
    padding: 0.5rem !important;
    margin: 10px 0;
}

.ckeditor summary {
    background: #A8B1C10C !important;
    border: 1px solid #A8B1C10C !important;
    border-radius: 5px !important;
    padding: 1rem !important;
    margin: 10px 0;
}
/* --- Стили в текстовом редакторе доп страниц, конец --- */


@media (max-width: 992px) {
    .product-detail .SQH0B {
        flex-wrap: wrap;
    }
}

@media (max-width: 956px) {
    .carousel img {
        height: 250px !important;
    }
    .carousel-info{
        height: 100%;
        padding: 10px;
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .product-detail .right-info .input-group {
        flex-wrap: wrap;
    }
}



.chat-history ul {
    padding: 0;
}

.chat-history ul li {
    list-style: none;
}

.chat-history .message-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
    padding-right: 15px;
    border-right: 1px solid rgba(68, 68, 68, 0.25);
}

.chat-history .message-data-time {
    color: #434651;
    font-size: 12px;
    padding-left: 6px;
}

.chat-history .message {
    color: #444;
    border-radius: 7px;
    display: inline-block;
    position: relative;
    margin-left: 15px;
}
.text-right {
    text-align: right!important;
}

.float-right {
    float: right!important;
}


.fa.fa-thumbs-up{
    color: green;
}

.fa.fa-thumbs-down{
    color: red;
}

#reviewform-grade input{
    margin-left: 7px;
    margin-right: 5px;
}

.info-text{
    background: #ffc10740;
}

.message-data-review .good,
.message-data-review .bad {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-right: 15px;
    border-right: 1px solid rgba(68, 68, 68, 0.25);
}

.message-data-review .good .message-data,
.message-data-review .bad .message-data {
    border-right: none;
}

.chat-history .review .review-good {
    width: 100%;
    display: flex;
    margin-top: 15px;
    padding: 5px;
    background: rgba(72, 227, 103, 0.10);
    border-left: 5px solid rgba(72, 227, 103, 0.75);
    border-radius: 10px;
}

.message-data-review .review-bad {
    width: 100%;
    display: flex;
    margin-top: 15px;
    padding: 5px;
    background: rgba(246, 74, 74, 0.10);
    border-left: 5px solid rgba(246, 74, 74, 0.25);
    border-radius: 10px;
}

.chat-history .seller {
    display: flex;
    margin-left: 50px;
    margin-bottom: 10px;
    padding: 5px;
    background: rgba(240, 152, 33, 0.10);
    border-left: 5px solid rgba(240, 152, 33, 0.75);
    border-radius: 10px;
}

/* --- Стили поисковика --- */

.search {
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(4,208,189,.12) !important;*/
    /*border-radius: 10px;*/
    /*padding: 10px;*/
    transition-duration: .25s;
    /*height: 52px;*/
    /*width: 52px;*/
}

/*.search:hover {*/
/*    background: rgba(4,208,189,.12) !important;*/
/*}*/

/*.search .bi-search {*/
/*    color: #04d0bd6b;*/
/*    transition-duration: .25s;*/
/*    font-size: 15px;*/
/*}*/

/*.search:hover .bi-search {*/
/*    color: #71DEFF;*/
/*    transition-duration: .25s;*/
/*}*/

#search-wrapper .over {
    background: #f0f4f1;
    padding-top: 1rem;
    height: 90vh;
    width: 100%;
}

#search-wrapper .blur1 {
    background: #fff;
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 0 15px 3px rgba(18, 35, 48, 0.1);
    backdrop-filter: blur(8px) !important;
    border-radius: 12px;
}

#search-wrapper .blur2 {
    background: #fff;
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 0 15px 3px rgba(18, 35, 48, 0.1);
    backdrop-filter: blur(8px) !important;
    border-radius: 12px;
}

#search-wrapper .over .card {
    background: #fff !important;
    border-radius: 12px;
    border: none;
    padding-top: 1rem;
}

#search-wrapper .over .card-body {
    padding-top: 1rem;
}

#search-wrapper .over .form-control {
    /*background-color: hsla(0,0%,100%,.01) !important;*/
    border-radius: 12px;
    border: none;
}

#result_search .product,
#result_search .categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#result_search .product .items,
#result_search .categories .items {
    display: flex;
    gap: 10px;
}

#result_search .product .items:hover,
#result_search .categories .items:hover {
    background: rgba(39, 46, 52, 0.25);
    border-radius: 6px;
}

#result_search .items:hover a {
    color: #398997;
}

#result_search .product img,
#result_search .categories img {
    border-radius: 6px;
    object-fit: cover;
    height: 70px !important;
    width: 70px !important;
}

/*#result_search .categories {*/
/*    margin-top: 20px;*/
/*}*/



#popular_queries .list a {
    background: #398997;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
}

#result_search .status {
    border: none !important;
    padding: 0;
}

.form-control {
    background: transparent;
    /*border: none;*/
    color: #212529 !important;
}

.form-control:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.blur1 .input-group {
    border-radius: 12px;
    background: transparent;
    border: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    /*height: 50px;*/
}

.blur1 .input-group-text {
    background: transparent !important;
    -webkit-border-radius: 12px 0 0 12px;
    -moz-border-radius: 12px 0 0 12px;
    border-radius: 12px 0 0 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
}


#result_search ::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

@media screen and (max-width: 480px) {
    #result_search .status {
        display: none;
    }
    #result_search .price {
        display: none !important;
    }

}


/* --- Стили поисковика --- */

