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

/** start bootstrap override **/
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

.navbar {
    padding: 0.5rem 1rem;
}

.text-justify {
    text-align: justify;
}

/** end bootstrap override **/

:root {
    --interp-primary: #4a4161;
}

.interp-primary-text {
    color: var(--interp-primary);
}

.interp-primary-borders:focus {
    border-color: var(--interp-primary);
}

.interp-primary {
    background-color: var(--interp-primary);
}

.interp-primary-all {
    background-color: var(--interp-primary);
    color: var(--interp-primary);
}

.interp-primary-navitem {
    border-top: 2px solid;
    border-color: var(--interp-primary);
}

.interp-login-btn {
    border-color: var(--interp-primary);
    color: var(--interp-primary);
}

.interp-login-btn:hover,
.interp-login-btn:active {
    color: white !important;
    background-color: var(--interp-primary) !important;
}

.interp-login-btn:visited {
    border-color: var(--interp-primary);
    color: var(--interp-primary);
    background-color: var(--interp-primary) !important;
}

.interp-team-block {
    height: 340px;
    border-radius: 10px;
}

.interp-team-block>img {
    height: 245px;
    border-radius: 10px;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

/*
This styling is associated with the following ticket:
  https://gitlab.interpretation.ai/interp/-/issues/587
*/
.interp-team-block-alumni>img {
    height: 200px;
    border-radius: 10px;
}

.interp-team-block:hover .w-100 {
    background-color: var(--interp-primary);
    opacity: 0.3;
    transition: opacity 500ms;
}

.bubbles {
    width: fit-content;
    border: 1px solid #8f8f8f;
    padding: 0 5px;
    display: inline;
    font-size: 12px;
    margin-left: 5px;
    border-radius: 10px;
}

.footer-padding {
    padding: 0 30px;
}

.interp-error>em {
    display: none;
    margin-top: 6px;
    padding: 0 1px;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    color: #ee9393;
}

.interp-login-error {
    position: absolute;
    white-space: nowrap;
}

.interp-services {
    width: 200px;
    height: 140px;
}

.interp-service-icon {
    color: gray;
}

/* Applies styles for service page on non-mobile devices
  Position video on left side instead of default top on
  mobile*/

@media only screen and (min-width: 768px) {
    .interp-video-container {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 */
        height: 0;
        line-height: 0;
    }

    .interp-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        line-height: 0;
        outline: 3px solid black;
        outline-offset: -3px;
    }

    .service-container-pad {
        padding: 48px 0 72px 0;
    }
}

/* Spacing for services icons on mobile */
@media only screen and (max-width: 767px) {
    .service-icons-container {
        display: flex;
        gap: 1.3rem;
    }
}

.interp-circles {
    width: 150px;
    border: 10px solid #4a4161bd;
    border-radius: 50%;
}

.interp-team-member {
    width: fit-content;
    margin: auto;
}

.interp-border-top-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.interp-border-radius {
    border-radius: 10px;
}

.interp-border-bottom-radius {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 1px 3px 10px #0d0d0d3b;
}

.interp-confirm {
    display: none;
}

.interp {
    flex-grow: 1;
    font-size: 2em;
    font-weight: 300;
    color: var(--interp-primary);
    display: inline-block;
    margin-block-start: 0.1em;
    margin-block-end: 0.25em;
}

.interp-logo {
    width: 50px;
    height: 50px;
    display: inline-block;
    margin-right: 15px;
}

@media (max-width: 991px) {
    .interp-font-middle {
        text-align: center;
        margin-top: 16px;
        font-size: 7px !important;
    }
}

.interp-res-font {
    font-size: 1.3vw;
    white-space: nowrap;
}

.interp-pic {
    margin: auto;
    display: block;
}

.interp-modal {
    display: none;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 1s linear;
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */

.interp-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 600px;
    /* Could be more or less, depending on screen size */
    position: relative;
    border-radius: 4px;
}

/* The Close Button */

.interp-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    width: fit-content;
}

.interp-close:hover,
.interp-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.interp-btn-group {
    display: flex;
    justify-content: flex-end;
}

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

.interp-u,
li::before {
    content: "";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
}

.service-icons {
    margin-left: 72px;
}

.service-icons-container {
    display: flex;
}

@media (max-width: 992px) {
    .service-container {
        flex-direction: column;
    }

    .service-icons {
        margin-left: 0px;
    }
}

@media (max-width: 740px) {
    .interp-banner {
        background-image: url("../interp-imgs/bannerscreenshot.png") !important;
        background-repeat: no-repeat;
        background-size: auto;
        margin-bottom: 10px;
        height: 125px;
    }

    .interp-banner>video {
        display: none;
    }

    .interp-services {
        width: 135px;
    }
}

.maint-img {
    width: 50%;
}

.maint {
    margin: auto;
    text-align: center;
}

.maint-back {
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.maint-heading {
    font-size: 50px;
    color: #4a4161;
}

.maint-subheading {
    font-size: 30px;
    color: #4a4161;
}

.bg-text-container {
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
}

.height-full {
    height: 100%;
}

.width-full {
    width: 100%;
}

.about-link {
    color: white;
}

.addr-bg-image {
    background-image: url(../img/maps/map2.png);
}

.modal-btn {
    margin-right: 10px;
}

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abt-heading {
    background-color: #555;
}

.caption-text {
    font-stretch: expanded;
}

.pdf-container {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 132px);
    padding: 0;
}

.pdf-object {
    overflow: hidden;
    height: calc(100vh - 132px);
    width: 100%;
}

