.align-middle {
display: flex;
align-items: center;
}

.flex {
display: flex;
}

.nopadd {
padding: 0;
}
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
/*************** inputs ***************/
input[type=number] {
    -moz-appearance:textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button.next:not(.tox-tbtn,.tox-button,.fancybox-button),
button.prev:not(.tox-tbtn,.tox-button,.fancybox-button){
    position: absolute;
    z-index: 999;
    top: calc(50% - 8px);
    fill: #00000040;
    padding: 0;
    background: transparent !important;
    transition: .3s;
    height: 16px;
    border: 0;
}
button.next:not(.tox-tbtn,.tox-button,.fancybox-button):hover,
button.prev:not(.tox-tbtn,.tox-button,.fancybox-button):hover{
    fill: #000;
}
.next svg,.prev svg{
    width: 16px;
    height: 16px;
}
.next{
    right: 0;
}
.prev{
    left: 0;
}

.cotainer-modal{
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
}
.cotainer-modal i.lni-close{
    position: absolute;
    top: 15px;
    right: 15px;
}
.cotainer-modal i:hover{
    cursor: pointer;
}
.cotainer-modal > div:first-child{
    position: absolute;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 20px;
    z-index: 999999;
    margin: 20px;
}
.cotainer-modal .close{
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.3);
    opacity: 1 !important;
}

.alert-modal{
    position: relative;
    border: 1px solid;
    padding: 10px;
    border-radius: 10px;
}
.alert-modal.success{
    border-color: rgb(54 219 74);
    background: #e1ffd6;
}
.alert-modal i{
    position: absolute;
    right: 7px;
    top: 7px;
}
.alert-modal i:hover{
    cursor: pointer;
}

.timer{
    display: inline-flex;
    background: black;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}
