/* COLORS */
:root {
    --primary: #0099DC;
    --primary-dark: #00577F;
    --primary-light: #C9E2F4;

    --secondary-1: #2E2E2E;
    --secondary-2: #353B40;
    --secondary-3: #3B4852;
    --secondary-4: #788791;
    --secondary-5: #BFC7CD;
    --secondary-6: #D2DBDF;

    --background-main: #F8FDFF;
    --red: #DA3434;
    --error-red: #8E2424;
    --blue: #189BD9;
    --blue-dark: #0081B8;
    --blue-light: #F4FAFF;
    --navyblue: #0D2B8D;
    --orange: #ED8617;
    --white: #FFFFFF;
    --grey: #78879166;
    --green: #018749;
}

/* COLORS ENDS*/

/* UTILITY CLASSES TAKEN FROM BOOTSTRAP 4*/
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.h-100 {
    height: 100%;
}

.h-75 {
    height: 75%;
}

.h-50 {
    height: 50%;
}

.h-25 {
    height: 25%;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

/* UTILITY CLASSES TAKEN FROM BOOTSTRAP 4 ENDS*/

/* BUTTONS */
button.btn {
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    min-width: 140px;
    width: fit-content;
    min-height: 50px;
    white-space: nowrap;
    outline: none !important;
}

.btn:focus {
    outline: none;
}

button.btn-primary {
    color: var(--white);
    background-color: var(--blue);
    border-radius: 4px;
    border: none;
}

button.btn-primary:hover,
button.btn-primary:active,
button.btn-primary:active:hover,
button.btn-primary:focus,
button.btn-primary:focus:active,
button.btn-primary:focus-within,
button.btn-primary:focus:hover {
    color: var(--white);
    background-color: #0081B8;
    transition: 0.5s;
}

button.btn-primary.disabled,
button.btn-primary.disabled:active,
button.btn-primary.disabled:active:hover {
    color: var(--white);
    background-color: var(--grey);
    cursor: not-allowed;
}

button.btn-secondary {
    color: var(--primary);
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--primary);
}

button.btn-secondary:hover,
button.btn-secondary:active,
button.btn-secondary:active:hover,
button.btn-secondary:focus,
button.btn-secondary:focus:active,
button.btn-secondary:focus-within,
button.btn-secondary:focus:hover {
    color: var(--primary);
    background-color: var(--primary-light);
    transition: 0.5s;
}

button.btn-secondary.disabled,
button.btn-secondary.disabled:active,
button.btn-secondary.disabled:active:hover {
    background-color: var(--white);
    color: var(--grey);
    border: 1px solid var(--grey);
    cursor: not-allowed;
    outline: none;
}

button.btn-tertiary {
    color: var(--primary);
    background-color: var(--white);
    border-radius: 4px;
    border: none;
}

button.btn-tertiary:hover,
button.btn-secondary:active,
button.btn-secondary:active:hover {
    color: var(--primary);
    background-color: var(--primary-light);
    transition: 0.5s;
}

button.btn-tertiary.disabled,
button.btn-secondary.disabled:active,
button.btn-secondary.disabled:active:hover {
    background-color: var(--white);
    color: var(--grey);
    cursor: not-allowed;
}

/* BUTTONS ENDS*/

/*TEXT*/
body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    width: 100%;
    height: 100%;
}

