body{

}
.mainContent{
    padding: 0 3rem;
    margin: 3rem 0;
}
.bg-header{
    background: url(/media/base/icons/background.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 30px;
    border-radius: 0;
    & .header-title {
        z-index: 10; 
        font-size: 1.5rem;
        font-weight: bold;
        align-items: center;
        margin-left: 15px;
        margin-bottom: 20px;
        width: 100%;
    }
    & .service-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        gap: 15px;
        width: 100%;
        padding: 0;
        & .nav-item {
            display: flex;
            text-align: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            flex-basis:calc(14.285% - 15px );
            height: 120px;
            transition: all 0.25s ease-in-out;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.0);
            padding: 0;
            
            & .nav-link {
                transition: all 0.25s ease-in-out;
                width: 100%;
                height: 100%;
                color: #fff;
                text-decoration: none;
                font-size: 1rem;
                img{
                    transition: all .25s ease-in-out;
                }
            }
            &:hover{
                border: 1px solid rgba(255, 255, 255, 0.9);
                box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.4);
                background: rgba(0, 0, 0, 0.4);
                filter: brightness(110%);
                img{
                    transform: scale(1.2);
                }
            }
        }
        & img {
            width: 50px !important;
            height: auto !important;
            object-fit: contain !important;
        }
        & span{
            font-family: 'Dosis', sans-serif;
            font-size: 0.9rem;
            letter-spacing: .5px;
        }
    }
}
h1.titulo {
    color: #59CE95;
    position: relative;
    &::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 6px;
        border-radius: 5px;
        bottom: -15px;
        background-color: #59CE95;
    }
}
.service-nav{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    & .nav-item{
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px;
        text-align: center;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    & .nav-item:hover{
        filter: brightness(115%);
        transform: translateY(-8px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    /* & .nav-item:nth-child(odd)>.nav-link{
        background: #56B853;
    }
    & .nav-item:nth-child(even)>.nav-link{
        background: #016039;
    } */
    & .nav-item:first-child>.nav-link{
        border-radius: 0 0 0 10px;
    }
    & .nav-item:last-child>.nav-link{
        border-radius: 0 0 10px 0;
    }
    & .nav-item>.nav-link{
        font-family: "Raleway", sans-serif;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 1.1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    & .nav-item>.nav-link>img{
        width: 80px;
        height: auto;
        margin-bottom: 10px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
}

.card-service{
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 4rem;
    border: none;
    & .card-header{
        padding: 10px;
        background: linear-gradient(90deg, #56B853, #016039);
        border-radius: 10px 10px 0 0;
        display: flex;
        color: #fff;
        align-items: center;
        flex-direction: row;
        font-weight: 600;
        border: none;
        & .img-fluid{
            max-width: 48px;
            border-radius: 6px;
        }
        & .title-card h4{
            font-size: 1.2rem;
        }
    }
    & .img-service img{
        height: 120px;
        width: 120px;
    }
    & .title-service{
        color: #016039;
        margin-top: 1rem;
        font-size: 1.5rem;
    }
    & .description-service{
        color: #56B853;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    & .service-item {
        margin-bottom: 2rem;
        & .btn-service-details {
            background: linear-gradient(45deg, #56B853, #016039);
            color: #fff;
            border: none;
            font-weight: 600;
            border-radius: 10px;
            font-size: 0.85rem;
            padding: 10px 30px; 
            transition: all 0.25s ease-in-out;
            box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
        }
        & .btn-service-details:hover {
            filter: brightness(115%);
            box-shadow: none;
        }
    }
}
.card-scroll{
    max-height: 400px;
   
    .news-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow-y: auto;
        scrollbar-width: thin; /* Or 'auto' or 'none' */
        scrollbar-color: #06663a #e0e0e0; /* thumb color track color */
        
        .news-item {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
            gap: 10px;
            & .visualizar-icon-content{
                min-width: 40px;
                display: flex;
                align-items: center;
                justify-content: end;
                & i{
                    color: #06663a;
                    font-size: 1.25rem;
                    transition: all .25s ease-in-out;
                    opacity: 0;
                }
            }
            & img {
                display: none;
                width: 120px;
                height: 100px;
                transition: all 0.3s ease-in-out;
            }
            & .news-title {
                font-size: .85rem;
                font-weight: bold;
                color: #333;
                margin-bottom: 5px;
            }
            
            & .news-date{
                font-size: 0.8rem;
                color: #777;
                margin: 0;
            }
            & .news-location{
                font-size: 0.8rem;
                color: #777;
                margin: 0;
            }
            
            & .news-text {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                & a {
                    font-size: 15px;
                    color: #2F855A;
                    text-decoration: none;
                    font-weight: bold;
                    transition: color 0.3s ease;
                    &:hover {
                        text-decoration: underline;
                        color: #1E6D4E;
                    }
                }
            }
            &:nth-child(even){
                background: #f2f2f2;
            }
            &:hover {
                background: #c6e9dbff;
                cursor: pointer;
                & .visualizar-icon-content{
                    & i{
                        opacity: 1;
                    }
                }
                & .news-text{
                    & .news-title{
                        color: #06663a;
                    }
                }
            }
            &:not(:last-child){
                border-bottom: 1px solid #ccc;
            }
        }
    }
}

.modal-content {
    background: #fff;
    border: none;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Permite rolagem caso o conteúdo ultrapasse */
}

.modal-header {
    background: #2F855A ;
    color: white;
    padding: 10px 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.modal-body {
    padding: 30px;
    font-size: 16px;
    line-height: 1.5;
    max-height: 70vh; /* Ajuste de altura para não ser muito grande */
    overflow-y: auto; /* Permite rolagem quando necessário */
    overflow-x: hidden;
        p{
            color: #555;
            font-size: 0.95rem;
            &:has(br){
                & br{
                    display: none;
                }
            }
            &:has(img){
                & img{
                    max-width: 100%;
                    margin-bottom: 1rem;
                }
            }
        }
}

#noticiaModal {
    & .modal-footer {
        padding: 15px;
        display: flex;
        justify-content: flex-end;
        background: #f1f1f1;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}
.modal-body a {
    font-size: 15px;
    color: #2F855A;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.modal-footer {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
    background: #f1f1f1;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer{
    height: 245px;
    display: flex;
    padding: 30px;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    background-image: url(/media/base/icons/waves.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.toggle-btn{
    height: 0;
    width: 0;
    visibility: hidden;
}

.toggle-label {
    cursor: pointer;
    text-indent: -9999px;
    width: 70px;
    height: 30px;
    background: grey;
    display: inline-block;
    border-radius: 100px;
    position: relative;
    margin: 10px 0;
    &:after {
        content: '';
        position: absolute;
        top: 8px;
        left: 8px;
        width: 15px;
        height: 15px;
        background: #ddd;
        border-radius: 90px;
        transition: 0.3s;
        border: 1px solid #555;
    }
}



form .toggle-btn:checked + label {
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #25c481, #25b7c4);
}
.toggle-btn:checked + label {
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.5);
    background: gold;
}

.toggle-btn:checked + label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0 0 5px 1px rgba(255,255,255,1);
    top: 5px;
    height: 20px;
    width: 20px;
}
table .toggle-btn:checked + label:after {
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.5);
}

.input-group-text{
    border: 2px solid #24A667;
    border-radius: 50px;
}

/* textarea { 
    border: 2px solid #24A667;
    border-radius: 50px;
} */

.toggle-btn#presencial{
    display: none;
}
.form-group label{
    font-weight: 600;
}
.ql-editor{
    height: 250px;
    background: #f5f5f5 !important;
    border-radius: 0 0 5px 5px;
    font-weight: 600;
    font-family: 'Raleway';
    font-size: 0.9rem;
    resize: vertical;
}
.ql-toolbar.ql-snow{
    border-radius: 5px 5px 0 0;
    background-color: #59CE95;
    border: 2px solid #59CE95!important;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow{
    border-radius: 0 0 5px 5px;
    border: 2px solid #59CE95;
}

.qr-code-img{
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    border: 15px solid #fff;
    border-radius: 10px;
}

.loading{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.75);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    display: none;
    & .spin-loading{
        position: absolute;
        width: 50px;
        height: 50px;
        border: 5px solid #56B853;
        border-radius: 100%;
        border-right: 5px solid transparent;
        animation: spin-rotate 0.8s linear infinite;
    }
}
.local_evento_content, .data_final_content{
    display: none;
}
.inscricao-evento{
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    background-image: url('/media/base/icons/event-bg.png');
    background-size: contain;
    background-color: #2BC67B;
    background-repeat: no-repeat;
    background-position: right;
    height: 600px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10rem;
    font-size: 1.25rem;
    text-align: center;
    font-weight: 500;
    & .titulo-evento{
        font-size: 2.5rem;
        font-weight: 700;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
        position: relative;
        margin-bottom: 1.5rem;
    }
    & .titulo-evento::after{
            content: "";
            height: 8px;
            width: 80px;
            position: absolute;
            background: #fff;
            border-radius: 10px;
            left: 50%;
            transform: translateX(-50%);
            bottom: -20px;
            box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    }
    & .content-data,
    & .content-local
    {
        margin-top: 15px;
        line-height: 1;
    }
    & .content-local .box-local,
    & .content-data .box-data{
        color: #2BC67B;
        background-color: #fff;
        padding: 15px 30px;
        text-shadow: none;
        border-radius: 10px;
        font-weight: 700;
        text-align: center;
    }
    & label{
        color: #777;
        font-size: 0.75rem;
        margin-bottom: 0;
        background-color: #fff;
        padding: 5px 10px;
        border-radius: 5px 5px 0 0;
    }
    & .btn-inscreva-se{
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        height: 80px;
        background-color: #fff;
        border: 3px solid #fff;
        font-size: 1.5rem;
        color: #2BC67B;
        font-weight: 700;
        border-radius: 100px;
        width: 280px;
        box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
        transition: all 0.25s ease-in-out;
        &:hover,
        &:focus{
            transform: translateX(-50%) translateY(-10px);
            box-shadow: 2px 2px 6px rgba(0,0,0,0.35);
        }
    }
    & .mais-detalhes{
        font-size: 0.8rem;
        border: 2px solid #fff;
        border-radius: 50px;
        padding: 5px 20px;
        color: #fff;
        margin-top: 30px;
        text-decoration: none;
        transition: all 0.25s ease-in-out;
        font-weight: 600;
        &:hover{
            box-shadow: 2px 2px 6px rgba(0,0,0,0.35);
            color: #fff;
            text-decoration: none;
            transform: translateY(-5px);
        }
    }
}
#box-descricao-evento {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    & .titulo-descricao{
        color: #59CE95;
        font-size: 2rem;
        position: relative;
        margin-bottom: 3rem;
    }
    & .titulo-descricao::after{
        content: "";
        height: 6px;
        width: 80px;
        position: absolute;
        background: #59CE95;
        border-radius: 10px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
    & .descricao-evento{
        font-family: "Raleway";
        font-size: 0.9rem;
        font-weight: 600;
        max-width: 750px;
        width: 100%;
        box-shadow: 2px 2px 6px rgba(0,0,0,0.35);
        border-radius: 10px;
        /* border: 4px solid #59CE95; */
        padding: 30px;
        background: linear-gradient(0deg, #004733, #037555) !important;
        color: #fff;
        margin-bottom: 10rem;
    }
}
#atualizaCertificadoModal .modal-content,
#editaUsuarioModal .modal-content,
#inscrevaSeModal .modal-content{
    border-radius: 50px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
}
#atualizaCertificadoModal .titulo-modal,
#editaUsuarioModal .titulo-modal,
#inscrevaSeModal .titulo-modal{
    font-size: 2rem;
    color: #24A667;
}
#atualizaCertificadoModal .modal-body,
#editaUsuarioModal .modal-body,
#inscrevaSeModal .modal-body{
    padding: 50px;
}
.form-control{
    border: 1px solid #06663a;
    border-radius: 5px;
    padding-left: 20px;
    font-size: 1rem;
    font-weight: 600;
    height: 50px;
    &:focus{
        box-shadow: none;
        border: 1px solid #289b54;
    }
}
form .btn-success {
    border-radius: 5px;
    height: 60px;
    width: 250px;
    background: linear-gradient(to right, #25c481, #25b7c4);
    transition: all 0.25s ease-in-out;
    &:hover {
        filter: brightness(110%);
    }
}

#inscrevaSeModal .modal-body .form-inscricao-content{
    position: relative;
    padding-left: 30px;
    padding-top: 10px;
    &::before{
        content: "";
        height: 100%;
        width: 6px;
        position: absolute;
        background: #24A667;
        border-radius: 10px;
        left: -3px;
        top: 0;
    }
}
#editaUsuarioModal .bg-form-inscricao,
#inscrevaSeModal .bg-form-inscricao{
    background-image: url(https://img.freepik.com/free-vector/mobile-login-concept-illustration_114360-135.jpg);
    background-position: center;
    background-size: cover;
    height: 100%;
}
#atualizaCertificadoModal .btn-content .btn,
#editaUsuarioModal .btn-content .btn,
#inscrevaSeModal .btn-content .btn{
    border-radius: 50px;
    width: 250px;
    transition: all 0.25s ease-in-out;
}
#editaUsuarioModal .btn-content .btn:hover,
#editaUsuarioModal .btn-content .btn:focus,
#inscrevaSeModal .btn-content .btn:hover,
#inscrevaSeModal .btn-content .btn:focus{
    transform: translateY(-8px);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.login-container{
    display: flex;
    align-items: center;
    justify-content: center;
    & .content-form-login{
        background-color: #fff;
        border-radius: 30px;
        padding: 50px;
        min-height: 280px;
        position: relative;
        & .btn-login {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 50px;
            height: 60px;
            box-shadow: none;
            border: none;
            background: #24A667;
            color: #fff;
            width: calc(100% - 100px);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.25s ease-in-out;
            &:hover,
            &:focus {
                box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
                transform: translateY(-5px) translateX(-50%);
            }
        }
    }
}

.table{
    background: -webkit-linear-gradient(left, #25c481, #25b7c4);
    background: linear-gradient(to right, #25c481, #25b7c4);
    & .toggle-btn:checked + label {
        background: gold;
    }
    & thead{
        backdrop-filter: brightness(1.15);
        & th{
            vertical-align: middle;
            font-weight: 500;
        }
    }
    & tr:hover{
        backdrop-filter: brightness(90%);
    }
    & th,
    & tr,
    & td{
        background-color: transparent;
    }
    & .btn-table{
        border-radius: 5px;
        padding: 5px 15px; 
        background: #fff;
        color: #555;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.25s ease-in-out;
        display: inline-block;
        border: none;
        &:hover,
        &:focus{
            text-decoration: none;
            background-color: #d5d5d5;
            box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
            transform: translateY(-3px);
            color: #000;
        }
    }
}
.jumbotron{
    border-radius: 15px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.btn{
    font-weight: 500;
}
#content-preview{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    & #certificado-preview{
        padding: 60px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        height: 470px;
        width: 700px;
        box-shadow: 0 0 5px rgba(0,0,0,0.5);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        & .titulo{
            font-size: 2.5rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        & .descricao{
            text-align: center;
            font-size: 0.9rem;
        }
        & .nome-usuario{
            margin: 10px 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        & .assinatura{
            border-bottom: 1px solid #555;
            font-size: 0.9rem;
            padding: 0 10px ;
        }
        & .codevento{
            font-size: 0.8rem;
        }
    }
}
input[type="file"].form-control{
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}
.fake-upload-content{
    position: relative;
}
.fake_input_upload{
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    border: 2px solid green;
    border-radius: 50px;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.flex-buttons-gerencia-evento{
    gap: 10px;
}
.flex-buttons-gerencia-evento .btn{
    flex-basis: 100%;
    border-radius: 50px;
    height: 60px;
    width: 250px;
    background: #25c481;
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 520px){
    
}

@media (max-width: 1056px) {
    .footer{
        height: 200px;
        background-size: 1056px;
    }
    .mainContent{
        padding: 0 1rem;
        margin: 2rem 0;

    }
    .bg-navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
        & span {
            font-size: 18px !important;
            max-width: 90%;
        }
    }
    .dropdown {
        width: 100%;
        text-align: center;
        & button {
            justify-content: center;
            width: 100%;
        }
        & .dropdown-menu {
            text-align: center;
        }
    }
    .logo-box .img-fluid {
        max-height: 50%;
        margin: 0p; 
    }
    
    .service-nav {
        padding: 0;
        display: inline-flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        & .nav-item{
            padding: 0 10px!important;
            width: calc(50% - 10px);
            max-width: 200px;
            flex-basis: auto!important;
            border-radius: 10px!important;
            & .nav-link{
                border-radius: 10px!important;
                & img{
                    max-width: 40px;
                }
                & span{
                    font-size: 0.8rem;
                    line-height: 1;
                }
            }
        }
    }
    .flex_d{
        flex-direction: column;
    }
    .bg-header {
        & .header-title{
            text-align: center;
            margin-left: 0!important;
        }
    }
    .news-list {
        & .news-item{
            display: flex;
            flex-direction: column;
            padding: 15px 15px!important;
            align-items: start!important;
            & img {
                max-width: 200px;
                width: 100%!important;
                height: 100%!important;
            }
        }
    }
}


/* ESTILO DATATABLE */
.dt-container{
    & .dt-layout-row{
        & .dt-layout-cell{
            & .dt-input{
                height: 40px;
                border-radius: 5px;
                border: 1px solid #06663a;
                outline: none;
                font-size: 1rem;
                font-weight: 500;
            }
            & .dt-length, & .dt-search{
                color: #06663a;
                label{
                    font-size: 0.95rem;
                    font-weight: 600;
                }
            }
            & .dt-search{
                .dt-input{
                    width: 300px;
                    padding-left: 15px;
                }
            }
            & .dataTable{
                border-collapse: initial;
                thead{
                    background-color: #06663a;
                    color: #eee;
                    height: 50px;
                    th{
                        font-weight: 500;
                        font-size: 0.9rem;
                        border: none;
                        border-bottom: 1px solid #06663a;
                        border-top: 1px solid #06663a;
                        &:hover{
                            outline: none;
                        }
                        &:first-child{
                            border-radius: 5px 0 0 0;
                            border-left: 1px solid #06663a;
                        }
                        &:last-child{
                            border-right: 1px solid #06663a;
                            border-radius: 0 5px 0 0;
                        }
                        &:only-child{
                            border-radius: 5px 5px 0 0;
                        }
                        &.dt-ordering-asc{
                            & .dt-column-order{
                                &::before{
                                    opacity: 0.75;
                                }
                            }
                        }
                        &.dt-ordering-desc{
                            & .dt-column-order{
                                &::after{
                                    opacity: 0.75;
                                }
                            }
                        }
                        & .dt-column-order{
                            &::after, &::before{
                                line-height: 12px;
                                opacity: 0.25;
                            }
                        }
                    }
                }
                tbody{
                    font-size: 0.85rem;
                    tr{
                        border: none;
                        height: 50px;
                        transition: all 0.15s ease-in-out;
                        td{
                            font-weight: 600;
                            color: #333;
                            transition: all 0.15s ease-in-out;
                            vertical-align: middle;
                            &:first-child{
                                border-left: 1px solid #06663a;
                            }
                            &:last-child{
                                border-right: 1px solid #06663a;
                            }
                        }
                        &:last-child{
                            & td{
                                border-bottom: 1px solid #06663a;
                                &:first-child{
                                    border-radius: 0 0 0 5px;
                                }
                                &:last-child{
                                    border-radius: 0 0 5px 0;
                                }
                            }
                        }
                        &:nth-child(even){
                            background-color: rgba(228, 247, 228);
                        }
                        &:nth-child(odd){
                            background-color: rgb(196, 233, 196);
                        }
                        &:hover{
                            background-color: #fff;
                            td{
                                color: #06663a;
                                font-weight: 700;
                                &:first-child{
                                    border-left: 8px solid #06663a;
                                }
                            }
                        }
                    }
                }
                tfoot{
                    display: none;
                }
            }
            & .dt-info{
                font-weight: 600;
                font-size: 0.95rem;
                color: #06663a;                        
            }
            & .dt-paging {
                & .dt-paging-button{
                    transition: all 0.15s ease-in-out;
                    border-radius: 5px;
                    background: #ddd;
                    margin-left: 4px;
                    font-size: 0.9rem;
                    &:first-child{
                        margin-left: 0;
                    }
                    &:hover{
                        background: #ddd;
                        box-shadow: none;
                    }
                    &:not(.disabled){
                        border: 1px solid #06663a;
                        background-color: #fff;
                        color: #06663a!important;
                        font-weight: 500;
                        &:hover{
                            background-color: #06663a;
                            box-shadow: none;
                            border: 1px solid transparent;
                            color: #fff!important;
                        }
                        &.current{
                            font-size: 1rem;
                            font-weight: 700;
                            background-color: #06663a;
                            border: none;
                            color: #fff!important;
                        }
                    }
                }
            }
        }
    }
}