﻿section.mainPageLogin {
    min-height: 300px;
    max-height: 300px;
}

#mainPageItem {
    min-height: 300px;
    max-height: 300px;
}

#mainPageImage {
    min-height: 250px;
    max-height: 250px;
}

.mainItem {
    min-height: 300px;
    max-height: 300px;
    width: 100%;
}

.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: 3px solid #007bff !important;
    color: #007bff !important;
    font-family: Arial !important;
}

.nav-tabs .nav-link {
    border: unset;
    color: #6c757d !important;
    font-family: Arial !important;
}

pre {
    white-space: pre-wrap; /* css-3 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}

.bg-white-smoke {
    background-color: whitesmoke !important;
}
.bg-antique-white {
    background-color: antiquewhite !important;
}


.text-small {
    font-size: small !important;
}

.text-xsmall{
    font-size:x-small !important;
}

.w-22{
    width:22% !important;
}
.w-40{
    width:40% !important;
}

a.remove-hover:hover {
    background-color: #6c757d !important;
}
/*#nav{
	text-align:center;
	width:100%;
}

#nav ul{
	display:inline-block;
}*/
.limit-text-400 {
    white-space: nowrap;
    width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mainContainer {
    -moz-box-shadow: 0 0 3px 3px #D3D3D3;
    -webkit-box-shadow: 0 0 3px 3px #D3D3D3;
    box-shadow: 0 0 3px 3px #D3D3D3;
    border-radius: 8px;
}

.hr-margin {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
}

.drop-box {
    background: #F8F8F8;
    border: 5px dashed #0073e6;
    width: 170px;
    text-align: center;
    padding: 50px 10px;
    margin-left: 10px;
}

.ssdisabled {
    color: red;
    border: 5px dashed #DDD;
    content: "Disabled";
}

    .ssdisabled:after {
        content: " - Disabled";
    }

.p1 {
    display: none;
}

@-moz-keyframes fill-circle {
    0% {
        fill: rgb(0, 140, 186);
    }

    25% {
        fill: rgb(0, 140, 186);
    }

    50% {
        fill: yellow;
    }

    75% {
        fill: red;
    }

    100% {
        fill: rgb(0, 140, 186);
    }
}

@-webkit-keyframes fill-circle {
    0% {
        fill: rgb(0, 140, 186);
    }

    25% {
        fill: rgb(0, 140, 186);
    }

    50% {
        fill: yellow;
    }

    75% {
        fill: red;
    }

    100% {
        fill: rgb(0, 140, 186);
    }
}

@keyframes fill-circle {
    0% {
        fill: rgb(0, 140, 186);
    }

    25% {
        fill: rgb(0, 140, 186);
    }

    50% {
        fill: yellow;
    }

    75% {
        fill: red;
    }

    100% {
        fill: rgb(0, 140, 186);
    }
}

circle.animate-class {
    -moz-animation-name: fill-circle;
    -o-animation-name: fill-circle;
    -webkit-animation-name: fill-circle;
    animation-name: fill-circle;
    -moz-animation-duration: 4s;
    -o-animation-duration: 4s;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}

@keyframes fa-blink {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
    }
}

.fa-blink {
    -webkit-animation: fa-blink .75s linear infinite;
    -moz-animation: fa-blink .75s linear infinite;
    /*-ms-animation: fa-blink .75s linear infinite;*/
    -o-animation: fa-blink .75s linear infinite;
    animation: fa-blink .75s linear infinite;
}

#sidebar {
    position: fixed;
    left: 0;
    width: 250px;
    height: 100%;
    overflow: scroll;
    -moz-transition: left ease 0.5s;
    -o-transition: left ease 0.5s;
    -webkit-transition: left ease 0.5s;
    transition: left ease 0.5s;
}

.radio-125{
    transform:scale(1.25) !important;
}

    #sidebar.sidebar-hide {
        left: -250px;
        -moz-transition: left ease 0.5s;
        -o-transition: left ease 0.5s;
        -webkit-transition: left ease 0.5s;
        transition: left ease 0.5s;
    }


.animate-repeat {
    line-height: 30px;
    list-style: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


    .animate-repeat.ng-enter {
        transition: all ease-in 0.25s;
    }

    .animate-repeat.ng-leave {
        transition: all ease-out 0.25s;
    }

        .animate-repeat.ng-leave.ng-leave-active,
        .animate-repeat.ng-move,
        .animate-repeat.ng-enter {
            opacity: 0;
            max-height: 0;
        }

            .animate-repeat.ng-leave,
            .animate-repeat.ng-move.ng-move-active,
            .animate-repeat.ng-enter.ng-enter-active {
                opacity: 1;
                max-height: 30px;
            }

#toggleButton {
    left: 0;
}

#content {
    margin-left: 250px;
    -moz-transition: margin-left ease 0.5s;
    -o-transition: margin-left ease 0.5s;
    -webkit-transition: margin-left ease 0.5s;
    transition: margin-left ease 0.5s;
}

    #content.sidebar-hide {
        margin-left: 0;
        -moz-transition: margin-left ease 0.5s;
        -o-transition: margin-left ease 0.5s;
        -webkit-transition: margin-left ease 0.5s;
        transition: margin-left ease 0.5s;
    }

.rep-image {
    width: 50px;
    height: 50px;
}

.menu li {
    list-style: none;
}

#ng-item {
    -moz-transition: ease-in 0.5s;
    -o-transition: ease-in 0.5s;
    -webkit-transition: ease-in 0.5s;
    transition: ease-in 0.5s;
}

