/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto:400,700';
    font-style: normal;
    src: url('../../fonts/roboto-v27-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../../fonts/roboto-v27-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../fonts/roboto-v27-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../fonts/roboto-v27-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../../fonts/roboto-v27-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../fonts/roboto-v27-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}


.erv {
    --theme-color: #1748F5;
    --selected-color: #DFE6FF;
    --bg1-color: #FFF;
    --bg2-color: #F7F8FB;
    --button-neutral-hover-color: #F7F8FB;
    --button-theme-hover-color: #0e35bf;
    --button-red-hover-color: #910000;
    --button-red-inverted-hover-color: #fbd1d1;

    font-family: Roboto, sans-serif;
    font-style: normal;
    min-height: 100vh;
    transition: opacity 0.5s ease;
    font-size: 16px;
    line-height: 21px;
}

.erv.blue {
    --theme-color: #1748F5;
    --selected-color: #DFE6FF;
    --bg1-color: #FFF;
    --bg2-color: #F7F8FB;

}

.erv.green{
    --theme-color: #409336;
    --selected-color: #d2eace;
    --bg1-color: #FFF;
    --bg2-color: #F7F8FB;
}

.erv-flex {
    display: flex;
}

.erv-margin-auto {
    margin: auto;
}
.erv-margin-vertical--auto {
    margin: auto 0;
}

.width-1-of-1{
    width:100%;
}
.width-1-of-2{
    width:50%;
}
.width-1-of-3{
    width:33%;
}

.erv-hr {
    border-top: 2px solid #E9ECF8;
    margin: 15px 0;
}

.erv-top-header{
    z-index: 2;
    height: 52px;
    position: fixed;
    width:100%;
    padding-left: 21px;
    padding-right: 21px;
    padding-top: 12px;
    background: var(--bg1-color);
}

.erv-top-header.auto-height{
    height: auto;
}

.erv-top-header.erv-top-header-fade:after {
    content: "";
    width: 100%;
    height: 10px;
    background: rgb(255,255,255);
    background: linear-gradient(
            0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.erv-spinner-div {
    padding: 50px;
}
.erv-body{
    padding-top: 52px;
    overflow: auto;
    padding-left: 21px;
    padding-right: 21px;
}
.erv-full-width {
    width:100%;
}
.erv-text-align--center {
    text-align: center;
}
.erv-footer {

    width: 100%;
    padding-bottom: 20px;
}
.erv-footer-fixed {
    position: fixed;
    width: 100%;
    left: 0;
    padding: 21px 21px 21px 21px;
    bottom: 0;
    background: rgb(255,255,255);
}
.erv-footer-box-shadow {
    box-shadow: 1px -2px 4px -1px rgb(158 158 158 / 20%)
}
.erv-footer-fixed.erv-footer-fade:before {
    content: "";
    width: 100%;
    height: 20px;
    background: rgb(255,255,255);
    background: linear-gradient(
            0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    position: absolute;
    top: -20px;
    left: 0;
}


.erv h1 {
    font-weight: bold;
    font-size: 30px;
    line-height: 35px;
    color: var(--theme-color);
    margin-top: 16px;
}

.erv h1.small {
    font-size: 22px;
    line-height: 25px;
}

.erv h2 {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 19px;
    color: black;
}
.erv h2.has-icon {
    display: flex
}
.erv h2.has-icon img{
    margin: auto 17px auto 0;
    width: 22px !important;
    height: 22px;
    flex: none;
}
.erv h2.has-icon div {
    margin: auto 0
}

.erv h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    margin-top: 5px;
    margin-bottom: 16px;
    color: black;
}
.erv h4{
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    color: black;
}
.erv p {
    font-size: 16px;
    line-height: 21px;
    color: black;
}

.erv ol {
    list-style: disc;
    margin-left: 20px;
}

.erv-m-top--none {
    margin-top: 0 !important;
}
.erv-m-bottom--none {
    margin-bottom: 0 !important;
}
.erv-m-bottom--x-small {
    margin-bottom: 4px;
}
.erv-m-bottom--small {
    margin-bottom: 10px;
}
.erv-m-bottom--medium {
    margin-bottom: 19px;
}
.erv-m-bottom--large {
    margin-bottom: 27px;
}
.erv-p-left--medium {
    padding-left: 19px;
}
.erv-p-right--medium {
    padding-right: 19px;
}

.erv-background-gray {
    background: var(--bg2-color);
}

/* BADGE */
.erv-badge {
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
    padding: 4px 8px;
    background: var(--bg2-color);
    border-radius: 5px;
    color: black;
}
.erv-badge.gray {
    background: var(--bg2-color);
}
.erv-badge.light-blue {
    background: var(--selected-color);
}
.erv-badge.blue {
    background: var(--theme-color);
    color: white;
}
.erv-badge.success {
    background: #67FDBE;
}
.erv-badge.error {
    background: #fd6767;
}
.erv-badge.message-count {
    color: white;
    background: #ff0000;
    margin: auto 0;
}

.erv-badge-group {
    display: flex;
    flex-wrap: wrap;
}
.erv-badge-group .erv-badge {
    margin-right: 5px;
    margin-bottom: 5px;
}

.erv-button-group {
    display: flex;
    flex-wrap: wrap;
}
.erv-button-group .erv-button {
    margin-right: 5px;
    margin-bottom: 5px;
}

/*CHECKBOX*/
.erv-click-padding {
    padding: 20px !important;
    margin: -20px !important;
}

.erv-checkbox {
    display: flex;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    line-height: 21px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin:0;
}

.erv-checkbox.read-only {
    pointer-events: none;
}
.erv-checkbox.read-only .checkmark {
    display: none;
}
.erv-checkbox.read-only input:checked ~ .checkmark {
    display: block;
}

.erv-checkbox.erv-checkbox-inline {
    display: inline-flex;
}
.erv-checkbox.erv-checkbox-vertical {
    display: block;
}

.erv-checkbox .text {
    flex: 1 1 auto;
    margin: auto;
}

/* Hide the browser's default checkbox */
.erv-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.erv-checkbox .checkmark {
    position: relative;
    margin: auto;
    top: 0;
    left: 0;
    height: 26px;
    width: 26px;
    min-width: 26px;
    min-height: 26px;
    background-color: white;
    color: var(--theme-color);
    border: 3px solid var(--theme-color);
    border-radius: 5px;
}
.erv-checkbox .checkmark.checkmark-has-text {
    width: auto;
    min-height: 30px;
    line-height: 24px;
    font-size: 14px;
    flex: none;
    margin-top: 0;
}

.erv-checkbox .checkmark.read-checkmark {
    text-align: center;
    min-width:60px;
}

.erv-checkbox .checkmark.checkmark-has-text .checkmark-text {
    padding-left: 10px;
    padding-right: 10px;
}

.erv-checkbox .checkmark:not(.checkmark-has-text) .checkmark-text {
    display: none;
}

.erv-checkbox input:checked ~ .checkmark.checkmark-has-text:not(.checkmark-no-icon) .checkmark-text {
    padding-right: 30px;
}
/* On mouse-over, add a grey background color */
.erv-checkbox:hover input ~ .checkmark {
    background-color: #f3f3f3;
}

/* When the checkbox is checked, add a blue background */
.erv-checkbox input:checked ~ .checkmark {
    background-color: var(--theme-color);
    color: white;
}

/* Create the checkmark/indicator (hidden when not checked) */
.erv-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.erv-checkbox input:checked ~ .checkmark:not(.checkmark-no-icon):after {
    display: block;
}

/* Style the checkmark/indicator */
.erv-checkbox .checkmark:after {
    background-position: center;
    background-repeat: no-repeat;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background-image: url("icons/checkbox_checked.svg");
}

.erv-checkbox .checkmark.checkmark-has-text:after {
    background-position: right;
    background-repeat: no-repeat;
    width:90%;
    height:100%;
    top:0;
    left:0;
    background-image: url("icons/checkbox_checked.svg");
}

/* BUTTONS */
.erv-button {
    display: block;
    border: none;
    font-size: 14px;
    background: white;
    color: var(--theme-color);
    border-radius: 26px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.erv-button.minimal {
    background: transparent;
    border-radius: 0;
    height: auto;
    line-height: normal;
}

.erv-top-header .erv-button {
    height: 36px;
    line-height: 36px;
}

.erv-top-header .erv-button.erv-icon-button {
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
}

.erv-button.erv-icon-button .erv-button-icon {
    margin-right:0;
}

.erv-button.erv-input-button {
    width: 40px;
    height: 40px;
    color: var(--theme-color);
    box-sizing: border-box;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 0;
    margin-top: auto;
    font-weight: normal;
}

.erv-button.erv-button--add {
    height: 40px;
    line-height: 40px;
    background: var(--bg2-color);
    border: none;
    border-radius: 10px;
}

.erv-button.erv-button--neutral.small {
    height: 40px;
    line-height: 40px;
    background: white;
    border: 1px solid var(--theme-color);
    border-radius: 10px;
}

.erv-button.erv-button--neutral.small-round {
    height: 40px;
    line-height: 40px;
    background: white;
    padding: 0 20px;
    border: 1px solid var(--theme-color);
    border-radius: 20px;
    font-weight: normal;
}

.erv-button.erv-button--add .add-text {
    float: left;
    padding-left: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%;
    overflow: hidden;
    text-align: left;
}

.erv-button.erv-button--add .add-sign {
    float: right;
    padding-right: 20px;
    font-size: 25px;
    font-weight: normal;
}
.add-sign .erv-button-icon {
    width: 20px;
    height: 20px;
    margin-top: -5px;
    margin-right:0;
    fill: var(--theme-color);
}

.erv-button.erv-button--back {
    width: fit-content;
    padding: 0 26px;
    border-radius: 18px;
    height: 36px;
    line-height: 36px;
    background: var(--bg1-color);
    color: var(--theme-color);
}
.erv.erv-background-gray .erv-top-header .erv-button--back {
    background: white;

}

.erv-top-header.erv-background-gray .erv-button {
    background: var(--bg1-color) !important;

}
.erv-top-header.erv-background-white .erv-button {
    background: var(--bg2-color) !important;
}

.erv-button.erv-button--close {
    width: fit-content;
    padding: 0 26px;
    background: var(--bg2-color);
    color: var(--theme-color);
    border-radius: 26px;
    height: 40px;
    line-height: 40px;
}
.erv-button.erv-button--gray {
    background: var(--bg2-color);
}
.erv-button.erv-button--blue {
    background: var(--theme-color);
    color: white;
}

.erv-button.erv-button--neutral {
    background: white;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 16px;
    min-width: 127px;
    height: 64px;
    line-height: 64px;
}

.erv-save-error-msg {
    color:red;
    text-align: center;
}
.erv-error {
    color:red !important;
}
/*label.erv-error {*/
/*    color: red !important;*/
/*}*/

.erv-button.erv-button--save {
    background: var(--theme-color);
    color: white;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    height: 64px;
    line-height: 64px;
    margin:auto;
    transition: 0.25s;
    position: relative;
}
.erv-button.erv-button--red {
    background: #f30101;
}
.erv-button.erv-button--inverted-red {
    background: white;
    border: 2px solid #ff0000;
    color: #f30101;
}

.erv-button.erv-button--neutral:not(.disabled):hover{
    background: var(--button-neutral-hover-color);
}
.erv-button.erv-button--save:not(.disabled):not(.loading):not(.saved):hover{
    background: var(--button-theme-hover-color);
}
.erv-button.erv-button--save.erv-button--red:not(.disabled):not(.loading):not(.saved):hover{
    background: var(--button-red-hover-color);
}
.erv-button.erv-button--save.erv-button--inverted-red:not(.disabled):not(.loading):not(.saved):hover{
    background: var(--button-red-inverted-hover-color);
}
.erv-button.erv-button--neutral.erv-button--neutral--small {
    height: 54px;
    line-height: 54px;
}
.erv-button.erv-button--save.erv-button--save--small {
    height: 54px;
    line-height: 54px;
}
.erv-button.erv-button--save .button-text{
    opacity: 1;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.25s;
}
.erv-button.erv-button--save.erv-button--save-animate.saved {
    width: 80px;
}
.erv-button.erv-button--save.disabled, .erv-button.erv-button--save.loading {
    background: #969EB9;
    cursor: default;
    pointer-events: none;
}
.erv-button.erv-button--save:after {
    position: absolute;
    top:0;
    left:0;
    opacity: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url("icons/checkbox_checked.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    transition: 0.25s;
}
.erv-button.erv-button--save.loading:after {
    background-image: url("icons/spinner_white.gif");
    opacity: 1;
}
.erv-button.erv-button--save.saved:after {
    background-image: url("icons/checkbox_checked.svg");
    opacity: 1;
}
.erv-button.erv-button--save.saved .button-text, .erv-button.erv-button--save.loading .button-text {
    opacity: 0;
}
.erv-button.erv-button--save.success {
    width: 80px;
}

.erv-button-row {
    display: flex;
}

.erv-button-row > .erv-button {
    flex: 1 1 auto;
    width: 50%;
}
.erv-button-row > .erv-button:first-child {
    margin-left: 0;
}

.erv-button-row > .erv-button:first-child + .erv-button {
    margin-left: 10px;
}

.erv-card-footer {
    border-top: 1px solid #E9ECF8;
    padding: 0px 20px;
    display: flex;
    background: #f2f3f7;
    border-radius: 0 0 10px 10px;
}

.erv-card-footer > .erv-button {
    flex: 1 1 auto;
    width: 50%;
}

.erv-card-footer > .erv-button:not(:first-child) {
    border-left: 1px solid #E9ECF8;
}
.erv-card-footer .erv-button {
    border: none;
    background: transparent;
    color: var(--theme-color);
    /*font-weight: normal;*/
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 0;
    font-weight: bold;
}
.erv-card-footer .erv-button.erv-button--neutral {
    color: var(--theme-color);
}
.erv-card-footer .erv-button.erv-button--delete {
    color: #f51717;
}

/* ICONS */
.erv-icon {
    stroke: currentColor;
    fill: white;
    overflow: visible !important;
    width: 110%;
    height: 110%;
}
.erv-icon.erv-icon--blue {
    stroke: var(--theme-color);
}

.erv-button-icon {
    width:14px;
    height: 14px;
    margin-right: 5px
}
.erv-button-icon.size-20 {
    width:20px;
    height: 20px;
}
.erv-button-icon.margin-none {
    margin-right: 0;
}
.erv-button-icon.color-theme {
    color: var(--theme-color);
}
/* TOGGLE COMPONENT */
.erv-toggle {
    width: 306px;
    height: 36px;
    text-align: center;
    background: white;
    border-radius: 18px;
    display: flex;
    margin: auto;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}
.erv-toggle .erv-toggle-background {
    position: absolute;
    left:0;
    height: 36px;
    width:50%;
    background: var(--theme-color);
    border-radius: 18px;
    cursor: pointer;
    transition: 0.25s;
}
.erv-toggle-option {
    width: 50%;
    font-size: 14px;
    height: 36px;
    color: var(--theme-color);
    border-radius: 18px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: 0.25s;
}


.erv-toggle[data-selected="0"] .erv-toggle-option[data-option="0"] {
    color: white;
}
.erv-toggle[data-selected="1"] .erv-toggle-option[data-option="1"] {
    color: white;
}
.erv-toggle[data-selected="0"] .erv-toggle-option[data-option="0"] {
    color: white;
}
.erv-toggle[data-selected="1"] .erv-toggle-option[data-option="1"] {
    color: white;
}
.erv-toggle[data-selected="0"] .erv-toggle-background {
    left:0;
}
.erv-toggle[data-selected="1"] .erv-toggle-background {
    left: 50%;
}

/* CLICKABLE LIST COMPONENT */
.erv-clickable-list-item {
    width: 100%;
    background: var(--bg1-color);
    border-radius: 10px;
    padding-left:16px;
    padding-right:16px;
    padding-top:19px;
    padding-bottom:19px;
    display: flex;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
}
.erv .lds-ring.lds-ring--blue div {
    border-color: var(--theme-color) transparent transparent transparent;
}

.erv-list-item-subheader.link {
    color: var(--theme-color);
}
.erv-list-item-icon {
    overflow: visible !important;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: auto 18px auto 0;
    flex:none;
}

.erv-list-item-icon img, .erv-check-list-body-icon img {
    max-height: 100%;
    height: 100%;
}
.erv-list-item-content {
    flex: 1;

}

.erv-list-item-header {
    font-weight: bold;
    /* identical to box height */
}

.erv-list-item-subheader {
    font-weight: normal;
    /* identical to box height */
    padding-top: 3px;
}

/* INFO LIST COMPONENT */
.erv-info-list-item {
    width: 100%;
    padding:10px;
    font-size: 16px;
    line-height: 21px;
    display: flex;
    color: #000000;
}
.erv-info-list-item .erv-list-item-icon {
    color: var(--theme-color);
    width: 30px;
    height: 35px;
}

/* PROCESS LIST COMPONENT */
.erv-process-list-item {
    width: 100%;
    padding-left:21px;
    padding-right:21px;
    padding-top:15px;
    padding-bottom:13px;
    display: flex;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 26px;
}
.erv-process-list-item.current {
    background: var(--theme-color);
    color: white;
    font-weight: bold;
    cursor: pointer;
}
.erv-process-list-item.completed {
    background: var(--selected-color);
    font-weight: bold;
    cursor: pointer;
}
.erv-process-list-item.link-button {
    background: white;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: bold;
    cursor: pointer;
}
.erv-process-list-item.disabled {
    cursor: default !important;
    pointer-events: none !important;
}
.erv-process-list-item.incomplete {
    background: var(--bg2-color);
    font-weight: bold;
    cursor: pointer;
}

.erv-process-list-item .erv-process-list-item-number {
    font-weight: bold;
    width: 40px;
    padding-left: 2px;
    color: var(--theme-color);
    margin-top: auto;
    margin-bottom: auto;
}
.erv-process-list-item.current .erv-process-list-item-number {
    color: white;
}
.erv-process-list-item.completed .erv-process-list-item-number {
    display: none;
}
.erv-process-list-item .erv-process-list-item-checkmark {
    width: 40px;
    margin-top: auto;
    margin-bottom: auto;
    height: 23px;
    color: var(--theme-color);
    display: none;
}
.erv-process-list-item .erv-process-list-item-checkmark.adjust-to-icon-size {
    margin-right: 9px;
    margin-left: 9px;
}
.erv-process-list-item.completed .hide-on-completed {
    display: none;
}
.erv-process-list-item.completed .erv-process-list-item-checkmark {
    display: block;
}

.erv-process-list-item .erv-process-list-item-text {
    flex: 1 1 0;
    padding-right: 10px;
}
.erv-process-list-item .erv-list-item-header {
    line-height: 26px;
}
.erv-process-list-item .erv-process-list-item-text.subheader {
    font-weight: normal;
    line-height: 21px;
}

.erv-process-list-item .erv-process-list-item-arrow {
    color: white;
    display: none;
    margin-top: auto;
    margin-bottom: auto;
}
.erv-process-list-item.current:not(.disabled) .erv-process-list-item-arrow {
    display: block;
}
.erv-process-list-item.completed:not(.disabled) .erv-process-list-item-arrow, .erv-process-list-item.incomplete:not(.disabled) .erv-process-list-item-arrow {
    display: block;
    color: #97A0C1;

}
.erv-process-list-item.link-button .erv-process-list-item-arrow {
    display: block;
    color: var(--theme-color);
}

/* CHECK LIST */
.erv-check-list-item {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 26px;
    background: var(--bg2-color);
    position: relative;
}

.erv-check-list-item.white {
    background: white;
}

.erv-check-list-item .selected {
    background-color: var(--selected-color);
}

.erv-check-list-item.italic {
    font-style: italic;
    background-color: var(--selected-color);
}

.erv-check-list-item .erv-check-list-item-header {
    border-radius: 10px;
    padding-left:21px;
    padding-right:21px;
    padding-top:15px;
    padding-bottom:13px;
    cursor: pointer;
}

.erv-hide-text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
}

.erv-check-list-item .erv-check-list-item-description {
    font-size: 16px;
    line-height: 19px;
    margin-top: 20px;
}
.erv-check-list-item .erv-check-list-item-description.no-margin {
    margin-top: 0;
}
.erv-check-list-item .erv-checkbox {
    font-weight: bold;
}

.erv-check-list-item.selected .erv-check-list-item-header {
    background-color: var(--selected-color);
}


.erv-check-list-item .erv-check-list-item-body {
    font-size: 16px;
    line-height: 19px;
}
.erv-check-list-item .erv-check-list-body-icon {
    width:34px; height: 34px; flex: none;
    margin:auto;
    margin-top:0;
    text-align: center;
}

.erv-check-list-item:not(.selected) .erv-check-list-item-body:not(.no-hr):before {
    content: "";
    position: absolute;
    height: 1px;
    left: 20px;
    right: 20px;
    border-bottom: 1.5px solid #E9ECF8;
}
.erv-check-list-item .erv-link-list:not(.no-hr):before {
    content: "";
    position: absolute;
    top: 0;
    height: 1px;
    left: 20px;
    right: 20px;
    border-bottom: 1.5px solid #E9ECF8;
}

.erv-link-list {
    position: relative;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    line-height: 19px;
    background: var(--bg2-color);
}

.erv-link-list-item {
    position: relative;
    width: 100%;
    display: flex;
    padding: 10px 20px;
}
.erv-link-list-item-icon {
    margin: auto 14px auto 0;
    width: 18px !important;
    height: 23px;
    flex: none;
}
.erv-link-list-text {
    flex: 1 1 auto;
    margin: auto 0;
    padding-right: 10px;
}
.erv-link-list-item:not(:first-child):before {
    content: "";
    position: absolute;
    top: 0;
    height: 1px;
    left: 25px;
    right: 25px;
    border-bottom: 1.5px solid #E9ECF8;
}

.erv-link-list-item .arrow, .erv-check-list-item .arrow {
    display: block;
    color: #97A0C1;
    margin: auto 0;
}
.erv-link-list-item.link {
    color: var(--theme-color);
}
.erv-link-list-item.link .arrow {
    display: block;
    color: var(--theme-color);
}
.erv-link-list-item.link-red {
    color: #f51717;
}
.erv-link-list-item.link-red .arrow {
    display: block;
    color: #f51717;
}
.erv-link-list-item.link-button {
    font-size: 14px;
    font-weight: bold;
    background: #f2f3f7;
    cursor: pointer;
}
.erv-link-list-item.link-button.link-button--radius-bottom {
    border-radius: 0 0 10px 10px;
}
.erv-link-list-item.link-button.link-button--radius {
    border-radius: 10px;
}

/* SKUFF */
.erv-drawer {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    z-index:10;
    pointer-events: none;
}

.erv-drawer h1 {
    font-size: 22px;
    line-height: 25px;
    margin-top: 0;
}
.erv-drawer, .erv-drawer h2, .erv-drawer h4, .erv-badge {
    font-size: 14px;
}

.erv-drawer.closed {
    display: none;
}

.erv-drawer.open {
    display: block;
    pointer-events: auto;

}
.erv-drawer .erv-drawer-foreground {
    z-index: 11;
    bottom: -100%;
    background: white;
    border-radius: 20px 20px 0px 0px;
    transition: 0.5s;
    position: fixed;
    width:100vw;
}
.erv-drawer.open .erv-drawer-foreground {
    bottom: 0;
}
.erv-drawer .erv-drawer-background{
    z-index:10;
    width:100vw;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    background: black;
    opacity: 0;
    transition: 0.5s;
    cursor: pointer;
}

.erv-drawer.open .erv-drawer-background {
    opacity: 0.25;
}

.erv-drawer  .erv-drawer-top {

}
.erv-drawer  .erv-drawer-top .erv-drawer-handle {
    border-radius: 10px;
    height: 4px;
    background: black;
    width: 56px;
    margin: 14px auto 12px auto;
}

.erv-drawer .erv-drawer-top .close-drawer-button {
    margin: 0 20px 12px auto;
}
.erv-drawer .erv-drawer-content {
    max-height: 80vh;
    min-height: 50vh;
    padding: 0 20px;
    overflow: auto;
}
.erv-drawer .erv-drawer-content-ios {
    max-height: 70vh;
}

/* DIALOG */
.erv-dialog {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    z-index:10;
}
.erv-dialog.closed {
    display: none;
}

.erv-dialog.open {
    display: block;

}
.erv-dialog .erv-dialog-foreground {
    z-index: 11;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    transition: 0.5s;
    position: fixed;
    opacity: 0;
    margin:auto;
    width: 300px;
    height: 400px;
}
.erv-dialog.erv-dialog--full .erv-dialog-foreground {
    width: 90%;
    height: 90%;
}
.erv-dialog.open .erv-dialog-foreground {
    opacity: 1;
}
.erv-dialog .erv-dialog-background{
    z-index:10;
    width:100vw;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    background: black;
    opacity: 0;
    transition: 0.5s;
    cursor: pointer;
}

.erv-dialog-content {
    width: 100%;
    padding: 20px;

}

.erv-dialog-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
}

.erv-dialog.open .erv-dialog-background {
    opacity: 0.25;
}


.loading_line_wrapper {
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
}
.loading_line_wrapper.bottom {
    top: auto;
    bottom: 0;
}

.loading_line {
    position: relative;
    top: 0px;
    left: 0px;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    transform-origin: 100% 0%;
    animation: kf_loading_line 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s infinite;


}

.loading_line .loading_line_inner {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    transform-origin: 0% 0%;
}

.loading_line_inner--1 {
    opacity: 0;  //change for inner line opacity, currently 0/hidden
animation: kf_loading_line_inner--1 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s infinite;
}

.loading_line_inner--2 {
    opacity: 1;
    animation: kf_loading_line_inner--2 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s infinite;
}

.loading_line_inner {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    background-color: red;
    transform-origin: 0% 0%;
}

@keyframes kf_loading_line {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}


@keyframes kf_loading_line_inner--1 {
    0% {
        transform: scaleX(0);
    }
    25% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1);
    }
}


@keyframes kf_loading_line_inner--2 {
    0% {
        transform: scaleX(0);
    }
    25% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1);
    }
}



