@font-face {
    font-family: 'Circe';
    src: url('/assets/font/Circe-Regular.eot');
    src: local('Circe'), local('Circe-Regular'), url('/assets/font/Circe-Regular.eot?#iefix') format('embedded-opentype'), url('/assets/font/Circe-Regular.woff') format('woff'), url('/assets/font/Circe-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('/assets/font/Circe-Bold.eot');
    src: local('Circe Bold'), local('Circe-Bold'), url('/assets/font/Circe-Bold.eot?#iefix') format('embedded-opentype'), url('/assets/font/Circe-Bold.woff') format('woff'), url('/assets/font/Circe-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #004C91;
    --blue-light: #4A8BC8;
    --red: #FF0000;
    --black: #282828;
    --green: #27AE60;
    --gray: #9A9A9A;
}

body {
    font-family: 'Circe';
    font-weight: 400;
    font-size: 15px;
    color: var(--black);
    padding-bottom: 60px;
    padding-top: 58px;
}

h1,
.h1 {
    font-size: 28px;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 20px;
    font-weight: 400;
}

a {
    color: var(--blue);
}

a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active {
    outline: none;
    text-shadow: none;
    box-shadow: none;
}

img:focus {
    outline: none;
    text-shadow: none;
    box-shadow: none;
}


/* Top navbar */

.header__logo {
    height: 40px;
}

nav {
    background-color: var(--blue);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
}

nav.header {
    height: 58px;
    display: flex;
    align-items: center;
}

nav.header .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

nav.header a {
    color: #fff;
}

.toggle-manager-menu:hover {
    text-decoration: none;
}

.nav__burger,
.nav__manager {
    margin-right: 15px;
}

.nav__manager {
    border-radius: 50%;
    width: 40px;
}

.nav__header-right a {
    margin-left: 40px;
}

nav .menu__mobile {
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 58px;
    padding: 15px;
    z-index: 1050;
    height: 100vh;
    display: none;
}

nav .menu__mobile.show {
    display: block;
}

nav .menu__mobile ul {
    margin: 0;
    padding: 0;
}

nav .menu__mobile ul a {
    color: var(--black);
}

nav .menu__mobile ul>li {
    margin-bottom: 15px;
}

nav .menu__mobile-profile {
    display: flex;
    align-items: center;
    color: var(--black);
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

nav .menu__mobile-profile-name {
    font-size: 14px;
}

nav .menu__mobile .h4 {
    font-size: 12px;
    color: #7e7e7e;
}

nav .menu__mobile-profile-name span {
    font-size: 10px;
    color: #757575;
}

.menu__mobile-profile-avatar img {
    margin-right: 15px;
    border-radius: 50%;
    width: 40px;
}

@media (max-width: 991px) {
    .nav__header-right {
        display: none;
    }
}

@media (min-width: 768px) {
    nav .menu__mobile.show {
        display: none;
    }
}


/* Footer menu */

nav.footer {
    background-color: #fff;
    position: fixed;
    top: auto;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 8px 36px rgba(0, 0, 0, 0.2);
    padding: 15px 0 10px;
}

nav.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.footer li>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--black);
    font-size: 12px;
    text-decoration: none;
}

nav.footer li>a.active {
    color: var(--red);
}

nav.footer li>a img {
    width: 24px;
}

@media (min-width: 1200px) {
    nav.footer {
        display: none;
    }
}


/* Footer */

footer {
    display: none;
}

@media (min-width: 1200px) {
    footer {
        display: block;
        background-color: var(--blue);
        color: #fff;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 20px 0 15px;
    }
    footer a {
        display: inline-flex;
        align-items: center;
        color: #fff;
    }
    footer a:hover {
        color: #fff;
    }
    footer a img {
        margin-right: 10px;
        margin-top: -2px;
    }
}


/* Main */

main {
    padding: 15px 0;
}


/* Welcome */

.welcome {
    max-width: 330px;
    margin: 0 auto;
}

.welcome__image,
.welcome h1,
.welcome__description {
    text-align: center;
}

.welcome__description {
    color: var(--black);
}

.welcome .circle {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--blue);
    margin-right: 10px;
}

.welcome__image img {
    width: 65px;
    margin: 0 auto 20px;
}

.welcome ul {
    margin: 20px 0 30px;
    padding: 0;
    list-style: none;
}

.welcome ul>li {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #F1F1F1;
    margin-bottom: 8px;
}

.welcome ul>li img {
    margin-right: 12px;
}


/* Modal */

.modal-backdrop {
    background-color: var(--blue);
}

