body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.navbar,
.brand,
.btn-simple,
.alert,
a,
.td-name,
td,
button.close {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 3;
}

.navbar-transparent .navbar-nav .nav-item .nav-link:not(.btn) {
    color: black;
}

nav {
    background-color: #fff;
    opacity: 0.8;
}

.navbar-transparent .navbar-brand {
    color: black;
}

.btn {
    background-color: black;
    color: white;
    border: 1px solid black;
    margin-top: 3px;
    margin-bottom: 3px;
}

.btn-primary {
    background-color: black;
    color: white;
    border: 1px solid black;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary.active, 
.btn-white.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.btn-outline-primary {
    background-color: white;
    color: black;
    border: 1px solid black;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary:focus {
    background-color: black;
    color: white;
    border: 1px solid black;
}

.btn-white {
    background-color: white;
    color: black;
    border: 1px solid black;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.btn-white:hover, .btn-white:active, .btn-white:focus {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.card, .card.card-login {
    border-radius: 3px;
}

.logo-img {
    height: 50px;
}

.sidebar {
    background-color: black;
}

.textarea {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    outline: none;
    border: none;
}

.logo-sidebar {
    width: 100%;
}

.sidebar .logo a.logo-normal {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.mt-30 {
    margin-top: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-0 {
    opacity: 0 !important;
}

.btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
}

.btn-overlay:hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    cursor: pointer;
}

.overlay-img {
    max-width: 100%;
}

.sidebar-nav {
    position: relative;
}

.tooltip-inner{
    max-width:300px;
    /* min-width:300px; */
    padding:3px 8px;
    color: black;
    text-align:center;
    background-color: white !important;
    border-radius:.25rem;
    border: 1px solid black;
}

.footer-logo {
    width: 41px;
    height: 45px;
    padding-top: 5px;   
}

.full-page-overlay, .spinner-overlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index:10000;
}

.spinner-overlay {
    display: none;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }
  @-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }

  .nav-footer {
    background-color: transparent;
  }

  @media screen and (max-width: 991px) {
    .hide-mobile {
        display: none !important;
    }

    .navbar {
        max-height: 110px;
    }
  }

.dropdown-li {
    padding: 4px 16px;
}

.dropdown-a {
    color: black;
}

.dropdown-menu {
    min-width: 13rem;
}

.main-panel {
    float: left;
    width: 100vw;
    min-height: 100vh;
}

.header-btn, .table-btn {
    margin-left: 5px;
    margin-top: 2px;
}

.d-flex-center {
    display: flex;
    justify-content: center !important;
    align-items: center;
}

.d-flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.d-flex-col-start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.round-border {
    border-radius: 3px;
}

button {
    cursor: pointer !important;
}

.btn-primary.disabled, .btn-primary:disabled, .btn-primary.disabled:hover,
.dropdown-toggle.disabled, .dropdown-toggle:disabled, .dropdown-toggle.disabled:hover,
#go-btn.disabled, #go-btn:disabled, #go-btn.disabled:hover {
    border: 1px solid black;
    color: black;
    cursor: not-allowed !important;
    opacity: 0.5;
}

.dropdown-li:hover {
    background-color: #f1f1f1;
    cursor: pointer !important;
}

.dropdown-li:hover > .dropdown-a {
    color: black;
}

.font-bold {
    font-weight: bold;
}

h4.disabled, textarea.disabled {
    opacity: 0.3;
}

.flex-end {
    display: flex;
    align-items: flex-end;
}

.flex-grow-1 {
    flex-grow: 1;
}

#output-container {
    opacity: 0.4;
    border: none;
    background-color: transparent;
}

#copy-btn {
    padding: 5px;
    line-height: 15px;
    margin-left: 5px;
}

#output-btn-container {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: flex;
}

#output-text {
    white-space: break-spaces;
    height: 100%;
}

#output-text-container {
    height: 100%;
    background-color: white;
    padding: 15px 15px 10px 15px;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    position: relative;
    padding-bottom: 60px;
}

#current-model, .mr-10px {
    margin-right: 10px;
}

.mr-20px {
    margin-right: 20px;
}

.mr-5px {
    margin-right: 5px;
}

#footer-logo-li {
    padding-top: 5px;
}

#select-container {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn.dropdown-toggle.bs-placeholder.select-with-transition {
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-flex-col-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.d-flex-col {
    display: flex;
    flex-direction: column;
}

