:root {
    --default-bg: brown;
    --sub-default-bg: rgba(200, 157, 157, 0.942);
    --list-hover: rgba(200, 157, 157, 0.642);
    --default-color: whitesmoke;
}
* {
    padding: 0;
    margin: 0;
    font-family: "Assistant", sans-serif;
    font-weight: 700;
}

.Fpage {
    margin: 0;
    padding: 0;
    min-width: 100%;
    min-height: 100vh;
    background: whitesmoke;
}

.slide,
.slide img {
    height: 550px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    background-color: whitesmoke;
    height: 150px;
    display: flex;
    padding: 0 40px;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.brand-name {
    font-size: 13px;
    line-height: 2.5ch;
}
#brand {
    font-size: 40px;
    /*margin-top: 20px;*/
    color: var(--default-bg);
}

.nav-links {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    place-items: center;
    height: 40px;
    font-size: 15px;
    background: rgb(5, 5, 66);
    box-shadow: 0 0 1px 1px rgb(5, 5, 66, 0.7), 0 0 2px 2px rgb(5, 5, 66, 0.4);
    color: whitesmoke;
    padding: 2px 20px;
}

.nav-links ul {
    display: flex;
    flex-flow: row;
    height: 40px;
    margin: 14px 0;
    place-items: center;
    z-index: 1;
    position: relative;
}

.nav-links ul li {
    list-style: none;
    padding: 8px 3px;
    margin: 0 4px;
}

.nav-links ul li a {
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    color: whitesmoke;
    padding: 8px 40px;
}

.nav-links ul li a:first-child {
    margin-left: 0;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
    background: whitesmoke;
    color: rgb(38, 5, 66);
    transition: all 0.2s ease;
}
.nav-links ul li ul {
    display: none;
    z-index: 1;
    position: absolute;
    top: 25px;
    white-space: nowrap;
    background: rgb(5, 5, 66);
    box-shadow: 0 0 1px 1px rgb(5, 5, 66, 0.7), 0 0 2px 2px rgb(5, 5, 66, 0.4);
    padding: 4px 0;
    height: auto;
    border-radius: 0 0 4px 4px;
}

.nav-links ul ul li a {
    padding: 8px 25px;
    color: whitesmoke;
}

.nav-links ul li:hover ul {
    display: block;
}
.nav-links ul ul li:hover {
    background: whitesmoke;
    color: rgb(38, 5, 66);
    transition: all 0.2s ease;
}

.services {
    width: 100%;
    display: flex;
    place-items: center;
    justify-content: space-around;
    padding: 10px 5px;
    flex-wrap: wrap;
    box-shadow: 5px 5px 0px rgb(0, 0, 0, 0.6),
        inset 10px 10px 70px rgb(0, 0, 0, 0.6);
}
.services > .service-card {
    width: auto;
    max-width: 150px;
    text-align: center;
    font-size: 16px;
    margin: 0 calc(100vw - 97vw);
}
.services > .service-card > .service {
    width: 150px;
    height: 150px;
    background: var(--i);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--i);
}
.services > .service-card > .service > div {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: whitesmoke;
    box-shadow: 0 0 2px 2px var(--default-color), inset 5px 5px 15px var(--i);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.contacts {
    position: relative;
    height: 440px;
    background-image: url("../images/bg8.jpg");
    background-position: center;
}

.contacts-body {
    position: absolute;
    top: 0;
    left: 0;
    height: 440px;
    background: rgb(0, 0, 0, 0.1);
    width: 100%;
    padding: 0;
}

.contacts-info {
    width: 100vw;
    padding: 0;
}
.contact-section {
    width: 100%;
    position: relative;
    display: flex;
    place-items: center;
    justify-content: center;
    flex-flow: wrap row;
    flex-grow: inherit;
    padding: 0;
}
.contact {
    position: absolute;
    bottom: 10px;
}
.contact-icon {
    color: var(--c);
    font-size: 30px;
    cursor: pointer;
    margin-right: 15px;
}
.contact-icon:hover {
    font-size: 35px;
    color: rgba(0, 0, 0, 0.556);
    transition: all 0.4s ease-in-out;
}

.info {
    background: white;
    width: 400px;
    margin: 10px 15px;
    min-height: 330px;
    border-radius: 5px;
    padding: 10px 20px;
    display: flex;
    position: relative;
    box-shadow: 10px 10px 70px rgb(0, 0, 0, 0.6);
}

.footer {
    bottom: 0;
    left: 0;
    background-image: url("../images/bg8.jpg");
    background: rgb(41, 98, 130);
    color: white;
    height: 200px;
    padding: 10px 20px;
}

.flex-center-all {
    display: flex;
    place-items: center;
    justify-content: center;
}

.input-form {
    padding: 10px;
    border-radius: 4px;
    background: white;
}

.input-form .input {
    margin: 16px 0;
}

.input-form input[type="text"],
input[type="password"],
input[type="date"],
select,
textarea {
    width: 100%;
    height: 40px;
    border: none;
    box-shadow: 0 0 1px 1.4px rgb(0, 0, 0, 0.6);
    border-radius: 3px;
    padding: 2px 10px;
    margin: 4px 0;
    font-weight: 400 !important;
}

.input-form textarea {
    min-height: 120px;
}

.input-form input[type="submit"] {
    width: 170px;
    height: 40px;
    border: none;
    color: white;
    background: rgb(41, 98, 130);
    box-shadow: 0 0 2px 2px rgb(41, 98, 130);
    border-radius: 3px;
}
#error-box {
    color: rgb(198, 76, 92);
    padding: 4px;
}

