@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
}
.app{
    display: flex;
    flex-direction: column;
    width: 60%;
    height: 80vh;
    margin-top: 5%;
    position: relative;
}
.top{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.top img{
    width: 140px;
    height: 140px;
    object-fit: cover;
}
main{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
}
.col{
    width: 23%;
    border: 1px solid #777;
    display: flex;
    justify-content: center;
    position: relative;
}
.col .header{
    position: absolute;
    top: -10px;
    background-color: rgb(231, 0, 0);
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 12.5px;
    font-weight: 600;
    width: 160px;
    text-align: center;
    color: #000;
    letter-spacing: 0.5px;
}
.col ul{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.col ul li{
    margin-top: 10px;
    list-style: none;
    background-color: #da0303;
    border-radius: 4px;
    border: 1px solid #777;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
}
.col ul li a{
    padding: 20px 50px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    text-align: center;
}
/* #endregion ########################################################################*/

.container{
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup{
    display: flex;
    flex-direction: column;
    width: 60%;
    height: 50vh;
    background-color: #818181;
}
.content{
    background-color: #fff;
    height: 95%;
    width: 100%;
}
.popup_header{
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 30px;
}
.popup_title{
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}
.popup_close{
    font-size: 16px;
    font-weight: bold;
    height: 25px;
    width: 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-out;
}
.popup_close:hover{
    box-shadow: 0 0 6px #fff;
}
.popup_main{
    margin: 3px 20px;
    border: 1px solid red;
    width: 95%;
    height: 210px;
    display: flex;
    justify-content: space-around;
}
.popup_bottom{
    margin: 3px 20px;
    border: 1px solid red;
    width: 95%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.btn{
    outline: none;
    color: #fff;
    width: 80px;
    height: 25px;
    border-radius: 0 10px 0 10px;
    border: 1px solid #777;
    background-color: #1b3eaf;
    cursor: pointer;
    transition: all .2s ease-out;
}
.btn:hover, .btn-active{
    background-color: #fff;
    color: #1b3eaf;
    border: 1px dotted #1b3eaf;
}
.coluna{
    width: 32%;
    height: 100%;
}
.group{
    position: relative;
    margin: 10px;
}
.group input, select{
    padding: 5px 3px;
    outline: none;
    border: 1px solid #ccc;
    color: #777;
    font-size: 14px;
    z-index: 999;
    width: 100%;
}
.lbl{
    font-size: 14px;
    color: #777;
    position: absolute;
    top: 18%;
    left: 4.5px;
    transition: all .1s ease-out;
}
.group input:focus + .lbl, .group input:not(:placeholder-shown) + .lbl{
    top: -35%;
    background-color: #fff;
    padding: 0px 2px;
}
.radio{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -4px 0px;
}
.lbl-radio{
    font-size: 14px;
    color: #777;
    padding-left: 15px;
}
.group .input-radio{
    padding: 0;
    margin: 0;
    position: absolute;
    top: 20%;
    left: -43%;
}
/* #endregion ########################################################################*/
.table-section{
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
}
.table-search{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table-search label{
    font-size: 14px;
    color: #777;
}
.table-search input{
    width: 90%;
    padding: 3px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #777;
    outline: none;
}
.table-container{
    margin-top: 10px;
    overflow: scroll;
}
.table-container::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}
.table-container::-webkit-scrollbar-thumb{
    background: #ccc;
}
.table-container::-webkit-scrollbar-track{
    background: gainsboro;
}
.table-container table{
    padding: 0px;
    border: 1px solid #ccc;
}
.table-container table tr{
    height: 20px;
}
.table-container table tr td,.table-container table tr th{
    min-width: 170px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.group h3{
    font-size: 14px;
}
textarea {
  display: block;
  box-sizing: padding-box;
  overflow: hidden;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #ccc;
  height: 200px;
}
textarea:focus {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  outline: none;
}