.btn-color:hover {
    background-color: #7fa1c1;
    color: white;
}

.tooltip {
    z-index: 2000;
}

.tooltip .tooltip-inner {
    font-size: 14px;
}

.tos-form-container {
    flex-flow: row;
}

#tosModal {
    opacity: 1;
}

.accept-button-wrapper {
    display: inline-block;
    cursor: not-allowed;
}

.accept-button-wrapper .btn[disabled] {
    pointer-events: none;
}

.footer-container {
    justify-content: flex-start;
}

/* loading */

.server-status {
    visibility: hidden;
}

.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* transform: translate(-50%, -50%); */
}

.loading-image {
    margin-bottom: 25px;
}

.loading-image img {
    width: 315px;
    height: auto;
}

.loading-image h4 {
    font-size: 2.6em;
}

.loading-msg {
    /* position: absolute;
  top: 110px;
  left: 1px; */
    font-size: 1em;
}

.loading-msg-time {
    position: absolute;
    top: 106px;
    font-size: 1.1em;
    right: -90px;
}

.loading-sub-msg {
    /* position: absolute;
  top: 150px;
  left: 1px; */
    font-size: 0.8em;
    color: red;
}

.loader {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 5px;
    width: 15rem;
    background-color: lightgrey;
}

.loading {
    background-color: #0e76a8;
    width: 5rem;
    height: 5px;
    animation: animation 1.8s infinite;
}

.loading-container .progress {
    width: 100%;
    margin-bottom: 10px;
    line-height: normal;
    position: relative;
    background-color: #a9a9a9;
    display: none;
}

.progress .progress-time {
    position: absolute;
    left: 50%;
    color: white;
    font-weight: bold;
}

.progress .progress-bar {
    transition: width 1s ease;
}

.loading-container .loading-video {
    display: none;
    width: 100%;
    height: 100%;
}

@keyframes animation {
    0% {
        transform: translateX(0rem);
    }

    50% {
        transform: translateX(10rem);
    }

    100% {
        transform: translateX(0rem);
    }
}

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

.colored-bullets li::before {
    content: "\2022";
    color: rgb(84, 24, 139);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.privacy-policy-center {
    margin-top: 25px;
    margin-right: 5%;
    margin-bottom: 75px;
    margin-left: 5%;
    padding-top: 0px;
    padding-right: 10%;
    padding-bottom: 0px;
    padding-left: 10%;
}

.privacy-policy-center #indent-title {
    margin-left: 60px;
}

.custom-font {
    font-size: 1.25rem;
}

.custom-color {
    color: black;
}

.main-content {
    text-align: center;
    text-transform: uppercase;
    scroll-snap-type: y mandatory;
    position: relative;
}

.hover,
.word,
h1 {
    cursor: pointer;
}

h1 {
    position: relative;
    color: #231651;
    font: 500 35px Roboto;
    /* text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
    padding-bottom: 20px;
}

a {
    color: #555;
    outline: none;
}

a:focus,
a:hover {
    color: #66ab27;
}

.service-icons-container p {
    margin-top: 0;
    margin-bottom: 0;
}

.custom-black-green a {
    color: white;
    outline: none;
}

.concept {
    position: relative;
    padding: 5em;
    overflow: hidden;
    scroll-snap-align: center;
    height: 75vh;
}

.concept:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.concept:hover:before {
    opacity: 0.5;
}

.concept-one {
    display: grid;
    grid: repeat(3, 1fr) / repeat(3, 1fr);
    background: yellow;
    padding: 8em;
    background: url("../../static/interp-imgs/oil-platform.jpg") no-repeat center center / cover;
    max-height: 50%;
}

.concept-one h1 {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -30px;
    transition: 0.5s ease;
    z-index: 0;
    letter-spacing: 25px;
}

/** about page **/
.about-objective {
    margin: 15vh 0;
    line-height: 1.5;
    font-size: 1.2rem;
}

.objective-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.list-checked {
    list-style: none;
    position: relative;
    line-height: 2;
}

.list-checked .list-checked-item {
    margin-left: 0.5rem;
}

.list-checked .list-checked-item::before {
    height: 1.5rem;
    width: 1.5rem;
    background-size: 1.5rem 1.5rem;
    position: absolute;
    /*top: 0;*/
    left: 0;
    margin-top: 0.4rem;
    background-repeat: no-repeat;
    background-position: right center;
    background-image: url(../../static/img/icons/green-tick.svg);
}

.list-checked .list-checked-item .fst-italic {
    word-break: keep-all;
    white-space: nowrap;
}

.objective-image .col {
    position: relative;
}

@media (max-width: 1200px) {
    .objective-image h3 {
        font-size: calc(1.275rem + 0.1vw);
    }
}

/* For Non-mobile platforms, toggle off br in "ai predicttion" text
  in about html*/
@media (min-width: 769px) {
    .objective-image h3>br {
        display: none;
    }
}

/* TOS modal classes */
.modal-content {
    width: 85vw !important;
}

#modal-body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    padding: 10px 20px 10px 45px;
}

#tosDialog {
    max-width: fit-content !important;
}

#tosModal {
    display: flex !important;
    justify-content: center !important;
}

#tos-update-modal {
    background-color: rgb(0, 0, 0, 0.8);
}

#tos-update-modal-title {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    padding-left: 25px;
}

/*privacy policy indentation overrides*/
#privacy-policy-indentation {
    display: inline-block;
    margin-left: 60px;
    font-size: 16px;
}

#privacy-policy-indentation ul {
    margin-left: 30px;
    padding-top: 6px;
}
