@font-face {
    font-family: 'Roboto-Black';
    src: url(../fonts/Roboto-Black.ttf);
}

@font-face {
    font-family: 'Roboto-Blackitalic';
    src: url(../fonts/Roboto-Blackitalic.ttf);
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url(../fonts/Roboto-Bold.ttf);
}

@font-face {
    font-family: 'Roboto-Bolditalic';
    src: url(../fonts/Roboto-Bolditalic.ttf);
}

@font-face {
    font-family: 'Roboto-Italic';
    src: url(../fonts/Roboto-Italic.ttf);
}

@font-face {
    font-family: 'Roboto-Light';
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
    font-family: 'Roboto-Lightitalic';
    src: url(../fonts/Roboto-Lightitalic.ttf);
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
    font-family: 'Roboto-Mediumitalic';
    src: url(../fonts/Roboto-Mediumitalic.ttf);
}

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

@font-face {
    font-family: 'Roboto-Thin';
    src: url(../fonts/Roboto-Thin.ttf);
}

@font-face {
    font-family: 'Roboto-Thinitalic';
    src: url(../fonts/Roboto-Thinitalic.ttf);
}

body {
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    background-color: rgb(15 111 184) !important;
}

form#form {
    margin-bottom: 2rem;
}

/* Стили для основного контента */
.content {
    display: block;
}

.display {
    display: block;
}

a#pc {
    font-weight: 800;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translate(0, -150%);
    border: 2px solid #ccc;
    padding: 20px;
    max-width: 50%;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--button);
    color: var(--button-color);
    border-radius: 4rem;
    font-size: 2.4vw;
    letter-spacing: 0.05rem;
    background: #bfbebe;
}

.logo {
    z-index: 90;
    height: auto;
    /* Высота будет автоматически рассчитана, чтобы сохранить пропорции */
    position: absolute;
    top: -4%;
    /* Размещаем логотип на 50% от верхнего края родительского элемента */
    left: 50%;
    /* Размещаем логотип на 50% от левого края родительского элемента */
    /*transform: translate(-50%, 0%) scale(0.5);*/
    transform: translate(-50%, 200%) scale(1);
    /* Центрируем и уменьшаем логотип в два раза */
}

.logo img {
    max-width: 100%;
    /* Максимальная ширина изображения равна ширине контейнера */
    height: auto;
    /* Высота автоматически рассчитывается, чтобы сохранить пропорции */
}

.logo a {
    all: initial;
    /* Сброс всех стилей */
}

.zakazbtnend {
    display: table;
    margin: 0 auto;
    width: 100%;
}

.zakazbtnend a {
    margin: 2% 5%; 
    width: 40%;
}

ul {
    padding-inline-start: 0px;
}

li.mb-3 {
    position: relative;
    /* Для позиционирования псевдоэлемента */
}

li.mb-3::after {
    content: "";
    /* Добавляем содержимое псевдоэлемента */
    position: absolute;
    /* Абсолютное позиционирование */
    bottom: 0;
    /* Расположение внизу */
    left: 0;
    /* Расположение слева */
    width: 95%;
    /* Ширина подчеркивания (70% от ширины элемента li) */
    height: 2px;
    /* Толщина подчеркивания */
    background-color: #ccc;
    /* Серый цвет */
    bottom: -5px;
    /* отступ вниз на 10 пикселей */
}

/* Для установки стилей для ссылки внутри li */
li.mb-3 a {
    text-decoration: none;
    /* Убираем стандартное подчеркивание ссылки */
    color: #333;
    /* Цвет текста ссылки */
}

table.table-3 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    white-space: nowrap;
}

table.table-3 tr {
    background-color: #f8f8f8;
}

table.table-3 th,
table.table-3 td {
    text-align: left;
    padding: 8px;
    border: 1px solid #ddd;
}

/* Медиа-запрос для адаптации к мобильным устройствам */
@media only screen and (max-width: 800px) {

    /* Изменение стилей для маленьких экранов */

    h1 {
        text-align: center;
    }

    .content {
        padding: 10px;
        display: block;
    }

    .display {
        display: block;
    }

    .zakazbtnend a {
        margin: 2% 5%; 
        width: 90%;
    }

    .min-h-screen {
        position: absolute;
        top: 0;
        left: 0;
        /*height: 100%;*/
        width: 100%;
        margin-top: 35%;
    }

    table.table-3 {
        border: 0;
    }



    table.table-3 thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table.table-3 tr {
        border-bottom: 1px solid #ddd;
        display: block;
        margin-bottom: 30px;
    }

    table.table-3 td {
        display: block;
        text-align: right;
        min-height: 40px;
    }

    table.table-3 td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table.table-3 td:last-child {
        border-bottom: 0;
    }
}

/* Медиа-запрос для адаптации к ПК устройствам */
@media only screen and (min-width: 801px) {
    .min-h-screen {
        position: absolute;
        /*top: 30%;*/
        left: 0;
        /* height: 100%; */
        width: 100%;
        margin-top: 210px;
        /* margin-top: 50%; */
        /* transform: translate(0%, 150%) scale(1); */
    }
}