.text-white {
    color: var(--white);
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.font-size-24 {
    font-size: 24px;
    line-height: 24px;
}

.font-size-16 {
    font-size: 16px;
    line-height: 24px;
}

.font-size-12 {
    font-size: 12px;
    line-height: 24px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.unselectable {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

/*TEXT ENDS*/

/*SWITCH STYLES*/
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    margin-bottom: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-6);
    -webkit-transition: .4s;
    transition: .4s;
    width: 50px;
    height: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider-label {
    font-size: 15px;
    line-height: 20px;
    color: var(--secondary-2);
    margin-left: 12px;
}

/*SWITCH STYLES ENDS*/

/*INPUTS STYLES*/
input[type=text]:disabled,
input[type=date]:disabled {
    border-radius: 4px;
    background-color: var(--white);
    height: 50px;
    width: 489px;
    border: 1px solid var(--secondary-5);
}

input[type=text]:disabled,
input[type=date]:disabled {
    border-radius: 4px;
    background-color: var(--secondary-6);
    height: 50px;
    width: 489px;
    border: 1px solid var(--secondary-5);
}

input[type=text].inline-draggable,
input[type=text].inline-draggable:focus,
input[type=text].inline-draggable:focus-visible,
input[type=text].inline-draggable:focus-within {
    height: 40px;
    width: 95%;
    min-width: auto;
}

/*INPUTS STYLES ENDS*/

/*RADIO BUTTON STYLES*/

/*BLUE RADIO BUTTON*/
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: var(--background-main);
    border-radius: 50%;
    border: 1px solid var(--secondary-5);
}

.radio-container:hover input~.checkmark {
    background-color: var(--background-main);
}

.radio-container input:checked~.checkmark {
    background-color: var(--background-main);
    border: 1px solid var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

/*BLUE RADIO BUTTON ENDS*/

/*INLINE OPTIONS RADIO BUTTON*/
.switch-field {
    display: flex;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    background-color: var(--white);
    color: var(--secondary-1);
    font-size: 15px;
    line-height: 50px;
    height: 50px;
    width: 120px;
    text-align: center;
    border: 1px solid var(--secondary-5);
    transition: all 0.1s ease-in-out;
    font-weight: normal;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked+label {
    background-color: var(--blue-light);
    box-shadow: none;
    border: 1px solid var(--primary);
}

.switch-field label:first-of-type {
    border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
    border-radius: 0 4px 4px 0;
}

.radio-yes,
.radio-no {
    position: relative;
}

.radio-yes::before {
    content: "";
    background: url('./check-yes.png') no-repeat center;
    width: 18px;
    height: 13px;
    background-size: cover;
    position: absolute;
    left: 15px;
    top: 19px;
}

.switch-field input:checked+label.radio-yes::before {
    background: url('./check-yes-blue.png') no-repeat center;
}

.radio-no::before {
    content: "";
    background: url('./check-no.png') no-repeat center;
    width: 14px;
    height: 14px;
    background-size: cover;
    position: absolute;
    left: 22px;
    top: 18px;
}

.switch-field input:checked+label.radio-no::before {
    background: url('./check-no-blue.png') no-repeat center;
}

/*INLINE OPTIONS RADIO BUTTON ENDS*/

/*RADIO BUTTON STYLES ENDS*/

/*SELECT*/
select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 10px 5px 10px 5px;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
}

select::-ms-expand {
    display: none;
}

.select {
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
    min-width: 300px;
    min-height: 50px;
    border: 1px solid var(--secondary-5);
    border-radius: 0.25em;
    padding: 0.25em 0.5em;
    font-size: 15px;
    cursor: pointer;
    line-height: 17px;
    background-color: var(--white);
}

.select.error {
    border: 1px solid var(--red);
}

.select select,
.select::after {
    grid-area: select;
}

.select::after {
    content: "";
    justify-self: end;
    background: url('./chevron-down.png') no-repeat center;
    width: 14px;
    height: 7px;
    background-size: cover;
    right: 7px;
    position: absolute;
}

select:focus+.focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--primary);
    border-radius: inherit;
}

/*SELECT ENDS*/

/*TEXT INPUT*/
input[type=text] {
    min-width: 300px;
    height: 50px;
    border: 1px solid #BFC7CD;
    border-radius: 4px;
    padding: 12px;
    line-height: 18px;
    font-size: 15px;
}

input[type=text]:focus {
    outline: none !important;
    min-width: 300px;
    height: 50px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 12px;
    line-height: 18px;
    font-size: 15px;
}

