* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

h1 {
    text-align: center;
    color: #707070;
    font-weight: bold;
    font-size: 30px;
    padding: 20px 0 0px 0;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
}

.spaced-out {
    letter-spacing: 0.2em;
    color: #8995AD;
    font-family: 'ubuntu', sans-serif;
}

textarea {
    display: block;
    box-sizing: padding-box;
    overflow: hidden;
    padding: 10px;
    width: 250px;
    /* font-size: 14px; */
    margin: 50px auto;
}

textarea,
input {
    background: rgb(227, 227, 227);
    border: none;
    outline: none;
}

textarea:disabled,
input:disabled {
    background: #bad5ea;
    cursor: not-allowed;
    text-align: center;
}
.input-blue{
    background: #bad5ea;
    text-align: center;
}

.login h1 {
    text-align: center;
    color: #58AAD8;
    font-weight: bold;
    font-size: 24px;
    padding: 20px 0 0px 0;
}

.highlighted-fw {
    background: #58AAD8;
    padding: 5px 0;
    position: relative;
    width: 100%;
    left: 0;
    color: white;
}

.highlighted-fw-chevron {
    display: inline-block;
    position: relative;
    z-index: 10;
    color: white;
}

.highlighted-fw-chevron:after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    background: #58AAD8;
    z-index: -1;
    width: 400px;
    height: 32px;
    transform: translate(-50%, 0) skew(-25deg);
}

section.view-on-desktop {
    display: none;
}
.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../img/background-crystalus.png) center center no-repeat;
    background-size: 1500px 500px;
    background-color: #ffffff;
}

.container {
    background-color: #ffffff;
    min-height: 560px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
}

.border-primary {
    border-color: #BBDBEE!important;
    margin: 0;
    padding: 0;
}

.app-container {
    max-width: 960px;
}

.container-authentication {
    max-width: 400px;
}

.logo-row img {
    min-height: 45px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.branding-row {
    position: absolute;
    max-height: 40px;
    bottom: -45px;
    left: 50%;
    transform: translate(-50%, 0);
}


/* .ff-arrow {
    height: 150px;
    width: 100px;
    position: absolute;
    left: -10px;
    bottom: 7px;
    opacity: 0.4;
} */

.ff-arrow {
    height: 150px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 7px;
    opacity: 0.4;
}

.example-prompt {
    position: absolute;
    padding: 5px 2px;
    height: 30px;
    width: 300px;
    background: #e67e22;
    color: white;
    font-weight: bold;
    right: 0;
    top: -30px;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.3s ease-in;
    cursor: initial!important;
    border-radius: 5px 5px 0 0;
}

.ep-text {
    opacity: 0;
}


/* .example-prompt:hover {
    height: 55px;
    top: -55px;
}

.example-prompt:hover .ep-text {
    opacity: 1;
} */

.example-text {
    position: absolute;
    bottom: -25px;
    right: 0;
    text-decoration: none;
    color: #58AAD8;
}
.text-blue{
    color: #58AAD8;
}

.crystalus-logo {
    background: url(../img/crystalus_logo.png) no-repeat center center;
    background-size: contain;
    height: 50px;
}

.edc-logo {
    background: url(../img/Export_Development_Canada_logo.png) no-repeat center center;
    background-size: contain;
}

.greyed-out {
    filter: grayscale(1);
}

.crystalus-logo.greyed-out {
    width: 200px;
}

.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

.login form input[type="password"] {
    width: 310px;
    height: 50px;
    border: 1px solid #dee0e4;
    margin-bottom: 20px;
    padding: 0 15px;
    border-radius: 5px;
    text-align: center;
}

.login form input[type="password"]:active,
.login form input[type="password"]:focus-visible {
    border: 1px solid #e67e22!important;
}

.login form input[type="submit"]:disabled,
#next-btn:disabled {
    background: #D9D9D9!important;
    color: rgb(255, 255, 255);
    cursor: not-allowed!important;
}

.login form input[type="submit"]:disabled:hover,
.btn.disabled:hover,
#next-btn:disabled:hover {
    background: #a7a7a7!important;
    color: rgb(255, 255, 255);
    cursor: not-allowed!important;
}

.login form input[type="submit"],
.btn-primary,
#next-btn {
    width: 200px;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    background-color: #e67e22!important;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}

.login form input[type="submit"]:hover,
.btn-primary:hover,
#next-btn:hover {
    background-color: #d37421!important;
    transition: background-color 0.2s;
}

