.uppercase{
    text-transform: uppercase;
}
.flex-web{
    display: flex;
}
.show_mobile{
    display: none;
}
.hide_mobile{
    display: show;
}
.disabled-input{
    cursor: not-allowed;
}
.bg-opacity{
    background: #00000055 !important;
}

.background-birthday{
    background-image: url(/images/background_birthday.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

input[type="search"].form-control.form-control-sm{
    border: 2px solid #3699FF !important;
    width: 20rem !important;
}

/* .special-dialog-responsive .el-dialog {

} */

@media only screen and (max-width: 769px){
    .special-dialog-responsive .el-dialog {
        width: 95% !important;
    }

    .flex-web{
        display: block;
    }
    .show_mobile{
        display: block;
    }
    .hide_mobile{
        display: none;
    }
    .seven-cols .col-seven {
        width: 100% !important;
    }
}


@media (min-width: 992px) {
    .seven-cols .col-seven{
        width: 14.285714285714285714285714285714% !important;
    }
}

@media (min-width: 768px){
    .seven-cols .col-seven{
        width: 14.285714285714285714285714285714% !important;
    }
}

.hover-card{
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.hover-card:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* TABLE FIXED HEAD AND FIRST COLUMN */
.table-fixed {
    position: relative;
    width: 100%;
    z-index: 1;
    margin: auto;
    overflow: auto;
    max-height: 500px;
}
.table-fixed table {
    width: 100%;
    min-width: 1280px;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
}
.table-fixed.table-wrap {
    position: relative;
}
.table-fixed th,
.table-fixed td {
    padding: 5px 10px;
    background: #ffffff;
    vertical-align: top;
    border-collapse: collapse !important;
    text-align: center;
}
.table-fixed th {
    border: 1px solid #ffffff !important;
}
.table-fixed td {
    border: 1px solid #1e1e2d !important;
}
.table-fixed thead th {
    background: #1e1e2d;
    color: #ffffff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.table-fixed tfoot,
.table-fixed tfoot th,
.table-fixed tfoot td {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    background: #666;
    color: #ffffff;
    z-index: 4;
}

.table-fixed th:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    background: #3699FF;
    color: #ffffff;
}
.table-fixed thead th:first-child,
.table-fixed tfoot th:first-child {
    z-index: 5;
}