/* Estilos personalizados */
h2, .h2 {
    font-size: 2.6em;
}

.title{
    margin-top: 20px;
    margin-bottom: 10px;
    /*font-weight: bold;*/
    font-size: 18px;
}

h2.title{
    font-size: 28px;
}

.main > .container{
    padding-bottom: 40px;
}

.card-box1 {
    background-color: #fafafa;
    background-clip: border-box;
    border: 1px solid #818181;
    padding: 1.5rem;
    margin-bottom: 24px;
    border-radius: 0.25rem;
    height: auto;
}

.card-box2 {
    background-color: #fafafa;
    background-clip: border-box;
    border: 1px solid #818181;
    padding: 1.5rem;
    margin-bottom: 24px;
    border-radius: 0.25rem;
    height: auto;
}

.card-box3 {
    background-color: #fafafa;
    background-clip: border-box;
    border: 1px solid #818181;
    padding: 1.5rem;
    margin-bottom: 24px;
    border-radius: 0.25rem;
    height: auto;
}

strong {
  font-weight: bold;
}

.modal-footer > * {
    margin: 1.25rem;
}

.card-header{
    background-color: #ddd;

}

.card{
    text-align: left;
    box-shadow: none;
    width: 92%;
    margin: 15px auto;
    padding: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#profileInfo{
    background: #68B2DF;
    padding: 3px 10px;
    border-radius: 5px;
    margin: 0 25px;
    color: white;
    border: 3px solid #F07B06;
    font-size: 14px;
}

#profileInfo.responsive{
    margin: 0;
    margin-bottom: 10px;
    width: fit-content;
    padding: 8px 15px;
}

.pagination p.text-sm{
    margin-right: 10px;
}

.pagination span[aria-current="page"] span {

    background-color: #eee !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: green;
}

input:focus + .slider {
    box-shadow: 0 0 1px green;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.modal-content{
    border-radius: 10px;
}

.modal-header{
    padding: 14px 23px !important;
}

.modal-header.bg-warning{
    color: white;
    background-color: darkorange !important;
}

.modal-header.bg-warning .close{
   color: white;
}


@media only screen and (max-width: 767px) {
    .desktop-array th, .desktop-array td {
        width: 100% !important;
        display: block;
    }
    .desktop-array th {
        border: none !important;
    }
    .desktop-array td {
        border-top: none !important;
    }
    .desktop-array input{
        padding: 0;
    }

    #profileInfo.responsive{
        width: 100%;
    }
}