.erv-arrow-list {
    display: flex;
    font-size: 14px;
}

.erv-arrow-list li {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 50%;
    flex: 1 1 auto;
    margin: 0 2px 0 0;
    position: relative;
}

.erv-arrow-list li:before {
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    left: 0px;
    border-style: solid;
    border-width: 20px 0 20px 10px;
    border-color: transparent transparent transparent var(--bg1-color);
    z-index: 0;
}

.erv-arrow-list li:first-child:before {
    border-color: transparent;
}

.erv-arrow-list li:not(.last) a:after {
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    right: -10px;
    border-style: solid;
    border-width: 20px 0 20px 10px;
    border-color: transparent transparent transparent #dfdfdf;
    z-index: 1;
}

.erv-arrow-list li.last a {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.erv-arrow-list li.first a {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.erv-arrow-list li.red a, .erv-arrow-list li.risk-HIGH a {
    background: #f8d9df;
}
.erv-arrow-list li.red a:after, .erv-arrow-list li.risk-HIGH a:after  {
    border-left-color: #f8d9df;
}
.erv-arrow-list li.yellow a, .erv-arrow-list li.risk-MEDIUM a {
    background: #fdefd4;
}
.erv-arrow-list li.yellow a:after, .erv-arrow-list li.risk-MEDIUM a:after {
    border-left-color: #fdefd4;
}
.erv-arrow-list li.green a, .erv-arrow-list li.risk-LOW a {
    background: #ddebde;
}
.erv-arrow-list li.green a:after, .erv-arrow-list li.risk-LOW a:after {
    border-left-color: #ddebde;
}
.erv-arrow-list li.green a, .erv-arrow-list li.risk-UNDEFINED a {
    background: #dadada;
}
.erv-arrow-list li.green a:after, .erv-arrow-list li.risk-UNDEFINED a:after {
    border-left-color: #dadada;
}

.erv-arrow-list li a {
    display: flex;
    background: #dfdfdf;
    font-weight: bold;
    color: black;
    pointer-events: none;
}


.erv-arrow-list li a img {
    padding-left: 35px;
}
.erv-arrow-list li a div {
    padding-left: 10px;
}
.erv-arrow-list li.first a img {
    padding-left: 15px;
}


.erv-risk-badge {
    border-radius: 10px;
    padding: 5px 12px;
    display: inline-flex;
    /*font-weight: bold;*/
    font-size: 14px;
}
.erv-risk-badge.risk-HIGH {
    background: #f8d9df;
}
.erv-risk-badge.risk-MEDIUM {
    background: #fdefd4;
}
.erv-risk-badge.risk-LOW {
    background: #ddebde;
}
.erv-risk-badge.risk-UNDEFINED {
    background: #dadada;
}
.erv-risk-badge-icon {
    margin: auto 10px auto 0;
    width: 18px !important;
    height: 21px;
    flex: none;
}
.erv-risk-badge-text {
    flex: 1 1 auto;
    margin: auto 0;
}


.erv-form__group {
    position: relative;
    margin-top: 10px;
}
.erv-form__group.has-label {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
}
.erv-form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    font-size: 16px;
    color: #212121;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.erv-form__field::placeholder {
    color: transparent;
}

.erv-form__field:placeholder-shown ~ .erv-form__label {
    font-size: 16px;
    cursor: text;
    top: 20px;
    color: #9b9b9b;
}

.erv-form__label, .erv-form__field:focus ~ .erv-form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 12px;
    color: var(--theme-color);

}