.container-fluid {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.top-nav {
    background-color: var(--default-bg);
    height: 60px;
    padding: 0 7vw;
    display: flex;
    place-items: center;
    color: var(--default-color);
    font-weight: bold;
}

.las,
.la,
.lar {
    cursor: pointer;
}

.rfloat {
    float: right;
}
.la-power-off {
    font-size: 30px;
    font-weight: bold;
}
.la-power-off:hover {
    color: var(--sub-default-bg);
}
.left-pan {
    padding: 0px;
    width: 270px;
    min-height: 100vh;
    max-height: auto;
    background-color: var(--default-bg);
}
.right-pan {
    margin: 0;
    width: 74vw;
}
.la-bars.toggle,
.la-times.toggle {
    font-size: 23px;
    color: var(--default-color);
    margin-top: 3px;
    display: none;
}
#btn_toggler {
    display: none;
}
.user-part {
    padding: 30px 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    place-items: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--default-color);
}
.user-part > img {
    width: 8em;
}
.menu-part .menu:hover {
    color: var(--default-color);
    background: rgb(149, 48, 60);
}
.menu-part .menu {
    cursor: pointer;
    color: rgb(155, 155, 155);
    letter-spacing: 0.02em;
    padding: 5px 20px;
}
.menu-part > .menu > i.las {
    float: right;
    font-size: 18px;
}
.right-pan > .counters {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    place-items: center;
    flex-flow: wrap row;
    flex-shrink: 2;
}
.right-pan > .counters > .counter {
    border-radius: 2px;
    cursor: pointer;
    min-width: 200px;
    padding: 10px 20px;
    height: 100px;
    margin: 5.7px;
    background: rgb(234, 239, 223);
    box-shadow: 0 0 2px 2px rgb(226, 239, 223);
}
.right-pan > .counters > .counter > .number {
    font-size: 30px;
    font-weight: bold;
}
.right-pan > .counters > .counter > .number i {
    color: green;
    font-size: 50px;
}
.rest-part {
    display: flex;
    justify-content: center;
    place-items: center;
    padding: 2px;
    width: 100%;
    min-height: calc(100vh - 140px);
}
#methods-box,
#generated-box {
    cursor: pointer;
    padding: 0;
    position: fixed;
    right: 5px;
    border-radius: 4px 4px 0 0;
    bottom: 5px;
    width: 350px;
    max-height: 530px;
    overflow: auto;
    border: 1px solid var(--default-bg);
}
#generated-box {
    width: 440px;
    overflow: auto;
}
#method-head,
#generated-head {
    width: 100%;
    height: 40px;
    font-size: 15px;
    border-radius: 2px 2px 0 0;
    background: var(--default-bg);
    color: var(--default-color);
    padding: 0 10px;
    display: flex;
    place-items: center;
}
#method-head div:first-child,
#generated-head div:first-child {
    width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#methods-div,
