:root {
    --printoffice-primary-1: rgba(17, 112, 253, 1);
    --printoffice-primary-2: rgba(17, 112, 253, .9);
    --printoffice-primary-3: rgba(17, 112, 253, .8);
    --printoffice-primary-4: rgba(17, 112, 253, .7);
    --printoffice-primary-5: rgba(17, 112, 253, .5);
    --printoffice-primary-6: rgba(17, 112, 253, .2);
    --printoffice-primary-7: rgba(17, 112, 253, .15);
    --printoffice-primary-8: rgba(17, 112, 253, .1);
    --printoffice-primary-9: rgba(17, 112, 253, .03);
    --printoffice-opacity: rgba(17, 112, 253, .2);
    --printoffice-danger: rgb(252, 17, 75);
    --printoffice-warning: rgb(252, 213, 17);
    --printoffice-banner-lastword: rgb(252, 213, 17);
    --printoffice-success: rgb(36, 252, 17);
    --printoffice-info: rgb(17, 252, 252);
    --printoffice-gray: #f9fafc;
    --printoffice-black: #2b2f33;
    --printoffice-light: #fff;
    --printoffice-description: #333;
}

pre {
    width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    font-weight: normal;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
}

a {
    color: var(--printoffice-description);
}

a:hover {
    color: var(--printoffice-primary-3);
}

h4 {
    font-size: calc(1.275rem + .3vw);
}

@media (max-width: 768px) {
    h4 {
        font-size: calc(1.275rem + .2vw);
    }
}

@media (max-width: 480px) {
    h4 {
        font-size: calc(1.275rem + .1vw);
    }
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-printoffice-primary-1{
    color: var(--printoffice-primary-1);
}

.text-printoffice-primary-8{
    color: var(--printoffice-primary-8);
}

.text-printoffice-light{
    color: var(--printoffice-light);
}

.text-printoffice-black{
    color: var(--printoffice-black);
}

.text-printoffice-description{
    color: var(--printoffice-description);
}

.text-printoffice-danger{
    color: var(--printoffice-danger);
}

.text-printoffice-warning {
  color: var(--printoffice-warning);
}


.text-printoffice-banner-lastword {
  color: var(--printoffice-banner-lastword);
}

.fs-sm {
    font-size: 12px;
}

.fs-md {
    font-size: 14px;
}

.fs-xl {
    font-size: 16px;
}

.bg-printoffice-primary-1{
    background-color: var(--printoffice-primary-1);
}

.bg-printoffice-primary-2{
    background-color: var(--printoffice-primary-2);
}

.bg-printoffice-primary-3{
    background-color: var(--printoffice-primary-3);
}

.bg-printoffice-primary-4{
    background-color: var(--printoffice-primary-4);
}

.bg-printoffice-primary-5{
    background-color: var(--printoffice-primary-5);
}

.bg-printoffice-primary-6{
    background-color: var(--printoffice-primary-6);
}

.bg-printoffice-primary-7{
    background-color: var(--printoffice-primary-7);
}

.bg-printoffice-primary-8{
    background-color: var(--printoffice-primary-8);
}

.bg-printoffice-primary-9{
    background-color: var(--printoffice-primary-9);
}

.bg-printoffice-light{
    background-color: var(--printoffice-light);
}

.bg-printoffice-gray{
    background-color: var(--printoffice-gray);
}

.bg-printoffice-opacity{
    background-color: var(--printoffice-opacity);
}

.bg-printoffice-black{
    background-color: var(--printoffice-black) !important;
    color: #fff;
}

.bg-printoffice-black a{
    color: #fff;
}

.bg-printoffice-black a:hover{
    color: var(--printoffice-warning);
}

.bg-printoffice-warning{
    background-color: var(--printoffice-warning) !important;
    color: var(--printoffice-black);
}

.bg-printoffice-warning a{
    color: var(--printoffice-black);
}

.bg-printoffice-warning a:hover{
    color: var(--printoffice-primary-1);
}

.printoffice-shadow {
  box-shadow: 0 1rem 2rem var(--printoffice-primary-5) !important;
}

.printoffice-container{
    width: 100vw;
    padding: 0 5vw 0 5vw;
}

.pointer {
    cursor: pointer;
}

.br-1 {
    border-radius: 18px;
}

.br-2 {
    border-radius: 8px;
}

.br-50 {
    border-radius: 50%;
}

.b-none {
    border: none !important;
}


.hero-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 45px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
}