.modal-content {
    border-radius: 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.modal-fullheight .modal-content {
    min-height: calc(100vh - 138px);
    position: relative;
    margin-top: 65px;
    margin-bottom: 73px;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1080;
    margin: 0!important;
}

.modal-fullheight .modal-content>div {
    width: 100%;
}

.modal-duck,
.modal-duck2 {
    width: 63px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.modal-duck2 {
    width: 85px;
}

#modal-list-get-from-friend .button {
    margin-top: 15px;
}

@media (min-width: 768px) {
    .modal-fullheight .modal-content {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .modal-fullheight .modal-dialog {
        min-height: calc(100% - 3.5rem);
        display: flex;
        align-items: center;
    }
}


/* Modal add to list */

.modal__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.5px solid #E0E0E0;
    border-radius: 1px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
}

.modal__list-create {
    border: 0.5px solid #E0E0E0;
    border-radius: 1px;
    padding: 20px;
    margin-bottom: 15px;
}

.modal__list.active {
    border-color: var(--blue);
}

.modal__list-title {
    font-size: 20px;
    font-weight: 700;
}

.modal__list-input {
    width: 100%;
    margin-bottom: 15px;
}

.modal__list-qty {
    font-size: 15px;
    font-weight: 400;
}

.modal__list:last-child {
    margin-bottom: 0;
}

#modal-list-product-delete button,
#modal-list-delete button,
#modal-list-delete-guest button {
    margin-bottom: 12px;
}

#modal-addtolist-added .modal-body {
    padding-top: 50px;
    padding-bottom: 50px;
}

#modal-list-product-delete .modal-body {
    padding-top: 50px;
    padding-bottom: 30px;
}

#modal-list-create .modal__lists {
    margin-bottom: 15px;
}

#modal-print-file button,
#modal-printed button {
    margin-top: 15px;
}

.modal-send-to-email .form-group {
    margin-top: 15px;
}

.modal-send-to-email .form-group label {
    margin-bottom: 0;
    font-size: 12px;
}

.modal__product-title {
    color: var(--blue);
    font-size: 20px;
    text-align: center;
}

.modal__product-price {
    font-size: 14px;
    text-align: center;
}

.modal__share-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.modal__share-item {
    margin-top: 15px;
}

.modal__share-item a img {
    margin-right: 10px;
}

.modal__share-item a {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    justify-content: center;
    padding: 10px;
    color: var(--black);
}

.modal-share-list-choise {
    margin: 20px;
}

.modal-share-list-choise>label {
    display: block;
}

@media (min-width: 768px) {
    .modal-content button,
    .modal-content .form-control,
    #send-pdf .error {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }
    .modal-share-list-choise {
        margin-left: 100px;
    }
}

#modal-edit-list-title .modal-body {
    padding-top: 75px;
    padding-bottom: 75px;
}

@media (min-width: 1200px) {
    .modal-send-to-email {
        text-align: center;
    }
    .modal-send-to-email input,
    .modal-send-to-email .form-group,
    .modal-send-to-email .modal-body {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }
    .modal-send-to-email .modal-body {
        max-width: 400px;
    }
    .modal-send-to-email .form-group {
        text-align: left;
    }
}


/* 404 */

