@import "../styles/root.css";
@import "../styles/fonts.css";
@import "../styles/bootstrap/bootstrap.css";
@import "../styles/components/roller.css";

* {
    font-family: "Open Sans", "Lucida Console", "Monaco", monospace;;
    font-weight: 400;
    font-size: 1rem;
    box-sizing: border-box;
    color: var(--primary);
    padding: 0;
    margin: 0;
    scrollbar-color: #6e6e6e6b var(--body);
    scrollbar-width: thin;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0px 15px 0px 15px;
    /* height: 100vh; */
    overflow:auto;
}

.main-section {
    display: flex;
    flex-direction: column;
    position: static;
}

main{
    flex: 1;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 30px 3rem 0px;
}

.content-section, header{
    /* width: 92%; */
}

.content-scroll {
    /* overflow: auto; */
    /* height: 67vh; */
}

.content-form {
    display: flex;
    flex-direction: column;
    width: 50%;
}

a{
    color: var(--primary);
    text-decoration: none;
    text-decoration: solid;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 600;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

td{
    vertical-align: middle !important;
}

header{
    height: var(--h);
}

.header-btn i {
    font-size: 1.75rem;
}

.header-btn i:hover{
    color:var(--info);
}

.logo {
    max-height: 80px;
}

.btn-icon, .btn-fixed {
    vertical-align: middle !important;
}

.btn-icon-sm {
    height: 31.2px;
    width: 31.2px;
}

.btn-36 {
    height: 36px;
    width: 36px;
}

.nav-icon{
    color: var(--primary);
}

.nav-icon:hover{
    color: var(--info);
}

.nav-icon-danger, .tbl-btn-danger{
    color: var(--warning);
}

.nav-icon-danger:hover, .tbl-btn-danger:hover{
    color: var(--danger);
}

.tbl-btn-danger{
    border: none;
}

.nav-icon i, .nav-icon-danger i, .tbl-btn-danger i, .btn i {
    min-height: 20px;
    min-width: 20px;
}

.fa-solid {
    color: inherit;
    /* min-height: 18px;
    min-width: 18px; */
}

.fa-sm {
    padding-top: 15px;
}


/* utility classes */
.hidden{
    display:'none';
}

.no-select {
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.error-msg {
    color: var(--danger);
    min-width: 1px;
    min-height: 16px;
    margin-top: 5px;
}

.alert-body {
    min-width: 1px;
    height: 75px;
}

@media screen and (min-width: 768px) { 

    body {
        padding: 0px 0px 0px 30px;
        height: 100vh;
        /* overflow: auto; */
    }

    .content-section, header{
        width: 98%;
    }

    .content-scroll {
        overflow: auto;
        height: 76vh;
    }


}