@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
#svv-application-holder {
    background: rgba(255,255,255,1);
    margin: 0 auto;
    position: relative;
    height: 635px;
    width: 1050px;
}

.tool-ui {
    width: 1080px; /* Used to override bootstrap .container media queries. We want to keep a consistent width. */
    visibility: hidden; /* Hidden until mission start tutorial overlay is ready to cover it. */
}

text {
    visibility: hidden;
}

.highlight-100 {
    background: rgba(255, 255, 0, 1) !important;
}

.highlight-50 {
    background: rgba(255, 255, 0, 0.5) !important;
}

.button {
    background: -moz-linear-gradient(center top , #fff, #eee);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: rgba(96,96,96,1);
    cursor: pointer;
    font-size: 14px;
    margin-top: 3px;
    padding: 2px 5px;
    width: 200px;

    border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
}

/* Pseudo-classes
* http://www.w3schools.com/css/css_pseudo_classes.asp */
.button:hover {
    background: -moz-linear-gradient(center top , #ccc, #bbb);
    background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#bbb));
    color: #222;
}

b { font-weight: bold; }
.bold { font-weight: bold; }
.normal { font-weight: normal; }
.underline { text-decoration: underline; }

.inline {
    float: left;
}

input[type="radio"] {
    height: 15px;
    width: 15px;
}

.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

.tooltip {
    font-size: 10px;
}

/* Overwriting jquery tooltip styling. */
.tooltip.in {
    opacity: 1;
}
#modal-mission-holder {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: justify;
    visibility: hidden;
}

#modal-mission-background {
    position: absolute;
    left: 0px;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    visibility: hidden;
    height: 100%;
    width: 110%;
}

#modal-mission-foreground {
    padding: 100px 20px 10px 20px;
    visibility: hidden;
}

.modal-foreground {
    top: 75px;
    left: 0;
    right: 0;
    padding: 10px;
    height: 560px;
    background: rgba(255, 255, 255, 1);
    color: rgba(80, 80, 80, 1);
    font-size: 14pt;
    position: absolute;
    min-height: 480px;
    border: 5px solid black;

    border-radius: 3px 3px 3px 3px;
    z-index: 4;
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
}

.modal-foreground .button {
    width: 100%;
}

.modal-background {
    position: absolute;
    left: -60px;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 110%;
}

#modal-mission-close-button {
    font-size: 24px;
    width: 40%;
    margin-right: 30%;
    margin-left: 30%;
    margin-top: 30px;
    float: right;
}

#modal-mission-instruction {
    text-align: center;
}

#modal-comment-background, #modal-mission-background {
    position: absolute;
    left: 0px;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    visibility: hidden;
    height: 100%;
    width: 110%;
}

#modal-mission-complete-holder {
    visibility: hidden;
}

#modal-mission-complete-foreground {
    visibility: hidden;
    top: 36px;
}

#modal-mission-complete-title {
    margin-top: 70px;
    text-align: center;
}

#modal-mission-complete-message {
    text-align: center;
}

#modal-mission-complete-table {
    height: 190px;
    padding-left: 175px;
}

.modal-foreground .btn-primary {
    color: white;
    background: #3182bd;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 14pt;
    opacity: 1.0;
}

.modal-foreground .btn-secondary {
    color: black;
    background: white;
    cursor: pointer;
    border: 1px solid black;
    font-size: 14pt;
    opacity: 1.0;
}

.modal-foreground .btn-loading {
    color: white;
    background: #7f7f7f;
    cursor: wait;
    border: 1px solid transparent;
    font-size: 14pt;
    opacity: 0.35;
}

.modal-foreground .blue-btn:focus {
    outline: none;
}
/* Container that holds the panorama. */
#svv-panorama-holder {
    position: absolute;
    top: 100px;
    width: 730px;
    height: 450px;
}

#svv-panorama {
    left: 0px;
    top: 0px;
    height: 440px;
    width: 720px;
}

/* Black outline around panorama. */
#svv-panorama-outline {
    border: 5px solid black;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 0px;
    /* Making the width/height of the outline slightly smaller bc there are gaps for some reason. */
    height: 449px;
    width: 729px;
}

