@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy Light'), local('Gilroy-Light'),
        url('Gilroy-Light.woff2') format('woff2'),
        url('Gilroy-Light.woff') format('woff'),
        url('Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

:root {
    --white: #fff;
    --light-grey: #eee;
    --dark-grey: #323232;
    --dark-dark-grey: #262626;
    --yellow: #ff0;
    --black: #000;
    --red: #f00;
    --grey: #ccc;
    --grey-5: #555;
    --grey-8: #888;
}

body {
    font-family: 'Gilroy';
    background-color: var(--light-grey);
    margin-top: 100px;
    font-size: 18px;
}

.note-editable {
    font-family: 'Gilroy';
    background-color: var(--light-grey);
}

.dark-grey-bg {
    background-color: var(--dark-grey);
}

.yellow-color {
    color: var(--yellow);
}

.white-color,
.white-color a {
    color: var(--white);
}

.white-color a:hover {
    color: var(--yellow);
}

.nav-link {
    color: var(--white);
}

.navbar {
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav {
    margin: auto;
}

.nav-tabs .nav-link {
    color: var(--black)
}

.navbar-nav .nav-link {
    border-right: 1px solid var(--grey);
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.navbar-nav .nav-item:last-child .nav-link {
    border-right: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    color: var(--yellow);
    background-color: var(--grey-5);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: 0px 0px 0px 1px var(--light-grey);
}

.navbar-brand {
    width: 140px;
    height: 49px;
    margin-right: 0;
    background-image: url(/images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 5px;
    margin-bottom: 5px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1.0%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

a {
    color: var(--dark-grey);
}

a:hover {
    color: var(--black);
}

.navbar .contacts a {
    color: var(--grey);
    stroke: none;
    fill: var(--grey);
}

.navbar .contacts a:hover {
    color: var(--white);
    stroke: none;
    fill: var(--white);
}

footer .hint a {
    color: #aaa;
    stroke: none;
    fill: #aaa;
}


footer a {
    color: var(--dark-grey);
    stroke: none;
    fill: var(--dark-grey);
}

footer a:hover {
    color: var(--black);
    stroke: none;
    fill: var(--black);
}

.card {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--dark-grey);
    color: var(--white);
    font-weight: 700;
    border: none;
}

.btn-primary:hover {
    background-color: var(--grey);
    color: var(--black);
}

@media (max-width: 575.98px) {
    .xs-m-auto {
        margin: auto;
    }

    .xs-mt-20 {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .md-m-auto {
        margin: auto;
    }

    .md-mt-20 {
        margin-top: 20px;
    }
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

#all_windows div {
    display: inline-block;
    background-color: var(--light-grey);
    margin: 2px;
    padding: 5px;
    border-radius: 5px;
}

.form-check-input:checked {
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
}

.uppercase {
    text-transform: uppercase;
}

.remove-window {
    padding: 0px 5px;
    border-radius: 5px;
    background-color: var(--grey);
    margin-left: 5px;
    color: var(--white);
    display: inline-block;
    line-height: 20px;
    cursor: pointer;
}

.window-type {
    float: right;
}

.window-type .form-check {
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
}

footer.border-top {
    border-top-color: var(--grey) !important;
}

.card.dark-grey,
.card-header.dark-grey {
    background-color: var(--dark-grey);
    color: var(--light-grey);
}

.card.dark-grey h3,
.card-header.dark-grey h3 {
    color: var(--yellow);
    font-size: 24px;
    text-align: center;
}

table.plan {
    margin-left: auto;
    margin-right: auto;
}

table.plan th,
table.plan td {
    border: 1px solid var(--light-grey);
    text-align: center;
    font-weight: normal;
    padding: 5px;
}

table.plan th {
    color: var(--yellow);
}

table.plan span {
    display: block;
    font-size: 12px;
    color: var(--yellow);
}

.index-banner {
    padding: 10px;
    background-color: #323232ab;
    opacity: 0.9;
    color: var(--yellow);
    font-weight: bold;
    position: absolute;
    bottom: -2px;
    border-radius: 5px;
    width: 100%;
}

.index-banner a {
    position: absolute;
    right: 10px;
    color: var(--white);
}

.index-header {
    margin: 0px;
    padding: 10px;
    text-align: center;
}

.hide {
    display: none;
}

.image-index-n {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}

.image-index-n1 {
    background-image: url(/images/index/14.png);
}

.image-index-n2 {
    background-image: url(/images/index/16.png);
}

.image-index-n3 {
    background-image: url(/images/index/13.png);
}

.image-index-n4 {
    background-image: url(/images/index/9.png);
}

.image-index-n5 {
    background-image: url(/images/index/10.png);
}

.image-index-n6 {
    background-image: url(/images/index/5.png);
}


.image-index {
    background-image: url(/images/index.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 373px;
}

.image-contacts {
    background-image: url(/images/contacts.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
}

.image-order {
    background-image: url(/images/order.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.image-spring {
    background-image: url(/images/spring.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

.image-supportive {
    background-image: url(/images/supportive.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 473px;
}

.image-windows {
    background-image: url(/images/windows.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}

h3.city {
    color: var(--yellow);
    font-size: initial;
    padding: 0px;
    padding-right: 15px;
    margin: 0px;
}

.inline-edit {
    border-left: 1px dashed #f00;
    border-bottom: 1px dashed #f00;
}

.inline-edit:hover {
    cursor: pointer;
}

.display-inline {
    display: inline;
}

.article img.note-float-right {
    padding-left: 10px;
}

.article img.note-float-left {
    padding-right: 10px;
}

.carousel-inner {
    border-radius: 5px;
}

.bg {
    background-color: #ccc;
    font-weight: bold;
    padding: 10px;
    padding-left: 20px;
}

.bg .hint {
    font-weight: normal;
}

.additional {
    border: 1px solid #ccc;
    padding: 20px;
}

.chem-serv {}

.chem-serv .title {
    color: var(--black);
    font-size: 20px;
    text-align: center;
}

.chem-serv .price {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: var(--black);
}

.chem-serv .img {
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
}

.chem-serv .img.img-1 {
    background-image: url(/images/chem/8.png);
}

.chem-serv .img.img-2 {
    background-image: url(/images/chem/7.png);
}

.chem-serv .img.img-3 {
    background-image: url(/images/chem/22.png);
}

.chem-serv .img.img-4 {
    background-image: url(/images/chem/9.png);
}

.chem-serv .img.img-5 {
    background-image: url(/images/chem/4.png);
    background-size: contain;
}

.chem-serv .img.img-6 {
    background-image: url(/images/chem/27.png);
    background-size: contain;
}

.chem-serv .img.img-7 {
    background-image: url(/images/chem/28.png);
    background-size: contain;
}

.chem-serv .img.img-8 {
    background-image: url(/images/chem/29.png);
    background-size: contain;
}

.chem-serv .img.img-9 {
    background-image: url(/images/chem/18.png);
}

.chem-serv .img.img-10 {
    background-image: url(/images/chem/17.png);
}

.chem-serv .img.img-11 {
    background-image: url(/images/chem/17.png);
}

.chem-serv .img.img-12 {
    background-image: url(/images/chem/19.png);
}

.chem-serv .img.img-13 {
    background-image: url(/images/chem/25.png);
    background-size: contain;
}

.chem-serv .img.img-14 {
    background-image: url(/images/chem/14.png);
    background-size: contain;
}

.chem-serv .img.img-15 {
    background-image: url(/images/chem/13.png);
    background-size: contain;
}

.chem-serv .img.img-16 {
    background-image: url(/images/chem/15.png);
}

.chem-serv .img.img-17 {
    background-image: url(/images/chem/10.png);
}

.chem-serv .img.img-18 {
    background-image: url(/images/chem/18.png);
}

.chem-serv .img.img-19 {
    background-image: url(/images/chem/11.png);
}

.chem-serv .img.img-20 {
    background-image: url(/images/chem/12.png);
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

#btn-goto-order {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    background-color: var(--yellow);
    box-shadow: 0px 0px 10px var(--grey-5);
    z-index: 10;
}

.sticky-form {
    position: sticky;
    position: -webkit-sticky;
    top: 7rem;
    right: 0;
    z-index: 2;
    overflow-y: auto;
}

.beer-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-slider img {
    max-height: 470px;
}

.comments {}

.comments .comment {
    background-color: var(--grey-8);
    border-left: 20px solid var(--grey-5);
    padding: 20px;
    border-radius: 20px 0px;
}

.comments .comment-from {
    color: var(--yellow);
}

.comments .comment-body {
    color: var(--white);
}

.carousel-caption {
    position: absolute;
    right: 0%;
    bottom: 0;
    left: 0%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    background: #0005;
    width: 100%;
}