#generated-div {
    display: none;
    background: var(--default-color);
    padding: 5px 10px;
}
.show-content {
    display: block !important;
    transition: all 2s ease-in-out;
}
.rest-part > .row > div:last-child {
    padding: 2px;
    width: 35%;
}
.rest-part > .row .top-tab {
    padding: 10px 10px;
    background: var(--default-bg);
    color: var(--default-color);
}
.rest-part > .row .top-tab i {
    float: right;
    font-size: 40px;
}
.rest-part .method {
    padding: 5px 0;
    font-size: 17px;
    font-weight: bold;
}
.rest-part .method > label {
    padding: 0 1vw;
    float: right;
}
.full-center {
    display: flex;
    width: 100%;
    height: 100%;
    place-items: center;
    justify-content: center;
}
.list-page {
    width: 100%;
    font-size: calc(100% / 10vw);
}
.filters-div {
    float: right;
    display: flex;
    flex-flow: nowrap row;
    column-gap: 25px;
    place-items: center;
}
.filters-div select,
.filters-div input {
    height: 28px;
}
.list-header {
    display: flex;
    width: 100%;
    font-weight: 30px;
    padding: 5px 0;
    border-bottom: 2px solid black;
}
.list-header select,
.list-header input {
    box-shadow: 0 0 1px 1px dimgray;
    height: 25px;
}
.list-row {
    width: 100%;
    height: 30px;
    padding: 1vw;
    display: flex;
    place-items: center;
    flex-flow: nowrap row;
    cursor: pointer;
}
.list-row:first-child {
    background: var(--default-bg) !important;
    color: var(--default-color);
}
.list-row:nth-child(odd) {
    background: var(--sub-default-bg);
}
.list-row:not(:first-child):hover {
    background: var(--list-hover);
}
.list-row > .item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 33.33%;
}
.list-card {
    width: 95%;
    height: 120px;
    background: var(--list-hover);
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-flow: wrap row;
}
.list-card div {
    width: 50%;
}
.pagination > .num {
    cursor: pointer;
    display: flex;
    place-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    margin: 10px 2px;
    border-radius: 50%;
}
.pagination > .num:hover {
    background-color: var(--list-hover);
    transition: all 0.7s ease-in-out;
}

.pagination > .num.active {
    background-color: var(--list-hover);
    transition: all 0.2s ease-in-out;
}
.detail-section {
    padding: 10px;
}
.detail-section label {
    margin-top: 5px;
    color: rgba(0, 0, 0, 0.582);
}

.la-check-circle {
    color: rgb(48, 196, 48);
}

.la-time-circle {
    color: brown;
}

.cover {
    display: block;
    background-color: rgba(0, 0, 0, 0.592);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    padding: 10px;
    place-items: center;
    justify-content: center;
}

.uncover {
    display: none;
}

.cover-bdy {
    width: 700px;
    padding: 10px;
    min-height: 200px;
    background-color: azure;
    border-radius: 2px;
    box-shadow: 0 0 2px 2px black;
}

.la-times-circle {
    margin-left: 20px;
    color: brown;
    font-size: 20px;
}
.la-minus-circle {
    color: brown;
}
.dataTable tr td {
    padding: 3px 15px;
}
.dataTable tr:nth-child(odd) {
    background: var(--sub-default-bg);
}
.dataTable tr:first-child {
    background: var(--default-bg);
    color: var(--default-color);
}
.pop-up {
    position: absolute;
    top: 10;
    left: 0;
    display: none;
    /*width: 100px;*/
}

.pop-element:hover > .pop-up {
    display: block;
}

.tbl-btn {
    float: right;
    margin: 0;
    padding: 3px;
}

.tbl-btn:hover {
    background: linear-gradient(to left top, blue, limegreen);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    transform: scale(1.4);
}

.carousel-body {
    background: #00000076;
    border-radius: 6px; 
    padding: 5px 15px; 
    margin: 26px 0;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .top-nav div:first-child {
        width: 45%;
    }
    .top-nav div:last-child {
        width: 55%;
    }
    .unsight {
        visibility: hidden;
    }
    .la-bars.toggle,
    .la-times.toggle {
        display: block;
    }
    .left-pan {
        position: fixed;
    }
    .right-pan {
        width: 100%;
        margin-left: 12px;
        position: absolute;
        z-index: 0;
    }
    #btn_toggler:checked ~ .left-pan {
        position: relative;
        visibility: visible;
        z-index: 1;
    }
    .contacts,
    .contacts-body {
        height: 1400px;
    }
}
/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 601px) and (max-width: 768px) {
    .top-nav div:first-child {
        width: 33%;
    }
    .top-nav div:last-child {
        width: 67%;
    }
    .unsight {
        visibility: hidden;
    }
    .la-bars.toggle,
    .la-times.toggle {
        display: block;
    }
    .left-pan {
        position: fixed;
    }
    .right-pan {
        width: 100%;
        margin-left: 12px;
        position: absolute;
        z-index: 0;
    }
    #btn_toggler:checked ~ .left-pan {
        position: relative;
        visibility: visible;
        z-index: 1;
    }
    .contacts,
    .contacts-body {
        height: 1400px;
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 769px) and (max-width: 992px) {
    .right-pan {
        margin: 0;
        width: 68vw;
    }
    .contact-section .info {
        width: 350px !important;
    }
    .contacts,
    .contacts-body {
        height: 1000px;
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .contact-section .info {
        width: 350px !important;
    }
    .contacts,
    .contacts-body {
        height: 1000px;
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    
}
.member-section {
    padding: 10px;
    margin: 0;
}
.member-section .info {
    padding: 0;
    margin: 0;
    width: calc(100%);
}