#view-control-layer {
    position: absolute;
    width: 720px;
    height: 440px;
    left: 0;
    top: 0;
    overflow: hidden;
    cursor: url(/assets/javascripts/SVLabel/img/cursors/openhand.cur) 4 4, move;
    z-index: 2;

    /* http://stackoverflow.com/questions/8942805/chrome-bug-cursor-changes-on-mouse-down-move */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.speed-limit-sign {
    display: none;
    width: 60px;
    height: 70px;
    padding: 3px;
    margin-top: -5px;
    margin-left: -4px;
    margin-right: -4px;
    top: 0;
    right: 0;
    border-radius: 5px;
    position: absolute;
    z-index: 3;
    pointer-events: none;
    transform: scale(0.75);
    background: rgba(255, 255, 255, 0.75);
}

.speed-limit-sign-left {
    left: 0;
}

.speed-limit-sign[data-design-style="non-us-canada"] {
    width: 75px;
    height: 75px;
    padding: 0px;
    margin-top: -10px;
    margin-left: 10px;
    margin-right: -10px;
    border-radius: 100%;
    transform: scale(0.6);
}

.speed-limit-holder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 3px solid black;
}

.speed-limit-sign[data-design-style="non-us-canada"] .speed-limit-holder {
    border-radius: 100%;
    border: 7px solid #f7000096;
}

.speed-limit-text {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

#speed-limit {
    font-size: 30px;
    display: block;
    margin-bottom: -7px;
}

#zoom-buttons-holder {
    position: absolute;
    z-index: 3;
    height: 40px;
    width: 20px;
    right: 5px;
    bottom: 19px;
    border-radius: 8px;
    background-color: #000;
}

#zoom-buttons-holder .tooltip {
    width: 70px;
    font-size: 10px;
}

.zoom-button {
    width: 20px;
    height: 20px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    border-radius: 8px;
    background-color: #000;
    border-style: none;
    padding: 1px 5px;
    outline: none;
}

.zoom-button svg {
    stroke: #fff;
    stroke-width: 2px;
    width: 10px;
    height: 10px;
}

.zoom-button svg:hover {
    stroke-width: 3px;
}

#zoom-in-button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#zoom-button-divider {
    position: absolute;
    left: 5px;
    width: 10px;
    height: 1px;
    background-color: #fff;
    opacity: 0.5;
}

#zoom-out-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#imagery-source-logo-holder {
    display: flex;
    height: 29px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 4px 0 6px 10px;
}

#svv-panorama-date-holder {
    display: flex;
    justify-content: flex-start;
    height: 29px;
    position: absolute;
    bottom: 0px;
    left: 69px;
    z-index: 2;
    font-family: sans-serif;
    font-size: 15px;
    text-shadow: 1px 1px 1px black;
    color: white;
}

#svv-panorama-date {
    padding: 5px;
}

#gsv-info-button {
    margin-left: 4px;
    margin-top: 7px;
    height: 16px;
}

.button-on-pano {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 8px 12px;
    gap: 8px;
    background: #fff;
    border-radius: 6px;
    border: 1.5px solid #525252;
    color: #2D2A3F;
    font-family: Raleway;
    font-size: 10px;
    font-weight: 600;
    outline: none;
}

#label-visibility-control-button {
    top: 5px;
    right: 5px;
}

.hide-label-button-icon {
    width: 14px;
    height: 14px;
}

.button.label-visibility-button-on-label {
    position: absolute;
    visibility: hidden;
    color: rgba(0,0,0,1);
    z-index: 2;
    font-size: 9px;
    height: 22px;
    width: auto;
}

#label-description-box {
    display: block;
    visibility: hidden;
    min-width: 165px;
    max-width: 260px;
    position: absolute;
    color: white;
    font-family: "Open sans";
    padding: 3px 10px;
    border-radius: 5px;
    border: white solid 2px;
    font-size: 12px;
    z-index: 1;
}

.label-description-box-line-1 {
    display: flex;
    align-items: center;
    align-content: center;
}

.severity-image {
    height: 12px;
    width: 12px;
    display: flex;
    margin-left: 5px;
}