input[type=text].error,
input[type=text].error:focus {
    min-width: 300px;
    height: 50px;
    border: 1px solid var(--red);
    border-radius: 4px;
    padding: 12px;
    line-height: 18px;
    font-size: 15px;
}

.datepicker-container {
    position: relative;
}

.datepicker-container::after {
    content: '';
    background: url('./datepicker-icon.png') no-repeat center;
    position: absolute;
    width: 15px;
    height: 15px;
    right: 18px;
    top: 17px;
    pointer-events: none;
    background-size: cover;
}

/*TEXT INPUT ENDS*/

/*TEXTAREA*/
textarea {
    border: 1px solid #BFC7CD;
    border-radius: 4px;
    padding: 12px;
    line-height: 18px;
    font-size: 15px;
}

textarea:focus {
    outline: none !important;
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 12px;
    line-height: 18px;
    font-size: 15px;
}

textarea.error,
textarea.error:focus {
    border: 1px solid var(--red);
    border-radius: 4px;
    padding: 12px;
    line-height: 18px;
    font-size: 15px;
}

/*TEXTAREA ENDS*/


/*RADIO BUTTON RATING*/
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.rating.error::before {
    content: "Please select a rating";
    color: var(--red);
    margin-left: 20px;
}

.rating>input {
    display: none;
}