.erv-form__field:focus ~ .form__label {
    color: var(--theme-color);
}

.erv-form__field:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid var(--theme-color);
}
.erv-remaining-characters {
    font-size: 14px;
    text-align: right;
    width: 100%;
}


.text-stroke {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.text-stroke-white {
    text-shadow: -1px -1px 0 var(--bg1-color), 1px -1px 0 var(--bg1-color), -1px 1px 0 var(--bg1-color), 1px 1px 0 var(--bg1-color);
}

.erv-form .form-area > .form-group, .erv-form .form-area > .matrix-table {
    padding: 0;

}
.erv-form .action-view {
    margin-bottom: 0;

}
.erv-form > .action-view > .action-module > .form-buttons {
    margin: 0;
}

.erv-form {
    font-size: 0.8125rem;
    line-height: 1.42857143;

}

.erv .erv-form  p {
    font-size: 12px;
    line-height: 18px;
    color: initial;
}
.erv-form .slds-field-description {
    color: #5C7CAA !important;
}

.hide-form-buttons .form-buttons {
    display: none !important;

}

.erv-form.erv-styled-inputs input,
.erv-form.erv-styled-inputs textarea
{
    font-family: inherit;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    outline: 0;
    background: transparent;
    transition: border-color 0.2s;
    border-radius: 0;
    padding-left:0;
}

.erv-form.erv-styled-inputs input:focus, .erv-form input:active
, .erv-form.erv-styled-inputs textarea:focus, .erv-form textarea:active
{
    border-color: var(--theme-color);
    box-shadow: 0px 1px var(--theme-color);
}

.erv-form .slds-form-description-block {
    border: none
}


.erv-select {
    font-family:
            'Roboto','Helvetica','Arial',sans-serif;
    position: relative;
    width: 100%;
}

.erv-select-text option {
    font-size: 20px;
}

.erv-select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 23px 0px 7px 0;
    font-size: 16px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0, 0.12);
}