.severity-image svg {
    fill: transparent;
}

.face-outline { stroke: white; }
.facial-feature { fill: white; }
#mission-title {
    width: 1050px;
    position: absolute;
    top: 35px;
    color: #525252;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.8px;
}

#mission-progress-bar-section {
    position: absolute;
    top: 60px;
    width: 730px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

#mission-progress-bar {
    width: 690px;
    height: 5px;
}

#mission-progress-bar-complete {
    width: 10%;
    border-radius: 5px;
    background: var(--Brand-Pine-300, #76C9AB);
    z-index: 2;
    height: inherit;
    position: relative;
}

#mission-progress-bar-incomplete {
    border-radius: 5px;
    background: #E2E2E2;
    height: inherit;
    margin-top: -5px; /* Makes it so that the progress bars are overlapping */
    z-index: 1;
    position: relative;
}

#mission-progress-bar-text {
    color: var(--Brand-Asphalt-500, #2D2A3F);
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    padding-bottom: 2px;
}

#admin-info-section {
    display: none;
    position: absolute;
    top: 55px;
    left: 740px;
}

#admin-info-content h1 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

#admin-info-content h2 {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 0;
}

#admin-info-content p {
    font-size: 12px;
    margin-bottom: 0;
}
#validation-menu-holder {
    margin: 0;
    padding: 0px 12px;
    position: absolute;
    left: 730px;
    top: 100px; /* top from svv-panorama-holder. */
    width: 320px;
    height: 450px;
    color: rgb(127, 127, 127);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.validation-menu-section {
    display: none; /* Initially hidden, sections shown when validation buttons are clicked. */
}

#main-validate-section {
    display: block;
}

#validate-submit-section {
    display: flex;
    justify-content: space-between;
    margin-top: auto; /* Pushes the section to the bottom of the validation-menu-holder. */
}

.validation-menu-section-header {
    color: #2D2A3F;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

#validation-button-holder {
    display: flex;
    justify-content: space-between;
}

.validate-page-button {
    display: flex;
    width: 86px;
    height: 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid #2D2A3F;

    color: #2D2A3F;
    text-align: center;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    background-color: white;
    outline: none; /* Removes focus outline that shows up when I press shift after clicking on a button. */
}

.validate-page-button:disabled {
    cursor: not-allowed;
}

/*#validate-yes-button:hover, #validate-yes-button.chosen {*/
#validate-yes-button.chosen {
    background: #76C9AB;
}

#validate-no-button.chosen {
    background: #F29173;
}

#validate-unsure-button.chosen {
    background: #1A1A1A;
    color: white;
}

/* Only show hover states on non-touch devices. Same CSS as for chosen state. */
@media (hover: hover) {
    #validate-yes-button:hover {
        background: #76C9AB;
    }
    #validate-no-button:hover {
        background: #F29173;
    }
    #validate-unsure-button:hover {
        background: #1A1A1A;
        color: white;
    }
}

#sidewalk-ai-suggestions-block {
    margin-top: 15px;
    margin-bottom: 15px;
}

.sidewalk-ai-suggestions-header {
    color: #2D2A3F;
    font-family: "Open Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 6px;
}

.ai-icon {
    width: 16px;
    height: 16px;
}

.sidewalk-ai-suggestions-list-holder {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.sidewalk-ai-suggested-tag {
    display: flex;
    width: fit-content;
    padding: 6px 8px;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    border-radius: 100px;

    cursor: pointer;

    text-align: center;
    font-family: Raleway;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    transition: all 0.3s;
}

.sidewalk-ai-suggested-tag.to-add:hover {
    background: #78c9ab36;
}

.sidewalk-ai-suggested-tag.to-remove:hover {
    background: #ee714e27;
}

.sidewalk-ai-suggested-tag.to-add {
    border: 1px solid #5A9E85;
    color: #5A9E85;
}

.sidewalk-ai-suggested-tag.to-remove {
    border: 1px solid #EE724E;
    color: #EE724E;
}

#validate-submit-button {
    background: #5A9E85;
    border-color: #5A9E85;
    color: white;
}
#validate-submit-button:disabled {
    background: #A9C5B9;
    border-color: #A9C5B9;
}