.rating>label {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.rating>label path {
    fill: var(--secondary-6);
}

.rating>label:hover path,
.rating>label:hover~label path {
    fill: var(--primary-light);
}

.rating>input:checked~label path {
    fill: var(--primary);
}

.rating:hover>input:checked~label path {
    fill: var(--primary);
}

.rating:hover>input:checked label path {
    fill: var(--primary-light);
}

/*RADIO BUTTON RATING ENDS*/

/*CLASSES FOR COMPONENTS*/
footer {
    display: none;
}

.home-content {
    max-width: 796px;
}

.home-container {
    background: url('./HomeBackground.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-1);
    background-blend-mode: soft-light;
    min-height: calc(100vh - 64px);
}

div.navbar {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.navbar-content {
    background-color: var(--white);
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.navbar-logo {
    width: 105.5px;
    height: 31px;
    padding-right: 16.5px;
    border-right: 1px solid var(--secondary-6);
    margin-right: 16.5px;
    background: url('CenterpointLogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.navbar-title {
    font-size: 18px;
    line-height: 30px;
    color: var(--secondary-3);
}

.custom-stepper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 30px;
}

.step-title {
    color: var(--secondary-4);
    font-size: 14px;
    line-height: 16px;
}

.step-divider {
    border-top: 1px solid var(--secondary-6);
    height: 1px;
    width: 20px;
    margin: 0;
    margin: 0px 10px 0px 10px;
}

.custom-step {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-step.active .step-title {
    color: var(--primary);
}

.custom-step.active .step-title::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: inline-block;
    vertical-align: bottom;
    margin-right: 6px;
}

.custom-step.complete .step-title {
    color: var(--green);
}

.custom-step.complete .step-title::before {
    content: url('checkmark-circle.png');
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 6px;
}

#main-form {
    /* width: 100%; */
    height: 100%;
    background-color: var(--background-main);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 184px 64px 184px;
    position: relative;
}

.welcome-text {
    color: var(--secondary-3);
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.main-form-bottom {
    bottom: 0;
    /* width: 100%; */
    display: flex;
    gap: 12px;
    padding-left: inherit;
    padding-right: inherit;
    padding-bottom: inherit;
    position: absolute;
    left: 0;
    right: 0;
    justify-content: flex-end;
}

.chkbox-question-row {
    gap: 20px;
}

.chkbox-question-container {
    display: flex;
    flex-direction: row;
    padding: 13px;
    background-color: var(--white);
    border: 1px solid var(--secondary-5);
    border-radius: 4px;
    width: calc(50% - 10px);
    margin-bottom: 16px;
    cursor: pointer;
    transition: .5s;
}

.chkbox-question-container .checkmark {
    background-color: transparent;
}

.chkbox-question-container.active {
    border: 1px solid var(--primary);
    background-color: var(--blue-light);
}

.chkbox-question-container:not(:active):hover {
    background-color: var(--blue-light);
}

.chkbox-question-row:last-child {
    margin-bottom: -12px;
}

.radio-box-title {
    font-size: 15px;
    line-height: 22px;
    color: var(--secondary-1);
}

.radio-box-text {
    font-size: 12px;
    line-height: 22px;
    color: var(--secondary-4);
}

.section-title {
    font-size: 14px;
    font-weight: bold;
    color: var(--secondary-1);
    margin-bottom: 10px;
}

.section-sub-title {
    font-size: 14px;
    color: var(--secondary-1);
    margin-bottom: 10px;
}

.modal-backdrop {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.missing-info-modal {
    width: 392px;
    height: 210px;
    padding: 30px;
    background-color: var(--white);
    border: 0.5px solid var(--secondary-6);
    border-radius: 4px;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.error-close {
    width: 12px;
    height: 12px;
    background: url('./check-no.png') no-repeat center;
    background-size: cover;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

.error-icon {
    height: 60px;
    width: 60px;
    background: url('./error.png') no-repeat center;
    background-size: cover;
    margin-bottom: 12px;
}

.error-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--error-red);
    margin-bottom: 10px;
}

.error-text {
    font-size: 14px;
    color: var(--secondary-3);
}

.question-breadcrumb {
    position: absolute;
    top: 36px;
    right: 50px;
}

.page-title {
    font-size: 18px;
    color: var(--secondary-3);
    padding-bottom: 64px;
}

.question-breadcrumb span {
    color: var(--secondary-4);
}

.draggable-option-placeholder,
.draggable-option-element {
    min-height: 53px;
    width: calc(100% - 10px);
    border-radius: 4px;
}

.draggable-option-element:hover {
    box-shadow: 0px 6px 10px var(--grey);
}

.draggable-option-placeholder {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='4' ry='4' stroke='%23BFC7CD' stroke-width='2' stroke-dasharray='7' stroke-dashoffset='6' stroke-linecap='square'/%3e%3c/svg%3e");
    height: calc(100% - 2px);
}

.draggable-option-placeholder-text {
    padding: 12px;
    font-size: 15px;
    color: var(--secondary-5);
}

.draggable-option-element {
    border: 1px solid var(--secondary-5);
    background-color: var(--white);
    cursor: grab;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.draggable-option-element.error {
    border: 1px solid var(--red) !important;
}

.draggable-option-icon {
    background: url('./drag.png') no-repeat center;
    background-size: cover;
    display: flex;
    height: 17px;
    width: 9px;
    margin: 17px;
}

#sort-order {
    position: relative;
    z-index: 2;
}

#sort-order>div.chkbox-question-row {
    z-index: 2;
}

#sort-order>.chkbox-question-row .draggable-option-element {
    background-color: var(--blue-light);
    border: 1px solid var(--primary);
}

#sort-order>.chkbox-question-row .draggable-option-element .draggable-option-icon {
    background: url('./drag-blue.png') no-repeat center;
}

#sort-order-fake {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.help-box.info {
    background-color: var(--blue-light);
    border: 1px solid var(--primary);
    border-radius: 4px;
    min-height: 90px;
    gap: 10px;
}

.help-box.info .title {
    font-size: 15px;
    color: var(--secondary-1);
}

.help-box.info .help-number {
    font-size: 20px;
    line-height: 24px;
}

.help-phone {
    background: url('./phone.png') no-repeat center;
    background-size: cover;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.help-box.info .help-phone {
    margin-right: 8px;
}

.help-box.info .help-number,
.help-box.info .icon {
    color: var(--primary);
}

/*CLASSES FOR COMPONENTS ENDS*/

/* Adrian Classes */
.mb-24 {
    margin-bottom: 24px;
}

.mt-46 {
    margin-top: 46px;
}

.left-radio-labels {
    width: 29.05%;
}


.left-radio-labels>label {
    font-size: 14px;
    color: var(--secondary-1);
    margin-bottom: 30px;
    min-height: 24px;
    display: flex;
    align-items: center;
}

.right-radio-inputs {
    width: calc(100% - 29.05%);
}

.radio-header-titles {
    margin-left: auto;
    width: calc(100% - 29.05%);
    justify-content: space-between;
    margin-bottom: 24px;
}

.radio-header-content {
    display: flex;
    justify-content: center;
    width: 139px;
    text-align: center;
}

.radio-header-content>span {
    line-height: 16px;
}


.radio-row {
    background: linear-gradient(var(--secondary-6), var(--secondary-6)) no-repeat center/85% 1px;
    min-height: 24px;
    margin-bottom: 30px;
}

.radio-gridline {
    position: relative;
    top: 13px;
    width: 86%;
    left: 7%;
    border-top: 1px solid var(--secondary-6);
}

.radio-input-cell {
    width: 139px;
    height: 24px;
}

/* Radio Button no-padding */

.radio-container-cell {
    display: block;
    position: relative;
    /* padding-left: 35px; */
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 24px;
}

.radio-container-cell input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-container-cell:hover input~.checkmark {
    background-color: var(--background-main);
}

.radio-container-cell input:checked~.checkmark {
    background-color: var(--background-main);
    border: 1px solid var(--primary);
}


.radio-container-cell input:checked~.checkmark:after {
    display: block;
}

.radio-container-cell .checkmark:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

/* Radio Button no-padding END */

.ta-full-row {
    height: 100px !important;
    width: 100%;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Adrian Classes END*/

.radio-row-fluid,
.radio-header-content-fluid {
    width: 100%;
}

.radio-row-fluid:not(.radio-header-container) {
    background: linear-gradient(var(--secondary-6), var(--secondary-6)) no-repeat center/80% 1px;

}

.expired-link-container,
.success-link-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.expired-link-container .title-bold,
.success-link-container .title-bold {
    margin-bottom: 24px;
}

.expired-link-container span.font-size-16,
.success-link-container span.font-size-16 {
    margin-bottom: 40px;
}

.title-bold {
    font-size: 24px;
    font-weight: bold;
}

.expired-icon {
    height: 80px;
    width: 80px;
    background: url('./expired.png') no-repeat center;
    background-size: cover;
    margin-bottom: 30px;
}

.success-icon {
    height: 80px;
    width: 80px;
    background: url('./success.png') no-repeat center;
    background-size: cover;
    margin-bottom: 30px;
}

.web-link {
    font-size: 12px;
    color: var(--primary);
    cursor: pointer;
}
/*
#mainContent .xrm-attribute-value>div.sectionBlockLayout {
    display: none;
}
*/

/*Override default theme background color*/
[data-component-theme="portalThemeColor7"] {
    background-color: var(--background-main) !important;
}

/*Spinner*/
.spinner-modal {
    width: 100%;
    height: calc(100% - 64px);;
    z-index: 1;
    background-color: var(--background-main);
    position: absolute;
}

.spinner {
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    position: relative;
    transform: translateX(-50%);
    margin: 0;
}

.spinner .progress-dot {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 15%;
    top: 15%;
    opacity: 0;
    transform: rotate(225deg);
    animation-name: moveIndetermineProgressRingDot;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.spinner .progress-dot::after {
    content: '';
    position: absolute;
    width: 17.5%;
    height: 17.5%;
    background-color: #0072c6;
    border-radius: 100%;
}

.spinner .progress-dot:nth-child(2) {
    -webkit-animation-delay: 240ms;
    animation-delay: 240ms;
}

.spinner .progress-dot:nth-child(3) {
    -webkit-animation-delay: 480ms;
    animation-delay: 480ms;
}

.spinner .progress-dot:nth-child(4) {
    -webkit-animation-delay: 720ms;
    animation-delay: 720ms;
}

.spinner .progress-dot:nth-child(5) {
    -webkit-animation-delay: 960ms;
    animation-delay: 960ms;
}

@-webkit-keyframes moveIndetermineProgressRingDot {
    0% {
        opacity: 1;
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -o-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -webkit-transform: rotate(345deg);
        -moz-transform: rotate(345deg);
        -o-transform: rotate(345deg);
        -ms-transform: rotate(345deg);
        transform: rotate(345deg);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    30% {
        opacity: 1;
        -webkit-transform: rotate(455deg);
        -moz-transform: rotate(455deg);
        -o-transform: rotate(455deg);
        -ms-transform: rotate(455deg);
        transform: rotate(455deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    39% {
        opacity: 1;
        -webkit-transform: rotate(690deg);
        -moz-transform: rotate(690deg);
        -o-transform: rotate(690deg);
        -ms-transform: rotate(690deg);
        transform: rotate(690deg);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    70% {
        opacity: 1;
        -webkit-transform: rotate(815deg);
        -moz-transform: rotate(815deg);
        -o-transform: rotate(815deg);
        -ms-transform: rotate(815deg);
        transform: rotate(815deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    75% {
        opacity: 1;
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        transform: rotate(945deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    76% {
        opacity: 0;
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        transform: rotate(945deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        transform: rotate(945deg);
    }
}

@keyframes moveIndetermineProgressRingDot {
    0% {
        opacity: 1;
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -o-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -webkit-transform: rotate(345deg);
        -moz-transform: rotate(345deg);
        -o-transform: rotate(345deg);
        -ms-transform: rotate(345deg);
        transform: rotate(345deg);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    30% {
        opacity: 1;
        -webkit-transform: rotate(455deg);
        -moz-transform: rotate(455deg);
        -o-transform: rotate(455deg);
        -ms-transform: rotate(455deg);
        transform: rotate(455deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    39% {
        opacity: 1;
        -webkit-transform: rotate(690deg);
        -moz-transform: rotate(690deg);
        -o-transform: rotate(690deg);
        -ms-transform: rotate(690deg);
        transform: rotate(690deg);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    70% {
        opacity: 1;
        -webkit-transform: rotate(815deg);
        -moz-transform: rotate(815deg);
        -o-transform: rotate(815deg);
        -ms-transform: rotate(815deg);
        transform: rotate(815deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    75% {
        opacity: 1;
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        transform: rotate(945deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    76% {
        opacity: 0;
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        transform: rotate(945deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: rotate(945deg);
        -moz-transform: rotate(945deg);
        -o-transform: rotate(945deg);
        -ms-transform: rotate(945deg);
        transform: rotate(945deg);
    }
}

/*Spinner ends*/

/* General media queries*/
@media only screen and (max-width: 600px) {

    .question-breadcrumb {
        top: 15px;
    }
}
/*
@media only screen and (min-width: 600px) {

}

@media only screen and (min-width: 768px) {

}
*/

@media only screen and (max-width: 768px) {
    #main-form {
        padding: 64px 32px 64px 32px;
    }

    .navbar {
        overflow: hidden;
    }

    .page-title {
        padding-bottom: 32px;
    }

    .draggable-option-element .radio-box-text {
        display: none;
    }

    .draggable-option-placeholder, .draggable-option-element {
        min-height: 53px;
        height: 53px;
    }

    .draggable-option-placeholder, .draggable-option-element .radio-box-title {
        font-size: 10px;
        text-overflow: ellipsis;
        line-height: unset;
        overflow: hidden;
    }

    .draggable-option-element div.unselectable {
        overflow: hidden;
    }
}

@media only screen and (min-width: 992px) {
    #main-form {
        padding: 64px 92px 64px 92px;
    }
}

@media only screen and (min-width: 1200px) {
    #main-form {
        padding: 64px 184px 64px 184px;
    }
}
/* General media queries ends*/
