/*WRAPPERS etc.*/

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px;
}

@media (max-width:1280px) {
    .wrapper {
        padding: 40px;
    }
}

@media (max-width:990px) {
    .wrapper {
        padding: 32px;
    }
}

@media (max-width:600px) {
    .wrapper {
        padding: 24px;
    }
}

.row {
    margin: 0 -32px;
}

[class^="col-"] {
    padding-left: 32px;
    padding-right: 32px;
}

.row.closeCols {
    margin: 0 -8px;
}

.row.closeCols [class^="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

@media (max-width:990px) {
    .row {
        margin: 0 -16px;
    }
    [class^="col-"] {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width:600px) {
    .row {
        margin: 0 -8px;
    }
    [class^="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
}


/*BOTONES*/

.button,
.button:hover,
.button:focus {
    display: inline-block;
    vertical-align: middle;
    background: #ff3e17;
    color: #fff;
    width: auto;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.5;
    padding: .3em .75em;
    margin: 0;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    letter-spacing: -0.25px;
    border: 2px solid transparent;
    transition: opacity ease-in .3s, box-shadow ease-in .3s;
    opacity: .99;
    font-family: 'Univers', Arial, Helvetica, sans-serif;
    white-space: nowrap;
}

.button.white {
    background: #fff;
    color: #ff3e17;
    border-color: #ccc;
    font-weight: 700;
    letter-spacing: 0;
}

.button.white.sm {
    color: #595a5c;
    letter-spacing: -0.25px;
}

.button.sm {
    font-size: 18px;
    font-weight: 500;
    padding: .473em .75em;
}

.button.lg {
    padding: .62em 1em;
}

.button.sh {
    border-color: transparent;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.button.sh.white {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .15);
}

.button.full {
    display: block;
    padding-left: 8px;
    padding-right: 8px;
}

.button:hover {
    opacity: .8;
}

.button.sh:hover {
    box-shadow: 0 5px 12px rgba(0, 0, 0, .5);
    opacity: .95;
}

.button.sh.white:hover {
    box-shadow: 0 5px 12px rgba(0, 0, 0, .3);
}

.button img {
    line-height: 0;
    display: inline-block;
    position: relative;
    top: -1px;
    margin-right: 0.4em;
}

.button img.higher {
    top: -2px;
}

@media (max-width:600px) {
    .button.onlyIcon600 {
        font-size: 0;
        padding: 12px;
    }
    .button.onlyIcon600 img {
        top: 0px;
    }
}


/*INPUTS, labels, etc.*/

.field {
    margin-bottom: 32px;
}
.fieldCompact {
    margin-bottom: 2px;
}
:not(.options)>legend {
    margin-bottom: 40px;
    color: #7d7d7d;
    border: none;
    font-family: 'Univers Condensed', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 24px;
}

label {
    color: 595a5c;
    font-size: 17px;
    font-weight: 300;
    color: #999;
    padding-top: 12px;
}

legend img,
legend span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

legend img {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

fieldset {
    margin-bottom: 80px
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]),
textarea,
select {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 17px;
    border-radius: 0;
    height: 48px;
    line-height: 2;
    padding: 0 0 1px;
    background: #fff;
    box-shadow: none;
    color: #595a5c;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"])::placeholder,
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]).placeholder,
select.placeholder,
textarea::placeholder {
    color: #999;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="submit"]):disabled {
    opacity: .6;
}

textarea {
    height: 128px;
    resize: none;
    padding-top: 12px;
    line-height: 1.3;
}

select,
select.input-sm {
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url(../img/select.svg) no-repeat right center;
}

option {
    background: none;
}

@media screen and (min-width:0\0) {
    select,
    select.input-sm {
        padding-right: 0;
        /*IE*/
    }
}


/*Radios y Checkboxes*/

.option {
    display: inline-block;
    position: relative;
    min-height: 32px;
    min-width: 24px;
    padding-left: 24px;
    margin: 0;
    position: relative;
}

.option:not(:last-child) {
    margin-right: 32px;
}

.option input {
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
}

.option label {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding-top: 3px;
    font-weight: 400;
}

.option label:before {
    content: "";
    background: #fff;
    border: 1px solid #ccc;
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    transition: border-color ease-in-out .3s;
}

.option input[type="checkbox"]+label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid #595a5c;
    border-width: 0 3px 3px 0;
    transform: rotate(45.1deg);
}

.option input[type="radio"]+label:before {
    border-radius: 50%;
}

.option input[type="radio"]+label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    background: #595a5c;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.option input+label:after {
    opacity: 0;
    transition: opacity ease-in-out .3s;
}