.d-flex-end {
    display: flex;
    justify-content: flex-end !important;
}

.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-info {
    background-color: black;
}

.bootstrap-switch-disabled {
    cursor: not-allowed !important;
    opacity: 0.3;
}

textarea:disabled {
    background-color: white !important;
    cursor: not-allowed !important;
}

.alert {
    z-index: 1051 !important;
}

.modal-header {
    border-bottom: 1px solid black !important;
}

.logo-img {
    max-height: 40px;
}

#dev-line {
    background: repeating-linear-gradient(45deg, white, white 10px, red 10px, red 20px);
    position: fixed;
    width: 100%;
    height: 10px;
    z-index: 10000;
}

.table-form-group {
    margin-bottom: 0;
}

.table-input {
    border: 1px solid transparent;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #888888;
    cursor: not-allowed !important;
}

.dropdown-menu {
    padding: 5px;
}

a {
    color: black;
}

a:hover {
    color: #9A9A9A
}

.table-btn {
    margin-bottom: 0;
    margin-top: 0;
}

.user-card-header {
    display: flex;
    justify-content: space-between;
}

.alert-success {
    background-color: black;
    color: white;
}

.no-show {
    display: none;
}

.register-img {
    max-height: 80px;
}

.content-register {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#chart {
    max-height: 30vh;
}

.role-td {
    cursor: not-allowed !important;
}

.wrapper-full-page .footer {
    z-index: 100;
}

#hero-logo {
    width: 100%;
}

#hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-hero {
    background-color: white;
    color: black;
}

#hero-image-container {
    margin-bottom: 7rem;
}

#hero-tagline-container {
    border-bottom: 1rem solid black;
}

.pad-l-r-0 {
    padding-left: 0;
    padding-right: 0;

}

.row {
    width: 100%;
}

.d-flex-align-end {
    display: flex;
    align-items: flex-end;
}

#home-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

#viewport-header {
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --headerOpacity: 1;
    --headerScale: 1;
}

.video-header {
    position: absolute;
    text-align: center;
    width: 100vw;
    height: 100vh;
}

.video-header,
.video-header video,
.video-header .viewport-header {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.video-header video {
    background: white;
    object-fit: cover;
}

.video-header .viewport-header {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    opacity: var(--headerOpacity);
    transform: scale(var(--headerScale));
}

html {
    /* height: 100%; */
    overflow-x: hidden;
}

main.home {
    background: black;
    color: white;
    position: relative;
    padding: 4rem;
    margin-top: 100vh;
}

.home-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

main.home::before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    top: -100vh;
}

#hero-h3 span {
    background-color: black;
    color: white;
}

.card-home-black {
    background-color: black;
    color: white;
    border: 2px solid white;  
}

.card-home-white {
    background-color: white;
    color: black;
    border: 2px solid black;  

}

.card-home-black-container {
    margin-bottom: 30px;
}

.home-white {
    background: white;
    color: black;
}

.contact-card {
    border: 2px solid black;
}

textarea.form-control {
    height: auto;
}

.card .card-category, .card label {
    color: black;
}

@media screen and (max-width: 991px) {
    #hero-image-container {
        margin-bottom: 2rem;
    }

    main.home {
        padding: 1rem;
    }   
    
}

#input-text {
    padding: 15px 15px 10px 15px;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.main-panel {
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    justify-content: space-between;
}

.main-panel .content {
    padding-bottom: 0;
}

#output-text {
    min-height: 75px;
}

.btn-primary.disabled, .btn-primary.disabled.active {
    border: 1px solid black;
}

.help {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background: white;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 50%;
    padding: 8px;
    width: 20px;
    height: 20px;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
}

.help:hover {
    background: black;
    color: white;
}

.help-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popover-header {
    margin-top: 0;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.btn-with-help:hover .help {
    background-color: black;
    color: white;
}

.btn-with-help {
    position: relative;
}

.dropdown-help {
    position: absolute;
    right: 10px;
    top: 10px;
}

@media screen and (max-width: 991px) {
    .main-panel .content {
        padding: 0;
    }

    .navbar-nav {
        flex-direction: row;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .navbar {
        max-height: 80px;
    }
}

.phzh-footer {
    width: auto;
}

#phzh-header {
    color: black;
    font-weight: 700;
    margin-left: 20px;
}

.changed {
    background-color: yellow;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.phzh-img {
    padding: 3px;
}