/* Remove focus */
.erv-select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0,0,0, 0);
}

/* Use custom arrow */
.erv-select .erv-select-text {
    appearance: none;
    -webkit-appearance:none
}

.erv-select:after {
    position: absolute;
    top: 31px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

option:hover{background-color:#000 !important;}
/* LABEL ======================================= */
.erv-select-label {
    font-size: 16px;
    color: #9b9b9b;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 23px;
    transition: 0.2s ease all;
}

/* active state */
.erv-select-text:focus ~ .erv-select-label, .erv-select-text:valid ~ .erv-select-label {
    color: var(--theme-color);
    top: 0px;
    transition: 0.2s ease all;
    font-size: 12px;
}

.erv-select-text:focus {
    border-bottom: 2px solid var(--theme-color);
}


/* The animation code */
@keyframes error-blink {
    0%   {background-color: red;}
    25%  {background-color: var(--selected-color);}
    50%  {background-color: red;}
    100% {background-color: var(--selected-color);}
}

/* The element to apply the animation to */
.error-blink {
    animation-name: error-blink;
    animation-duration: 2s;
}


.erv-task-details {
    padding-bottom: 100px;
}

.erv-multiple-locations-info {
    font-size: 14px;
    margin-bottom: 5px;

}

.erv-dashboard-card {
    background: white;
    padding: 10px 20px;
    box-shadow: 1px -2px 4px -1px rgb(158 158 158 / 20%)

}


.erv-modal {
    background:  white;
    position: absolute;
    width: 100%;
    min-height: 100vh;
    transition: opacity 0.25s ease;
    opacity: 100;
    z-index: 1000;
}

.erv-modal.closed {
    opacity: 0;
}

.erv-modal h1 {
    margin-top: 5px;
}

.erv-header-button--right {
    margin: 0 0 0 auto;
}


/* erv-radio */
.erv-radio {
    display: inline-block;
    position: relative;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 24px;
}
.erv-radio__input {
    position: absolute;
    top: 4px;
    left: 0;
    width: 36px;
    height: 20px;
    opacity: 0;
    z-index: 0;
}
.erv-radio__label {
    display: block;
    padding: 1px 0 0 30px;
    cursor: pointer;
}
.erv-radio__label:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 50%;
    z-index: 1;
    transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.erv-radio__label:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--theme-color);
    border-radius: 50%;
    z-index: 2;
    transform: scale(0, 0);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.erv-radio__input:checked + .erv-radio__label:before {
    border-color: var(--theme-color);
}
.erv-radio__input:checked + .erv-radio__label:after {
    transform: scale(1, 1);
}

.erv-radio.erv-radio--medium .erv-radio__label:before {
    top: 4px;
    left: 0;
    width: 22px;
    height: 22px;
}
.erv-radio.erv-radio--medium .erv-radio__label:after {
    top: 9px;
    left: 5px;
    width: 12px;
    height: 12px;
}
.erv-radio.erv-radio--medium .erv-radio__label {
    padding: 4px 0 0 35px;
}

.erv-radio.erv-radio--large .erv-radio__label:before {
    top: 4px;
    left: 0;
    width: 26px;
    height: 26px;
    border-width: 3px;

}
.erv-radio.erv-radio--large .erv-radio__label:after {
    top: 10px;
    left: 6px;
    width: 14px;
    height: 14px;
}
.erv-radio.erv-radio--large .erv-radio__label {
    padding: 6px 0 0 40px;
}

.progress-bar-widget-group > div {
    margin-bottom: 3px;
}

.erv-progress-bar-widget, .erv-progress-bar-container {
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    margin: -2px;
}
.erv-progress-bar-widget > div, .erv-progress-bar-container > div  {
    margin: 2px;
}


.erv-progress-bar {
    flex: 1 1 auto;
    /*width: 100%;*/
    min-width: 200px;
    background: #b9c8fc;
    position: relative;
}

.erv-progress-bar .erv-progress-bar--fill {
    background: blue;
    width: 30%;
    position: absolute;
}

.erv-progress-bar, .erv-progress-bar .erv-progress-bar--fill {
    height: 14px;
    line-height: 14px;
    border-radius: 3px;
}
.erv-progress-bar.narrow, .erv-progress-bar.narrow   .erv-progress-bar--fill {
    height: 10px;
    margin: auto;
    border-radius: 5px;
}

.erv-progress-bar.animate .erv-progress-bar--fill {
    transition: 0.25s linear;
}
.erv-progress-bar.animate.before-animate .erv-progress-bar--fill {
    width: 0% !important;
}

.erv-progress-bar-widget .title-text {
    font-size: 14px;
    line-height: 14px;
    color: black;
    font-weight: bold;
    width: 200px;
}

.erv-progress-bar-container .text-container {
    width: 200px;
}
.erv-progress-bar-container .description-text {
    font-size: 12px;
    line-height: 14px;
    color: gray;
}
.erv-progress-bar-container .title-text {
    font-size: 12px;
    line-height: 14px;
    color: black;
    font-weight: bold;
}
.erv-progress-bar-container .status-text {
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    color: blue;
}

.erv-progress-bar .erv-progress-bar--text {
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 9px;
    font-weight: bold;
    --shadow: rgba(0, 0, 0, 0.50);
    text-shadow: -1px -1px 0 var(--shadow), 1px -1px 0 var(--shadow), -1px 1px 0 var(--shadow), 1px 1px 0 var(--shadow);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
}

.erv-date-picker {
    display: flex;
    border: none;
    font-size: 14px;
    background: white;
    color: var(--theme-color);
    border-radius: 26px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.erv-date-picker.read-only {
    display: block;
    background: transparent;
    color: black;
    cursor: none;
}

.erv-date-picker .date-next, .erv-date-picker .date-prev{
    padding: 0 20px;
}
.erv-date-picker .date-text{
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.erv-tabs {
    display: -ms-flexbox;
    display: flex;
}

.erv-tabs .erv-tab {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.erv-tab {
    cursor: pointer;
    color: #c2c9df;
    padding-top: 15px;
    padding-bottom: 10px;
    transition: 0.2s ease all;
    border-bottom: 3px solid transparent;
}

.erv-tab.selected {
    color: var(--theme-color);
    border-bottom: 3px solid currentColor;
    border-color: currentColor;
}
.erv-tab  .slds-icon {
    fill: currentColor;
}

.erv-tab-content {
    display: none;
}

.erv-period-select-list-item {
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 26px;
    background: var(--bg2-color);
    position: relative;
}

.erv-period-select-list-item.selected {
    background: var(--selected-color);
    font-weight: bold;
}

.erv-period-select-list-item .today-text{
    float: right;
    color: #7f8599;
    font-size: 13px;
}

.sync-icon-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes sync-anim {
    100% {
        transform: rotate(1turn);
    }
}

.erv-sync-button {
    position: relative;
    z-index: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    /*padding: 2rem;*/
}
.erv-sync-button.syncing .erv-button-icon, .erv-sync-button .sync-number{
    display: none;
}
.erv-sync-button.syncing .sync-number, .erv-sync-button .erv-button-icon{
    display: initial;
}

.erv-sync-button.syncing:before {
     border-radius: 50%;
     content: '';
     position: absolute;
     z-index: -2;
     left: -50%;
     top: -50%;
     width: 200%;
     height: 200%;
     background-color: #399953;
     background-repeat: no-repeat;
     background-size: 50% 50%, 50% 50%;
     background-position: 0 0, 100% 0, 100% 100%, 0 100%;
     background-image: linear-gradient(var(--theme-color), var(--theme-color)), linear-gradient(var(--theme-color), var(--theme-color)), linear-gradient(var(--theme-color), #fff, var(--theme-color)), linear-gradient(var(--theme-color),#fff, var(--theme-color));
     animation: sync-anim 2s linear infinite;
 }

.erv-sync-button:after {
     border-radius: 50%;
     content: '';
     position: absolute;
     z-index: -1;
     left: 2px;
     top: 2px;
     width: calc(100% - 4px);
     height: calc(100% - 4px);
     background: var(--bg2-color);
 }

.erv-top-header.erv-background-gray .erv-sync-button:after {
    background: var(--bg1-color);
}


.erv-grid--padded {
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    margin: -5px;
}
.erv-grid--padded > div {
    margin: 5px;
}

.erv-grid--padded > div.auto-width {
    width: 1%;
    flex: 1 1 auto;
}


.status-border {
    border-left: 10px solid #dadbdc;
}

.erv-upload-image-button, .erv-take-photo-button {
    background: var(--theme-color);
}


.risk-images-add-container {
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.risk-image-thumbnail-image-container{

    position:relative;
    height:150px;
    width:150px;
    margin: 5px;
    margin-left: 0;
    background: black;
    background-image: url("../imageplaceholder.png");
    background-size: 150px 150px;
    border: 2px solid var(--theme-color);
    border-radius: 10px;
    overflow: hidden;
}
.risk-image-thumbnail{

    position:relative;
    margin: 5px;
    margin-left: 0;
    display: inline-block;
}
.risk-image-thumbnail.margin-left{

    margin-left: 5px;
    margin-right: 0;

}
.risk-image-thumbnail-image{

    display: block;
    margin: auto;

}
.risk-image-thumbnail .risk-image-thumbnail-image{
    max-height: 150px;
    max-width: 150px;
    border:none;
}


.risk-image-thumbnail-name, .risk-image-thumbnail-error {
    position: absolute;
    bottom: 0px;
    background: #ffffffa6;
    color: #1748f5;
    max-width: 100%;
    width: 100%;
    text-align: right;
    padding: 0 5px;
    transition: 0.2s ease all;
}

.risk-image-thumbnail-error {
    background-color: red;
    color: white;
    display: none;
    text-align: left;
}

.show-error .risk-image-thumbnail-error {
    display: block;
}

.show-error .risk-image-thumbnail-name {
    display: none;
}


.risk-image-thumbnail-remove-button{
    width: fit-content;
    padding: 0 26px;
    background: white;
    color: var(--theme-color);
    border-radius: 26px;
    height: 30px;
    line-height: 28px;
    border: 1px solid var(--theme-color);
    margin: auto;
}

.risk-image-thumbnail-remove-button--floating{
    position: absolute;
    color: var(--theme-color);
    background: white;
    max-width: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    right: 2px;
    top: 2px;
    box-shadow: 0px 0px 2px 0px #727272;
}

.risk-image-upload-success {
    color: #0cc778;
}
.risk-image-upload-error {
    color: #fd6767;
}

.loading .risk-image-thumbnail-remove-button--floating, .upload-success .risk-image-thumbnail-remove-button--floating {
    display: none;
}

.upload-success .risk-image-thumbnail-name {
    background-color: #8fe98fb3;
}

.risk-image-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: white;
    opacity: 0.8;
    display: none;
}
.loading .risk-image-spinner {
    display: flex;
}

.risk-image-spinner-div {
    margin: auto;
}

.risk-image-error-message {
    color: red;
    position: absolute;
    bottom:0;
    text-align: center;
    width:100%;
}

.navigate-to-extra-measures {
    margin-bottom: 10px;
}