.btn-secondary {
    background: #58AAD8;
    color: white;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:visited,
.btn-secondary:focus-visible .btn-secondary:focus {
    background: #509ac6!important;
    color: white;
    border: none!important;
    outline: none!important;
    box-shadow: none!important;
}

.add-textarea-btn {
    position: absolute;
    bottom: -40px;
}

.arrow {
    clip-path: polygon(0 0%, calc(100% - 33px) 0, 100% 50%, calc(100% - 33px) 100%, 0 100%, 33px 50%);
    background: #BBDBEE;
    color: #707070;
    display: block;
    font-size: 20px;
    text-decoration: none;
    width: 100%;
    padding: 10px 0;
    color: white;
    text-align: center;
    cursor: initial;
}

.arrow a {
    text-decoration: none!important;
    color: white;
}

.back-btn{
    position: absolute;
    top: -25px;
    left: 0;
    text-decoration: none;
}

/* .progress-indicator {
    border-radius: 50%;
    background: #58AAD8;
    border: 4px solid white;
    width: 32px;
    position: absolute
} */


/* READ MORE */

details {
    position: relative;
}

details summary {
    display: block;
    cursor: pointer;
}

details summary:focus {
    outline: none;
}

details[open] {
    display: block;
    padding-bottom: 25px;
    padding-top: 10px;
    animation: open 0.2s linear;
}

details[open] summary {
    position: absolute;
    bottom: 0;
    left: 0;
}

details #open {
    padding-left: 5px;
    text-align: middle;
}

details #open:after {
    display: inline-block;
    position: relative;
    top: -3px;
    padding-left: 8px;
    content: "\00bb";
    transform: rotate(90deg);
}

details #close:after {
    display: inline-block;
    position: relative;
    top: -3px;
    padding-left: 8px;
    content: "\00bb";
    transform: rotate(-90deg);
}

details[open] #open {
    display: none;
}

details #close {
    display: none;
}

details[open] #close {
    display: block;
}

 ::-webkit-details-marker {
    display: none;
}

@keyframes open {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* BAR */

.bar {
    display: flex;
}

.bar-input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.bar-input:checked~.bar-view .bar-button:before {
    transform: none;
    opacity: 1;
}

.bar-view {
    display: flex;
    flex-grow: 1;
    position: relative;
    position: absolute;
    z-index: 3;
    top: -8px;
    left: 50%;
    transform: translate(-50%, 0);
}

.bar-button {
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    border-radius: 50%;
    border: 3px solid white;
    background: #CCCCCC;
    position: relative;
}

.bar-button.active {
    background: #58AAD8;
}

.arrow.active {
    background: #58AAD8;
}


/* BAR END */

.bg-gray {
    background: #CCCCCC;
    color: white;
}

.steps {
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    section.view-on-desktop {
        display: flex;
        min-height: 100%;
        min-height: 100vh;
    }
    section.vertical-center {
        display: none;
    }
}



.example-toggle{
    margin: 0;
}
.info-toggle, .example-toggle {
    border: none!important;
    border-radius: 0;
}

.info-toggle,
.info-toggle:hover,
.info-toggle:focus{
    background:#e67e22!important;
}
.example-btn-1,
.example-btn-1:hover,
.example-btn-1:focus{
    background:#d25f25!important;
}
.example-btn-2,
.example-btn-2:hover,
.example-btn-2:focus{
    background:#dda522!important;
}
.example-btn-3,
.example-btn-3:hover,
.example-btn-3:focus{
    background:#7cb14a!important;
}
.example-btn-primary,
.example-btn-primary:hover,
.example-btn-primary:focus{
    background:#58AAD8!important;
}
.info-toggle:active,
.info-toggle:focus,
.info-toggle:focus-visible,
.info-toggle:visited,
.example-toggle:active,
.example-toggle:focus,
.example-toggle:focus-visible,
.example-toggle:visited  {
    outline: none !important;
    box-shadow: none;
    border: none!important;
}


select#inputGroupSelect01 {
    height: 40px;
    padding: 0;
    margin: 0;
    text-align: center;
    background: #e3e3e3;
    border: none;
}

.form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 2.5rem!important;
    padding-bottom: 0.625rem!important;
}

.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    opacity: .75;
    transform: scale(1) translateY(0rem) translateX(0rem);
}