.option input:checked+label:after {
    opacity: 1;
}

table .option {
    min-height: 26px;
}

.option input[type="checkbox"].selectAll+label:before {
    border: 2px solid #595a5c;
}


/*ACCIONES*/

.action,
.action:hover,
.action:focus {
    display: inline-block;
    vertical-align: middle;
    padding: 8px;
    color: inherit;
    transition: opacity .3s;
    text-decoration: none;
    line-height: 20px;
    height: 40px;
    width: 40px;
    text-align: center;
}

.action:hover,
.action:focus {
    opacity: .7;
}

.action.disabled {
    opacity: .4;
    cursor: default;
}

table.dataTable .action {
    margin: -16px 0;
    position: relative;
    top: -1px;
}


/*ESTADOS*/
.status {
    /* font-weight: 400; */
    text-transform: uppercase;
}
.status.rejected {
    color: #f15a24;
}

.status.pending {
    color: #e8ac07;
}

.status.activated {
    color: #31d47c;
}

.status.inProgress {
    color: #31bbd4;
}

.status.inactive {
    color: #828686;
}

.rank.bronze {
    color: #ed9d5d;
}

.rank.silver {
    color: #b5baa4;
}

.rank.gold {
    color: #ffb600;
}

.rank.platinum {
    color: #a4bab8;
}


/*VARIOS*/

.docLink {
    padding-bottom: 2px;
    transition: opacity .3s;
    display: inline-block;
}

.docLink:hover {
    opacity: .7;
}

.docLink img {
    display: inline-block;
    line-height: 0;
    position: relative;
    top: 0px;
    margin: 4px 4px 4px 0;
}

.withoutDocument {
    border-color: red !important;
}

.headDocuments {
    background: lightgray;
}

.displayDocument {
    color: gray;
}

.collapseDocument {
    display: block;
}

.card-body-document {
    display: block;
    color: blue;
}

.cardDocument {
    background-color: white;
}

.itemsDocuments {
    color: gray;
    font-size: 12px;
}

.itemsDocuments a {
    color: blue;
}

.itemsDocuments label {
    font-size: 12px;
}

table.dataTable thead .sorting:after {
    content: "";
}

.fieldsetNoMarginBottom {
    margin-bottom: 0px;
}


/* Popup */

.optionsElements {
    display: inline-block;
}

.optionsElements:hover {
    background-color: lightgray;
    color: black;
}

.popupTextarea {
    margin: 10px;
    padding: 5px;
}

.popupTextarea textarea {
    border: 1px solid lightgray
}

#optionsDP {
    width: 90%;
    margin: auto;
}

#optionsDP input {
    margin-right: 5px;
}

.tableBoilers {
    font-size: 13px !important;
}
.tableBoilers td {
    color: black!important;
}

.boilerTableFullWidth {
    margin: 0 auto;
    margin-top: -4rem;
    margin-bottom: 3rem;
    width: 90%;
}

.boilerTableFullWidth tbody {
    background-color: silver;
}

.boilerTableFullWidth tr:nth-child(odd) {
    font-weight: bold;
}

.uploadedFiles {
    display: inline-flex;
    margin: 1rem;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: all .1s ease-in-out;
}
.uploadedFiles:hover {
    transform: scale(1.1);
}
.uploadedFiles p {
    margin: 0;
    margin-left: 1rem;
}

.filesWrapper {
    padding: 2rem;
    height: 2rem;
}

.filtersWrapper {
    background-color: silver;
    padding: 1rem;
    border-radius: 10px;
}

.filtersWrapper input, .filtersWrapper select {
    padding-left: 0.5rem!important; 
    border-radius: 10px!important;
}

.filtersWrapper label {
    color: black;
}

.btn-cancel {
    background-color: silver;
    color: black;
}

.btn-cancel:hover {
    background-color: silver;
    color: black;
}