@font-face {
    font-family: 'Product-Sans-Regular';
    src: url('../webfonts/Product-Sans-Regular.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'Product-Sans-Bold';
    src: url('../webfonts/Product-Sans-Bold.ttf');
    font-display: swap;
}

* {
    font-family: 'Product-Sans-Regular', sans-serif;
    -webkit-print-color-adjust: exact !important;
}

/* COLORS */
@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}




.text-gray {
    color: #cacaca;
}
.text-grayer {
    color: rgba(0,0,0,.5);
}
.text-dark {
    color: #000;
}
.text-orange {
    color: orangered;
}
.bg-gray {
    background: #cacaca;
}
.bg-primary-dark {
    background: #003966 !important;
    -webkit-print-color-adjust: exact;
}


.bg-primary-dark.text-white .text-grayer,
.bg-primary-dark.text-white .text-primary,
.bg-primary-dark.text-white a {
    color: #fff !important;
}

.font-weight-bold {
    font-family: 'Product-Sans-Bold';
}

.cursor-pointer {
    cursor: pointer;
}

.border-dashed {
    border-style: dashed;
}

.transition-all {
    -webkit-transition: all ease .5s; /* Safari prior 6.1 */
    transition: all ease .5s;
}

.hidden {
    opacity: 0;
    height: 0;
    width: 0;
    flex: 0;
    max-width: 0;
    padding: 0;
    box-sizing: border-box;
}

.list-group-full .list-group-item:hover {
    background: #0061a8 !important;
    color: #fff !important;
}

.list-group-full .list-group-item:hover a,
.list-group-full .list-group-item.active a {
    color: #fff !important;
}

.playerMenu .list-group-item {
    width: 20%;
}

.playerMenu .list-group-item a {
    line-height: 18px;
}

@media (max-width: 800px) {
    .playerMenu .list-group-item {
        width: 100%;
    }

    ul.list-group.list-group-horizontal.list-group-full {
        flex-direction: column;
    }
}


/* HEADER */
a.navbar-brand {
    padding: 0;
    line-height: initial;
}
a.navbar-brand img {
    height: 40px;
}

.navbar-light .navbar-toggler {
    color: #0061a8;
    border: none;
    outline: none;
}

.navbar-light a {
    font-size: 14px;
}
.navbar-light a#dropdownUser {
    font-size: 13px;
}


/* PLAYERS */
.playerCard {
    border-top: solid 5px;
}
.playerCard .playerCard--name {
    opacity: 0.9;
}
.playerCard .playerCard--image, .playerRoundedImage {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    opacity: 0.9;
}

.playerMiniBox .playerMiniBox--image {
    width: 60px;
    height: 60px;
    max-width: 60px !important;
    border-radius: 50%;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    opacity: 0.9;
    flex: 1;
}

.playerMiniBox span {
    flex: 0;
}

.playerHeader .playerCard .playerCard--image {
    width: 40px;
    height: 40px;
}

.playerCard:hover .playerCard--name {
    opacity: 1;
}
.playerCard:hover .playerCard--image {
    opacity: 1;
}


/* RUTINAS */
.activitiesContainer .accordion > .card .card-header h2 {
    position: relative;
}

.activitiesContainer .accordion > .card .card-header .btn-edit {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    font-size: 13px;
    line-height: 25px;
}

.activitiesContainer .accordion > .card .card-header .btn-read {
    position: absolute;
    right: 80px;
    top: 0;
    z-index: 999;
    font-size: 13px;
    line-height: 25px;
}

.activitiesContainer .card-body img {
    max-width: 100%;
}


