@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

html, body {
    font-family: "Manrope";
    position: relative;
    min-height: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul[class],
ol[class] {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

article > * + * {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
}

input:focus {
    outline: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
    -webkit-text-fill-color: black;
}

/*/////////////////////////    Layout styles    //////////////////////////////////////*/

    .render-body {
    width: 85%;
    height: 100%;
    padding: 0 1rem 1rem 1rem;
    background-color: var(--background-main-color);
    overflow-y: auto;
}

/*///////////////////////////    Side-bar-popup    ///////////////////////////////////////*/

.offcanvas {
    z-index: 10000;
}

.offcanvas-body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 1rem 0;
}

.offcanvas-header {
    background-color: var(--primary-color);
}

/*///////////////////////////     Modal styles     /////////////////////////////////////////////////*/

.modal-dialog {
    margin: 0 auto;
    margin-top: 7rem;
}

    .modal-dialog form label {
        font-size: 1rem;
    }

.modal-content {
    min-width: 19rem;
    border-radius: 0.5rem;
}

.modal-header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.modal-title {
    font-size: 1rem;
    font-weight:400
}

.modal-header .btn-close {
    padding-left: 1rem;
}

.modal-body-label-value {
    color: var(--primary-color);
    font-weight: 500;
    padding-left: 0.75rem;
    word-break: break-all;
}

.modal-footer {
    padding: 1rem 0 0 0;
    border-top: hidden;
}

    .modal-footer .danger-button,
    .modal-footer .acc-body-button {
        margin: 0;
        background-color: var(--background-main-color);
    }

/*///////////////////////////////// Buttons /////////////////////////////////////////*/

.btn {
    font-size: 0.9rem;
    font-weight: 600;
}

/*//////////////////////////////// Footer ////////////////////////////////////////////*/

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
}

.rights {
}

.no-items {
    color: gray;
    text-align: center;
    font-size: 1.25rem;
    padding-top: 7rem;
}

/*////////////////////////////////////////////////////////////////////////////////////////*/

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.container {
    padding: 0;
    margin: 0;
    max-width: 100% !important;
    height: 80vh;
}

.navbar {
   z-index:9999;
}

.loginPartial .userLoginPreview-picAndExit {
    display: flex;
}

.LoginPartialSecond {
    display: flex;
    flex-direction: column;
}

    .LoginPartialSecond .nav-user-name {
        display: none;
    }

    .LoginPartialSecond .userLoginPreview-picAndExit {
        display: flex;
        justify-content: space-between;
    }

        .LoginPartialSecond .userLoginPreview-picAndExit img {
            height: 40px;
            width: 40px;
        }

        .LoginPartialSecond .userLoginPreview-picAndExit a {
            padding: 0px;
            height: 40px;
        }

/*///////////////// MEDIA ///////////////////////////////////*/
@media(max-width: 1199.98px) {
    
}

@media (max-width: 991.98px) {
    .side-bar {
        display: none;
    }
    .rights {
        font-size: 0.9rem;
    }
    .modal-dialog form label {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .render-body {
        width: 100%;
        overflow-y: auto;
    }
    .label-hide {
        display: none;
    }
}

@media (max-width: 469.98px) {
    .render-body {
        width: 100%;
        padding: 0 0.5rem 1rem 0.5rem;
        overflow-y: auto;
    }

        .render-body h5 {
            font-size: 1rem;
        }
    
    .modal-dialog form label {
        font-size: 0.8rem;
    }

    .modal-body {
        padding: 0.5rem;
    }

    .modal-header {
        padding: 0.5rem;
    }

    .modal-title {
        font-size: 0.9rem;
    }

    .rights {
        font-size: 0.75rem;
    }
}