.timer div{
    margin: 10px;
    text-align: center;
}
.timer span{
    display: block;
    background: white;
    color: black;
    border-radius: 4px;
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media(max-width: 991px){
    .timer{
        margin: 10px 0;
    }
}

.input-sm{
    width: 52px !important;
}

.fake-options{
    position: absolute;
    top: 0;
    /*left: calc(-100% - 82px);*/
    left: calc(-100% - 4px);
}
.fake-options a{
    opacity: 0;
    transition: .3s;
}
.fake-options a:last-child{
    opacity: 1;
}
.fake-options:hover a{
    opacity: 1;
}

[dica]{
    position: relative;
}
.dica{
    position: absolute;
    display: none;
    padding: 7px !important;
    border-radius: 4px;
    height: auto !important;
    color: var(--color-secondary);
    z-index: 999999;
    overflow: visible !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
.dica:after{
    content: "";
    position: absolute;
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.dica{
    background: #181439;
    transition: .3s;
}
/*************** display ***************/
.d-none{
    display: none !important;
}
.d-flex{
    display: flex !important;
}
.d-block{
    display: block !important;
}
.d-inline{
    display: inline !important;
}
.d-inline-block{
    display: inline-block !important;
}
.list-unstyled{
    list-style: none;
}
.flex-column{
    flex-direction: column;
}
.flex-center{
    display: flex;
    justify-content: center;
}
.flex-end{
    display: flex;
    justify-content: end;
}
.flex-between{
    display: flex;
    justify-content: space-between;
}
.justify-between{
    justify-content: space-between;
}
.align-center{
    align-items: center;
}
.justify-start{
    justify-content: flex-start !important;
}
.flex-wrap{
    display: flex !important;
    flex-wrap: wrap !important;
}
.align-items-center{
    align-items: center;
}
/*************** text ***************/
.text-line{
    text-decoration: line-through;
}
.text-danger{
    color: red;
}
.text-white{
    color: white;
}
.text-green{
    color: green;
}
.text-success{
    color: rgb(19,197,107);
}
.text-left{
    text-align: left !important;
}
.text-right{
    text-align: right !important;
}
.text-center{
    text-align: center !important;
}
.ts-1{
    font-size: 1.2rem;
}
.fw-normal{
    font-weight: normal !important;
}
.fw-bold{
    font-weight: bolder !important;
}
.truncate-1{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.truncate-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.truncate-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.truncate-4{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

/*************** padding ***************/
.p-0{
    padding: 0 !important;
}
.p-1{
    padding: 1rem !important;
}
.p-2{
    padding: 2rem !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
.pt-0{
    padding-top: 0 !important;
}
.pt-1{
    padding-top: 1rem;
}
.py-0{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.py-1{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.px-1{
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.pb-1{
    padding-bottom: 1rem;
}
.pt-1{
    padding-top: 1rem;
}
.pt-2{
    padding-top: 2rem;
}
.pe-1{
    padding-right: 1rem;
}
.py-2{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pe-2{
    padding-right: 2rem;
}
.pe-3{
    padding-right: 3rem;
}
.py-3{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.py-3{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.px-2{
    padding-left: 2rem;
    padding-right: 2rem;
}
.ps-0{
    padding-left: 0rem !important;
}
.ps-1{
    padding-left: 1rem;
}
.ps-2{
    padding-left: 2rem;
}
/*************** margin ***************/
.m-0{
    margin: 0 !important;
}
.mt-0{
    margin-top: 0 !important;
}
.m-2{
    margin: 2rem !important;
}
.ms-1{
    margin-left: 1rem !important;
}
.ms-2{
    margin-left: 2rem !important;
}
.me-1{
    margin-right: 1rem !important;
}
.me-2{
    margin-right: 2rem !important;
}
.mt-2{
    margin-top: 2rem;
}
.mb-0{
    margin-bottom: 0 !important;
}
.mb-1{
    margin-bottom: 1rem !important;
}
.mb-2{
    margin-bottom: 2rem !important;
}
.mb-4{
    margin-bottom: 4rem !important;
}
.mx-auto{
    margin-right: auto !important;
    margin-left: auto !important;
}
.mx-1{
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.my-1{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.mt-1{
    margin-top: 1rem !important;
}
/*************** border ***************/
.b-1{
    border: 1px solid;
}
.bb-dashed{
    border-bottom: 2px dashed rgba(0,0,0,.5);
}
.bb-black-05{
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.b-0{
    border: 0 !important;
}
/*************** background ***************/
.bg-black-03{
    background: rgba(0,0,0,.03);
}
.bg-black-05{
    background: rgba(0,0,0,.05);
}
.bg-black-50{
    background: rgba(0,0,0,.5);
}
.bg-transparent{
    background: transparent !important;
}
/*************** ul ***************/
.list-unstyled{
    list-style: none;
}
/*************** textarea ***************/
.noresize{
    resize: none !important;
}
.noresize-x{
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}
/*************** position ***************/
.position-static{
    position: static !important;
}
.position-relative{
    position: relative !important;
}
/*************** width ***************/
.w-40{
    width: 40% !important;
}
.w-50{
    width: 50% !important;
}
.w-100{
    width: 100% !important;
}
.w-auto{
    width: auto !important;
}
/*************** height ***************/
.h-100{
    height: 100% !important;
}
/*************** expecificos ***************/
.obrigatorio{
    border-left: 4px solid red !important;
}
/*************** float ***************/
.float-none{
    float: none !important;
}
/*************** border ***************/
.border-0{
    border: 0 !important;
}
/*************** pointer ***************/
.pointer:hover{
    cursor: pointer !important;
}


.container-nivel{
    display: flex;
    justify-content: center;
    position: relative;
}
.nivel{
    position: relative;
    max-width: 50px;
}
.pontos{
    background: #eee;
    padding: 2px 10px;
    min-width: 100%;
    border-radius: 50px;
    white-space: nowrap;
    position: absolute;
    top: calc(100% + 5px);
}
.nivel > div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
.nivel > div b{
    background: #fff;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nivel:before{
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
    width: 50px;
    height: 50px;
}