#validate-undo-button:disabled {
    opacity: 0.5;
}

.validate-text-input {
    width: 295px;
    margin-top: 10px;
}

/* Bootstrap is getting loaded after this file hence overriding this. To avoid it, I am adding important but ideally the order of inclusion should be flipped. */
.validate-text-input input, .selectize-input {
    display: flex !important;
    width: 100% !important;
    height: 36px !important;
    padding: 8px 18px !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    border-radius: 6px 6px !important;
    border: 1.3px solid #ACADAD !important;
    background: white !important;
}

.selectize-input.focus.input-active.has-options {
    border-radius: 6px 6px 0 0;
}

.selectize-dropdown {
    border-radius: 0 0 6px 6px !important;
}

#current-tags-list {
    display: flex; /* display:none when there are no tags, display: flex when there are; updated in JS. */
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 5px;
    margin-bottom: 10px;
}

.current-tag {
    display: inline-flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: #78C9AB;

    cursor: default;
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.remove-tag-x {
    cursor: pointer;
    width: 9px;
    height: 9px;
    fill: white;
}

.face-outline { stroke: black; }
.facial-feature { fill: black; }

.severity-level .severity-icon svg {
    fill: white;
    width: 28px;
    height: 30px;
}

.selectize-dropdown-content {
    display: flex;
    width: 285px;
    height: fit-content;
    padding: 12px;
    align-items: center;
    align-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.selectize-dropdown .option {
    padding: 6px 8px;
    justify-content: center;
    align-items: center;

    border-radius: 100px;
    border: 1px solid #666;

    text-align: center;
    font-family: Raleway, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;

    transition: all 0.3s;
}

/* Removing default styling for "active" options in dropdown. Would be left over after hover. */
.selectize-dropdown .option.active {
    background: inherit;
    color: inherit;
}

.selectize-dropdown .option:hover {
    background: #78C9AB;
    color: #FFF;
    border-color: #78C9AB;
}

#severity-radio-holder {
    display: flex;
    align-items: center;
    font-size: 10px;
    text-align: center;
    gap: 20px;  /* This can be used to control the distance between the severity icons. */
}

#severity-radio-holder .radio-inline input[type="radio"] {
    visibility: hidden;
}

.severity-level .severity-icon svg {
    transition: fill 0.3s;
}

.severity-level:hover .severity-icon.severity-1 svg {
    fill: rgba(244, 219, 72, 0.55);
}
.severity-level:hover .severity-icon.severity-2 svg {
    fill: rgba(238, 157, 58, 0.55);
}
.severity-level:hover .severity-icon.severity-3 svg {
    fill: rgba(232, 95, 43, 0.55);
}

.severity-level.selected .severity-icon.severity-1 svg {
    fill: #f4db48;
}
.severity-level.selected .severity-icon.severity-2 svg {
    fill: #ee9d3a;
}
.severity-level.selected .severity-icon.severity-3 svg {
    fill: #e85f2b;
}

.severity-level.radio-inline {
    padding: 0;
}

#optional-comment-input {
    margin-top: 0px; /* Overrides .validate-text-input margin, since the textbox for agreeing looks different. */
}

#no-reason-options, #unsure-reason-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.validation-reason-button {
    display: flex;
    width: 295px;
    height: 36px;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid #666;
    background-color: white;

    color: #666;
    font-family: Raleway;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
}

/* Matching style of 'No' and 'Unsure' button for now. */
#no-reason-options .validation-reason-button.chosen {
    background: #F29173;
    border-color: #F29173;
    color: white;
}
#unsure-reason-options .validation-reason-button.chosen {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: white;
}

#add-disagree-comment.chosen {
    border-color: #F29173 !important;
}

