/* Add here all your css styles (customizations) */


.btn {
    border-radius: 2.25em !important;
}

.red {
    border: 1px solid red !important;
    color: red !important;
}

/*fix for black border video*/
video {
    clip-path: inset(1px 1px);
}

/*.allstatus {
    color: #267556 !important;
    border-color: #267556 !important;
}*/
.openstatus:hover {
    color: #009ee0 !important;
    border-color: #009ee0 !important;
}
.pendingstatus:hover {
    color: #4b68a4 !important;
    border-color: #4b68a4 !important;
}
.offerstatus:hover {
    color: #ef9a07 !important;
    border-color: #ef9a07 !important;
}

.assignedstatus:hover {
    color: #267556 !important;
    border-color: #267556 !important;
}
.closedstatus:hover {
    color: #000 !important;
    border-color: #000 !important;
}

#sideNavMenu {
    min-height: calc(100vh - 187px);
    margin-top: 20px;
}

.tt-input {
    width: 290px !important;
}

.note-form-label {
    margin-right: 5px;
}

.irs-min {
    margin-top: 12px;
    display: none !important;
}

.irs-max {
    margin-top: 12px;
    display: none !important;
}

.irs-from {
    margin-top: 12px;
    display: none !important;
}

.irs-to{
    top: -48px;
}

.irs-line-left {
    background-color: #ef9a07 !important;
}

#maincontainer::-webkit-scrollbar {
    width: 0 !important
}

#maincontainer::-webkit-scrollbar {
    width: 0 !important
}

/*#maincontainer_profile::-webkit-scrollbar {
    width: 0 !important
}

#maincontainer_profile::-webkit-scrollbar {
    width: 0 !important
}*/

.nicescroll::-webkit-scrollbar {
    width: 0 !important;
}

.smallscroll {
    padding-right:10px !important;
}

.smallscroll::-webkit-scrollbar {
    width: 4px !important;
    padding-right: 10px !important;
}

.smallscroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #efefef;
    -webkit-border-radius: 3px 3px;
}

.smallscroll::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    outline: 0px solid #eee;
    -webkit-border-radius: 3px 3px;
}

/*.summarytext {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;*/ /* number of lines to show */
    /*line-clamp: 6;
    -webkit-box-orient: vertical;
    height: 140px;
}*/

.summarytext:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(transparent 90px, white);
}

.summarytext {
    overflow: hidden;
    min-height: 160px !important;
    max-height: 160px !important;
}

.sector ul {
    list-style: none; /* Remove default bullets */
}

.sector ul li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #32b783; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.bellnoring {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 22px;
    color: #9e9e9e;
    -webkit-transform-origin: 50% 4px;
    -moz-transform-origin: 50% 4px;
    transform-origin: 50% 4px;
}

.bellring {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 22px;

    color: #9e9e9e;
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    1% {
        -webkit-transform: rotateZ(30deg);
    }

    3% {
        -webkit-transform: rotateZ(-28deg);
    }

    5% {
        -webkit-transform: rotateZ(34deg);
    }

    7% {
        -webkit-transform: rotateZ(-32deg);
    }

    9% {
        -webkit-transform: rotateZ(30deg);
    }

    11% {
        -webkit-transform: rotateZ(-28deg);
    }

    13% {
        -webkit-transform: rotateZ(26deg);
    }

    15% {
        -webkit-transform: rotateZ(-24deg);
    }

    17% {
        -webkit-transform: rotateZ(22deg);
    }

    19% {
        -webkit-transform: rotateZ(-20deg);
    }

    21% {
        -webkit-transform: rotateZ(18deg);
    }

    23% {
        -webkit-transform: rotateZ(-16deg);
    }

    25% {
        -webkit-transform: rotateZ(14deg);
    }

    27% {
        -webkit-transform: rotateZ(-12deg);
    }

    29% {
        -webkit-transform: rotateZ(10deg);
    }

    31% {
        -webkit-transform: rotateZ(-8deg);
    }

    33% {
        -webkit-transform: rotateZ(6deg);
    }

    35% {
        -webkit-transform: rotateZ(-4deg);
    }

    37% {
        -webkit-transform: rotateZ(2deg);
    }

    39% {
        -webkit-transform: rotateZ(-1deg);
    }

    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    1% {
        -moz-transform: rotate(30deg);
    }

    3% {
        -moz-transform: rotate(-28deg);
    }

    5% {
        -moz-transform: rotate(34deg);
    }

    7% {
        -moz-transform: rotate(-32deg);
    }

    9% {
        -moz-transform: rotate(30deg);
    }

    11% {
        -moz-transform: rotate(-28deg);
    }

    13% {
        -moz-transform: rotate(26deg);
    }

    15% {
        -moz-transform: rotate(-24deg);
    }

    17% {
        -moz-transform: rotate(22deg);
    }

    19% {
        -moz-transform: rotate(-20deg);
    }

    21% {
        -moz-transform: rotate(18deg);
    }

    23% {
        -moz-transform: rotate(-16deg);
    }

    25% {
        -moz-transform: rotate(14deg);
    }

    27% {
        -moz-transform: rotate(-12deg);
    }

    29% {
        -moz-transform: rotate(10deg);
    }

    31% {
        -moz-transform: rotate(-8deg);
    }

    33% {
        -moz-transform: rotate(6deg);
    }

    35% {
        -moz-transform: rotate(-4deg);
    }

    37% {
        -moz-transform: rotate(2deg);
    }

    39% {
        -moz-transform: rotate(-1deg);
    }

    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.cmp-accordion__panel {
    overflow: hidden;
    transition: opacity 0.3s ease-out, max-height 0.8s ease-out;
}

.cmp-accordion__panel--hidden {
    max-height: 0;
    opacity: 0;
    display:none;
}

.cmp-accordion__panel--expanded {
    display:block;
    opacity: 1;
    max-height: 1000px;
}


li.nohover a:hover {
    background-color: #00000000 !important;
}

thead {
    background-color: #f8f9fa;
}

.rowpdf {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-right: -15px;
    margin-left: -15px;
}

    .rowpdf > div {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
    }

        .rowpdf > div:last-child {
            margin-right: 0;
        }

.rounded-circle {
    object-fit: contain;
    max-height: 130px;
    max-width: 130px;
}

#loader {
    margin-top: 200px !important;
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: cbp-rotation .8s infinite linear;
    animation: cbp-rotation .8s infinite linear;
    /*border-left: 3px solid rgba(114,144,182,0.15);
    border-right: 3px solid rgba(114,144,182,0.15);
    border-bottom: 3px solid rgba(114,144,182,0.15);
    border-top: 3px solid rgba(114,144,182,0.8);
    border-radius: 100%;*/
    background-image: url("../../../Images/icon-trans.png");
    background-size: 50px;
}

.highlight {
    background: #00FF00;
}

.mob.navbar-toggler {
    display: none !important;
}
.subnav {
    margin-left:20px;
}


@media screen and (min-width:921px) {
    .mob {
        display: none !important;
    }
}

@media screen and (max-width:921px) {
    #js-header {
        height: 70px;
    }

    #weblogo {
        content: url(/Images/icon.png);
        width:60px;
    }

    .mob {
        display: block !important;
    }

        .mob.navbar-toggler {
            outline: none !important;
            display: block !important;
        }

        .mob.navbar-nav {
            font-size: 16px !important;
        }

    .js-side-nav {
        display: none !important;
    }

    .web {
        display: none !important;
    }

    #profileMenuInvoker {
        min-width: 0px !important; 
    }

    #profileMenu {
        min-width:200px !important;
    }
}