.card-header .btn-delete {
    font-size: 11px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.activitiesContainer .card-header h2.borderUnread {
    border-left: solid 20px #e60016;
}
.activitiesContainer .card-header h2.borderRead {
    border-left: solid 20px #39db00;
}


/* SWAL */
.swal-modal {
    border-radius: 0 !important;
}
.swal-button {
    outline: none !important;
    background: #0061a8;
    border-radius: 0 !important;
}
.swal-title {
    font-size: 20px;
}
.swal-text {
    font-size: 15px;
}
.swal-button--danger {
    background-color: #e64942;
}
.swal-button--cancel {
    color: #555;
    background-color: #efefef;
}


/* BADGE */
.badges-container {
    position: absolute;
    top: 0;
    right: 0;
}

.badges-container .unreadBadge {
    position: relative;
    margin-bottom: 10px;
    color: #fff;
    background: #015ca3;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
}

.badges-container .unreadBadge span {
    position: absolute;
    right: -10px;
    top: -5px;
    background: #fe0000;
    font-size: 11px;
    width: 18px;
    height: 18px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    line-height: 17px;
}

.playersCheckboxContainer {
    max-height: 230px;
    overflow: scroll;
    border-bottom: solid 1px #d9d9d9;
}
.playersCheckboxContainer .playerCheckbox {
    min-height: auto;
    padding: 10px;
    margin: 2px;
    width: 150px;
    text-align: center;
    line-height: 16px;
    border: solid 1px #dcdcdc;
}
.playersCheckboxContainer .playerCheckbox label {
    cursor: pointer;
    position: relative;
}
.playersCheckboxContainer .playerCheckbox .playerCheckbox--image {
    width: 50px;
    height: 50px;
}
.playersCheckboxContainer .playerCheckbox label::before {
    content: "";
    position: absolute;
    border-radius: 50% !important;
    top: 20px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #adb5bd;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.playersCheckboxContainer .playerCheckbox label::after {
    display: none;
}
.playersCheckboxContainer .playerCheckbox input:checked + label::before {
    background-color: var(--org-primary, #007bff);
    border-color: var(--org-primary, #007bff);
}
.playersCheckboxContainer .playerCheckbox input:checked + label {
    color: var(--org-primary, #007bff);
}
.playersCheckboxContainer .playerCheckbox:has(input:checked) {
    border-color: var(--org-primary, #007bff);
    box-shadow: 0 0 0 2px rgba(0,123,255,.2);
}

.optionsCheckboxContainer .optionCheckbox {
    min-height: auto;
    padding: 10px;
    margin: 2px;
    width: 150px;
    text-align: center;
    line-height: 16px;
    border: solid 1px #dcdcdc;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.optionsCheckboxContainer .optionCheckbox label {
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
}
.optionsCheckboxContainer .optionCheckbox i {
    font-size: 20pt;
}
.optionsCheckboxContainer .optionCheckbox label::before {
    content: "";
    position: absolute;
    border-radius: 50% !important;
    top: 5px;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #adb5bd;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.optionsCheckboxContainer .optionCheckbox label::after {
    display: none;
}
.optionsCheckboxContainer .optionCheckbox input:checked + label::before {
    background-color: var(--org-primary, #007bff);
    border-color: var(--org-primary, #007bff);
}
.optionsCheckboxContainer .optionCheckbox:has(input:checked) {
    border-color: var(--org-primary, #007bff);
    box-shadow: 0 0 0 2px rgba(0,123,255,.2);
}


.barsContainer {

}
.barsContainer .barsContainer__bar {

}
.barsContainer .barsContainer__bar .barsContainer__bar--text {
    font-size: 14px;
}
.barsContainer .barsContainer__bar .barsContainer__bar--graphic {
    height: 35px;
    background-color: #f5f5f5;
    background-image: url('../../images/diagonal-noise.png');
}
.barsContainer .barsContainer__bar .barsContainer__bar--graphic .barsContainer__bar--graphic--bg {
    height: 35px;
    background-image: url('../../images/diagonal-noise.png');
    animation: animateWidth 1s ease;
    -webkit-animation: animateWidth 1s ease;
    overflow: hidden;
}

.barsContainer .barsContainer__bar .barsContainer__bar--graphic .barsContainer__bar--graphic--number {
    top: 5px;
    left: 10px;
}
.barsContainer .barsContainer__bar .barsContainer__bar--total,
.barsContainer .barsContainer__bar--total {
    font-size: 11px;
    color: #6e6e6e;
}


.statPlayerContainer {
    border-top: solid 5px;
}
.statPlayerContainer .statPlayerContainer__player .statPlayerContainer__player--image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
}
.statPlayerContainer .statPlayerContainer__bar--bg {
    width: 0;
    background-image: url('../../images/diagonal-noise.png');
    animation: animateWidth 1s ease;
    -webkit-animation: animateWidth 1s ease;
}

.vctAccordion .card-header button i.collapse-icon {
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 10px;
    color: rgba(255, 255, 255, 0.8) !important;

    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
     transition-property: transform;
}
.vctAccordion .card-header button.collapsed i.collapse-icon {
    /* symbol for "collapsed" panels */
    /* transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg); */
}

.playersHorizontalContainer {
    overflow: scroll;
}
.playersHorizontalContainer .playerContainer {

}
.playersHorizontalContainer .playerContainer img {
    height: 70px;
}
.playersHorizontalContainer .playerContainer .playerContainer--name {
    font-size: 13px;
    line-height: 13px;
    width: 100px;
    height: 45px;
}

.btn-back-header {
    position: absolute;
    right: 2px;
    top: 2px;
    height: 35px;
    line-height: 19px;
}

@-webkit-keyframes animateWidth {
	from {
	  width: 0px; } }

  @-moz-keyframes animateWidth {
	from {
	  width: 0px; } }

  @-o-keyframes animateWidth {
	from {
	  width: 0px; } }

  @keyframes animateWidth {
	from {
	  width: 0px; } }


.date span.input-group-addon {
    background: #ced4da;
    color: #fff;
    font-size: 11px;
    padding: 0 10px;
    box-sizing: border-box;
    font-weight: bold;
    display: flex;
    align-items: center;
}


.tablePlayers table {
}
.tablePlayers thead th {
    vertical-align: top;
}
.tablePlayers td, .tablePlayers th {
    padding: 0;
}
.tablePlayers tr td:first-child,
.tablePlayers tr th:first-child {
    width: 150px;
}
.tablePlayers tbody tr td {
    width: 50px;
}
.tablePlayers td.cell-answer {
    text-align: center;
    font-size: 20pt;
}
.tablePlayers td.cell-answer .cell-answer__comments {
    top: 0;
}
.tablePlayers td.cell-answer span, .borgOptionAnswered {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    margin-top: 10px;
}
.borgOptionAnswered.borgOptionAnswered--small {
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.playerMiniBox {
    text-align: left;
    font-size: 14px;
    line-height: 14px;
}
.playerMiniBox img {
    width: 60px;
    height: 60px;
}

.btn-selectAll {
    right: 0;
    top: 5px;
    font-size: 14px;
}

.infoStats small, .smaller {
    font-size: 10px;
    line-height: 11px;
}

.infoStats .infoStats__diff {
    bottom: 5px;
    font-size: 11px;
}

.form-field-weight {
    max-width: 100px;
    margin: 0 auto;
    display: block;
}

small.small-line, .small {
    font-size: 12px;
    line-height: 13px;
}

form label {
    font-weight: bold;
    font-size: 13px;
    margin: 0;
    text-transform: uppercase;
}

.borgOptions .borgOption {
    opacity: 0.7;
    padding-left: 40px;
    border: solid 1px #fff;
}

.borgOptions .borgOption.selected {
    opacity: 1;
    border: solid 1px #333;
}

.borgOptions .borgOption i {
    display: none;
}

.borgOptions .borgOption.selected i {
    display: block;
    top: 5px;
    left: 5px;
    font-size: 25px;
    background: #fff;
    border-radius: 50%;
    padding: 1px;
}


.icons-selector-container {
    max-height: 300px;
    overflow-y: scroll;
}

.icons-selector-container button.selected {
    background: #003966 !important;
    color: #fff !important;
}


.organization-logo {
    max-height: 100px;
}

.organization-logo.smaller {
    max-height: 50px;
}

@media (max-width: 600px) {
    .border-sm-0 {
        border: none !important;
    }
}

.rows-zebra .row > div {
    padding-top: 5px;
    padding-bottom: 5px;
}

.rows-zebra .row:nth-child(odd) > div  {
    background: #f5f5f5;
}

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

.ref-point {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.ref-point.point-green {
    background: #28a745;
}
.ref-point.point-yellow {
    background: #ffc107;
}
.ref-point.point-red {
    background: #ff0202;
}

.dev-color-low {
    color: #ff0202;
}
.dev-color-mid {
    color: #ffc107;
}
.dev-color-high {
    color: #28a745;
}

.checkbox.sn-checkbox-open-in-new-window {
    display: none !important;
}


.aclarations .linea {
    width: 30px;
    height: 1px;
    float: left;
    margin-top: 8px;
    margin-right: 5px;
    -webkit-print-color-adjust: exact;
}

.aclarations .cuadrado {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 2px;
    -webkit-print-color-adjust: exact;
}

.aclarations .linea.vertical {
    width: 8px;
    height: 12px;
    float: left;
    margin-top: 2px;
    margin-right: 5px;
    -webkit-print-color-adjust: exact;
}


#imageUpload img {
    display: block;
}
.croppie-container img.cr-original-image {
    display: none !important;
}

/* BORG */
.borg-2 {
    background-color: #94B4D2 !important; color: #333333 !important;
    -webkit-print-color-adjust: exact;
}
.borg-4 {
    background-color: #C4D59B !important; color: #333333 !important;
    -webkit-print-color-adjust: exact;
}
.borg-6 {
    background-color: #fEff66 !important; color: #333333 !important;
    -webkit-print-color-adjust: exact;
}
.borg-8 {
    background-color: #F79547 !important; color: #333333 !important;
    -webkit-print-color-adjust: exact;
}
.borg-9 {
    background-color: #BE0102 !important; color: #FFFFFF !important;
    -webkit-print-color-adjust: exact;
}
.borg-10 {
    background-color: #BE0102 !important; color: #FFFFFF !important;
    -webkit-print-color-adjust: exact;
}

@page {
    size: landscape;
    margin: 0;
}

@media print {
    @page { size: landscape; }

    .container {
        max-width: 100% !important;
    }

    .pg-break {page-break-before: always;}

    canvas {
        min-height: 100%;
        max-width: 100%;
        max-height: 100%;
        height: auto!important;
        width: auto!important;
    }

    .row.row-printed {
        display: block !important;
    }

    .row.row-printed .col {
        flex: auto !important;
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        width: 100% !important;
    }

    .print-all-open .collapse:not(.show) {
        display: block !important;
    }

    .reportTable { page-break-inside: auto; }
    .reportTable tr { page-break-inside: avoid; page-break-after: auto; }
}

.paginator a {
    border: solid 1px #152a4d;
    text-decoration: none;
    color: #152a4d;
    margin: 0 2px;
    min-width: 30px;
    height: 30px;
    padding: 0;
    line-height: 28px;
}

.paginator a.disabled {
    opacity: 0.5;
    border: none;
}

.paginator a.active,
.paginator a:hover {
    background: #152a4d;
    color: #FFFFFF;
}

.btn-back-bar {
    right: 5px;
}

.cargaContainer + .cargaContainer {
    border-top: dashed 2px;
}

.cargaContainer > div {
    height: 20px;
    width: 60px;
    border: solid 1px #efefef;
    border-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cargaContainer > div:last-child {
    border-bottom: solid 1px #efefef;
}

.reportTable td {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}


.reportTableEquals th,
.reportTableEquals td {
    display: table-cell;
    max-width: 0px;
}

.exportButtonForm {
    top: 5px;
}

.exportButtonForm .btn {
    padding: 2px 5px;
}


.width-date {
    min-width: 100px;
}

.latestCommentsContainer {
    flex-wrap: nowrap;
    overflow-y: scroll;
}

.latestCommentsContainer .latestCommentsContainer__comment {
    min-width: 250px;
}

.img-loader {
    max-height: 200px;
    margin: 0 auto;
    display: block;
}

.input-group .input-group-append > span {
    height: 38px;
}
