/** GENERAL **/

::-webkit-scrollbar {
    width: .6rem;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: .1rem;
}

::-webkit-scrollbar-thumb {
    background: #FFA800;
    border-radius: .1rem;
}

::-webkit-scrollbar-thumb:HOVER {
    background: #76571F;
}

html,
body {
    background-color: #F0F0F0;
}

.project-main-viewer {
    overflow-y: auto;
}

.smooth {
    opacity: 0;
    -webkit-animation-name: show;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    animation-name: show;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.form-control {
    border-radius: 0px !important;
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.help-block {
    cursor: help;
}

.help-block i {
    color: #6ea1ff !important;
}


/** SPINNER **/

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/** - LOADING VIEWS - **/

.loading-container {
    background-color: #f9f9f9;
    z-index: 10001;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: wait;
    padding-top: 20rem;
}

.dots {
    margin: auto;
    width: 60px;
    height: 60px;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #FFA800;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}


/** FORMS **/

div.legend {
    color: #fff;
    background-color: #c9c9c9;
    padding: 5px;
    margin: 1rem 0;
}

div.legend ul {
    list-style: none !important;
    margin: 0px;
    padding: 0px;
}

div.legend ul li {
    float: left;
    padding: 0 10px;
}

div.legend ul li i {
    color: #6ea1ff;
}

div.form-header {
    margin-bottom: 0.5rem;
    background-color: #fff;
    position: relative;
    height: 70px;
}

div.title-wrapper {
    position: relative;
    z-index: 0;
    background-color: #FFA800;
    color: #fafafa;
    display: inline-block;
    margin-left: -20px;
    padding: 1.5rem !important;
    min-width: 350px;
}

div.subtitle-wrapper {
    display: inline-block;
    color: #fafafa;
    background-color: #85868D;
    padding: 1rem;
    margin-left: -4px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

div.fieldset-wrapper {
    min-height: 65vh;
}

div.form-block {
    background-color: #fff;
    box-shadow: 1px 0px 8px #c9c9c9;
}

.bordered {
    border: 3px solid #FFA800;
    padding: 15px 0px;
}

.bordered-hover {
    border: 3px solid #ddd;
    overflow: hidden;
}

.bordered-hover:hover {
    transition: 0.5s;
    border: 3px solid #FFA800;
    cursor: pointer;
}

.bordered-hover .fa-bg {
    color: #ddd;
    z-index: 1;
}

.bordered-hover:hover .fa-bg {
    color: #FFA800;
    transition: 0.5s;
}

div.wrapper-entity-image {
    border: 1px solid #c9c9c9;
    padding: 5px;
    margin: 5px;
    background-color: #f9f9f9;
    max-width: 80%;
    width: auto;
    display: inline-block;
    margin: 1rem auto;
}

div.wrapper-entity-image img.entity-image {
    display: block;
    margin: 0 auto;
    max-width: 80%;
}



div.form-controls {
    float: right;
    padding: 10px 60px;
    width: auto !important;
    margin-right: -25px;
    box-shadow: 1px 1px 1px #c9c9c9;
    background-color: #fff;
    margin-top: 1rem;
}



.fixed-top.wrapper-form-controls {
    position: fixed;
    right: 30px;
    top: 0;
    display: flex;
}

.fixed-top.wrapper-form-controls .form-controls {
    float: none;
    padding: 0px;
    width: auto !important;
    margin-right: 0px;
    box-shadow: none;
    background-color: transparent;
    margin-top: 0px;
}

.fixed-top.wrapper-form-controls .form-controls .btn {
    float: right;
    position: relative;
    margin: 0 5px;
    top: -1px;
    right: 10px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    overflow: hidden;
    z-index: 4;
    border-radius: 0;
    min-width: 0 !important;
}

.fixed-top.wrapper-form-controls .form-controls .btn .fa-bg {
    top: 18%;
    font-size: 400% !important;
    color: #fff;
}

.fixed-top.wrapper-form-controls .form-controls .return {
    border: 1px solid #c9c9c9;
}

.fixed-top.wrapper-form-controls .form-controls .return .fa-bg {
    color: #c9c9c9 !important;
    opacity: 1;
}

div.form-block .subtitle {
    background-color: #85868D;
    color: #fff;
    padding: 5px 10px;
    margin-left: -23px;
    width: auto !important;
    display: inline-block;
    position: relative;
    z-index: 0;
    padding-left: 35px;
    box-shadow: 1px 1px 1px #c0c0c0;
    overflow: hidden;
    white-space: nowrap;
    clear: both;
}

div.form-block .subtitle .fa-bg {
    font-size: 235% !important;
    left: 0;
    color: #fff;
    opacity: 0.4 !important;
}

div.form-block .subtitle.warning {
    color: #fafafa !important;
    background-color: #FFA800;
}

div.form-controls>.btn {
    background-color: #fff;
    color: #85868D;
    border-radius: 0px;
    min-width: 150px !important;
}

div.form-controls>.btn-save {
    color: #fff;
    background-color: #3cad4a;
}

.btn-create {
    position: absolute;
    right: 10px;
    top: -20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background-color: #3cad4a;
    overflow: hidden;
    z-index: 4;
    border-radius: 0;
}

.btn-create .fa-bg {
    top: 18%;
    font-size: 400% !important;
    color: #fff;
}

.btn-export {
    border-radius: 0;
    min-width: 150px;
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-export:hover,
.btn-export:focus,
.btn-export:active,
.btn-export.active,
.open>.dropdown-toggle.btn-export {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-search {
    background-color: #FFA800;
    min-width: 150px;
    border-radius: 0;
    color: #fff;
}

.btn-search:hover {
    color: #fff;
}

.btn-resolve {
    background-color: #FFA800;
    min-width: 150px;
    border-radius: 0;
    color: #fff;
}

.btn-resolve:hover {
    color: #fff;
}

div.form-controls>.btn-delete {
    color: #fff;
    background-color: #c92d42;
}

div.form-controls>.btn-cancel {
    border: 1px solid #c9c9c9;
}

div.form-controls>.btn:active {
    outline: none !important;
}

div.form-controls>.btn:focus {
    box-shadow: none !important;
    background-color: #FFA800;
    color: #fff;
}

.btn-toggle {
    background-color: white;
    border: 1px solid #FFA800;
    color: #85868D;
    padding: 5px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.btn-toggle>.fa-bg {
    position: relative;
    font-size: 500% !important;
    top: 5%;
    right: 5%;
}

.btn-toggle-active {
    background-color: #FFA800;
    color: white;
}


/** MODALS **/

.modal .form-controls {
    box-shadow: none;
    min-width: 350px !important;
    background-color: #f0f0f0;
}

.modal-body .title-wrapper {
    margin-left: -50px;
    width: 350px;
}


/** FORMS - LOCATIONS **/



div.map-geolocation {
    height: 18vh !important;
    margin-bottom: 0.5rem;
}

input.places-search-box {
    margin-left: 5px !important;
}


/** FILTERS **/

.list-header {
    background-color: #FFA800;
    color: white;
    height: 75px;
    font-size: 1.3rem !important;
    margin-bottom: 10px;
    margin-left: -35px;
    overflow: hidden;
    z-index: 0;
}

.list-controls {
    padding-top: 10px;
    padding-bottom: 10px;
    color: white !important;
    background-color: #c9c9c9;
    overflow: hidden;
    text-align: center;
    z-index: 0;
}

.list-button {
    width: 100px;
    height: 40px;
    display: block;
    cursor: pointer;
    line-height: 40px;
    text-align: left;
    padding-left: 10px;
    font-weight: bold;
    float: left;
    margin: 0 15px;
    position: relative;
    color: white !important;
    text-decoration: none !important;
    background-color: #FFA800;
    overflow: hidden;
}

.list-button a {
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    display: block;
}

.list-button .fa-bg {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 300% !important;
    z-index: 1;
}




/** TABLES **/

.table>thead>tr {
    box-shadow: 1px 1px 1px #c9c9c9;
}

.table>thead>tr>th {
    color: #fff !important;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #85868D !important;
    border-bottom: 0px !important;
    white-space: nowrap !important;
}

.table>thead>tr>th:first-child {
    border-radius: 0px 0px 0px 0px;
}

.table>thead>tr>th:last-child {
    border-radius: 0px 0px 0px 0px;
}

.table>tbody>tr:hover {
    background-color: #f0f0f0 !important;
}

.table>tbody>tr.table-head-separator {
    height: 10px !important;
}

.table-hover>tbody>tr:hover>td,
.table-hover>tbody>tr:hover>th {
    background-color: #f0f0f0 !important;
}

.table>tbody>tr:nth-child(even)>td,
.table>tbody>tr:nth-child(even)>th {
    background: #fff;
}

.table>tbody>tr:nth-child(3)>td,
table>tbody>tr:nth-child(2)>td,
table>tbody>tr:nth-child(1)>td {
    border-top: 0px !important;
}

.table>tbody>tr:nth-child(odd)>td,
.table>tbody>tr:nth-child(odd)>th {
    background: #fff;
}

div.filters-header {
    margin-bottom: 0.5rem;
    background-color: #fff;
    position: relative;
    height: 70px;
}

.filters-special-actions {
    display: inline-block;
    float: right;
    padding: 1rem;
}

.table-filters {
    padding: 1rem;
    background-color: #f9f9f9;
    box-shadow: 1px 1px 3px #c9c9c9;
}

.table-controls {
    padding: 1rem 0;
}

.table-controls select#pageSize {
    display: inline-block;
    width: 75px;
}

.table-paginator .pagination {
    margin: 0px;
    border-radius: 0px;
}

.table-paginator .pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.table-paginator .pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.table-paginator .pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.table-paginator .pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    background: #FFA800;
    color: #ffffff;
    border: 1px solid #ddd;
}

.table-paginator .pagination>li>a,
.pagination>li>span {
    color: #85868D;
}

.table-paginator dir-pagination-controls {
    float: right;
}


/** Programming Points List **/

.modal-videoplayer {
    width: 60vw;
    width: max-content;
    width: -moz-fit-content;
    max-width: 60vw;
    background-color: black !important;
}

.modal-videoplayer .modal-content {
    background-color: black !important;
    display: flex;
    flex-flow:wrap;
}

.modal-videoplayer .viewport {
    border-radius: 0px !important;
}


/** HELPERS **/

.mb-15 {
    margin-bottom: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.ma-15 {
    margin: 15px;
}

.max-h-40 {
    max-height: 40vh;
}

.max-h-60 {
    max-height: 60vh;
}

.max-h-80 {
    max-height: 80vh;
}

.max-h-20 {
    max-height: 20vh;
}

.scrollable-y {
    overflow-y: auto;
}

.scrollable-h {
    overflow-h: auto;
}

.app-color {
    color: #FFA800
}

.to-uppercase {
    text-transform: uppercase;
}


/** MODALS **/

.modal-medium {
    width: 60%;
}


/** LCR Managing **/

.btn-cancel-lcr {
    position: absolute;
    right: 130px;
    top: -20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background-color: #C92D42;
    overflow: hidden;
    z-index: 4;
    border-radius: 0;
}

.btn-cancel-lcr .fa-bg {
    top: 18%;
    font-size: 400% !important;
    color: #fff;
}

.btn-deprecate {
    position: absolute;
    right: 175px;
    top: -20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background-color: #C92D42;
    overflow: hidden;
    z-index: 4;
    border-radius: 0;
}

.btn-deprecate .fa-bg {
    top: 18%;
    font-size: 400% !important;
    color: #fff;
}

.btn-big {
    height: 250px;
    width: 250px;
}

.btn-lcr-edit {
    position: absolute;
    right: 70px;
    top: -20px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background-color: #FFA800;
    overflow: hidden;
    z-index: 4;
    border-radius: 0;
}

.btn-lcr-edit .fa-bg {
    top: 18%;
    font-size: 400% !important;
    color: #fff;
}


/** Mini steps **/

.mini-wrapper-steps {
    width: 100%;
}

.mini-wrapper-steps .step {
    margin: 0px;
    display: inline-block;
}

.mini-wrapper-steps .progress-step {
    border: 1px solid #ddd;
    border-radius: 0px;
    width: 25px;
    font-size: 0.9rem;
    display: inline-block;
    height: 25px;
    line-height: 25px;
}

.mini-wrapper-steps .progress-step.substep {
    width: 15px;
}


/** Normal steps **/

.wrapper-steps {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 30px;
    text-align: center;
    padding: 0.5rem 0px;
    position: relative;
}

.wrapper-steps .step {
    display: inline-block;
    vertical-align: top;
    margin: 0 30px;
}

.progress-step {
    border: 2px solid #ddd;
    border-radius: 0px;
    width: 100px;
}

.progress-step.substep {
    width: 50px;
}

.progress-step-completed {
    background: #FFA800 !important;
    color: #fafafa !important;
    border: 2px solid #FFA800 !important;
}

.progress-step-cancelled {
    background: #D6717F !important;
}

.progress-link {
    margin-top: 15px;
    border-top: 3px solid #ddd;
    display: inline-block;
    width: 14%;
    margin-left: -33px;
    margin-right: -33px;
}

.progress-link-button {
    border: 2px solid #FFA800;
    cursor: pointer;
    background-color: #fafafa;
    color: #FFA800;
}

.progress-link.substep {
    width: 7%;
}

.progress-link-completed {
    border-top: 3px solid #FFA800;
}

.lcr-urgent {
    display: inline-block;
    padding: 0.5rem;
    margin: 0 auto;
    background-color: #E00109;
    color: white !important;
    font-weight: bold;
    opacity: 1;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: pulse-red;
    animation-name: pulse-red;
}

.lcr-external {
    display: inline-block;
    padding: 0.5rem;
    margin: 0 auto;
    background-color: #6ea1ff;
    color: white !important;
    font-weight: bold;
}


/** RAISED VIEW **/

.wrapper-raisedview {
    padding: 2px;
}

.raisedview {
    height: 400px;
}

.raisedview-asset-title {
    height: 30px;
    padding-top: 10px;
}

.raisedview-asset {
    height: 400px;
    transition: all 0.2s ease-in-out;
    margin-bottom: 0.5em;
}

.raisedview-asset img {
    max-height: 325px !important;
    margin: 0 auto !important;
}

.raisedview-asset:hover {
    box-shadow: 0 5px 15px rgba(255, 86, 0, .4);
    cursor: pointer;
}


/** POPOVER **/

.popover {
    max-width: 540px;
    border-radius: 0px;
    border: 2px solid #85868D;
}

.popover.bottom>.arrow {
    border-bottom-color: #85868D;
    border-bottom-color: rgba(133, 134, 141, 1);
}

.popover.top>.arrow {
    border-top-color: #85868D;
    border-top-color: rgba(133, 134, 141, 1);
}

.popover.left>.arrow {
    border-left-color: #85868D;
    border-left-color: rgba(133, 134, 141, 1);
}

.popover.right>.arrow {
    border-right-color: #85868D;
    border-right-color: rgba(133, 134, 141, 1);
}

.popover.bottom>.arrow:after {
    top: 3px;
}

.popover.top>.arrow:after {
    bottom: 3px;
}

.popover.left>.arrow:after {
    right: 3px;
}

.popover.right>.arrow:after {
    left: 3px;
}


/** UTILS **/


/** SCROLLABLES **/

.scrollable-10,
.scrollable-15,
.scrollable-20,
.scrollable-25,
.scrollable-30,
.scrollable-35,
.scrollable-40,
.scrollable-45,
.scrollable-50,
.scrollable-55,
.scrollable-60,
.scrollable-65,
.scrollable-70,
.scrollable-75,
.scrollable-80,
.scrollable-85,
.scrollable-90,
.scrollable-100 {
    overflow-x: hidden;
    overflow-y: auto;
}

.scrollable-10 {
    max-height: 10vh
}

.scrollable-15 {
    max-height: 15vh
}

.scrollable-20 {
    max-height: 20vh
}

.scrollable-25 {
    max-height: 25vh
}

.scrollable-30 {
    max-height: 30vh
}

.scrollable-35 {
    max-height: 35vh
}

.scrollable-40 {
    max-height: 40vh
}

.scrollable-45 {
    max-height: 45vh
}

.scrollable-50 {
    max-height: 50vh
}

.scrollable-55 {
    max-height: 55vh
}

.scrollable-60 {
    max-height: 60vh
}

.scrollable-65 {
    max-height: 65vh
}

.scrollable-70 {
    max-height: 70vh
}

.scrollable-75 {
    max-height: 75vh
}

.scrollable-80 {
    max-height: 80vh
}

.scrollable-85 {
    max-height: 85vh
}

.scrollable-90 {
    max-height: 90vh
}

.scrollable-95 {
    max-height: 95vh
}

.scrollable-100 {
    max-height: 100vh
}


/** TIMELINE **/

.timeline-wrapper::-webkit-scrollbar {
    width: .4rem;
}

.timeline-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: .1rem;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
    background: #FF7200;
    border-radius: .1rem;
}

.timeline-wrapper::-webkit-scrollbar-thumb:HOVER {
    background: #76461F;
}

timeline-badge {
    box-shadow: none;
    border-radius: 0px;
    font-size: 15px;
}


/** VAULT LINK **/

.vaultItemPorperties-container {
    height: 8rem;
    border: 1px solid #CCCCCC;
    padding: 1rem;
    overflow: auto;
}


/* CMS - Styles */

.table-no-results {
    text-align: center;
}

.table-no-results p {
    margin: 0;
}

.dropzone .dz-message {
    margin: 0 auto !important;
    width: 90%;
}

.dropzone .dz-preview:HOVER .dz-filename,
.dropzone .dz-preview:HOVER .dz-size {
    display: block;
}

.attachments-container {
    margin-top: 15px;
}

.attachments-container p {
    margin: 0;
}

.attachments-container .row {
    margin: 15px -15px;
}

.attachments-container .col-md-9 {
    padding-left: 30px;
}

.attachments-container a {
    margin: 0 5px;
}

.massive-modal-button{

    margin-right: 7rem;

}
.massive-modal-body{
    margin-top: 2rem;
}
.massive-upload-file{
    margin-left: 10px;
    margin-top: 10px;
}
.massive-error-msg{
    display:inline-block;
    margin: 10px 15px 10px;
}
.btn-save{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-cancel{
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}