/* Only show hover states on non-touch devices. Same CSS as for chosen state. */
@media (hover: hover) {
    #no-reason-options .validation-reason-button:hover {
        background: #F29173;
        border-color: #F29173;
        color: white;
    }
    #unsure-reason-options .validation-reason-button:hover {
        background: #1A1A1A;
        border-color: #1A1A1A;
        color: white;
    }
    #add-disagree-comment:hover {
        border-color: #F29173 !important;
    }
}
.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.mission-start-tutorial-overlay {
    position: absolute;
    height: 683px; /* We override this when using CSS zoom. */
    width: 100%;
    background: white;
    z-index: 10;
    display: none; /* Will be later set to flex by JS after rendering. */
    flex-shrink: 0;
    justify-content: flex-start;
    overflow: auto;
    flex-direction: column;

    /* Default font should be defined only here and should be overridden wherever needed. */
    font-family: 'Open Sans', sans-serif;

}

.mst-content {
    width: 1095px;
    margin: 0 auto;
}

.mst-instruction-1 {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #525252;
    margin-top: 8px;
    padding: 0 70px;
    width: 100%;
    height: fit-content;
}

.mst-instruction-2 {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    margin: 5px 0;
    padding: 0 70px;

    color: #000000;
    width: 100%;
}

.mst-carousel {
    display: flex;
    flex-shrink: 0;
    width: 100%;
    height: 436px;
    margin-top: 10px;
}

.previous-slide-button, .next-slide-button {
    height: 100%;
    width: 30px;
    display: flex;
    fill: #C4C4C4;
    cursor: pointer;
}

.previous-slide-button:not(.disabled):hover, .next-slide-button:not(.disabled):hover {
    fill: #000000;
}

.previous-slide-button {
    margin-right: 30px;
}

.next-slide-button {
    margin-left: 30px;
}

.next-slide-button.disabled, .previous-slide-button.disabled {
    visibility: hidden;
}

.mst-slide {
    height: 100%;
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    width: calc(100% - 120px); /* subtract the next and previous slide button widths from the total */
    justify-content: space-between;
}

.mst-text-area {
    width: 290px;
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}

.label-type-title {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 15px;
    padding: 0 10px;
}

.label-type-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #949494;
    padding: 0 10px;
}

.label-type-description {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    padding: 0 10px;
    margin-top: 10px;
}

.mission-start-tutorial-overlay-footer {
    margin-top: 15px;
    width: 100%;
}

.mission-start-tutorial-done-btn {
    height: 36px;
    width: calc(100% - 20px);
    border-radius: 7.25px;
    float: right;
    background: #F6D795;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 2s;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    margin: 0 10px;
}

.mission-start-tutorial-done-btn:hover {
    background: #ffc342;
}

@keyframes pulsate {
    0%   { transform: scale(1); }
    50%  { transform: scale(0.9); }
    50%  { transform: scale(1); }
    50%  { transform: scale(1.1); }
}

/*We can do something to get attention after the user goes through all the slides*/
.mission-start-tutorial-done-btn.focus {
    animation: pulsate;
    animation-duration: 2s;
    animation-iteration-count: 3;
    animation-delay: 1s;
}

.msts-image-area {
    width: 658px;
    height: 436px;
    float: right;
    background: lightgrey;
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.msts-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.label-on-image {
    display: none;
    position: absolute;
    background: white;
    border: 3px solid;
    border-radius: 10px;
    box-sizing: content-box;
    min-height: 80px;
    max-height: 90px;
    min-width: 160px;
    max-width: 220px;
}

/* correct/incorrect classes are added to the slide element */
.correct .label-on-image {
    border-color: #30785D;
}

/* correct/incorrect classes are added to the slide element */
.incorrect .label-on-image {
    border-color: #EB734D;
}

.label-on-image-type {
    margin: 12px 10px;
    display: flex;
    align-items: center;
}

.label-on-image-type-icon {
    height: 24px;
    width: 24px;
    fill: none;
    display: flex;
    margin-right: 3px;
}

.correct .label-on-image-type-icon {
    stroke: #30785D;
}

.incorrect .label-on-image-type-icon {
    stroke: #EB734D;
}

.label-on-image-type-title {
    display: flex;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    margin-left: 3px;
}

.correct .label-on-image-type-title {
    color: #30785D;
}

.incorrect .label-on-image-type-title {
    color: #EB734D;
}

.label-on-image-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    margin: 0 12px;
}

.example-type-area {
    display: flex;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
}

