@media print {
    @page { margin: 0; }
    body { margin: 1.6cm; }
}

@font-face {
    font-family: Nunito; /* Имя шрифта */
    src: url('/fonts/Nunito-Regular.ttf'); /* Путь к файлу со шрифтом */
}

body {
	font-family: Nunito;
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
}

.content {
    width: 90vw;
    margin: 20px auto 20px auto;
}

form, table, .table {
    margin: 0;
}

a:focus, button:focus {
    box-shadow: none !important;
}

.input-group-text {
    min-width: 100px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=file] {
    display: none;
    overflow: hidden;
}

.dropdown-menu {
    background-color: #343a40;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    color: #343a40;
}

#document_upload {
    margin-left: .25rem !important;
}

.arrow {
    position: fixed;
    top: 70px;
    right: -10px;
    cursor: pointer;
    margin: 20px;
    width: 66px;
    height: 30px;
}

.arrow-left {
    position: absolute;
    background-color: transparent;
    top: 10px;
    left: 0;
    width: 40px;
    height: 10px;
    display: block;
    transform: rotate(35deg);
    float: right;
    border-radius: 2px;
}

.arrow-left:after {
    content: "";
    background-color: #007bff;
    width: 40px;
    height: 10px;
    display: block;
    float: right;
    border-radius: 6px 10px 10px 6px;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    z-index: -1;
}

.arrow-right {
    position: absolute;
    background-color: transparent;
    top: 10px;
    left: 26px;
    width: 40px;
    height: 10px;
    display: block;
    transform: rotate(-35deg);
    float: right;
    border-radius: 2px;
}

.arrow-right:after {
    content: "";
    background-color: #007bff;
    width: 40px;
    height: 10px;
    display: block;
    float: right;
    border-radius: 10px 6px 6px 10px;
    transition: all 0.5s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    z-index: -1;
}

.open .arrow-left:after {
    transform-origin: center center;
    transform: rotate(-70deg);
}

.open .arrow-right:after {
    transform-origin: center center;
    transform: rotate(70deg);
}

/*@media all and (min-width: 992px) {*/
/*    .navbar .nav-item .dropdown-menu{ display: none; }*/
/*    .navbar .nav-item:hover .nav-link{ color: #000;  }*/
/*    .navbar .nav-item:hover .dropdown-menu{ display: block; }*/
/*    .navbar .nav-item .dropdown-menu{ margin-top:0; }*/
/*}*/

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .dropdown-menu li{
        position: relative;
    }
    .dropdown-menu .submenu{
        display: none;
        position: absolute;
        left:100%; top:-7px;
    }
    .dropdown-menu .submenu-left{
        right:100%; left:auto;
    }

    .dropdown-menu > li:hover{ background-color: #f1f1f1 }
    .dropdown-menu > li:hover > .submenu{
        display: block;
    }
}
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {

    .dropdown-menu .dropdown-menu{
        margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
    }

}
/* ============ small devices .end// ============ */
