@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1150px !important;
    }
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #f8f9fa;
    opacity: 1;
}

td, th{
    white-space: nowrap !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #FAFAFA !important;
}

.vertical_center{
    position: absolute; 
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);    
}

.pipe_wrapper{
    white-space: nowrap;
    position: relative;
    right: 0;
    left: 0;
    overflow-x: scroll;
}

.pipe_header{
    background: #EEE;
    line-height: 55px;
    text-align: center;   
}

.pipe_col{
    vertical-align: top;  
    width: 250px;
    display: inline-block;
}

.pipe_col .card{
    padding: 15px;
    margin-bottom: 10px;
}

.pipe_col + .pipe_col{
    margin-left: 20px;
}

.pipe_content{
    overflow-y: scroll;
    height: 60vh;
    padding: 10px;
    position: relative;
}

.pipe_footer{
    background: #EAEAEA;
    line-height: 10px;
    text-align: center;
    padding: 15px 0;
}

.error {
    color: red;
}

.dropdown-menu {
    height: 300px;
    overflow: auto;
}

select#status[readonly] {
    appearance: none;
    pointer-events: none;
    touch-action: none;
}

.previous-status {
    position: absolute;
    text-decoration: underline;
    left: -380px;
    top: 50%;
    transform: translateY(-50%);
}

.next-status {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: underline;
}

.next-status:hover,
.previous-status:hover {
    cursor: pointer;
}

.subscription-datas-block {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-subscription {
    display: none;
}

.subscription-datas-block p {
    display: inline;
    margin-right: 60px;
    margin-bottom: 0;
}

.subscription-datas-block i:hover {
    cursor: pointer;
}

.loader-wheel {
    animation: spin 1s infinite linear;
    border: 2px solid rgba(30, 30, 30, 0.5);
    border-left: 4px solid #fff;
    border-radius: 50%;
    height: 25px;
    margin: 5px auto 15px auto;
    width: 25px;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
