/* Стили для сообщения об ошибках */
.form-error {
    position: relative;
    padding: .5rem 1rem 0.6rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
    color: #dc3545;
    background-color: #dc35450d;
    border: 1px solid #dc3545;
}

/* Стили для сообщения об успешной отправки */
.form-result-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.25rem;
    background-color: rgba(255, 255, 255, 0.64);
}

.form-result-success > div {
    text-align: center;
    position: relative;
    padding: 30px 30px;
    margin-bottom: 1rem;
    border: 2px solid #414F7E;
    z-index: 1001;
    border-radius: 0;
    color: #33393F;
    background-color: #ffffff;
}

.form-result-success a {
    color: #33393F;
    background-color: transparent;
    font-weight: 700;
}
.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #364F78;
    transition: width .6s ease;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}
.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
}

.custom-control-label::before {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #1C3060;
    background-color: #1C3060;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #80bdff;
}

.custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.form-agreement label {
    font-size: 0.675rem;
}

/* CSS для индикации полей форме при их валидности */
.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, .25);
}

/* CSS для индикации полей форме при их не валидности */
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}


.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .25);
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
@media (min-width: 576px) {
    .form-row > .form-group {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 5px;
        padding-left: 5px;
    }
}
.form-group {
    margin-bottom: 5px;
    width: 100%;
}
.btn-info:hover {
    color: #fff;
    background-color: #364F78;
    border-color: #364F78;
}
.side-menu {
    display: none;
}
.list-group-inline .list-group-item {
    border: none;
    display: inline-block;
    color: #FFFFff;
    padding: 0.425rem 0;
    margin-right: 10px;
    width: auto;
    font-weight: 300;
}
.list-group-number span {
    background: transparent;
    color: #5bbf52;
    font-weight: 600;
    height: auto;
    width: auto;
    line-height: normal;
    text-align: center;
    display: inline-block;
    border-radius: 0%;
    float: right;
    margin-right:auto;
    margin-top: auto;
    font-size: 13px;
    padding: 0 8px;
}
.number {
    user-select: none;
    position: relative;
    text-align: left;
    padding: 0;
    width: 65px;
    border: 1px solid #ddd;
    display: inline-block;
}
.number-minus, .number-plus {
    position: absolute;
    top: 0;
    width: 20px;
    height: 30px;
    line-height: 30px;
    display: block;
    background: #ffffff;
    font-size: 15px;
    font-weight: 200;
    text-align: center;
    font-family: arial;
    color: #434e68;
    text-decoration: none;
}
.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;
}
.number-minus:active, .number-plus:active {
    background: #e8e4e2;
}
.number-text{
    display: inline-block;
    font-size: 11px;
    color: #000;
    line-height: 20px;
    height: 30px;
    padding: 0;
    margin: 0 0 0 20px;
    background: #fff;
    outline: none;
    border: none;
    width: 38px;
    text-align: center;
    border-radius: 0px;
}
@media (max-width: 800px) {
    .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: 30px;
        line-height: 30px;
        display: block;
        background: #ffffff;
        font-size: 15px;
        text-align: center;
        color: #434e68;
        text-decoration: none;
    }
    .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;
    }
    .number-minus:active, .number-plus:active {
        background: #e8e4e2;
    }
    .number-text{
        display: inline-block;
        font-size: 11px;
        color: #000;
        line-height: 20px;
        height: 30px;
        padding: 0;
        margin: 0 0 0 23px;
        background: #fff;
        outline: none;
        border: none;
        width: 55px;
        text-align: center;
        border-radius:0px!important;
    }
}
.table-striped a {
    border-bottom: 0px dashed #767676;
}
.list-group-number {
    font-size: 11px;
}
table td span {
                   display: inline-block;
               }
@media(max-width: 600px) {
    table tr {
        border-bottom: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 0px !important;
    }
}

.b-page_newyear .b-head-decor {
    display: none!important;
}
.sl-discount__close{
    display: none;
}