html,
body {
    height: 100%
}

body {
    background-color: #f1f1f1;
    color: #000;
    line-height: 1.8em;
    font-size: 16px;
    font-family: 'Inter', sans-serif;

}

a {
    color: #001A4F;
    text-decoration: none;
}

a:hover {
    color: #001A4F;
    text-decoration: underline;
}

h1 {}

h2 {}

h3 {}

h2.title {
    font-weight: 800;
    font-size: 40px;
    line-height: 48px;

    margin-bottom: 32px;
}

.header {
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    position: relative;
    padding: 25px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.user {
    border: 0px solid red;
    float: right;
}


.bt-card-link {
    background: #fff;
    border-radius: 10px;
    padding: 45px 35px;
    display: block;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 4px solid #fff;
}

.bt-card-link:hover {
    border: 4px solid #001A4F;
}

.bt-card-title {
    font-size: 20px;
}


.list-video {
    margin: 0;
    list-style: none;
    padding: 0;
}

.bg-video {
    background: #fff;
    border-radius: 10px;
    margin: 10px 0px;
    padding: 25px;
}

.list-video-title {
    font-size: 18px;
    width: 100%;
    display: block;
}

.badge {
    display: inline-block;
    padding: 0.6em 1em;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 2rem;
}


.badge-links {
    color: #333;
    border: 1px solid #333;
    border: 1px solid #ddd;
}

a.badge-links:hover {
    color: #001A4F;
    border: 1px solid #001A4F;
    border: 1px solid #001A4F;
}


.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease;
}

.progress {
    display: flex;
    height: 0.8rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .45rem;
}

.nav-tabs {
    border-bottom: 2px solid #e8e8e8;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: transparent transparent #2c7be5;
    color: #12263f;
}

.nav-tabs .nav-link {
    border-bottom: 2px solid transparent;
    border-bottom-color: transparent;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    padding: 1rem 0;
}

.nav-tabs .nav-link {
    background: none;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid transparent;
    border-top-color: transparent;
    border-top-width: 1px;
    border-right-color: transparent;
    border-right-width: 1px;
    border-bottom-color: transparent;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-left-color: transparent;
    border-left-width: 1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: -1px;

}

.nav-link {
    color: #333;
    display: block;
    padding: .5rem 1rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-tabs .nav-item:first-child {
    margin-left: 0;
}

.nav-tabs .nav-item {
    margin-left: .75rem;
    margin-right: .75rem;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #d2ddec;
    border-radius: .375rem;
    color: #12263f;
    display: block;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .5rem .75rem;
    padding-right: 0.75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}


/* START auth wrapper e alert privacy*/


.alert-privacy {
    background: #fff;
    color: #333;
    padding: 30px 0px;
    box-shadow: 5px 20px 30px 0 rgba(0, 0, 0, 0.8);
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.btn-accept:hover {
    background: #333;
    color: #fff !important;
}

.btn-accept {
    background: #000;
    color: #fff !important;
    padding: 5px 35px;
}

.auth-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 100%;
    min-height: 100vh;
    background: #f0f2f8;
}

.auth-wrapper .auth-content {
    position: relative;
    padding: 15px;
    z-index: 5;
}


/* END auth wrapper e alert privacy*/


.q-hide{
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.9s linear;
    display: none;
}


.q-show{
    visibility: visible;
    opacity: 1;
    display: initial;
}
.c-show{
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.c-hide{
    filter: alpha(opacity=0.1);
    opacity: 0.1;
}

.jstree-proton .jstree-disabled {
    background: 0 0;
    color: #878787;
}
