/* main */
.flex-fill {
    flex: unset !important;
}

.navbar-brand img {
    height: 100%;
    width: 35%;
}

.container-fluid.footer {
    justify-content: center !important;
}

.footer-margin {
    margin-right: 30px;
    margin-left: 30px;
}

.main-button {
    background-color: #ebf3ff;
    padding: 10px 20px;
    border-radius: 10px;
    color: #0c83ff;
    border: unset;
}

.main-button.cards {
    margin: .3125rem;
}

/* cookie */
.cookie {
    width: 60%;
    position: fixed;
    z-index: 999999999;
    bottom: 0;
    left: 20%;
}

.cookie-title {
    flex-wrap: wrap;
    justify-content: space-between;
}
/* /cookie */

/* end-main */


/* auth */
.content-wrapper.auth {
    justify-content: center;
}

.modal-message.send-code {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.modal-code {
    display: flex;
    margin: 20px 0;
}

.modal-code input {
    margin-right: 10px;
    text-align: left;
    font-weight: 400;
}

.login-form.send-code {
    display: none;
}

.give-code {
    display: none;
}

.code-error {
    display: none;
    color: red;
}
/* end-auth */


/* catalog */
.catalog-menu {
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.075);
    padding: 5px;
    flex-wrap: wrap;
}

.catalog-menu a {
    padding: 6px 16px;
    color: #1f2937;
    transition: .2s;
    margin-right: 10px;
}

.catalog-menu a:hover {
    background-color: #f3f4f6;
    border-radius: 5px;
    transition: .2s;
}

.catalog-menu a.active {
    padding: 6px 16px;
    color: #0c83ff;
    background-color: rgba(12,131,255, 0.1);
    border-radius: 5px;
}

.card-modal {
    background-color: #00000059;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.nav-pills .card-nav-item {
    margin-bottom: 10px;
}

.swiper {
    text-align: center;
}

.swiper-slide img {
    width: 80%;
    border-radius: 5px;
}

.modal-title.mb-10 {
    margin-bottom: 10px;
}

.modal-card-price {
    display: flex;
    justify-content: space-between;
}

.modal-card-price .discount {
    color: green;
}

.modal-card-price .price {
    font-size: 26px;
    font-weight: 700;
}

.modal-card-price button {
    background: none;
    border: none;
}

.modal-card-price button i {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: #3a85fc;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
}

.swiper-button-next, .swiper-button-prev {
    color: #6c7280 !important;
}

.height-100 {
    height: 100%;
}

.brand-photo, .brand-photo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-photo a, .brand-photo-slide img {
    width: 50%;
}

.number {
	user-select: none;
	position: relative;
	text-align: left;
	padding: 0;
	width: 90px;
	border: 1px solid #ddd;
	display: inline-block;
}

.number-minus, .number-plus {
	position: absolute;
	top: 0;
	width: 30px;
	height: 22px;
	display: block;
	background: #0c83ff;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	font-family: arial;
	color: #fff;
	text-decoration: none;
    transition: .2s;
}

.number-minus {
	left: 0;
	border-right: 1px solid #ddd;
}

.number-plus {
	right: 0;
	border-left: 1px solid #ddd;
}

.number-minus:hover, .number-plus:hover {
	background: #fffcfb;
    transition: .2s;
}

.number-minus:active, .number-plus:active {
	background: #e8e4e2;
}

.number-text {
	display: inline-block;
	font-size: 14px;
	color: #000;
	height: 16px;
	padding: 0;
	margin: 0 0 0 30px;
	background: #fff;
	outline: none;
	border: none;
	width: 27px;
	text-align: center;
}
/* end-catalog */


/* profile */
.flex-fill.profile {
    flex: 1 1 auto!important;
}

.profile-childrens {
    font-size: 10px;
}

.profile-childrens a {
    color: white;
    font-weight: 500;
}
/* /profile */

/* basket */
.basket-items .item {
    position: relative;
    margin: 20px 10px 20px 0;
    min-height: 70px;
}

.basket-items .item .item-del {
    position: absolute;
    top: -15px;
    right: -13px;
}

.basket-items .item:first-child {
    margin-top: 0;
}

.basket-items .item img {
    width: 12%;
    border-radius: 5px;
    margin-right: 20px;
}

.basket-items .item .price {
    white-space: nowrap;
}

.basket-items .item .price {
    margin-left: 20px;
}

.basket-promo {
    display: flex;
    justify-content: center;
}

.basket-promo p {
    border-bottom: 1px dashed #59aee4;
    cursor: pointer;
}

.basket-promocode {
    display: none;
    position: relative;
}

.basket-promocode button {
    position: absolute;
    right: -1px;
    top: -1px;
}

.basket-promocode input[type=number]::-webkit-outer-spin-button,
.basket-promocode input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.basket-promocode input[type=number] {
    -moz-appearance:textfield;
}
/* /basket */

@media (max-width: 1200px) {
    .card.map {
        width: 100%;
        height: 400px;
    }

    .basket-items .item {
        flex-direction: column;
    }
}

.select-item, .select-item button {
    width: 100%;
    text-align: center;
}

.fc-h-event .fc-event-title {
    white-space: pre-line;
}

@media (max-width: 992px) {
    .header-menu {
        display: none;
    }

    .cookie {
        width: 90%;
        left: 5%;
    }

    .profile {
        flex-direction: column;
    }

    .card.map {
        width: 100%;
        height: 400px;
    }
}

@media (min-width: 992px) {
    .profile .client {
        margin-right: 10px;
        width: 40%;
        height: 100%;
    }

    .profile .childrens {
        width: 60%;
    }

    .sidebar-main {
        display: none;
    }
}

@media (max-width: 768px) {
    .basket {
        flex-direction: column;
    }

    .basket-card {
        width: 100%;
    }
}