.example-type-area::after {
    background: #30785D;
    width: calc(100% - 20px);
    height: 8px;
    position: absolute;
    bottom: -6px;
    content: '';
    left: 50%;
    transform: translateX(-50%);
}

.correct .example-type-area::after {
    background: #30785D;
}

.incorrect .example-type-area::after {
    background: #EB734D;
}

.example-type-icon {
    height: 24px;
    width: 24px;
    display: inline-block;
    margin-right: 5px;
    fill: none;
}

.correct .example-type-icon {
    stroke: #30785D;
}

.incorrect .example-type-icon {
    stroke: #EB734D;
}

.example-type-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-left: 5px;
}

.correct .example-type-label {
    color: #30785D;
}

.incorrect .example-type-label {
    color: #EB734D;
}

.mst-carousel-location-indicator-area {
    height: 12px;
    width: 100%;
    padding: 5px;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mst-carousel-location-indicator {
    height: 7px;
    width: 40px;
    margin: 0 3.5px;
    background: #C4C4C4;
    transition: all 0.4s;
    border-radius: 100px;
}

.mst-carousel-location-indicator.current-location {
    background: #2C2A3D;
}

/* Explore mission screen tab bar styling */

.explore-mission-start-tab-bar {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    padding: 0 70px;
}

.explore-mission-start-tab-content {
    margin: 0 12px;
    display: flex;
    align-items: center;
}

.explore-mission-start-tab.label {
    border-radius: 4px 4px 0px 0px;
    height: 100%;
    width: 100%;
    color: #0f0f0f;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0;
    text-align: left;
    border-bottom: 3px solid #DCDBDB;
    padding: 0 3px;
    filter: saturate(0);
    transition: all 0.25s;
}

.explore-mission-start-tab.label:hover, .explore-mission-start-tab.label.active {
    filter: saturate(1);
}

.explore-mission-start-tab.label[data-label-type="CurbRamp"]:hover {
    background: rgba(144, 195, 31, 0.15);
}

.explore-mission-start-tab.label[data-label-type="NoCurbRamp"]:hover {
    background: rgba(230, 121, 182, 0.15);
}

.explore-mission-start-tab.label[data-label-type="Obstacle"]:hover {
    background: rgba(120, 176, 234, 0.15);
}

.explore-mission-start-tab.label[data-label-type="SurfaceProblem"]:hover {
    background: rgba(246, 141, 62, 0.15);
}

.explore-mission-start-tab.label[data-label-type="NoSidewalk"]:hover {
    background: rgba(190, 135, 216, 0.15);
}

.explore-mission-start-tab.label[data-label-type="Crosswalk"]:hover {
    background: rgba(250, 191, 28, 0.15);
}

.explore-mission-start-tab.label[data-label-type="Signal"]:hover {
    background: rgba(99, 192, 171, 0.15);
}


/* Selected tabs */
.explore-mission-start-tab.label[data-label-type="CurbRamp"].active {
    background: rgba(144, 195, 31, 0.15);
    border-bottom-color: #90C31F;
}

.explore-mission-start-tab.label[data-label-type="NoCurbRamp"].active {
    background: rgba(230, 121, 182, 0.15);
    border-bottom-color: #E679B6;
}

.explore-mission-start-tab.label[data-label-type="Obstacle"].active {
    background: rgba(120, 176, 234, 0.15);
    border-bottom-color: #78B0EA;
}

.explore-mission-start-tab.label[data-label-type="SurfaceProblem"].active {
    background: rgba(246, 141, 62, 0.15);
    border-bottom-color: #F68D3E;
}

.explore-mission-start-tab.label[data-label-type="NoSidewalk"].active {
    background: rgba(190, 135, 216, 0.15);
    border-bottom-color: #BE87D8;
}

.explore-mission-start-tab.label[data-label-type="Crosswalk"].active {
    background: rgba(250, 191, 28, 0.15);
    border-bottom-color: #FABF1C;
}

.explore-mission-start-tab.label[data-label-type="Signal"].active {
    background: rgba(99, 192, 171, 0.15);
    border-bottom-color: #63C0AB;
}


.explore-mission-start-tab-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explore-mission-start-tab-text {
    width: 70%;
    white-space: initial;
}