.sub-header {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


@media (max-width: 1200px) {
    .sub-header {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .sub-header {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .sub-header {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .sub-header {
        font-size: 12px;
    }
}

.mega-menu {
    border-radius: 0;
    border: 0;
    height: 100vh;
    width: 100vw;
    top: 51px!important;
    left: 0;
    right: 0;
    overflow-x: hidden;
    background-color: var(--printoffice-light);
}

.logoHero {
  width: 195px;
  height: 49px;
  max-width: 80vw; 
  max-height: 20vh;
  box-sizing: border-box;
  background-image: var(--logo-image);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
}

@media (max-width: 480px) {
  .logoHero {
    width: 150px;
    height: 38px;
  }
}

.logoHeroBottom {
    width: 195px;
    height: 49px;
    box-sizing: border-box;
    background-image: var(--logo-image);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.card {
    border-radius: 18px;
    border-color: transparent;
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.card-hover:hover {
    box-shadow: 0 4px 8px var(--printoffice-primary-6) !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.card-name {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.card-hover:hover .card-body > .card-name {
    color: var(--printoffice-primary-1) !important;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.card-275 {
    height: 275px;
}

.card-w-275 {
    width: 275px;
}

.card-directory {
    background-position: right bottom;
    background-repeat: no-repeat;
    transition: background-position 0.3s ease;
    background-repeat: no-repeat;
    background-position: calc(100% + 15px) calc(100% + 15px);
    background-size: 220px 220px;
}

.card-directory:hover {
    background-position: calc(100% + 13px) calc(100% + 13px);
}

.card-header {
  background-color: transparent;
  border-bottom: none;
}

.card-directory .card-body {
    overflow: hidden;
}

.card-footer {
  background-color: transparent;
  border-top: none;
}

.column-fill-sm {
    column-count: 1;
    height: 100px !important;
}

.column-fill-xl {
    column-fill: auto;
    column-count: auto;
    height: 100px !important;
}

@media (min-width: 576px) {
  .column-fill-xl {
    column-count: 1;
  }
}

@media (min-width: 992px) {
  .column-fill-xl {
    column-count: 3;
  }
}



.cart .cart-list {
    visibility: hidden;
    z-index: 1000;
    position: absolute;
    box-shadow: rgba(0,  0,  0,  .16) 0 8px 12px;
    transform: scale(0);
    transform-origin: left top;
    background: var(--color-blur);
    backdrop-filter:  blur(7px);
    transition: all 0.4s ease 0s,  opacity 0.2s ease-in-out 0s;
    border-radius: 10px;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,  0,  0,  .08);
    border-image: initial;
    opacity: 0;
    max-width: 500px;
    padding: 20px;
}
.cart:hover .cart-list {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
}

.glow {
    padding: 10px 20px;
    font-size: 18px;
    color: var(--printoffice-light);
    background-color: var(--printoffice-primary-2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
 
.glow:hover {
    background-color: var(--printoffice-primary-1);
}

.glow::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
    transform-origin: bottom left;
    animation: wave 5s ease-out infinite;
}

.btn-primary {
    background-color: var(--printoffice-primary-2);
    border-color: var(--printoffice-primary-2);
}

.btn-primary:hover {
    background-color: var(--printoffice-primary-1);
    border-color: var(--printoffice-primary-1);
}

.btn-primary:focus {
    background-color: var(--printoffice-primary-1);
    border-color: var(--printoffice-primary-1);
}

.btn-info {
    background-color: var(--printoffice-primary-8);
    border-color: var(--printoffice-primary-8);
    color: var(--printoffice-primary-1);
}

.btn-info:hover {
    background-color: var(--printoffice-primary-7) !important;
    border-color: var(--printoffice-primary-7) !important;
    color: var(--printoffice-primary-1);
}

.btn-info:focus {
    background-color: var(--printoffice-primary-6);
    border-color: var(--printoffice-primary-6);
    color: var(--printoffice-primary-1);
}

.btn-info-soft {
    background-color: #f7faff;
    border-color: #f7faff;
    color: var(--printoffice-primary-1);
}

.btn-info-soft:hover {
    background-color: var(--printoffice-primary-8);
    border-color: #f7faff;
    color: var(--printoffice-primary-1);
}

.btn-info-soft:focus {
    background-color: var(--printoffice-primary-8);
    border-color: #f7faff;
    color: var(--printoffice-primary-1);
}

.btn-info-soft-1 {
    background-color: #e6f0ff;
    border-color: #e6f0ff;
    color: var(--printoffice-primary-1);
}

.btn-info-soft-1:hover {
    background-color: var(--printoffice-primary-8);
    border-color: #e6f0ff;
    color: var(--printoffice-primary-1);
}

.btn-info-soft-1:focus {
    background-color: var(--printoffice-primary-8);
    border-color: #e6f0ff;
    color: var(--printoffice-primary-1);
}

.btn-dark {
    background-color: var(--printoffice-description);
    border-color: var(--printoffice-description);
}

.btn-dark:hover {
    background-color: var(--printoffice-black) !important;
    border-color: var(--printoffice-black) !important;
}

.btn-dark:focus {
    background-color: var(--printoffice-black) !important;
    border-color: var(--printoffice-black) !important;
    color: var(--printoffice-light) !important;
}

.btn-auto {
    font-size: 16px;
    line-height: 16px;
    padding: 11px 24px;
}


.alert-cancel {
    background-color: var(--printoffice-primary-8);
    border-color: var(--printoffice-primary-8);
    color: var(--printoffice-primary-1);
}

.alert-cancel:hover {
    background-color: var(--printoffice-primary-7) !important;
    border-color: var(--printoffice-primary-7) !important;
    color: var(--printoffice-primary-1);
}

.alert-cancel:focus {
    background-color: var(--printoffice-primary-6);
    border-color: var(--printoffice-primary-6);
    color: var(--printoffice-primary-1);
}

.alert-confirm:hover {
    border-color: var(--printoffice-primary-6);
}

.bg-printoffice-primary-3 .btn-auto,
.bg-printoffice-primary-4 .btn-auto,
.bg-printoffice-primary-5 .btn-auto,
.bg-printoffice-primary-6 .btn-auto,
.bg-printoffice-primary-7 .btn-auto,
.bg-printoffice-primary-8 .btn-auto,
.bg-printoffice-primary-9 .btn-auto {
    background-color: var(--printoffice-description);
    border-color: var(--printoffice-description);
    color: var(--printoffice-light);
}

.bg-printoffice-primary-3 .btn-auto:hover,
.bg-printoffice-primary-3 .btn-auto:focus,
.bg-printoffice-primary-4 .btn-auto:hover,
.bg-printoffice-primary-4 .btn-auto:focus,
.bg-printoffice-primary-5 .btn-auto:hover,
.bg-printoffice-primary-5 .btn-auto:focus,
.bg-printoffice-primary-6 .btn-auto:hover,
.bg-printoffice-primary-6 .btn-auto:focus,
.bg-printoffice-primary-7 .btn-auto:hover,
.bg-printoffice-primary-7 .btn-auto:focus,
.bg-printoffice-primary-8 .btn-auto:hover,
.bg-printoffice-primary-8 .btn-auto:focus,
.bg-printoffice-primary-9 .btn-auto:hover,
.bg-printoffice-primary-9 .btn-auto:focus {
    background-color: var(--printoffice-black);
    border-color: var(--printoffice-black);
}

.bg-printoffice-primary-2 .btn-auto {
    background-color: var(--printoffice-light);
    border-color: var(--printoffice-light);
    color: var(--printoffice-description);
}

.bg-printoffice-primary-2 .btn-auto:hover,
.bg-printoffice-primary-2 .btn-auto:focus {
    background-color: var(--printoffice-gray);
    border-color: var(--printoffice-gray);
}


.bg-printoffice-black .btn-auto {
    background-color: var(--printoffice-light);
    border-color: var(--printoffice-light);
    color: var(--printoffice-description);
}

.bg-printoffice-black .btn-auto:hover,
.bg-printoffice-black .btn-auto:focus {
    background-color: var(--printoffice-warning);
    border-color: var(--printoffice-warning);
}

.bg-printoffice-warning .btn-auto {
    background-color: var(--printoffice-black);
    border-color: var(--printoffice-black);
    color: #fff;
}

.bg-printoffice-warning .btn-auto:hover,
.bg-printoffice-warning .btn-auto:focus {
    background-color: var(--printoffice-primary-1);
    border-color: var(--printoffice-primary-1);
}

.navbar-nav {
  --bs-nav-link-color: var(--printoffice-description);
  --bs-nav-link-hover-color: var(--printoffice-primary-3);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  list-style: none;
}
.nav-link {
  color: var(--printoffice-description);
}

@keyframes wave {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    100% {
        transform: translateX(100%) translateY(0);
    }
}

.examples-container {
    overflow-x: scroll !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    cursor: grab;
    display: flex;
    min-width: 100%;
}

.examples-container::-webkit-scrollbar {
    display: none;
}

.example-item {
    border-color: transparent;
    border-radius: 18px;
    min-width: 250px;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.example-item .bg-printoffice-primary-6 {
    transition: .3s;
}

.example-item:hover .bg-printoffice-primary-6 {
    transition: .3s;
    background-color: var(--printoffice-primary-8) !important;
}

.step {
    width: 51.2px;
    height: 51.2px;
    background-color: var(--printoffice-light);
    color: var(--printoffice-primary-1);
    border-radius: 18px;
} 

.btn:hover {
    background-color: var(--printoffice-light);
    border-color: var(--printoffice-primary-8);
}

.btn-check:active + .btn, .form-check-inline .btn-check:checked + .btn, .btn.active, .btn.show, .btn:active {
    background-color: var(--printoffice-primary-8);
    border-color: var(--printoffice-primary-8);
    color: var(--printoffice-primary-1);
}

.form-check-inline .btn {
  background-color: var(--printoffice-light);
}

.textarea {
    height: 150px !important;
    resize: none;
}

.textarea-full {
    height: 80vh !important;
    resize: none;
}

.fileupload {
    overflow: hidden;
    position: relative;
}

.fileupload input.upload {
    cursor: pointer;
    font-size: 20px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.breadcrumb .active {
    background-color: var(--printoffice-default);
}

.card-hidden-buttons button {
    opacity: 0;
    transition: .1s;
}

.card-hidden-buttons:hover button {
    opacity: 1;
    transition: .1s;
}


.box-place {
    border-radius:11px;
    width: 57px;
    height: 57px;
    display: inline-block;
    border: 1px solid var(--printoffice-primary-8);
    background: url("/images/workflow_background_day.svg") repeat 0 0;
}
 
.box-place:nth-child(2){
    margin: 0 2px 0 4px;
}
.box-place:nth-child(3){
    margin: 0 4px 0 2px;
}

.block-captcha {
    overflow: hidden;
    text-align: center;
    border-radius:11px;
    width: 57px;
    height: 57px;
    font-size: 59px;
    font-weight: 700;
    cursor: move;
    background-size: 59px, auto, contain !important;
}

.block-captcha-place{
    width: 57px;
    height: 57px;
    border-radius: 11px;
}

.block-captcha-place:nth-child(2){
    margin: 0 2px 0 4px;
}

.block-captcha-place:nth-child(3){
    margin: 0 4px 0 2px;
}

.fs-small {
    font-size: 12px;
}

.modal-btn-desc {
    width: 0;
    transition: .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-flex;
    justify-content: center;
}

.modal-btn-save:hover .modal-btn-desc {
    width: 110px;
}

.close:hover .modal-btn-desc {
    width: 90px;
}

.accordion {
    --bs-accordion-color: var(--printoffice-black);
    --bs-accordion-bg: var(--bs-accordion-btn-bg);
    --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
    --bs-accordion-border-color: var(--color-dark);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--printoffice-black);
    --bs-accordion-btn-bg: var(--printoffice-primary-9);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23var(--printoffice-black)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #0c63e4;
    --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button:not(.collapsed) {
    color: var(--printoffice-black);
    background-color: var(--printoffice-primary-8);
    box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
    border-radius: 18px !important;
}

.accordion-flush .accordion-item {
  border-radius: 18px !important;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 18px !important;
}

.big-icon {
    font-size: 100px;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.wave-image {
    position: relative;
    width: 18px;
    height: 18px;
}

.wave-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wave-image::before,
.wave-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
    animation: ripple 3s linear infinite;
}

.wave-image::before {
    width: 18px;
    height: 18px;
    background-color: var(--printoffice-primary-8);
    animation-delay: 0.5s;
}

.wave-image::after {
    width: 24px;
    height: 24px;
    background-color: var(--printoffice-primary-7);
    animation-delay: 1s;
}

@keyframes ripple {
    from {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
    }
    to {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}



@-webkit-keyframes scaleAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleAnimation {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes drawCircle {
    0% {
        stroke-dashoffset: 151px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 151px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes drawCheck {
    0% {
        stroke-dashoffset: 36px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: 36px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#successAnimationCircle {
    stroke-dasharray: 151px 151px;
    stroke: var(--printoffice-primary-1);
}

#successAnimationCheck {
    stroke-dasharray: 36px 36px;
    stroke: var(--printoffice-primary-1);
}

#successAnimationResult {
    fill: var(--printoffice-primary-1);
    opacity: 0;
}

#successAnimation.animated {
    -webkit-animation: 1s ease-out 0s 1 both scaleAnimation;
    animation: 1s ease-out 0s 1 both scaleAnimation;
}

#successAnimation.animated #successAnimationCircle {
    -webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
}

#successAnimation.animated #successAnimationCheck {
    -webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
    animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
}

#successAnimation.animated #successAnimationResult {
    -webkit-animation: 0.3s linear 0.9s both fadeIn;
    animation: 0.3s linear 0.9s both fadeIn;
}

.printoffice-header {
    user-select: none;
}

@-webkit-keyframes bg-scrolling-reverse {
  100% {
    background-position: -50px 50px;
  }
}
@-moz-keyframes bg-scrolling-reverse {
  100% {
    background-position: -50px 50px;
  }
}
@-o-keyframes bg-scrolling-reverse {
  100% {
    background-position: -50px 50px;
  }
}
@keyframes bg-scrolling-reverse {
  100% {
    background-position: -50px 50px;
  }
}
@-webkit-keyframes bg-scrolling {
  0% {
    background-position: -50px 50px;
  }
}
@-moz-keyframes bg-scrolling {
  0% {
    background-position: -50px 50px;
  }
}
@-o-keyframes bg-scrolling {
  0% {
    background-position: -50px 50px;
  }
}
@keyframes bg-scrolling {
  0% {
    background-position: -50px -50px;
  }
}

.welcome-cover {
  background-image: url('/admin/bg.webp'); /* Замените на путь к вашему изображению */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
    background-image: url('/bs5/images/workflow_background_day.svg'); /* Замените на путь к вашему изображению */

    /*background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAIAAAADnC86AAAEsGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS41LjAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczpleGlmPSJodHRwOi8vbnMuYWRvYmUuY29tL2V4aWYvMS4wLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgdGlmZjpJbWFnZUxlbmd0aD0iNDAiCiAgIHRpZmY6SW1hZ2VXaWR0aD0iNDAiCiAgIHRpZmY6UmVzb2x1dGlvblVuaXQ9IjIiCiAgIHRpZmY6WFJlc29sdXRpb249IjcyLzEiCiAgIHRpZmY6WVJlc29sdXRpb249IjcyLzEiCiAgIGV4aWY6UGl4ZWxYRGltZW5zaW9uPSI0MCIKICAgZXhpZjpQaXhlbFlEaW1lbnNpb249IjQwIgogICBleGlmOkNvbG9yU3BhY2U9IjEiCiAgIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiCiAgIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjMtMTItMTVUMTI6Mzc6NDYrMDM6MDAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjMtMTItMTVUMTI6Mzc6NDYrMDM6MDAiPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJwcm9kdWNlZCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWZmaW5pdHkgUGhvdG8gMS4xMC42IgogICAgICBzdEV2dDp3aGVuPSIyMDIzLTEyLTE1VDEyOjM3OjQ2KzAzOjAwIi8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+Cjw/eHBhY2tldCBlbmQ9InIiPz5FLl9QAAABgWlDQ1BzUkdCIElFQzYxOTY2LTIuMQAAKJF1kctLQkEUhz+16GUY1KJFkIS10rACqU0LpRdUCzXIaqPXV6B2uVcJaRu0DQqiNr0W9RfUNmgdBEURRNtaF7UpuZ2rgRF5hjPnm9/MOcycAWs4o2T1Oi9kc3ktOOF3zkcWnA3P2HHQRDeNUUVXZ0LjYWraxx0WM954zFq1z/1rLfGEroClUXhUUbW88KTw9GpeNXlbuENJR+PCp8JuTS4ofGvqsQq/mJyq8JfJWjgYAGubsDP1i2O/WElrWWF5Oa5spqD83Md8iT2RmwtJ7BHvQifIBH6cTDFGAB8DjMjsw8Mg/bKiRr63nD/LiuQqMqsU0VgmRZo8blELUj0hMSl6QkaGotn/v33Vk0ODlep2P9Q/GcZbLzRsQWnTMD4PDaN0BLZHuMhV81cOYPhd9M2q5toHxzqcXVa12A6cb0DngxrVomXJJm5NJuH1BFoj0H4NzYuVnv3sc3wP4TX5qivY3YM+Oe9Y+gY7jWfS1eL/EwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAKJJREFUWIXtl7EOgCAMRHvGTf7C1d3//yaKax1cpTEtaNTeerk8wFoK5mWligBkzjWXiNKUFJcLK+6geCKiuE5p4K4KcIA/CAZgDnuyo6c3ebI//MYBDnCAW2n0zE1KFgAzC1WHp147FhGFWgXfcHOcg83zJYCL2cZHfX3F//udGoBtldgAbKvE5zqXuTcRUdmKst2OM5fnOfnmqg5wgAN8aAcfejSuFnhQsgAAAABJRU5ErkJggg==") repeat 0 0;*/
    background-color: rgba(0, 0, 0, 0);
    -webkit-animation: bg-scrolling-reverse 3.92s infinite;
    -moz-animation: bg-scrolling-reverse 3.92s infinite;
    -o-animation: bg-scrolling-reverse 3.92s infinite;
    animation: bg-scrolling-reverse 3.92s infinite;
    animation-timing-function: ease;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

.title-welcome {
  width: 100%;
  min-height: 100vh !important; 
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
  .title-cover {
    /* Отменяем фиксированное прикрепление фона на мобильных, чтобы избежать проблем с отображением */
    background-attachment: scroll;
    
    /* Уменьшаем минимальную высоту, если нужно */
    min-height: 50vh;
  }
}