/*Flex generico com quebra de linha e centralizado*/
.custom-flex-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/*Inputs da URL nos formularios de conteúdo*/
.custom-flex-center .input-url {
    min-width: 350px;
}

/* pagination das notícias das secretarias */
.card.news-details .pagination {
    display: flex
}

/* Obrigatory */
.star {
    bottom: 8px;
    font-size: 7px;
    position: relative;
}

/* ================================GENERIC CSS================================= */

/* Center flex */
.flex {
    display: flex !important;
}

.wrap {
    flex-wrap: wrap;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

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

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.align-center {
    align-items: center;
}

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

.align-self-center {
    align-self: center;
}

.dir-collumn {
    flex-direction: column;
}

.dir-row {
    flex-direction: column;
}

.flex-self-center {
    align-self: center;
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100% !important;
}

.bold {
    font-weight: bold;
}

.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 14px;
    width: 24px;
    height: 12px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked+.toggle-switch {
    background: #56c080;
}

.toggle-checkbox:checked+.toggle-switch:before {
    left: 13px;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
    width: 24px;
    height: 12px;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.table th {
    vertical-align: bottom !important;
}

.table td {
    vertical-align: middle !important;
}

.mx-20 {
    margin: 0 20px;
}

.height-auto {
    height: auto !important;
}

.list-items {
    margin: 5px 0;
    border: 1px solid #ccc;
    background:
        #fafafa;
    background-image:
        linear-gradient(to bottom, #fff, #eee);
    border-radius: 3px;
    justify-content: space-between;
    align-items: center;
}

.no-list-style {
    list-style-type: none;
}

.p-10-0 {
    padding: 8px 0;
}