.page404 {
    text-align: center;
    position: fixed;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.page404 .image {
    display: none;
}

.page404 .image img {
    width: 80px;
    margin-bottom: 25px;
}

.page404 h1 {
    font-size: 28px;
    font-weight: 700;
}

.page404 .text {
    max-width: 280px;
    margin: 0 auto;
}

@media (max-height: 400px) {
    .page404 {
        position: relative;
        top: 0;
        transform: none;
    }
}

@media (min-width: 1200px) {
    .page404 .image img {
        width: 110px;
    }
}


/* Product page */

.product__image {
    margin-bottom: 15px;
    padding: 0 25px;
    position: relative;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__image .img-fluid {
    max-height: 180px;
}

.product__image .product__gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.product__image .tns-outer {
    position: relative;
    z-index: 2;
}

.product__gallery-controls button {
    border: 0;
    background: none;
}

.product__gallery-controls:focus {
    outline: none;
}

.product__description-sku {
    color: var(--gray);
    font-size: 15px;
}

.product__description-title {
    font-size: 20px;
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product__description-title h1,
.product .h1 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product__description-size {
    color: var(--gray);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.product__description-size img {
    margin-right: 5px;
    margin-top: -2px;
}

.product__available-label .in-stock.green {
    color: var(--green);
}

.product__available-label .in-stock.red {
    color: var(--red);
}

.product__available-label .in-stock.orange {
    color: #ff9100;
}

.product__available-label .out-stock,
.product__available-price .sale {
    color: var(--red);
}

.product__available-price {
    font-size: 20px;
}

.product__available-price strike {
    display: block;
    font-size: 15px;
}

.product__description-delivery-date {
    margin-bottom: 15px;
}

.product__description-delivery-date span {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    padding: 6px 12px;
    background-color: var(--blue);
}

.product__description-delivery-date span.for-order {
    background-color: #2F80ED;
}

.product__description-delivery-date span.white-bg {
    background-color: #fff;
}

.product__description-available {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 360px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.product__available-price-date {
    font-size: 10px;
    color: #4F4F4F;
}

.product__actions button {
    margin-bottom: 5px;
}

.product__inventory {
    padding: 16px 20px;
    border: 0.5px solid #E0E0E0;
    border-radius: 1px;
    margin-top: 20px;
}

.product__inventory-header {
    background: rgba(0, 115, 222, 0.2);
    font-size: 20px;
    font-weight: 400;
    padding: 5px 12px;
}

@media (min-width: 768px) {
    .product__inventory-header {
        font-size: 24px;
    }
}

.product__inventory-item {
    margin-top: 15px;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 14px;
    padding-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__inventory {
    box-shadow: 0px 3px 8px -1px rgba(50, 50, 71, 0.25);
}

@media (max-width: 767px) {
    .product__inventory {
        box-shadow: none;
        padding: 0;
        border: 0;
    }
}

.product__inventory-item .region-name,
.product__inventory-item .store,
.product__inventory-item .car,
.product__inventory-item .docs {
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left 3px;
    font-size: 15px;
}

.product__inventory-item .region-name {
    background-image: url('/assets/image/manlocation.svg');
}

.product__inventory-item .store {
    background-image: url('/assets/image/store.svg');
}

.product__inventory-item .car {
    background-image: url('/assets/image/car.svg');
}

.product__inventory-item .docs {
    background-image: url('/assets/image/docs.svg');
}

.product__inventory-items-header {
    display: flex;
    justify-content: space-between;
    margin-top: 13px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .product__inventory-items-header {
        border-bottom: 1px solid #c4c4c4;
        padding-bottom: 10px;
    }
}

.product__inventory-items-header svg {
    margin: 0 2px;
}

.product__inventory-items-header>div:first-child {
    color: #282828;
    opacity: 0.6;
    font-size: 14px;
}

.product__inventory-items-header>div:last-child {
    white-space: nowrap;
    color: #7e7e7e;
    font-size: 14px;
}

.product__inventory-item:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product__inventory-item span {
    font-size: 10px;
    display: block;
}

.product__inventory-item .region,
.product__inventory-item .warehouse {
    font-size: 13px;
    font-weight: 700;
}

.product__inventory-item .qty,
.product__inventory-item .reserve,
.product__inventory-item .qty span,
.product__inventory-item .reserve span {
    font-size: 12px;
    font-weight: 400;
}

.product__inventory-item .qty span,
.product__inventory-item .reserve span {
    display: inline-block;
}

.product__inventory-item>div:last-child {
    margin-right: 40px;
    margin-left: 15px;
}

.product__calculator,
.product__feature {
    margin-top: 25px;
}

.product__calculator-hidden {
    display: none;
}

.product__calculator-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px -5px 0;
}

.product__calculator-item {
    padding: 0 5px;
}

.product__calculator-result {
    padding: 5px;
    font-size: 20px;
}

.product__calculator-result span {
    color: var(--blue);
}

.product__calculator-item .inner {
    border: 1px solid #C5C5C5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    padding-right: 5px;
    margin-bottom: 15px;
    font-size: 12px;
}

.product__calculator-item .inner input {
    font-size: 15px;
}

.product__calculator-item input {
    width: 56px;
    padding: 5px 0 5px 5px;
    border: 0;
    text-align: center;
    color: var(--blue);
}

.product__calculator-item input:focus {
    outline: none;
}

.product__feature {
    margin-bottom: 25px;
}

.product__feature .brand {
    color: var(--blue)
}

.product__feature-table {
    position: relative;
}

.product__feature-table.hide {
    max-height: 175px;
    overflow: hidden;
}

.product__feature-table.hide:after {
    content: "";
    text-align: right;
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
    pointer-events: none;
}

.product__feature-table>.row {
    border-bottom: 1px solid #C4C4C4;
    margin: 0;
}

.product__feature-table>.row:last-child {
    border: 0;
}

.product__feature-table>.row>div {
    padding: 10px 0;
}

.product__feature-table>.row>div:nth-child(odd) {
    color: #9D9999;
}

.product__feature-table>.row>div:nth-child(even) {
    text-align: right;
}

.number {
    display: flex;
    align-items: center;
}

.number .minus,
.number .plus {
    display: inline-block;
    color: #C5C5C5;
    font-size: 30px;
}

.number input,
.disabled input {
    margin: 0 7.5px;
    height: 38px;
    width: 56px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #C5C5C5;
    display: inline-block;
    vertical-align: middle;
}

.disabled input {
    margin: 0;
}

@media (min-width: 768px) {
    .product__actions button {
        max-width: 350px;
    }
}

@media (min-width: 1200px) {
    .product__inventory {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        padding: 30px;
    }
    .product__inventory-item {
        display: flex;
        justify-content: space-between;
        font-size: 15px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .product__inventory-item>div {
        padding: 0 10px;
    }
    .product__inventory-item .region {
        width: 150px;
    }
    .product__inventory-item .region,
    .product__inventory-item .warehouse {
        font-size: 18px;
        font-weight: 700;
    }
    .product__inventory-item .warehouse {
        flex: 1;
    }
    .product__inventory-item .qty span,
    .product__inventory-item .reserve span,
    .product__inventory-item span {
        display: block;
        font-size: 12px;
        font-weight: 400;
    }
    .product__inventory-item .qty,
    .product__inventory-item .reserve {
        font-size: 15px;
        width: 75px;
    }
}

.product__inventory-item .qty,
.product__inventory-item .reserve {
    display: inline-block;
    padding: 5px;
    border-radius: 13px;
    text-align: center;
    min-width: 75px;
    max-width: 150px;
    font-size: 14px;
}

.product__inventory-item .qty {
    background-color: #BDE0B4;
}

.product__inventory-item .reserve {
    background-color: #FFE0AD;
    margin-top: 8px;
}

.product__inventory-item>div:last-child {
    display: flex;
    flex-direction: column;
}


/* Similar products */

.similar-products {
    background-color: #f1f1f1;
    margin-bottom: -15px;
    padding-bottom: 20px;
    padding-top: 25px;
}

.similar-products:empty {
    display: none;
}

.similar-products-slider,
.collaction-products-slider {
    display: flex;
}

.similar-products-slider-controls,
.collaction-products-slider-controls {
    display: flex;
    justify-content: space-between;
}

.similar-products-slider-controls button,
.collaction-products-slider-controls button {
    border: 0;
    background: none;
}

.similar-products-slider-controls:hover,
.similar-products-slider-controls:focus,
.collaction-products-slider-controls:hover,
.collaction-products-slider-controls:focus {
    outline: none;
    box-shadow: none;
    text-shadow: none;
}

.similar-products-slider .product__item,
.collaction-products-slider .product__item {
    background-color: #fff;
    padding-bottom: 15px;
}

.similar__products,
.collaction__products {
    margin-bottom: 30px;
}

.similar__products .h2,
.collaction__products .h2 {
    font-weight: 700;
}


/* Product grid */

.product__item {
    border: 0.5px solid #E0E0E0;
    border-radius: 1px;
    padding-top: 20px;
    padding: 20px 15px 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-manager .product__item {
    padding-bottom: 15px;
}

.product__item .product-delete-from-list {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 780;
}

.product__item .product__image,
.product__item .product__available-qty {
    width: 40%;
    padding: 0 15px;
}

.product__available-qty {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
}

.product__item .product__description,
.product__item .product__available-block {
    width: 60%;
    padding: 0 15px;
}

.similar__products .product__item .product__available-block,
.product__item .product__available-block.history__available-block {
    width: 100%;
}

.product__item .product__description-available {
    max-width: 100%;
    width: 100%;
    align-items: flex-end;
    margin-bottom: 0;
}

.product__item .shop__location {
    margin-bottom: 5px;
}

.product__item .product__description-delivery-date {
    margin-bottom: 5px;
    margin-top: 15px;
}

.product__item .product__share {
    border-top: 0.5px solid #E0E0E0;
    margin: 20px -15px 0;
}

.product__item .product__share button {
    padding: 15px 5px;
    font-weight: 700;
    font-size: 15px;
}

.list__actions .share-email {
    /*display: none;*/
}

.list__client {
    margin-bottom: 20px;
}

.list__client p {
    margin: 0;
}

.list .list__description {
    margin-bottom: 15px;
}

.list .list__location {
    margin-top: 5px;
}

.list h1>a>img {
    margin-top: -5px;
    margin-left: 5px;
}

.product__list .col-12 {
    margin-bottom: 30px;
}

@media (max-width: 375px) {
    .number input,
    .disabled input {
        margin: 0 7.5px;
    }
}

@media (max-width: 767px) {
    .product__item .product__description,
    .product__item .product__available-block {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .product__item>.row {
        display: grid;
        grid-template-areas: "simage slocation" "simage  sdesc" "simage  sdesc" "simage  sdesc" "savail  savail";
        grid-template-columns: 40% 60%;
        grid-template-rows: 40px 1fr;
    }
    .product__item>.row>.shop__location {
        grid-area: slocation;
    }
    .product__item>.row>.product__image {
        grid-area: simage;
        width: 100%;
        padding-right: 0;
    }
    .product__item>.row>.product__description {
        grid-area: sdesc;
        width: 100%;
    }
    .product__item>.row>.product__description-available {
        grid-area: savail;
    }
    .product__item .product__description-delivery-date {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .product__item .row {
        flex-direction: column;
        height: 100%;
        flex-wrap: nowrap;
    }
    .product__item .product__image,
    .product__item .product__description {
        width: 100%;
    }
    .product__item .product__description {
        flex: 1;
    }
    .list {
        display: flex;
        flex-wrap: wrap;
    }
    .list>div {
        flex: 1 0 100%;
    }
    .list .list__back {
        order: 1
    }
    .list h1 {
        order: 2
    }
    .list .list__date {
        order: 3
    }
    .list .list__description {
        order: 3;
    }
    .list .list__print-block {
        order: 4;
        display: none;
    }
    .list .list__actions {
        order: 5;
        border-bottom: 1px solid #C4C4C4;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .list__client {
        order: 6;
    }
    .list .list__qty {
        order: 6;
        flex: 0 0 66.6666%;
        font-size: 18px;
        font-weight: 400;
        align-self: center;
    }
    .list .list__sorting {
        order: 7;
        flex: 0 0 33.3333%;
        padding: 0 0 0 20px;
    }
    .list .product__list {
        order: 8
    }
    .list .list__actions {
        display: flex;
    }
    .list .list__actions>button,
    .list .list__actions>a {
        max-width: 210px;
        font-size: 14px;
        margin-right: 15px;
    }
    .product__item .product__image {
        padding: 0 50px;
    }
}

@media (min-width: 1200px) {
    .list__actions .share-email {
        display: inline;
    }
    .product__share {
        display: none;
    }
    .product__item {
        padding-bottom: 10px;
    }
    .lists__header-createlist {
        display: none;
    }
}

@media (min-width: 1400px) {
    .list .list__qty {
        order: 6;
        flex: 0 0 75%;
    }
    .list .list__sorting {
        order: 7;
        flex: 0 0 25%;
        padding: 0 0 0 21px;
    }
}

.collaction__products .product__item>.row,
.similar__products .product__item>.row {
    display: flex;
    height: 100%;
}

.collaction__products .product__item>.row>.product__image,
.similar__products .product__item>.row>.product__image {
    padding: 0 50px;
}


/* Lists */

.lists__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.lists-manager .lists__header {
    margin-bottom: 0;
}

.lists-manager .lists__location {
    margin-bottom: 15px;
}

.lists__header h1 {
    margin-bottom: 0;
}

.list__back {
    margin-bottom: 15px;
}

.list__back a {
    display: inline-flex;
    align-items: center;
    color: var(--gray)
}

.list__back a>img {
    margin-right: 7px;
}

.lists__menu ul {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.lists__menu ul>li {
    width: 50%;
    text-align: center;
}

.lists__menu ul>li>a {
    display: block;
    padding: 16px;
    color: #1F1F25;
    font-size: 13px;
    border-bottom: 3px solid #E0E0E0;
}

.lists__menu ul>li>a.active,
.lists__menu ul>li>a:focus,
.lists__menu ul>li>a:hover {
    background-color: #dbe8f4;
    border-color: var(--blue);
    text-decoration: none;
}

.lists__item {
    margin-bottom: 25px;
    position: relative;
}

.lists__item .lists__item-new {
    padding: 2px 6px;
    color: #fff;
    background: #219653;
    display: inline-block;
    position: absolute;
    top: -26px;
    left: 0;
}

.lists__item-description {
    border: 0.5px solid #E0E0E0;
    border-radius: 1px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.lists-manager .lists__item-description {
    flex-direction: column;
    align-items: flex-start;
    color: #000;
}

.lists__item-client {
    margin: 20px 0;
}

.lists__item-client p {
    margin: 0;
}

.lists__item-title>a {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.lists__item-print button {
    border: 0;
    background: none;
}

.lists__item-print .send-pdf {
    display: none;
}

.list__action {
    display: flex;
    justify-content: space-between;
    margin: 0 -5px;
}

.list__action>.button {
    width: 50%;
    margin: 0 5px;
    padding: 14px 5px;
    display: flex;
    flex-wrap: nowrap;
    font-size: 16px;
}

.list__action>.button img {
    width: 18px;
    margin-right: 5px;
}

.list__qty {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.history .list__qty {
    font-size: 18px;
    color: #4F4F4F;
    font-weight: 400;
}

.list__date {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 15px;
    align-items: center;
}

.list__date img {
    width: 14px;
    margin-right: 5px;
    margin-top: -2px;
}

@media (max-width: 767px) {
    .list__action {
        text-align: left;
        line-height: 1;
    }
    .list__action>.button span {
        flex: 0;
        text-align: left;
    }
    .list__action>.button img {
        width: 20px;
    }
}

.list__print-block {
    margin-bottom: 30px;
}

.list__actions button,
.list__actions a {
    margin-bottom: 8px;
}

.list__sorting {
    margin-bottom: 16px;
    position: relative;
}

.list__sorting .list__sorting-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.16);
    border: 1px solid #E0E0E0;
    background: #fff;
    z-index: 800;
    display: none;
}

.list__sorting .list__sorting-menu.show {
    display: block;
}

.list__sorting .list__sorting-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list__sorting .list__sorting-menu ul a {
    display: block;
    padding: 15px;
    color: #000;
}

.list__sorting .list__sorting-menu ul a:hover,
.list__sorting .list__sorting-menu ul a.active {
    background-color: #dbe8f4;
    text-decoration: none;
}

.list__sorting .list__sorting-menu ul>li {
    border-bottom: 1px solid #E0E0E0;
}

.list__sorting .list__sorting-menu ul>li:last-child {
    border: 0;
}

.list__sorting button {
    color: var(--black);
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 15px;
}

.list__sorting button img {
    margin-left: 5px;
    margin-right: 0;
}

.list__manager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 12px;
    border: 1px solid #E0E0E0;
    margin-bottom: 10px;
}

.list__manager-specializations {
    display: flex;
    align-items: center;
    flex: 1;
    margin-top: 10px;
    font-size: 14px;
}

.list__manager-specializations span {
    display: inline-block;
    background: #4A8BC8;
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: 5px;
    margin-bottom: 5px;
    color: #fff;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.list__manager:focus-within,
.list__manager.active {
    background-color: rgba(74, 139, 200, 0.2);
}

.list__manager.i-check {
    padding: 15px 12px;
    margin-bottom: 10px;
}

.list__manager-action {
    position: relative;
    width: 20px;
    height: 20px;
}

.list__manager-image {
    width: 50px;
}

.list__manager-image img {
    border-radius: 50%;
}

.list__manager-image img.no-photo {
    border-radius: 50%;
    border: 1px solid #E0E0E0;
}

.list__manager-title {
    flex: 1;
    padding: 0 20px;
    font-size: 14px;
}

.list__manager-title span {
    display: block;
    font-size: 10px;
    color: #757575;
}

.list__managers-search {
    margin-bottom: 15px;
}

.lists__block {
    display: none;
}

.lists__block.show {
    display: block;
}

.lists__block .lists__date {
    display: block;
    width: 100%;
    flex: 1 0 100%;
    font-weight: 700;
    font-weight: 700;
    margin-bottom: 10px;
}

.lists__description {
    margin-bottom: 15px;
}

.send-to-print img {
    width: 30px;
}

@media (min-width: 768px) {
    .lists__block {
        flex-wrap: wrap;
        margin: 0 -15px;
    }
    .lists__block.show {
        display: flex;
    }
    .lists__block .lists__item {
        width: 50%;
        padding: 0 15px;
    }
    .lists__block .list__action {
        flex-wrap: wrap;
    }
    .lists__block .list__action>button,
    .lists__block .list__action>a {
        width: 100%;
        margin-bottom: 8px;
    }
    .lists__item .lists__item-new {
        left: 15px;
    }
    .lists__block .lists__date {
        padding: 0 15px;
    }
}

@media (min-width: 992px) {
    .list__sorting .list__sorting-menu {
        left: 20px;
        width: calc(100% - 20px);
    }
    .lists__item-description {
        min-height: 200px;
        align-items: flex-start;
    }
}

@media (max-width: 1199px) {
    .lists-manager .lists__location {
        margin-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .lists__block .lists__item {
        width: 25%;
    }
    .lists__item-print .send-pdf {
        display: block;
    }
    .lists__item-print .send-to-print {
        display: none;
    }
    .lists__menu {
        display: none;
    }
    .lists__block .lists__date {
        display: block;
        width: 100%;
        flex: 1 0 100%;
        padding: 0 15px;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .lists-manager .lists__block .lists__date {
        margin-bottom: 30px;
    }
    .lists__description {
        display: block;
        margin-bottom: 20px;
    }
}

@media (min-width: 1400px) {
    .list__sorting .list__sorting-menu {
        left: 20px;
        width: calc(100% - 21px);
    }
}


/* Send to manager */

#sendlist-form .form-check-label {
    margin-bottom: 0;
}

.sendlist__step {
    display: none;
}

.sendlist__step.sendlist-form__customer {
    display: block;
}

.sendlist-form__manager button {
    margin-bottom: 8px;
}

.not-valid {
    border: 1px solid var(--red)!important
}

.sendlist .error,
.modal .error,
.error {
    color: var(--red);
    font-size: 10px;
}

.error-avatar {
    text-align: center;
    font-size: 14px;
    margin-top: -4px;
}

.error-image .image {
    border: 1px solid var(--red);
    margin-bottom: 10px;
}

.manager__sent {
    max-width: 360px;
    text-align: center;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.manager__sent img {
    width: 128px;
}

@media (max-height: 420px) {
    .manager__sent {
        position: relative;
        transform: none;
        top: 0;
    }
}

@media (min-width: 992px) {
    .sendlist {
        max-width: 530px;
    }
    .sendlist button {
        max-width: 320px;
    }
}


/* login page */

.login {
    max-width: 330px;
    position: fixed;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.login h1 {
    margin-bottom: 30px;
}

@media (max-height: 440px) {
    .login {
        position: relative;
        top: auto;
        transform: none;
    }
}

.shop__location {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.shop__location img {
    margin-top: -2px;
    margin-right: 5px;
}

.left-column {
    position: relative;
}

.left-column .shop__location {
    float: right;
    z-index: 500;
}

.left-column .product__description-delivery-date {
    z-index: 500;
}

.left-column .product__description-delivery-date span {
    background: rgba(0, 76, 145, 0.8);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .left-column .shop__location,
    .left-column .product__description-delivery-date {
        position: relative;
        padding: 0;
        float: none;
    }
}

.button {
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 0;
    padding: 10px;
    transition: all 0.2s linear;
}

.button>img {
    margin-right: 10px;
    margin-top: -3px;
}

.button:hover {
    text-decoration: none;
}

.btn-blue {
    background-color: var(--blue);
}

.btn-blue:hover {
    color: #fff;
    background-color: #113F80;
}

.btn-blue:focus {
    color: #fff;
    background-color: #1652A6;
}

.btn-lightblue {
    background-color: var(--blue-light);
}

.btn-lightblue:hover {
    color: #fff;
    background-color: #4079AD;
}

.btn-lightblue:focus {
    color: #fff;
    background-color: #4E93D4;
}

.btn-red {
    background-color: var(--red);
}

.btn-red:hover {
    color: #fff;
    background-color: #E60000;
}

.btn-red:focus {
    color: #fff;
    background-color: #FF4444;
}

.btn-white {
    background-color: #fff;
    color: var(--blue);
}

.btn-white:hover,
.btn-white:focus {
    background: var(--blue);
    color: #fff;
}

.btn-white img {
    transition: all 0.2s linear;
}

.btn-white:hover img,
.btn-white:focus img {
    filter: brightness(0) invert(1);
}

@media (min-width: 1400px) {
    .col-xxl-3 {
        width: 25%;
        flex: 0 0 25%;
    }
    .container {
        max-width: 1320px;
    }
}

.blueimp-gallery {
    background: rgba(0, 76, 145, 0.5);
}


/* Checkbox and radio */

.i-check {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.i-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.i-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
}

.list__manager-action .checkmark .i-check:hover input~.checkmark {
    background-color: #ccc;
}

.i-check input:checked~.checkmark {
    background-color: transparent;
    border-color: var(--blue-light);
}

.i-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.i-check input:checked~.checkmark:after {
    display: block;
}

.i-check .checkmark:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-light);
}

.i-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.i-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.i-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 2px;
}

.i-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.i-checkbox input:checked~.checkmark {
    background-color: var(--blue-light);
    border: 0;
}

.i-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.i-checkbox input:checked~.checkmark:after {
    display: block;
}

.i-checkbox .checkmark:after {
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.blueimp-gallery>.slides>.slide>.slide-content {
    background-color: #fff;
    padding: 15px;
}

@media (max-width: 1199px) {
    .blueimp-gallery>.slides>.slide>.slide-content {
        width: calc(100vw - 140px)!important;
    }
}

@media (min-width: 992px) {
    .blueimp-gallery>.slides>.slide>.slide-content {
        max-height: 80%;
    }
}

.blueimp-gallery>.slides>.slide>.slide-content:after {
    display: block;
    position: absolute;
    content: ' ';
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}

.password-block {
    display: none;
}

.password-block.show {
    display: block;
}


/* Scanner */

#reader__scan_region {
    height: 100vh!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#reader__dashboard_section_swaplink,
#reader__status_span,
#reader__header_message,
#reader__dashboard {
    display: none!important;
}

#reader,
#reader video {
    width: 100%!important;
    border: 0!important;
}

#qr-shaded-region {
    height: 100vw;
    border-width: 107px !important;
    top: 50%!important;
    transform: translateY(-50%);
}

#qr-shaded-region:before {
    content: ' ';
    width: 1000px;
    height: 300px;
    position: absolute;
    top: -407px;
    left: -250px;
    background-color: rgba(0, 0, 0, 0.48);
}

#qr-shaded-region:after {
    content: ' ';
    width: 1000px;
    height: 300px;
    position: absolute;
    bottom: -407px;
    left: -250px;
    background-color: rgba(0, 0, 0, 0.48);
}

#reader__scan_region video {
    height: 100vh!important;
    width: auto!important;
}

#qr-shaded-region>div,
#reader {
    display: none;
    position: fixed!important;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0 15px;
    z-index: 1040;
}

#reader.show {
    display: block;
}

.reader-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1030;
}

#reader__dashboard_section_csr>span:first-child {
    display: none;
}

.form-control {
    min-height: 56px;
}


/* Spinner preloader */

.sk-spinner-circle.sk-spinner {
    margin: 0 auto;
    width: 22px;
    height: 22px;
    position: relative;
}

.sk-spinner-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-spinner-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 20%;
    height: 20%;
    background-color: #1ab394;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out;
    /* Prevent first frame from flickering when animation starts */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.sk-spinner-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-spinner-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-spinner-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-spinner-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-spinner-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-spinner-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-spinner-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-spinner-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-spinner-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-spinner-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-spinner-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-spinner-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-spinner-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-spinner-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-spinner-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-spinner-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-spinner-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-spinner-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-spinner-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-spinner-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-spinner-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-spinner-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* Loader background with spinner */

.loader {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
}

.loader .sk-spinner-circle {
    width: 50px;
    height: 50px;
    right: 50px;
    bottom: 50px;
    margin: 0;
    position: absolute;
}

.loader .sk-spinner-circle .sk-circle:before {
    background-color: #fff;
}

.manager-search:focus {
    box-shadow: none;
    border-color: #144B98;
    background: rgba(123, 151, 206, 0.06);
}

.close-icon {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9999;
}

.close-icon {
    width: 32px;
    height: 32px;
    opacity: 0.3;
}

.close-icon:hover {
    opacity: 1;
}

.close-icon:before,
.close-icon:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #fff;
}

.close-icon:before {
    transform: rotate(45deg);
}

.close-icon:after {
    transform: rotate(-45deg);
}

@media (min-width: 576px) {
    .account form {
        max-width: 330px;
    }
}

.account__avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    position: relative;
}

.account__avatar.error-image {
    margin-bottom: 40px;
}

.account__avatar .image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.account__avatar .image img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.account__avatar svg {
    position: absolute;
    bottom: 0;
    right: 0;
}

.account__avatar input {
    display: none;
}

.account__shop {
    text-align: center;
    margin-bottom: 20px;
}

.account__shop svg {
    margin-right: 5px;
    margin-top: -3px;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    min-height: 47px;
    margin-bottom: 20px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
    border-radius: .25rem!important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.select2-search.select2-search--inline {
    width: 100%;
}

.admin__specializations {
    max-width: 320px;
}

.admin__specializations .button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.delete-specialization img {
    filter: brightness(0);
    margin-top: -3px;
}

.admin__specializations .inner-block>div {
    display: flex;
    justify-content: space-between;
    padding: 15px 12px;
    border: 1px solid #E0E0E0;
    margin-bottom: 10px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    border-radius: 0!important;
    margin-bottom: 0;
    box-shadow: none;
    position: relative;
}

.select2-selection--multiple {
    padding-right: 25px!important;
}

.select2-selection--multiple::after {
    content: ' ';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-image: url('/assets/image/angle-down.svg');
    width: 12px;
    height: 8px;
    background-repeat: no-repeat;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    background-color: rgba(123, 151, 206, 0.06);
}

.select2-container--default.select2-container--focus .select2-selection--multiple:after {
    transform: rotate(180deg);
}

.select2-selection__choice {
    background-color: var(--blue-light)!important;
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-left: 3px;
    padding-right: 20px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    border-right: 0;
    transition: all 0.2s linear;
    left: auto;
    right: 0;
    font-size: 18px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: var(--blue)!important;
    color: #fff;
}

.select2-results__option {
    background-image: url('/assets/image/notchecked.svg');
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 35px;
}

.select2-results__option--selected {
    background-image: url('/assets/image/checked.svg');
    background-color: #fff!important;
    color: var(--black)!important;
}

.account__specializations {
    margin-bottom: 20px;
}

.account__specializations .select2-container .select2-search--inline .select2-search__field {
    margin-top: 11px;
}

.profile-inputs .form-control {
    height: 48px;
    border-radius: 0;
    margin-bottom: 20px;
}

.profile-inputs .form-control:disabled,
.profile-inputs .form-control[readonly] {
    background-color: transparent;
}

.paging {
    padding: 25px 15px;
    width: 100%;
}

.paging .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paging__next {
    transform: rotate(180deg);
}

.paging .btn-group a,
.paging .btn-group span {
    display: inline-block;
    margin: 0 5px;
}

.manager__sent-image,
.welcome__image,
.modal-duck2,
.modal-duck {
    display: none;
}