.block {
    display: block;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.border-2 {
    border-width: 2px;
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.w-full {
    width: 100%;
}

.p-2 {
    padding: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

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

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}

.font-bold {
    font-weight: 700;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded {
    border-radius: 0.25rem;
}

.duration-200 {
    transition-duration: 200ms;
}

.transition {
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

button.bg-gray-300.hover\:bg-gray-400.text-black.font-bold.py-2.px-4.rounded.w-full.transition.duration-200 {
    width: 100%;
}

select#group {
    width: 100%;
}

select#block {
    width: 100%;
}

select#typecars {
    width: 100%;
}

select#carrefill {
    width: 100%;
}

select#userrefill {
    width: 100%;
}

select#carroute {
    width: 100%;
}

select#cargoroute {
    width: 100%;
}

.width100 {
    width: 100% !important;
}

input#namegroup {
    width: 95%;
}

.width95 {
    width: 95% !important;
}

i.fa.fa-search {
    position: absolute;
    margin-left: 74vw;
    margin-top: -28px;
}

form#formsearch {
    width: 100%;
}

a#submitFormLink {
    display: block;
}

.bg-gray-310.w-4.h-4.rounded-full.mr-2 {
    position: absolute;
    right: 10%;
}

.text-info {
    font-size: 0.8rem;
    line-height: 1.75rem;
}

i.fa.fa-ambulance.fa-lg {
    transform: scaleX(-1);
}

/* jGrowl showcase */
.jgrowl-showcase .jGrowl {
    position: static;
}

.jgrowl-showcase .jGrowl:first-child {
    margin-bottom: 10px;
}

.jgrowl-showcase .jGrowl .jGrowl-notification {
    border: none;
    display: block;
    margin: 0;
    width: 100%;
}

/*===== jGrowl notifications ====*/
.jGrowl {
    z-index: 9999;
    color: #fff;
}

.jGrowl {
    position: absolute;
}

body>.jGrowl {
    position: fixed;
}

.jGrowl.top-left {
    left: 0px;
    top: 0px;
}

.jGrowl.top-right {
    right: 25px;
    top: 20px;
}

.jGrowl.bottom-left {
    left: 0px;
    bottom: 0px;
}

.jGrowl.bottom-right {
    right: 25px;
    bottom: 25px;
}

.jGrowl.center {
    top: 68px;
    width: 230px;
    left: 50%;
    margin-left: -115px;
}

.center .jGrowl-notification,
.center .jGrowl-closer {
    margin-left: auto;
    margin-right: auto;
}

.jGrowl .jGrowl-notification {
    border: none;
    color: #fff;
    opacity: .95;
    filter: alpha(Opacity=95);
    width: 230px;
    padding: 12px 18px;
    margin-top: 5px;
    text-align: left;
    display: none;
    background-color: #32434d;
}

.jGrowl-notification.growl-error {
    background-color: #D65C4F;
}

.jGrowl-notification.growl-success {
    background-color: #65B688;
}

.jGrowl-notification.growl-warning {
    background-color: #db765b;
}

.jGrowl .jGrowl-notification .jGrowl-header {
    font-weight: 300;
    font-size: 13px;
    padding: 0 0 2px 0;
}

.jGrowl .jGrowl-notification .jGrowl-header:empty {
    padding: 0;
}

.jGrowl .jGrowl-notification .jGrowl-close {
    opacity: .6;
    filter: alpha(Opacity=60);
    z-index: 99;
    float: right;
    font-weight: 300;
    font-size: 14px;
    cursor: pointer;
}

.jGrowl .jGrowl-notification .jGrowl-close:hover {
    opacity: .8;
    filter: alpha(Opacity=80);
}

.jGrowl .jGrowl-closer {
    padding: 5px 0;
    cursor: pointer;
    font-size: 11px;
    margin-top: 5px;
    font-weight: 600;
    text-align: center;
    background: #454545;
    color: #ffffff;
    width: 222px;
}

.statheadername {
    display: none;
}

@media print {
    .jGrowl {
        display: none;
    }

    .logo {
        display: none;
    }

    .mb-6 {
        display: none;
    }

    header.flex.justify-between.items-center.mb-6 {
        display: none;
    }

    a.text-gray-700.font-medium {
        display: none;
    }

    .statheadername {
        display: block;
    }

    .w-full {
        width: 100% !important;
    }

    body {
        background-color: rgb(255, 255, 255);
    }

    .bg-gray-100 {
        --tw-bg-opacity: 1;
        background-color: rgb(255, 255, 255);
    }

    .bg-white {
        border-radius: 0rem !important;
        background-color: rgb(255 255 255 / var(--tw-bg-opacity));
        margin-bottom: 80px;
    }

    .shadow-lg {
        --tw-shadow: 0 10px 15px -3px rgb(255, 255, 255), 0 4px 6px -4px rgb(255, 255, 255) !important;
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color) !important;
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #fff), var(--tw-ring-shadow, 0 0 #fff), var(--tw-shadow) !important;
    }

    table.table-3 tr {
        background-color: #fff !important;
    }

    .min-h-screen {
        position: absolute;
        left: 0;
        width: 100% !important;
        margin-top: 0px !important;
    }
}