.adminControl:hover {
    -moz-animation: mymove 1s infinite;
    -o-animation: mymove 1s infinite;
    -webkit-animation: mymove 1s infinite; /* Chrome, Safari, Opera */
    animation: mymove 1s infinite;
}

@-webkit-keyframes mymove {
    from {
        -ms-transform: scale(0.9,0.9); /* IE 9 */
        -webkit-transform: scale(0.9,0.9); /* Chrome, Safari, Opera */
        transform: scale(0.9,0.9);
    }

    to {
        -ms-transform: scale(1,1); /* IE 9 */
        -webkit-transform: scale(1,1); /* Chrome, Safari, Opera */
        transform: scale(1,1);
    }
}

@-moz-keyframes mymove {
    from {
        -ms-transform: scale(0.9,0.9); /* IE 9 */
        -webkit-transform: scale(0.9,0.9); /* Chrome, Safari, Opera */
        transform: scale(0.9,0.9);
    }

    to {
        -ms-transform: scale(1,1); /* IE 9 */
        -webkit-transform: scale(1,1); /* Chrome, Safari, Opera */
        transform: scale(1,1);
    }
}

@keyframes mymove {
    from {
        -ms-transform: scale(0.9,0.9); /* IE 9 */
        -webkit-transform: scale(0.9,0.9); /* Chrome, Safari, Opera */
        transform: scale(0.9,0.9);
    }

    to {
        -ms-transform: scale(1,1); /* IE 9 */
        -webkit-transform: scale(1,1); /* Chrome, Safari, Opera */
        transform: scale(1,1);
    }
}

/* SEN changes start*/
header {
    background-image: url(../images/Home/Cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: -50px;
    padding-top: 750px;
}

.intro-heading {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 50px;
    line-height: 75px;
    margin-top: -495px;
    padding-bottom: 275px;
    color: #eeeeee;
    padding-left: 0px;
    padding-right: 0px;
}

.intro-heading2 {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    text-transform: uppercase;
    margin-top: -425px;
    padding-bottom: 0px;
    color: #333333;
}

.heading {
    background-color: #666666;
    color: #eeeeee;
    margin-bottom: 20px;
}

.rowcolor {
    background-color: #0073e6;
    padding-bottom: 100px;
    padding-top: 20px;
}

.rowcolorpage {
    background-color: #006687;
    padding-bottom: 25px;
    padding-top: 20px;
    margin-top: 10px;
    color: white;
    line-height: 50%;
    vertical-align: middle;
}

.rowhead {
    background-color: #333333;
    color: white;
    padding-top: 10px;
    margin-top: -10px;
    font-weight: 500;
    font-size: 25px;
}

.liveshow-prop {
    background-color: transparent;
    max-width: 450px;
    position: absolute;
    top: 75px;
    right: 10px;
}

.Login-prop {
    background-color: transparent;
    max-width: 400px;
    max-height: 400px;
    font-weight: 100;
    font-size: 15px;
    line-height: 20px;
}

.wellSite {
    max-width: 575px;
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    margin-right: 10px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.text-medium {
    font-size: medium !important;
}
.border-right-light-grey {
    border-right: 1px solid lightgrey !important;
}
/* SEN changes end*/

/*Mobile*/
@media(max-width:480px) {
    .mt-3-mobile {
        margin-top: 1rem !important;
    }
    .border-right-light-grey {        
        border-right:none !important;
    }
    .display-4-m {
        font-size:2.5rem !important;
        font-weight: 300;
        line-height: 1.2;
    }

    .mobile-font {
        font-size: medium;
    }

    .mobile-font-h {
        font-size: medium;
        font-weight: 500;
    }

    .text-small-mobile {
        font-size: small;
    }

    .align-column-text {
        text-align: left;
    }

    .bt-mobile {
        border-top: 1px solid lightgray;
    }

    .course-body {
    }

    .thumbnail-height {
        height: 20vh;
    }

    .us-map {
        height: 640px;
        width: 360px;
        overflow-x:auto;
        overflow-y:auto;
    }
}

/*Pete's Screen 1280 x 800*/
@media(min-width:481px) and (max-width:1299px) {
    .tablet-hide {
        display: none;
    }
}

/*Desktop*/
@media(min-width:481px) {
    .us-map {
        height: 720px;
        width: 1280px;
    }

    .ml-3-desktop {
        margin-left: 1rem !important;
    }

    .mt-3-desktop {
        padding-top: 1rem !important;
    }

    .pr-0-desktop {
        padding-right: 0px !important;
    }

    .pl-0-desktop {
        padding-left: 0px !important;
    }

    .mobile-font {
        font-size: x-large;
    }

    .mobile-font-h {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .align-column-text {
        text-align: right;
    }

    .limit-text-400-mobile {
        white-space: nowrap;
        width: 400px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .limit-text-450-mobile {
        white-space: nowrap;
        width: 450px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .limit-text-300 {
        white-space: nowrap;
        width: 300px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bl-desktop {
        border-left: 1px solid lightgray;
    }

    .position-fixed-desktop {
        position: fixed !important;
    }

    .course-body {
        height: 365px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .thumbnail-height {
        height: 8vh;
    }
}

.footer {
    position: absolute;
    width: 100%;
}

.add-table-border {
    border: 1px solid #dee2e6 !important;
}

nav[aria-label="breadcrumb"] {
    font-size: small;
}

    nav[aria-label="breadcrumb"] ol {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        margin-bottom: 10px;
    }

.limit-text {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23898' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23898' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.vjs-tech {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
}

.vjs-poster {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important;
}
