h1,
.h1-style
{
    font-family: 'Work Sans';
    font-size: 4rem;
    color: var(--ks-black-2);
    font-weight: 300;
    margin: 0;
}

h2,
.h2-style
{
    font-family: 'Work Sans';
    font-size: 2.5rem;
    color: var(--ks-black-2);
    font-weight: 300;
    margin: 0;
}

h3,
.h3-style
{
    font-family: 'Work Sans';
    font-style: normal;
    font-size: 2rem;
    color: var(--ks-black-2);
    font-weight: 300;
    line-height: 28px;
    margin: 0;
}

h4,
.h4-style
{
    font-family: 'Work Sans';
    font-size: 1.5rem;
    color: var(--ks-black-2);
    font-weight: 300;
    margin: 0;
}

h5,
.h5-style
{
    font-family: 'Work Sans';
    font-size: 1.1rem;
    color: var(--ks-black-2);
    font-weight: 300;
    margin: 0;
}

legend
{
    font-family: 'Work Sans';
    color: var(--ks-black-2);
    font-weight: 300;
}


@keyframes button_to_progress_bar {
    0%
    {
        padding: 0;
        min-width: 224px;
        min-height: 49px;
        border-radius: 6px;
    }
    25%
    {
        width: 100%;
        min-height: 19px;
        background-color: var(--ks-grey);
    }
    50%
    {
        border-radius: 2.5rem;
    }
    100%
    {
        padding: 0;
        min-height: 19px;
        background-color: var(--ks-grey);
        border-radius: 2.5rem;
        width: 100%;
    }
}

@keyframes progress_bar_thickness_scaling
{
    0%
    {
        border-bottom: 49px solid var(--ks-green);
        border-radius: 6px;
    }
    25%
    {
        border-bottom: 19px solid var(--ks-green);
    }
    50%
    {
        border-radius: 2.5rem;
    }
    100%
    {
        border-bottom: 19px solid var(--ks-green);
        border-radius: 2.5rem;
    }
}

.fa-facebook
{
    color: var(--facebook-color);
}

.fa-twitter
{
    color: var(--twitter-color);
}

/*
______
|  _  \
| | | |_ __ ___  _ __ _______  _ __   ___
| | | | '__/ _ \| '_ \_  / _ \| '_ \ / _ \
| |/ /| | | (_) | |_) / / (_) | | | |  __/
|___/ |_|  \___/| .__/___\___/|_| |_|\___|
                | |
                |_|
*/

.dropzone
{
    background-color: var(--ks-white);
    color: var(--eC-black);
    border: 1px dashed var(--eC-primary-darker);
    border-radius: 4px;
    width: 100%;
}

.dropzone.dropzone-alternative
{
    background-color: transparent !important;
    color: unset;
    border: none !important;
    border-radius: 100%;
    position: relative;
    height: 240px !important;
    width: 240px !important;
}

.dropzone.dropzone-alternative .user-info-avatar-overlay
{
    position: absolute;
    width: 200px;
    height: 200px;
    top: calc(0% + 20px);
    left: calc(0% + 20px);
    border-radius: 100%;
    background-color: var(--ks-grey);
    opacity: 70%;
    overflow: hidden;
}

.dropzone.dropzone-alternative .user-info-no-avatar
{
    background-color: var(--eC-primary);
    position: absolute;
    left: 20px;
    width: 200px;
    height: 200px;
    border-radius: 100%;
}

.dropzone.dropzone-alternative .user-info-no-avatar span
{
    height: 64px;
    width: 64px;
    font-size: 64px;
    line-height: 64px;
    color: var(--ks-grey);
}

.dropzone.dropzone-alternative .user-info-avatar
{
    pointer-events: none;
}

.dropzone.dropzone-alternative .dz-image,
.dropzone.dropzone-alternative .dz-details
{
    display: none;
}

.dropzone.dropzone-alternative .dz-success-mark
{
    position: relative;
    margin: 0;
    left: -24px;
    top: 27px;
}

.dropzone.dropzone-alternative .dz-error-mark
{
    position: relative;
    margin: 0;
    top: -27px;
    left: -24px;
}

.dropzone.dropzone-alternative .dz-preview
{
    margin: 0;
    position: absolute;
    left: 120px;
    top: 70px;
}
.dropzone.dropzone-alternative .dz-preview .dz-spinner
{
    color: var(--eC-primary);
    left: -15px;
}

.dropzone.dropzone-alternative .dz-message
{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100%/2 - (49px - 8.5px));
}

.dropzone .dz-preview.dz-image-preview
{
    background: none;
}

.dropzone .dz-preview.dz-file-preview .dz-image
{
    background: none;
    border-radius: 4px;
}

.dropzone .dz-preview .dz-image
{
    border-radius: 4px;
}

.dropzone .dz-preview .dz-image img
{
    max-width: 200px;
}

.dropzone .dz-preview.dz-processing:not(.dz-success) .dz-details .dz-size
{
    display: none;
}

.dropzone .dz-message
{
    margin: 1rem 0;
    pointer-events: none;
}

.dropzone .dz-preview .dz-details .dz-filename
{
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
}

.dropzone .dz-preview.dz-success .dz-details .dz-filename
{
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

.dropzone.dz-drag-hover
{
    background-color: var(--ks-white-2);
    color: var(--ks-lightgrey);
    border: 1px solid var(--ks-grey);
}

.dropzone.dz-started
{
    background-color: var(--eC-primary-fade-2);
    color: var(--eC-primary-fade-3);
    border: 1px dashed var(--eC-primary);
}

.dropzone.dz-started .dz-message {
    color: transparent;
}

.dropzone .dz-preview .dz-spinner
{
    position: absolute;
    color: var(--ks-grey);
    /* Centered vertically and adjusted for the parent's margin */
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    z-index: 21;
}

.dropzone .dz-success-mark g circle
{
    fill: var(--ks-green);
}

.dropzone .dz-preview.dz-complete .dz-spinner
{
    display: none;
}

.dropzone-error-container {
    position: absolute;
}

.dropzone-error-container > .error-field {
    color: var(--ks-error-red);
    height: 0;
}

.dropzone-delete-instance
{
    border: none;
    background-color: transparent;
}

.dropzone-delete-icon
{
    color: var(--ks-danger);
    font-size: 1.2rem;
}

/*
______          _
|  ___|        | |
| |_ ___  _ __ | |_
|  _/ _ \| '_ \| __|
| || (_) | | | | |_
\_| \___/|_| |_|\__|
*/

.fill-primary {
    fill: var(--eC-primary);
}

.text-primary {
    color: var(--eC-primary) !important;
}
.text-primary-darker {
    color: var(--eC-primary-darker) !important;
}

.text-dark-primary
{
    color: var(--eC-text-primary) !important;
}

.text-dark-secondary
{
    color: var(--eC-text-secondary) !important;
}

.text-info {
    color: var(--ks-info-blue) !important;
}

.text-danger {
    color: var(--ks-danger) !important;
}

.text-white {
    color: var(--ks-white) !important;
}

.text-glow-white {
    text-shadow: 0px 0px 2px var(--ks-white);
}

.text-black {
    color: var(--ks-black-2) !important;
}

.text-glow-black {
    text-shadow: 0px 0px 2px var(--ks-black-2) !important;
}

.text-grey {
    color: var(--ks-grey) !important;
}

.text-large {
    font-size: 20px !important;
}

.text-dark-orange {
    color: var(--ks-dark-orange) !important;
}

.text-success {
    color: var(--ks-green) !important;
}

.fw-300
{
    font-weight: 300 !important;
}

.fw-400
{
    font-weight: 400 !important;
}

.fw-500
{
    font-weight: 500 !important;
}

.text-mid
{
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    line-height: 16px;
}

.text-table {
    vertical-align: middle;
    line-height: 1rem;
}

.text-sub
{
    font-size: 12px;
    line-height: 14px !important;
    font-weight: 300;
}

.text-standard
{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-black-2);
}

.line-height-0 {
    line-height: 0px !important;
}

/* Standard text that uses Work Sans instead of Roboto */
.text-standard-alt
{
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-black-2);
}

.text-file-size
{
    font-size: 14px;
    line-height: 16px;
    height: 16px;
    font-weight: 400;
    color: var(--ks-grey);
}

.wb-breakall {
    word-break: break-all;
}

.horizontal-line {
    background-color: rgba(var(--eC-primary-rgb), 0.5);
    width: 100%;
    height: 2px;
    margin: auto 0;
}

.popper-shadow {
    box-shadow: 2px 3px 5px rgba(var(--eC-primary-darker-rgb), 0.2);
}

/*
______       _   _
| ___ \     | | | |
| |_/ /_   _| |_| |_ ___  _ __  ___
| ___ \ | | | __| __/ _ \| '_ \/ __|
| |_/ / |_| | |_| || (_) | | | \__ \
\____/ \__,_|\__|\__\___/|_| |_|___/
*/

/* User should never be able to click buttons that are disabled, so a global rule for this is acceptable */
.button-base:disabled, .button-base.disabled
{
    pointer-events: none !important;
    user-select: none !important;
    text-decoration: none !important;
    background-color: var(--ks-lightgrey) !important;
    color: var(--ks-grey) !important;
    box-shadow: 0px 0px 3px var(--ks-grey) !important;
}

.button-base
{
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    padding: 15px 30px;
    border-radius: 6px;
    box-shadow: 0px 0px 10px rgba(var(--eC-primary-lighter-rgb), 0.25);
    transition: all 0.3s ease 0s;
    border: none;
    cursor: pointer;
}
.button-base::after {
    color: inherit;
}

.button-base-split
{
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    padding: 15px 30px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    transition: all 0.3s ease 0s;
    border: none;
    cursor: pointer;
}

.btn-group .button-base:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group .button-base:nth-child(2) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.button-ghost
{
    background-color: transparent;
    color: var(--eC-text-primary);
    box-shadow: 0px 0px 10px rgba(var(--eC-primary-darker-rgb), 0.2);
}

.button-ghost:active
{
    text-decoration: underline;
}

.button-ghost:hover
{
    background-color: var(--eC-primary);
    color: var(--ks-white);
    text-shadow: 0px 0px 1px var(--eC-primary-lighter);
}

.button-ghost:disabled
{
    background-color: transparent;
}

.button-success
{
    background-color: var(--ks-green);
    box-shadow: 0px 0px 10px var(--ks-green) !important;
    color: var(--ks-white);
}

.button-success:hover
{
    background-color: var(--ks-white);
    color: var(--ks-green);
}

.button-success:active
{
    text-shadow: 0px 0px 1px var(--ks-green);
}

.button-info{
    box-shadow: 0px 0px 10px var(--ks-info-blue-fade);
    background-color: var(--ks-info-blue);
    color: var(--ks-white);
}

.button-info:hover {
    background-color: var(--ks-info);
    color: var(--ks-info-blue);
}

.button-info:active
{
    text-shadow: 0px 0px 1px var(--ks-info-blue);
}

.hov-primary {
    color: var(--eC-primary);
}
.hov-primary:hover {
    color: var(--eC-black);
}

.pos-relative {
  position: relative !important;
}

.button-primary {
    box-shadow: 0px 0px 10px rgba(var(--eC-primary-darker-rgb), 0.2);
    background-color: var(--eC-primary);
    color: var(--ks-white);
}

.button-primary:hover, .button-primary:hover::after {
    background-color: var(--ks-white) !important;
    color: var(--eC-primary);
}
.button-alt-hover:hover {
    color: var(--ks-black) !important;
}

.button-primary:active
{
    text-shadow: 0px 0px 1px var(--eC-primary-darker);
}

.button-primary-glow {
    box-shadow: 0px 0px 10px var(--eC-primary) !important;
}

.button-black  {
    background-color: var(--ks-white);
    color: var(--eC-black);
    border: 1px solid var(--eC-black);
}

.button-black:hover {
    color: var(--eC-black);
    background-color: var(--ks-white);
}

.button-black:active {
    text-shadow: 0px 0px 1px var(--eC-black);
}


.button-danger  {
    background-color: var(--ks-danger);
    color: var(--ks-white);
    box-shadow: 0px 0px 2px 0px var(--ks-black-2);
}

.button-danger:hover {
    color: var(--eC-black);
    background-color: var(--ks-softer-red);
    box-shadow: 0px 0px 10px var(--ks-error-red);
}

.button-danger:active {
    text-shadow: 0px 0px 1px var(--ks-danger);
}

.button-danger:disabled {
    opacity: 0.8;
}

.button-white
{
    background-color: var(--ks-white);
    color: var(--ks-black);
    box-shadow: none;
}

.color-dark-warning {
    color: var(--ks-dark-orange) !important;
}

.button-warning
{
    background-color: var(--ks-yellow);
    color: var(--ks-white);
    box-shadow: 0px 0px 10px var(--ks-light-yellow);
}

.button-warning:hover
{
    color: var(--ks-yellow);
    background-color: var(--ks-light-yellow);
    box-shadow: 0px 0px 10px var(--ks-yellow);
}

.button-warning:active
{
    text-shadow: 0px 0px 1px var(--ks-yellow);
}

.button-background {
    box-shadow: none !important;
    background-color: inherit !important;
    color: var(--eC-black) !important;
}
.button-background:hover {
    background-color: inherit;
    color: var(--eC-black);
}

.no-border {
    border: none !important;
}

.error-container-2 {
    color:var(--ks-error-red);
    pointer-events: none;
}
.error-container-2 .error-field {
    margin: 0 !important;
}
.error-container-2:has(label){
    margin-bottom: 1.5rem;
}

.prev-step-button
{
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    padding: 0;
    vertical-align: middle;
    background-color: transparent;
    border-color: transparent;
    text-decoration: none;
    color: var(--ks-black-2);
    line-height: 19px;
}
.prev-step-button:hover {
    color: var(--eC-primary);
    text-shadow: 0px 0px 0px var(--eC-primary);
}

.button-slim
{
    padding: 10px 20px;
}

.button-slimmer
{
    padding: 6px 20px;
    font-size: 0.8rem;
}

.button-disabled {
    background-color: var(--ks-lightgrey);
    box-shadow: none;
    color: var(--ks-grey);
}

.btn-secondary
{
    color: var(--bs-white) !important;
    background-color: var(--eC-text-secondary) !important;
    border-color: var(--eC-text-secondary) !important;
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    padding: 12px 26px;
    vertical-align: bottom;
}


/*
______            _                                   _
| ___ \          | |                                 | |
| |_/ / __ _  ___| | ____ _ _ __ ___  _   _ _ __   __| |___
| ___ \/ _` |/ __| |/ / _` | '__/ _ \| | | | '_ \ / _` / __|
| |_/ / (_| | (__|   < (_| | | | (_) | |_| | | | | (_| \__ \
\____/ \__,_|\___|_|\_\__, |_|  \___/ \__,_|_| |_|\__,_|___/
                       __/ |
                      |___/

*/

.bg-white {
    background-color: var(--ks-white) !important;
}

.bg-dark-orange {
    background-color: var(--ks-dark-orange) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-grey {
    background-color: var(--ks-grey) !important;
}

.bg-light-grey {
    background-color: var(--ks-lightgrey) !important;
}

.bg-disabled-grey {
    background-color: var(--ks-disabled) !important;
}

.bg-red {
    background-color: var(--ks-danger) !important;
}

.bg-green {
    background-color: var(--ks-green) !important;
}

.bg-background {
    background-color: var(--ks-background-primary) !important;
}

.bg-blue {
    background-color: var(--eC-primary) !important;
}

.br-3px
{
    border-radius: 3px !important;
}

.br-6px
{
    border-radius: 6px !important;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.min-vh-70 {
    min-height: 70vh !important;
}

.h-90 {
    height: 90% !important;
}

.index-bid-status-container
{
    height: 4rem !important;
    width: 4rem !important;
    font-size: 1.5rem;
}

.text-selection-header {
    font-size:20px;
    font-family: "Work Sans";
}

/* Selection panes */


.bg-info-light {
    background-color: var(--ks-info) !important;
}

/* assetsearch/searchPage.html.*/
/*.search-address-wrapper{
    margin: auto;
    margin-top: 150px;
    padding: 0px 37px 0px 37px;
    background-color:var(--ks-white);
    border-radius: 6px;
}*/

#of-fees-modal .modal-dialog
{
    max-width: 400px;
}

.search-address-container{
    padding: 0px;
    margin-bottom: 5rem;
    margin-top:10rem;
}

#search-address-form {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
    margin-bottom:4rem;
}

.search-page-search-result-container{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    width:75%;
    margin:auto;
    min-width:30rem;
    margin-top:2.2rem;
    padding:1.25rem 1.5rem;
}

.search-result-container{
    margin:0px 0px 20px 0px;
    border-radius: 6px;
}

.top-unset {
    top: unset !important;
}

.address-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3em;
    width: 100%;
    max-width: 3em;
    background-color: var(--ks-lightgrey);
    border-radius: 300px;
    display: inline-block;
}

.address-circle .address-house {
    color:var(--ks-white);
    width:100%;
    margin-top: 1rem;
    text-align:center;
}

.address-exists {
    background-color: rgba(var(--eC-primary-rgb));
}

.address-text {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--eC-text-primary);
    display: flex;
    margin-left:2rem;
    width:80%;
}

.address-text div {
    line-height: 1.2rem;
}

.w-0 {
    width: 0 !important;
}

.h-0 {
    height: 0 !important;
}

.rgap-3 {
    row-gap: 1rem;
}

.cgap-3 {
    column-gap: 1rem;
}

.rgap-4-3 {
    row-gap: 2rem;
}

.cgap-4-3 {
    column-gap: 2rem;
}

.top-3 {
    top: 1rem;
}

.end-3 {
    right: 1rem;
}

.top-2 {
    top: 0.5rem;
}

.end-2 {
    right: 0.5rem;
}

.address-house {
    margin-right: 20px;
    width: 1rem;
    height: 1rem;
    padding-bottom: 6px;
}

.middle-column-text {
    font-size: 14px;
    color:var(--ks-black-with-half-opacity);
    display: flex;
    align-items: center;
}

#buyer-rejected-loan-modal .fa-xmark,
#seller-rejected-mortgage-modal .fa-xmark,
#salefinancing-cancelled-modal .fa-xmark
{
    position: absolute;
    right: 20px;
    top: 20px;
}

#buyer-rejection-form .error-container,
#seller-rejection-form .error-container,
#salefinancing-cancelled-form .error-container
{
    top: unset;
}

/* Error pages */

.error-page-face{
    margin-top: 7.5rem;
    scale: 3;
}

.error-page-text {
    font-size: 2rem;
    font-family: 'Work Sans';
    font-weight: 300;
}

/* assetsearch/searchfield.html */

.no-search-result-found-icon{
    margin-top:7.5rem;
    scale:3;
}

.no-search-result-text {
    font-size:2rem;
    font-family: 'Work Sans';
    font-weight: 300;
    text-align: center;
}

.search-input-container {
    background-color:var(--ks-white);
    margin:auto;
    box-shadow: 0px 10px 14px 8px rgba(0, 0, 0, 0.15);
    border-radius: 60px;
    min-width:30rem;
    border:1px solid black;
}

.asset-filter-input-container,
.notif-filter-input-container {
    background-color: var(--ks-white);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    border-radius: 60px;
    border: none;
}

.asset-filter-input-container svg {
    padding: 1rem 0.5rem 1rem 2rem;
}

.notif-filter-input-container svg.fa-magnifying-glass {
    padding: 1rem 0.5rem 1rem 2rem;
}

.notif-filter-input-container svg.fa-arrow-up-short-wide,
.notif-filter-input-container svg.fa-arrow-down-short-wide {
    padding: 1rem 2rem 1rem 1.5rem;
}

.asset-filter-input-container > input,
.notif-filter-input-container > input {
    width: 100%;
    border: none;
    background-color: var(--ks-white);
    padding: 0.75rem 1rem;
    border-radius: 60px;
}

#notif-sorting-menu > button {
    box-shadow: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 0;
}

#notif-sorting-menu > button {
    box-shadow: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 0;
}

.asset-search-input-wrapper {
    display:flex;
    justify-content: left;
}

.search-input-field {
    width: 100%;
    border:none;
    background-color:var(--ks-white);
    border-radius: 60px;
    padding: 1rem 1.25rem;
}

.search-input-field:focus {
    outline: none;
}

#search-submit .input-icon{
    display:flex;
    height: 20px;
    width: 20px;
    margin:16px 0px 16px 30px;
    color: var(--eC-text-primary);
    visibility: visible;
    z-index: 100;
    padding:10px;
}

.font-normal {
    font-size: 16px !important;
}

.search-input-field{
    font-size:20px;
}

.search-input-field::-webkit-input-placeholder {
    color: var(--ks-grey);
}

.search-input-field::-moz-placeholder {
    color: var(--ks-grey);
}

.search-input-field::-ms-placeholder {
    color: var(--ks-grey);
}

.search-input-field::placeholder {
    color: var(--ks-grey);
}

/* to clear the X in the field when searching */
.search-input-field::-ms-clear {  display: none; width : 0; height: 0; }
.search-input-field::-ms-reveal {  display: none; width : 0; height: 0; }
.search-input-field::-webkit-search-decoration,
.search-input-field::-webkit-search-cancel-button,
.search-input-field::-webkit-search-results-button,
.search-input-field::-webkit-search-results-decoration { display: none; }

/* This prevents the background color of the input being changed
when user selects from the drop down (previous searches)*/
.search-input-field:-webkit-autofill,
.search-input-field:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

/* Because fa-magnifying-glass is inside the button */
#search-submit {
    margin:0px;
    visibility:hidden !important;
}

/*  /asset/addressdetail/
    Yfirlit fasteignar   */

.estate-overview-wrapper{
    margin: auto;
    margin-top: 150px;
    margin-bottom: 50px;
    padding: 0px 37px 30px 37px;
    background-color:var(--ks-white);
    border-radius: 6px;
}

.estate-overview-container{
    padding: 15px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
}

#sell-button {
    margin: 20px 0px 15px 20px;
}

.main-estate-container {
    border-radius: 6px;
    padding: 15px 15px 15px 15px;
    margin: 0px 0px 20px 0px;

}

.main-estate-container > .div {
    padding: 0px 4px 0px 4px;
    display: flex;
    justify-content: space-evenly
}

.main-estate-container > .div > .span {
    padding: 0px 0px 0px 0px;
}

#map{
    border-radius: 6px;
    height: 400px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease 0s;
}

/* Disclaimer banners */
.disclaimer-banner {
    /* Used for reminders, not warnings. */
    background-color: var(--ks-info);
    color: var(--ks-info-blue);
    border: 0.5px solid var(--ks-info-blue);
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 19px;
}

/*
  ___  _           _
 / _ \| |         | |
/ /_\ \ | ___ _ __| |_ ___
|  _  | |/ _ \ '__| __/ __|
| | | | |  __/ |  | |_\__ \
\_| |_/_|\___|_|   \__|___/
*/

.ks-alert-base {
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 19px;
    padding: 20px;
    margin: unset;
    word-break: break-word;
}

.ks-alert-base .alert-dismiss-top-right {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
}

.ks-alert-base.alert-disclaimer {
    background-color: var(--ks-info-blue);
    color: var(--ks-white);
}

.ks-alert-base svg {
    width: 1.5rem;
    height: 1.5rem;
}

.ks-alert-base .alert-body svg {
    color: unset;
}

.ks-alert-base .alert-body .selection-field-wrapper svg {
    color: var(--ks-black-2);
    height: 1em;
    width: auto;
}

.ks-alert-base p:last-of-type {
    margin-bottom: unset;
}

.ks-alert-base.alert-warning {
    background-color: var(--ks-dark-orange);
    color: var(--ks-white);
}

.ks-alert-base.alert-danger {
    background-color: var(--ks-danger);
    color: var(--ks-white);
}

.ks-alert-base.alert-success {
    background-color: var(--ks-green);
    color: var(--ks-white);
}

.ks-alert-base svg,
.ks-alert-base a,
.disclaimer-banner a {
    color: var(--ks-white);
}

/* Toasts */
.ec-toast-base {
    position: fixed;
    margin: 1rem;
    padding: 0 1rem;
}

.ec-toast-base.toast-top-right {
    top: 2rem;
    right: 2rem;
}

.ec-toast-base.toast-danger {
    background-color: var(--ks-danger);
    border: 1px solid var(--ks-danger);
    color: var(--ks-white);
}

/* disclaimer alert */

.debug-alert-success {
    background-color: var(--ks-green);
    color: var(--ks-white);
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    padding: 20px;
}

.ks-alert-base .alert-dismiss-button
{
    right: 20px;
    background-color: transparent;
    border-color: transparent;
}

.debug-alert-success svg,
.debug-alert-success a
{
    color: var(--ks-white);
}

.circle-radius
{
    border-radius: 100% !important;
}

.user-info-avatar
{
    border: 1px solid var(--ks-black-2);
    border-radius: 100%;
    height: 200px;
    width: 200px;
}

.user-info-avatar img
{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.user-settings-wrapper
{
    margin-top: 120px;
}

#user_settings > h3
{
    margin-bottom: 4rem;
}

#user_settings > form .form-floating
{
    margin-bottom: 2rem;
}

#user_settings > form .checkbox-wrapper > div.d-flex.flex-row
{
    /* Bootstrap loads after this stylesheet, so I need to !important this :( */
    /* It's under an ID selector so it should be fine... maybe... */
    flex-direction: row-reverse !important;
    justify-content: space-between;
    width: 100%;
}

#user_settings > form .checkbox-wrapper > div.d-flex.flex-row > label.checkbox-label
{
    padding: 0;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
}

#user_settings > form .checkbox-wrapper > div.d-flex.flex-row > label.custom-checkbox-label
{
    margin: 0 0 0 auto;
}

.navbar-logo-banner{
    max-height: 40px;
}

#navbar-user-dropdown > ul.dropdown-menu
{
    background-color: var(--ks-white);
    border-radius: 4px;
    border: none;
    top: 50px;
    user-select: none;
    z-index: 10;
}

#navbar-user-dropdown > ul.dropdown-menu::after
{
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 20px solid var(--ks-white);
    position: absolute;
    top: -15px;
    right: 5px;
}

#navbar-user-dropdown #dropdown-user-name:hover
{
    background-color: var(--ks-white);
}

#navbar-user-dropdown #user-access-menu
{
    border: none;
    border-radius: 4px;
    margin-right: 0;
    padding: 8px 0;
    box-shadow: -4px 0px 8px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease 0s;
}

#navbar-user-dropdown .dropdown-item:hover,
#navbar-user-dropdown .dropdown-item:active
{
    /* The background color is provided by bootstrap */
    background-color: var(--bs-dropdown-link-hover-bg);
    color: var(--ks-black-2);
}

#navbar-user-dropdown > ul.dropdown-menu > li.dropstart > button.dropdown-item::before
{
    content: '';
    display: none;
}

#navbar-user-dropdown #user-access-menu button,
#navbar-user-dropdown #user-access-menu li span
{
    padding: 4px;
}

#navbar-user-dropdown #user-access-menu .a-icon
{
    padding: 0;
    height: 1.3em;
    align-self: center;
}

#navbar-user-dropdown #user-access-menu svg
{
    align-self: center;
}

#navbar-user-dropdown #user-access-menu li
{
    padding: 0;
}


#navbar-user-dropdown #user-access-menu li .fa-check
{
    position: absolute;
    bottom: 35%;
}

@media only screen and (min-width: 992px) {
    #navbarMobileToggler {
        display: none;
    }
}

/* assetsearch/searchfield.html ends*/

/*
 _____       _      _   _           _
/  ___|     | |    | | | |         | |
\ `--.  __ _| | ___| |_| |_   _  __| |
 `--. \/ _` | |/ _ \  _  | | | |/ _` |
/\__/ / (_| | |  __/ | | | |_| | (_| |
\____/ \__,_|_|\___\_| |_/\__,_|\__,_|
*/

.stepper-wrapper
{
    margin: 0 0 1rem 0;
    padding: 1.5rem 0;
}

.stepper-wrapper .step
{
    padding: 0;
    margin: 0;
    flex-flow: wrap;
}

.stepper-wrapper .step-item a
{
    text-decoration: none;
    color: var(--ks-grey);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    line-height: 21px;
    font-size: 16px;
    margin-right: 0.5rem;
}

.stepper-wrapper .step-item-divider {
    margin-right: 0.5rem;
}

.stepper-wrapper .step-item a:hover,
.stepper-wrapper .step-item:hover + svg
{
    color:var(--ks-black);
    text-decoration: underline;
}

.stepper-wrapper .step-item + .fa-chevron-right
{
    color: var(--ks-grey);
}

.stepper-wrapper .step-item.completed a
{
    color: var(--ks-black-2);
}

.stepper-wrapper .step-item.completed + .fa-chevron-right
{
    color: var(--ks-black-2);
}

.stepper-wrapper .step-item.active a
{
    color: var(--eC-primary);
    text-shadow: 0px 0px 10px rgba(var(--eC-primary-rgb), 0.3) !important;
}

.stepper-wrapper .step-item.active + .fa-chevron-right
{
    color: var(--eC-primary);
}

.question-accordion-item > h2
{
    font-size: 24px;
    font-weight: 300;
    line-height: 28px;
    color: var(--ks-black);
    font-family: 'Work Sans';
}

.question-accordion-item > h2.collapsed::before
{
    content:"+";
    width: 5%;
}

.question-accordion-item > h2::before
{
    content:"-";
    width: 5%;
}

@media only screen and (max-width: 945px)
{
    .question-accordion-item > h2.collapsed::before
    {
        margin-right: 0.7rem;
    }
    .question-accordion-item > h2::before
    {
        margin-right: 0.7rem;
    }
}

@media only screen and (min-width: 946px)
{
    .question-accordion-item > h2.collapsed::before
    {
        margin-right: 0rem;
    }
    .question-accordion-item > h2::before
    {
        margin-right: 0rem;
    }
}

#financing-tab-display .financing-bubble {
    border-radius: 100%;
    background-color: var(--ks-white);
    border: 3px solid var(--ks-grey);
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    padding: 1.5rem;
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-grey);
}

#financing-tab-display .financing-bubble-container {
    border: none;
    background-color: transparent;
    transition: 0.25s ease-out;
}

#financing-tab-display .financing-bubble-container.completed .financing-bubble
{
    border: 3px solid var(--ks-green);
    background-color: var(--ks-green);
    color: var(--ks-white);
}

#financing-tab-display .financing-bubble-container.current .financing-bubble
{
    border: 3px solid var(--eC-primary);
    color: var(--eC-primary);
}

#financing-tab-display .financing-bubble span.bubble-counter
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14.5px;
}

.financing-bubble-wrapper .financing-bubble-container .financing-bubble svg
{
    position: absolute;
    width: 24px;
    height: 24px;
    left: 12px;
    bottom: 12px;
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container span.bubble-label {
    color: var(--ks-grey);
    transition: 0.25s ease-out;
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container.active span.bubble-label {
    color: var(--ks-white);
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container.active.completed span.bubble-label {
    color: var(--ks-white);
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container.completed span.bubble-label {
    color: var(--ks-green);
}

#financing-tab-display .financing-bubble-wrapper {
    gap: 2rem;
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container.active {
    background-color: rgba(var(--eC-primary-rgb), 0.85);
    border-radius: 6px;
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container:hover {
    background-color: rgba(var(--eC-primary-rgb), 0.25);
    border-radius: 6px;
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container.active:hover {
    background-color: rgba(var(--eC-primary-rgb), 0.85);
    border-radius: 6px;
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container:not(:last-child) .financing-bubble::after {
    content: '';
    position: absolute;
    left: 22.5px;
    top: 100%;
    height: 7rem;
    border-right: 3px dotted var(--ks-grey);
}

#financing-tab-display .financing-bubble-wrapper .financing-bubble-container.completed:not(:last-child) .financing-bubble::after {
    border-right: 3px dotted var(--ks-green);
}

#financing-tab-display .financing-details-wrapper {
    background: var(--ks-white);
    border: 1px solid var(--ks-lightgrey);
    border-radius: 6px;
}

.financing-details-wrapper > .financing-details {
    min-height: 350px;
}

/* User related */
.per-owner-part .name-details {
    display:flex;
    flex-direction: row;
    line-height: 19px;
    color: var(--ks-black-2);
}

/* fyrir drop down í skrefi 1 */
.adv-sel .selection-field-wrapper select
{
    font-size: 0.65rem;
}

.adv-sel option
{
    font-size: 0.7rem;
}

.adv-sel .field-placeholder {
    font-size:0.8rem;
    bottom:-5px !important;
}
/*** Skref 7 - Húsfélag ***/
.ha-add-form {
    position:absolute;
    right:32px;
    top:32px;
    border:none;
}

.add-form-button {
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    height:3rem;
    min-width:16rem;
    vertical-align: bottom;
    font-weight: 400;
    border:none;
    background-color: var(--ks-white);
}

.add-form-button .plus {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:1rem;
}

.add-form-button .plus b {
    font-size:1.5rem;
}

.each-husfelag-header-container {
    display: flex;
    justify-content: space-between;
}

.each-husfelag-header-container .husfelag-title {
    font-size: 1.5rem;
    font-weight: 300;
}

/* fjarlægja húsfélag takkar */
.delete-button-text {
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
}

/* Skref 7 - Húsfélag ends */
.pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    gap: 1rem;
    background: var(--ks-background-primary);
    border-radius: 6px;
    border:none;
    user-select:none;
    width: 100%;
}

.pill-button {
    cursor:pointer;
}

.pill-selected {
    background: var(--ks-green);
    box-shadow: 0px 0px 10px rgba(var(--ks-green), 0.25) !important;
    color: var(--ks-white);
}
.pill .age-container {
    gap:2px;
}

.vertical-table thead tr,
.vertical-table tbody tr td:last-child {
    font-weight: bold;
}

.vertical-table.primary-stripes tbody tr td:last-child {
    color: var(--eC-text-primary);
}


.key-val-table /* Simple table for key-value duo */
{
    border-collapse: separate;
    border-spacing: 0.5rem;
}

.key-val-table td
{
    padding: 0;
    overflow-wrap: normal;
    word-break: keep-all!important;
}
.key-val-table td * {
    margin-right: 0.5rem;
}

.key-val-table td:last-child p {
    max-height: 150px !important;
    overflow-y: auto;
    margin-bottom: 0;
}

.key-val-table td:nth-child(2) {
    color:var(--ks-grey);
    word-break: break-all;
}

.property-owners {
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-grey);
}

.matseiningar-grid {
    display: grid;
    width: 100%;
    grid-template-columns: calc(100%/3 - 3vw) calc(100%/3 - 3vw);
    column-gap: 2rem;
    row-gap: 0.5rem;
}

.delinquent-payment-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 100%;
    column-gap: 2rem;
    row-gap: 2rem;
}

.property-contact-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 100%;
    column-gap: 2rem;
    row-gap: 1rem;
}

.address-detail-matseiningar-grid
{
    display: grid;
    width: 100%;
    grid-template-columns: calc(100%/1 - 3vw);
    column-gap: 1.5rem;
    row-gap: 0.5rem;
}

.address-detail-matseiningar-grid > div.d-inline-flex span:first-child,
.matseiningar-grid > div.d-inline-flex span:first-child
{
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-black-2);
}

.address-detail-matseiningar-grid > div.d-inline-flex span:last-child,
.matseiningar-grid > div.d-inline-flex span:last-child
{
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-grey);
}

.property-assetstatus-grid-columns
{
    display: grid;
    grid-template-columns: calc(100%/3 - 2vw) calc(100%/3 - 2vw) calc(100%/3 - 2vw);
    gap: 3vw;
}

/*
______      _     _ _       ______                          _
| ___ \    | |   | (_)      | ___ \                        | |
| |_/ /   _| |__ | |_  ___  | |_/ / __ ___  _ __   ___ _ __| |_ _   _
|  __/ | | | '_ \| | |/ __| |  __/ '__/ _ \| '_ \ / _ \ '__| __| | | |
| |  | |_| | |_) | | | (__  | |  | | | (_) | |_) |  __/ |  | |_| |_| |
\_|   \__,_|_.__/|_|_|\___| \_|  |_|  \___/| .__/ \___|_|   \__|\__, |
                                           | |                   __/ |
                                           |_|                  |___/
*/

.no-wrap {
    text-wrap: nowrap;
}

table.primary-stripes thead tr {
    color: var(--eC-black);
    font-weight: bold;
}

table.primary-stripes tbody tr:nth-child(odd){
    background: rgba(var(--eC-primary-rgb), 0.1);
}
table.primary-stripes tbody tr td {
    color: var(--eC-text-secondary);
}

.primary-stripes-collapse thead tr {
    color: var(--eC-black);
    font-weight: bold;
}

.primary-stripes-collapse tbody tr:nth-child(4n + 2),
.primary-stripes-collapse tbody tr:nth-child(4n + 1) {
    background-color: rgba(var(--eC-primary-rgb), 0.1);
}

.primary-stripes-collapse tbody tr:nth-child(4n + 3)
{
    background-color: transparent;
}

.primary-stripes-collapse tbody tr:nth-child(4n + 3)
{
    background-color: transparent;
}

.property-owner-grid
{
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 2rem;
}

.matseiningar-grid {
    display: grid;
    width: 100%;
    grid-template-columns: calc(100% - 3vw);
    column-gap: 2rem;
    row-gap: 0.5rem;
}
.matseiningar-grid > div.d-inline-flex span:first-child
{
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-black-2);
}
.matseiningar-grid > div.d-inline-flex span:last-child
{
    font-size: 16px;
    line-height: 19px;
    color: var(--ks-grey);
}

.table-center-align {
    line-height: 0;
    vertical-align: middle;
}

.table-center-text-align {
    text-align: center;
}

.table-fixed {
    table-layout: fixed;
}

.inspection-reserve-table {
    vertical-align: middle;
}

.table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
}

.inprogress-card:hover{
    box-shadow: transparent;
    background-color: var(--eC-primary) !important; /* dark */
}
.inprogress-card:hover .card-circle{
    border: 3px solid var(--eC-primary) !important; /* dark */
}
.inprogress-card:hover .agency-progress{
    background-color: rgba(255,255,255, 0.85);
    box-shadow: 0 0 0 4px rgba(255,255,255, 0.85);
}
.inprogress-card:hover h4 {
    color: white !important;
}

.inactive-anchor {
    text-decoration: none;
    pointer-events: none;
    color: unset;
}

/* sale overview */
.fancy-card {
    transition: 0.5s;
}

.operation-wrapper button {
    border: none;
    white-space: nowrap;
    padding: 0;
}

.operation-wrapper a {
    text-decoration: none;
    white-space: nowrap;
}

.operation-wrapper .card-circle-sub {
    border-radius: 50% !important;
    border: 1.5px solid var(--ks-white);
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 25px;
    padding-top: 10px;
    transition: 0.5s;
}

.std-operation {
    background-color: rgba(var(--eC-primary-lighter-rgb), 0.25);
    box-shadow: 0 0 0 2px rgba(var(--eC-primary-lighter-rgb), 0.25);
}

.std-operation-card {
    color: var(--eC-primary);
}

.std-operation-card .card-body {
    padding: 0.5rem 1rem;
}

.std-operation-card:hover {
    box-shadow: 0px 5px 6px var(--eC-primary-fade-2) !important;
    background-color: var(--eC-primary);
}

.std-operation-card:hover .card-circle-sub {
    border: 1px solid var(--eC-primary) !important;
    background-color: rgba(255,255,255, 0.85);
    box-shadow: 0 0 0 4px rgba(255,255,255, 0.85);
}

.std-operation-card:hover h5 {
    color: var(--ks-white) !important;
}

.operation-wrapper svg {
    color: var(--eC-primary);
    text-align: center;
}

#sale-tab-display .collapsing {
    -webkit-transition: height 0.25s ease;
    -o-transition: height 0.25s ease;
    transition: height 0.25s ease;
}

.owner-kt-sub-div {
	display: inline-block;
	text-align: start;
}

.title-and-tutorials-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 1rem;
    min-width:15em;
}

.title-and-tutorials-container .right-arrow {
    background-color: var(--ks-white);
    margin-bottom:8px;
    border:none;
    rotate:90deg;
}

.tutorials-button-container {
    display:flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--ks-info-blue);
    height:1.5rem;
    width:100%;
    max-width: 1.5rem;
    cursor:pointer;
    border:none;
    box-shadow: none;
    border-radius:100%;
}

.tutorials-button-container svg {
    margin:auto;
    scale:0.8;
    color: var(--ks-white);
}

.tutorials-text-content {
    background-color: var(--ks-info);
    color: var(--ks-info-blue);
    border: 0.5px solid var(--ks-info-blue);
    border-radius: 4px;
    padding:2rem;
    padding-top:1.5rem;
    margin-top:2rem;
}

.tutorials-text-content h5 {
    color: var(--ks-info-blue);
}

.additional-information-accordion .accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235285C0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.additional-information-accordion {
    background-color: var(--ks-info);
    color: var(--eC-primary);
}

.accordion-button {
    box-shadow: none !important;
}

.additional-information-accordion .accordion-button:not(.collapsed) {
    color: var(--eC-primary);
    background-color: var(--ks-info);
}

.accordion-item {
    border-color: rgba(var(--eC-primary-rgb), 0.3);
}

.accordion-body-border {
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    border-top:  0;
}

.additional-information-h5 {
    font-size: 1.3rem;
}

/* Inside each tutorials template */

.tutorials-template-header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width:100%;
    margin-bottom:1rem;
    flex-wrap: wrap;
}

.tutorials-template-header-container > h4{
    margin: auto auto auto 0rem;
}
/* Tutorials ends */

/* Confirm info */

.confirm-info-title-container {
    /*background-color: blue;*/
    flex-direction: column;
    align-items: flex-start!important;
}

.fw-700
{
    font-weight: 700;
}

.confirm-info-feerev-container table tbody th
{
    font-size: 16px;
    font-weight: 300 !important;
}

.confirm-info-feerev-container p
{
    margin: 0;
}

.ci-file-container > div + div,
.ci-file-container > div:last-of-type
{
    margin-right: 2rem;
}

.ci-file-container > div:first-of-type
{
    margin-left: 2rem;
    margin-right: 2rem;
}

.box-shadow-none
{
    box-shadow: none !important;
}

#module #property-description.collapse:not(.show) {
    display: block;
    /* height = lineheight * no of lines to display */
    height: 12em;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
}

#module #property-description.collapsing {
    height: 12em;
    -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
}

/* Confirm info ends */

.mt-4-3
{
    margin-top: 2rem !important;
}

.mb-4-3
{
    margin-bottom: 2rem !important;
}

.mb-2-5
{
    margin-bottom: 0.75rem !important;
}

.my-4-3
{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.w-md-100 {
    width: 100%;
}

.w-md-0 {
    width: 0px;
}

.ms-4-3
{
    margin-left: 2rem !important;
}

.me-4-3
{
    margin-right: 2rem !important;
}

.mx-4-3
{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}

.m-4-3
{
    margin: 2rem !important;
}

.p-4-3
{
    padding: 2rem !important;
}

.ps-4-3
{
    padding-left: 2rem !important;
}

.pt-4-3
{
    padding-top: 2rem !important;
}

.pe-4-3
{
    padding-right: 2rem !important;
}

.pb-4-3
{
    padding-bottom: 2rem !important;
}

.px-4-3
{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.gap-2-5
{
    gap: 1rem !important;
}

.gap-4-3
{
    gap: 2rem !important;
}

.h-5
{
    height: 3rem !important;
}

.w-5
{
    width: 3rem !important;
}

.ox-auto
{
    overflow-x: auto;
}

.togglePdfInfoButton .icon, .togglePdfInfoButton svg {
    color: var(--eC-primary);
    width: 5rem;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}
.togglePdfInfoButton {
    background-color: inherit !important;
    border: none;
}

.file-thumbnail {
    min-width: 14rem;
}

.thumbnail-container
{
    position: relative;
    overflow: hidden;
    height: 6rem;
    width: auto;
    max-width: 8rem;
    border: none;
    background-color: transparent;
}

.wsnowrap-hideoverflow {
    white-space: nowrap;
    overflow: hidden;
}
.thumbnail-container > img
{
    width: 100%;
    height: 100%;
}

/* Skref 5 - Önnur föst gjöld */

.onnur-fost-gjold-container {
    display:flex;
    flex-direction: column;
    padding: 2rem;
}

.onnur-fost-gjold-container .input-container {
    display:flex;
    flex-direction: column;
    align-items: flex-start;
}

.onnur-fost-gjold-container .input-container .checkbox-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width:100%;
}

.onnur-fost-gjold-container .input-container .input-col {
    display:flex;
    flex-direction: column;
    margin:0px;
    justify-content: space-between;
    gap:1.5rem;
}

.onnur-fost-gjold-container .tutorials-text-content
{
    margin: 2rem 0 0 0;
}

/* Skref 5 - Tekjur og gjöld ends */

/* Skref 8 - Mortgages */

/* changes on MD */
.mort-title-container {
    flex-direction: column;
}

.fit-content {
    width: fit-content;
}

.card {
    background-color: var(--ks-white);
    box-shadow: 2px 3px 5px rgba(var(--eC-primary-darker-rgb), 0.1);
    border: none;
}

.ec-card {
    background-color: var(--ks-white) !important;
    box-shadow: none;
    border:none!important;
    margin-top: 2.5rem;
}

.ec-card > .card-body {
    flex: 1 1 auto;
    padding: 0rem;
}

.flex-auto {
    flex: 1 1 auto;
}

.ec-card hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    visibility: hidden;
}

.vertical-divider {
    width: 1px;
    border-left: 1px solid var(--eC-primary-fade);
    opacity: 0.25;
}

.overview-detail-grid-bidders {
    display: grid;
    width: 100%;
    grid-template-columns: auto auto auto auto;
    column-gap: 2rem;
    row-gap: 1rem;
    white-space: nowrap;
}

.overview-detail-grid-payment {
    display: grid;
    width: 100%;
    grid-template-columns: auto auto auto auto;
    column-gap: 2rem;
    row-gap: 1rem;
    white-space: nowrap;
}

.bid-status-badge {
    border-radius: 12px;
    text-align: center;
    font-size: 0.8rem;
    user-select: none;
    color: var(--ks-white);
}

/* Active & Accepted */
.bid-status-badge[data-bid-status="0"],
.bid-status-badge[data-bid-status="3"],
.bid-status-badge[data-bid-status="4"] {
    background-color: var(--ks-green);
}

/* Draft */
.bid-status-badge[data-bid-status="1"] {
    background-color: var(--ks-dark-orange);
}

/* Inactive */
.bid-status-badge[data-bid-status="2"] {
    background-color: var(--ks-danger);
}


/* make .../url/#target cards stand out */
.card:target {
    box-shadow: 0px 0px 15px 2px var(--eC-primary) ;
}

.pdf-card .card-body {
    padding: 0 1rem 0 0 !important;
}

.mortgage-file-card{
    margin-left: 2rem;
}

/* Skref 8 - Mortgages ends */

/* Public Property */
#sharePropertyButton::after
{
    display: none !important;
}

.v-hidden
{
    visibility: hidden;
}

.carousel-button-background
{
    background-color: var(--eC-primary);
    padding: 1rem;
    border-radius: 50%;
}

#outerCarousel-img_files .carousel-control-prev > div,
#outerCarousel-img_files .carousel-control-next > div {
    width: 2rem;
    height: 2rem;
    position: relative;
}

#outerCarousel-img_files .carousel-control-prev svg {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
}

#outerCarousel-img_files .carousel-control-next svg {
    position: absolute;
    top: 0.5rem;
    left: 0.8rem;
}

#outerCarousel {
    z-index: 1;
}

.carousel-inner img {
    height: 220px;
    min-width: 280px;
}

.carousel .bg-background {
    opacity: 75%;
}

.carousel #bgimage {
    filter: blur(15px);
    -webkit-filter: blur(15px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#magnifying-glass-container {
    z-index: 2;
    font-size: 2rem;
    pointer-events: none;
    opacity: 65%;
}

#magnifyingGlassIcon {
    z-index: 3;
    pointer-events: none;
}

#property-location #map {
    border-radius: 6px;
    margin-bottom: 0;
}

/* Causes an element's width to span the equivalent of two grid elements */
.grid-span-2 {
    grid-column-start: span 2;
}

/* Public Property ends */

/* Kauptilboð Gagntilboð Form start */

.make-offer-estate-info-wrapper h3
{
    line-height: 38px;
}

.title-text{
    margin: 1rem 0rem 2rem 0rem;
}

.bidding-form-wrapper{
    margin-top: 9rem;
}

.bidding-form-container{
    padding: 1rem 2.1rem 0.8rem 2.1rem;
    margin-bottom: 45px;
    background-color:var(--ks-white);
    border-radius: 6px;
}

.bidding-form-row{
    margin-bottom: 1.8rem;
    display:flex;
}

.bid-addbtn{
    padding: 0.5rem 1rem 0.5rem 1.2rem;
    box-shadow: 1px 5px 10px 4px rgba(0, 0, 0, 0.25);
}

.text-red{
    color:red;
}

.bidding-form-container > .checkbox-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

#heildarupph-villubod > span{
    margin: 0px;
}

.bid-overtake-loan-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 100%;
    row-gap: 0.2rem;
}

.toast-success{
    background-color: var(--ks-green);
    align-items: center;
}

.toast-danger{
    background-color: var(--ks-danger);
    align-items: center;
}

#close-toast-btn{
    width: 1.5em;
    height: 1.5em;
}

.unread-bid-count-circle {
    position: absolute;
    top: -0.8rem;
    right: -0.6rem;
    pointer-events: none;
}

.unread-bid-count-circle > svg {
    position: relative;
    width: 1.8rem;
    height: 1.8rem;
    color: var(--ks-error-red);
}

.circle-small{
    top: -0.4rem;
    right: -0.3rem;
}
.circle-small > svg{
    width: 1.0rem;
    height: 1.0rem;
}

.unread-bid-count-circle > span {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    left: 2px;
    top: 5px;
}

.sale-overview-housingassociation-table .field-wrapper {
    min-width: 200px;
}

/* sale overview image sorting */
.image-list {
    list-style-type: none;
}

.image-list div {
    margin: 0 4px 4px 4px;
    padding: 0.4em;
    display: inline-block;
}

.image-list img {
    height: auto;
    width:300px;
    max-height:300px;
    max-width: 300px;
    border: 1px solid var(--ks-grey);
}

.image-list li:first-child {
    position: relative;
    flex-direction: column;
    border: 2px solid var(--ks-lightgrey);
    border-radius: 6px;
}

.image-list li:first-child::after {
    content: "Forsíðumynd";
    color: var(--eC-text-secondary);
    position: absolute;
    top:-0.9rem;
    left: 90px;
    line-height: 1rem;
    background-color: var(--ks-background-primary);
    padding: 0px 1rem;
    border-radius: 6px;
}

.ci-sort-form img {
    height: 6rem;
    width: auto;
    max-width: 8rem;
}

.ci-sort-form li:first-child::after {
    left: 0;
    right: 0;
    white-space: nowrap;
    padding: 0;
    text-align: center;
}

.ci-sort-form .delete-single-image{
    display: none;
}

/* Disclaimers begin */

#disclaimerbody {
    counter-reset: disclaimers; /* Set a counter named 'disclaimers', and its initial value is 0. */
    display: flex;
    flex-direction: column;
}

ol.optional-disclaimers-container  {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

ol.standard-disclaimers.show-less {
    height: 18rem;
    overflow: hidden;
    position: relative;
}

ol.standard-disclaimers.show-less::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.optional-disclaimers {
    padding: 10px 20px 10px 20px;
    font-size: 1rem;
    border: 1px solid var(--ks-lightgrey);
    border-radius: 4px;
    position: relative;
    margin-bottom: 2rem;
}

.optional-disclaimers::before {
    display: block;
    position: absolute;
    top: -0.5rem;
    font-size: .9rem;
    background-color: var(--ks-white);
    padding-inline: 0.4rem;
    line-height: 1;
    white-space: nowrap;
    color: var(--ks-grey);
}

.freetextdisclaimercontainer .disclaimerlabel::before {
    white-space: nowrap;
}

.freetextdisclaimercontainer textarea:not(:focus)~.ta-floating-label.disclaimerlabel::before {
    color: var(--ks-grey);
}

.increment-disclaimers {
    counter-increment: disclaimers;
    /* Increment the value of section counter by 1 for each disclaimer */
}
.increment-optional-disclaimers[data-activated="true"] {
    counter-increment: disclaimers;
}

ol.standard-disclaimers li {
    margin-bottom: 1rem;
}

.optional-disclaimers[data-activated="true"]::before,
.freetextdisclaimercontainer textarea:not(.empty_area)~.ta-floating-label.disclaimerlabel::before,
.freetextdisclaimercontainer textarea:focus~.ta-floating-label.disclaimerlabel::before {
    content: var(--ks-i18n-disclaimer) counter(disclaimers); /* Display the word 'Fyrirvari ', the value of
                                                disclaimers counter before the content
                                                of each li */
}

.freetextdisclaimercontainer textarea.empty_area:not(:focus)~.ta-floating-label.disclaimerlabel::before {
    content: var(--ks-i18n-write-disclaimer-here);
}

.disclaimer-toggler {
    align-self: center;
    margin-top: -1rem;
    margin-bottom: 3rem;
    z-index: 10;
}

.disclaimer-toggler.more {
    margin-bottom: 3rem;
}

#disclaimerbody .add-disclaimer {
    align-self: start;
}

.disclaimer-var {
    font-weight: 500;
    font-style: italic;
    cursor: pointer;
}

.disclaimer-var:empty::before {
    display: inline-block;
    content: attr(data-placeholder);
    color: var(--ks-error-red);
}

.disclaimer-preview {
    padding-right: 1rem;
    margin-inline: 1rem;
}

.disclaimer-preview li {
    margin-bottom: 0.5rem;
}

.disclaimer-preview li.userdefined {
    font-weight: bold;
}

.disclaimer-preview li.userdefined::marker {
    font-weight: normal;
}

.field-wrapper > input[id^="optional-disclaimer-switch"]  {
    width: auto;
}

.optional-disclaimer-panel fieldset .form-container {
    display: none;
}

#ha-included-checkgroup {
    display: grid;
    grid-template-columns: calc(100% - 2vw);
    row-gap: 1.5vh;
}

#ha-included-checkgroup > * {
    height: auto;
}

/* Disclaimers end */

/* Kauptilboð Gagntilboð Form end */

/* Cookie related */

.cookie-card {
    position: fixed;
    left: 1rem;
    bottom: 0.5rem;
    z-index: 999;
    width: 320px;
}

.cookie-card .fa-cookie-bite {
    width: 24px;
    height: 24px;
}

#first-cookie-content,
#second-cookie-content {
    line-height: 1.1rem;
}

/* Footer */

.social-icon
{
    color: var(--ks-black-2);
}

footer
{
    padding: 2rem;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.footer-title
{
    font-family: "Work Sans";
    font-size: 17px;
    color: var(--ks-black-2);
    font-weight: 400;
}

a.footer-title {
    text-decoration: none;
    position: relative;
}

.footer-logo-banner{
    max-height: 60px;
    margin-bottom: 1rem;
}

.footer-subtitle
{
    text-decoration: none;
    font-family: "Work Sans";
    font-weight: 300;
    font-size: 17px;
    line-height: 24px;
    color: var(--ks-grey-6);
}

a.footer-subtitle{
    cursor: default;
}

a.footer-subtitle:hover{
    cursor: pointer;
}

a.footer-title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--eC-primary);
    bottom: 0;
    left: 0;
    top: 22px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
  }

a.footer-title:hover::before,
a.footer-subtitle:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* Footer web */
@media ((min-width: 992px)) {
  svg.footer-title {
    margin-bottom: 1rem !important;
  }
}

/* Footer tablet */
@media (max-width: 991px) and (min-width: 576px) {
    .footer-agency {
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Footer mobile */
@media (max-width: 575px) {
  .footer-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
  }
  .footer-socials {
      justify-content: center;
  }
}

.neutral-footer ul{
    display: inline-grid;
    grid-auto-flow: row;
    grid-gap: 24px;
    justify-items: center;
    margin: auto;
    list-style-type: none;
}

@media (min-width: 500px) {
    .neutral-footer ul {
        grid-auto-flow: column;
    }
}

@media (max-width: 500px) {
    .footer-splitter {
        display: none;
    }
}


/* Footer End*/

.text-headline
{
    z-index: 1;
}

.smart-scroll{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.scrolled-down{
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
    transform:translateY(0); transition: all 0.3s ease-in-out;
}

/* this is changed when width hits the first breakpoint */
.background-primary-gradient
{
    background: var(--ks-background-primary);
}

.text-caps {
    text-transform: uppercase;
}

.cookie-banner .text-sub
{
    font-size: calc(0.8rem + 0.5vw) !important;
}

.cookie-banner p
{
    font-size: 14px;
    line-height: 20px;
}

.maxw-50
{
    max-width: 50% !important;
}

.maxw-70
{
    max-width: 70% !important;
}
.minw-50
{
    min-width: 50% !important;
}

.container
{
    margin-left: auto;
    margin-right: auto;
}

.custom-container
{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

main > #wrapper > .container-fluid
{
    margin-top: 120px;
    min-height: 100vh;
}

/* Navbar */

.navbar
{
    padding: 2rem 5rem 1rem;
    margin: 0 auto 1rem;
    top: 0px;
    width: 100%;
    position: sticky;
    z-index: 1;
}

.navbar .user-avatar,
.navbar .user-avatar img
{
    width: 36px;
    height: 36px;
    border-radius: 100%;
    line-height: 26px;
    pointer-events: none;
    user-select: none;
}

.navbar .fa-magnifying-glass,
.navbar .fa-globe
{
    font-size: 1.5rem;
    color: var(--eC-primary);
    text-decoration: none;
}

.navbar-company-text
{
    color: var(--eC-black);
}

.navbar .nav-link
{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--eC-black);
    text-decoration: none;
}

.navbar .nav-item:hover .nav-link
{
    text-shadow: 0px 0px 1px var(--eC-black);
}

.nav-item
{
    width: fit-content;
    text-align: end;
}

.navbar .nav-item:hover .nav-link
{
    box-shadow: 0 3px 2px -2px var(--eC-black);
    cursor: pointer;
}

.dropdown-nav
{
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.dropdown-nav::after
{
    content: none;
}

/* Navbar media */
@media (max-width: 991px) {

    .navbar
    {
        padding: 2rem 0 0;
        gap: 0;
    }

    .navbar-nav
    {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        padding-right: 1rem;
        align-items: center;
    }

    .navbar-right-side
    {
        position: sticky;
        right: 1rem;
    }

    .navbar-brand
    {
        position: sticky;
        left: 1rem;
        z-index: 9;
    }
}

#about-ecasa {
    color:black;
    text-decoration: underline;
    font-size: 24px;
    font-weight: 300;
}

.is-invalid {
    color: var(--ks-error-red);
}

/* Login */
.auth-form-errors {
    color: var(--ks-error-red);
    font-size: 0.8rem;
}

.login-switch-btn {
    color: var(--ks-lightgrey);
    border-bottom: 2px solid var(--ks-lightgrey);
    background-color: inherit;
    border:none;
    padding: 1rem 2rem;
}

.tab-selected {
    border-bottom: 2px solid var(--eC-primary);
    color: var(--eC-primary);
}

.login-modal .modal-title
{
    margin-top: 20px;
    margin-bottom: 40px;
}

.login-modal .modal-content
{
    border-radius: 0px;
    max-width: 400px;
    height: 25%;
}

.login-img {
    height:70px;
}

.login-modal .modal-content > .modal-body label
{
    margin-top: 40px;
}

.login-modal .modal-header
{
    border-bottom: 1px solid var(--ks-film);
}
#loginTitle{
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
}

#loginModal{
    border-radius: 50px;
}

.login-window{
    margin-top: 12vh;
    border-radius: 8px;
    flex-basis: 500px;
    flex-grow: 0;
    flex-shrink: 0;
    min-height: 90%;
}

.mini-spinner{
    width: 1rem;
    height: 1rem;
    position: absolute;
}

.mini-spinner2{
    width: 1rem;
    height: 1rem;
}

.std-el-size {
    width: 1rem !important;
    height: 1rem !important;
}

.spinner-login{
    position: relative;
    top: 7px;
    margin-left: 5px;
}

.login-header{
    display: block;
}

.login-form-container{
    margin: 1em;
}

.modal-title
{
    margin-top: 15px;
}

.login-modal-close-button
{
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 9px;
    padding-right: 9px;
}

.login-modal .modal-content
{
    background-color: var(--bs-white);
}

/* login page ending ?  */

.ws-initial {
    white-space: initial !important;
}

.ws-nowrap {
    white-space: nowrap;
}

.ws-prewrap {
    white-space: pre-wrap;
}

.ws-preline {
    white-space: pre-line;
}

.btn
{
    border: none;
}

.soft-shadow
{
    box-shadow: 0px 0px 10px rgba(var(--eC-primary-rgb), 0.25);
    transition: all 0.3s ease 0s;
}

.no-shadow
{
    box-shadow: none !important;
}

.ms-2-5
{
    margin-left: 0.75rem !important;
}

.me-2-5
{
    margin-right: 0.75rem !important;
}

.topRightX
{
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 9px;
    padding-right: 9px;
}

.language-button,
.user-settings-button
{
    border-radius: 100%;
    padding:10px 15px 10px 15px;
}

.language-button::after,
.user-settings-button::after
{
    display: none !important;
}

body
{
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    line-height: 30px;
    height: 100%;
}

span.badge
{
    margin-top: auto;
    margin-bottom: auto;
}

#other-info-dropzone-container > div
{
    margin: 0 !important;
}

form.tabForm
{
    margin: 0;
}

form.someform
{
    margin: 0;
}

#user-information:focus-within > .button-dark
{
    background-color: var(--eC-primary);
}

.content,
.content-2
{
    margin-bottom: 50px;
    overflow-y: hidden;
    overflow-x: hidden;
    box-sizing: border-box;
    width: 100%;
}

.overflow-y-hidden
{
    overflow-y: hidden;
}

.content
{
    min-height: calc(100vh);
    width: 100%;
}

.content-2
{
    height: auto;
}

html
{
    overflow-x: hidden;
    max-width: 100%;
    height: auto;
}

.logo
{
    height: 20px;
    width: 20px;
}

.logo > svg
{
    fill: var(--eC-text-primary);
}

.page
{
    width: 100%;
    margin: 12px 0;
}

.text-mid-higher
{
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
}

.text-mid-high
{
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
}

.cookie-banner
{
    position: fixed;
    bottom: 20px;
    opacity: 1;
    color: var(--eC-text-primary);
}

/* Sign */
@media (min-width:1200px) {
    .col-media-minimize {
        display:none;
    }
}

/* Alt test */
.frontpage-img {
    position: absolute;
    top: 0px;
    overflow: visible;
    transform-origin: top;
    z-index: -5;

}

.headline-1-box {
    padding: 0px 0px 0px 3px;
    width: 800px;
    height: 500px;
    margin-left: 64;
    margin-top: 158px;
}

.frontpage-p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: grey;
}

.ff-roboto {
    font-family: 'Roboto', sans-serif;
}

.headline {
    margin-bottom: 40px;
}

.above-title-text {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 92px;
    /* margin: 20px 0px 20px 0px; */
    color: var(--ks-black-2);
}

.text-headline {
    font-family: 'Work Sans' !important;
    font-style: normal !important;
    font-size: 64px !important;
    font-weight:lighter !important;
    line-height: 92px !important;
    margin-bottom: 16px;
    margin: 20px 0px 20px 0px;
    color: var(--ks-black-2);
}

.hall-church img {
    width: 526px;
    height: 741px;
}

.cartoon-img-box img {
    width: 300px;
    opacity: 0.6;
    margin-bottom: 30px;
}

.cartoon-img-box-2 img {
    width: 150px;
    opacity: 0.6;
    margin-bottom: 30px;
}

.team-cartoon img{
    /* width: 534px;
    height: 512px; */
    opacity: 0.6;
}

.text-headline-h2 {
    font-family: 'Work Sans';
    font-style: normal;
    font-size: 45px;
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--ks-black-2);
}

.text-headline-h3 {
    font-family: 'Work Sans';
    font-style: normal;
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 62px;
    color: var(--ks-black-2);
}

.text-headline-login {
    font-family: 'Work Sans';
    font-style: normal;
    font-size: 32px;
    font-weight: 300;
    margin-top: 0.4rem;
    margin-bottom: 0.5rem;
    color: var(--ks-black-2);
}

#auth-form-submit-btn {
    height: 50px;
    font-size: 18px;
}

.rafraen-skjol {
    width: 300px;
}

#globe-icon {
    color: var(--eC-primary);
    font-size: 30px;
}

/*** Settlement ***/

#confirm-fees-container {
    margin-bottom: 1em;
}

#confirm-fees-container h1, #settlement-container h1 {
    font-size: 3em;
}

#confirm-fees-container h2, #settlement-container h2 {
    font-size: 2em;
}

#confirm-fees-container legend {
    font-size: 2em;
}

#confirm-fees-container .title-wrapper {
    margin-bottom: 1em;
}

#confirm-fees-container .title-wrapper h1 {
    margin-bottom: 0;
}

.other-fees-grid {
    display: grid;
    grid-template-columns: 100%;
    column-gap: 2rem;
    row-gap: 2rem;
}

.hide-if-siblings:not(:last-child) {
    display: none;
}

#confirm-fees-container .card {
    padding: 1em;
    margin-bottom: 1.5em;
}

#confirm-fees-container .fee-title {
    margin-bottom: 1em;
}

#confirm-fees-container .sub-fee-title {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

#confirm-fees-container .split-row {
    display: grid;
    grid-auto-flow: column;
    column-gap: 1em;
}

#confirm-fees-container .other-fees-title {
    margin-bottom: 0.75em;
}

.height-init .input-data {
    height: initial !important;
}

#confirm-fees-container .empty {
    margin: 0 auto;
}

#confirm-fees-container .inner-card-wrapper {
    border: 1px solid var(--eC-primary-lighter);
    border-radius: 0.375rem;
    padding: 1em;
    margin: 1em 0;
}

#settlement-container .help-icon {
    margin-left: 0.25em;
}

#settlement-container table > tbody th {
    /* Remove the browser default of increased font weight(bold) on table heading(th) elements */
    font-weight: normal;
}

#settlement-container .table-accounting > tbody tr:nth-last-child(2) > th {
    /* Allow the default browser behaviour on the second to last row */
    font-weight: inherit;
}

#settlement-container table > tbody tr:last-child > th {
    /* Allow the default browser behaviour on the last row */
    font-weight: inherit;
}

#settlement-container table > tbody > tr:last-child {
    /* Make all the text of the last row bold */
    font-weight: bold;
}

#settlement-container .table-summary > tbody tr:last-child > * {
    /* Only way to have a custom border on top of the second to last line of a row
    is to add a border to each cell in the last row. This is a fundimental limitation on tables. */
    border-top: 2px solid var(--ks-black-2); /* 1px solid black; */
    border-bottom: none;
}

#settlement-container .table-accounting > tbody tr:nth-last-child(2) > * {
    /* Only way to have a custom border on top of the second to last line of a row
    is to add a border to each cell in the last row. This is a fundimental limitation on tables. */
    border-top: 2px solid var(--ks-black-2); /* 1px solid black; */
    /* border-bottom: none; */
}

#settlement-container .table-accounting > tbody > tr:nth-last-child(2) {
    /* Make all the text of the second to last row bold */
    font-weight: bold;
}

#settlement-container .table-accounting > tbody tr:last-child > * {
    /* Only way to have a custom border on top of the last line of a row
    is to add a border to each cell in the last row. This is a fundimental limitation on tables. */
    border-bottom: none;
}

#settlement-container table > thead > tr > th {
    /* Reset table header row bottom border to default */
    /* border-bottom: initial; */
}

#settlement-container #buyers-summary {
    margin-bottom: 1em;
}

#settlement-container .fee-category-container {
    padding: 1em;
    margin-bottom: 2rem;
}

#settlement-container .fee-category-title {
    margin-bottom: 1rem;
    line-height: initial;
    border-bottom: 1px solid var(--eC-primary-lighter);
}

#settlement-container .fee-category-title > * {
    display: inline;
    margin-right: 0.25em;
    line-height: 1.3em;
}

#settlement-container .fee-category-title small {
    color: var(--ks-grey);
}

#settlement-container .multi-fee-wrapper {
    padding: 1em;
    border: 1px solid var(--eC-primary-lighter);
    border-radius: 0.375rem;
}

#settlement-container .fee-day-split {
    display: inline-block;
    white-space: nowrap;
}

#settlement-container .form-group > * {
    margin-right: 0.375rem;
}

#settlement-container .field-wrapper {
    margin-bottom: 0 !important;
}

#settlement-container .form-group .charge-type {
    display: flex;
    gap: 0.375rem;
    /* color: white; */
    justify-content: center;
    width: 7em;
    font-size: 0.9em;
}

#settlement-container .form-group .input-group .field-wrapper {
    flex-grow: 1;
}

#settlement-container .form-group .input-group .field-wrapper > input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#settlement-container .form-group label[for$="DELETE"] {
    height: 2.6em;
    display: flex;
    justify-items: left;
}

#settlement-container .form-group .form-delete {
    background-color: var(--ks-soft-red);
    border-radius: 0.375rem !important;
    color: var(--ks-white);
    cursor: pointer;
    display: flex;
    align-items: center;
}

#settlement-container .form-group .form-delete:hover {
    background-color: var(--ks-error-red);
}

#settlement-container #form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
}

#settlement-container #form-submit {
    padding: 0.5rem 1rem;
    display: flex;
    align-self: flex-end;
}

#settlement-pdf-preview {
    box-shadow: 1px 1px 12px var(--ks-black-2);
}

#bid-change-list-table caption
{
    caption-side: top;
}

/* Step 3 BEGINS */

.description-disclaimer {
    display: block;
    color: var(--ks-black-2);
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 1.5rem;
}

.description-disclaimer ~ p {
    color: var(--ks-grey);
    font-size: 12px;
    line-height: 14px;
}

.sign-inspect-button
{
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.sign-signer-details-card
{
    border-radius: 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.assetstatus-radio-widget label
{
    font-size: 0.8rem;
}

/* Step 3 ENDS */

#payment-settlement-summary {
    box-shadow: none;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}

.spin {
    animation: 2s infinite alternate rotate;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 1rem;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
    background-color: var(--eC-primary);
}

/*
_   _                 _____          _
| | | |               |_   _|        | |
| | | |___  ___ _ __    | | _ __   __| | _____  __
| | | / __|/ _ \ '__|   | || '_ \ / _` |/ _ \ \/ /
| |_| \__ \  __/ |     _| || | | | (_| |  __/>  <
 \___/|___/\___|_|     \___/_| |_|\__,_|\___/_/\_\
*/

.salecard-icon-box, .salecard-icon-box img {
    width: 4rem;
    height: 4rem;
}
/* Sale progress circle */
.progress-custom {
    background: none;
    box-shadow: none;
    position: relative;
}

.progress-custom:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid var(--ks-background-primary);
    position: absolute;
    top: 0;
    left: 0;
}

.progress-custom > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress-custom .progress-left {
    left: 0;
}

.progress-custom .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 6px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress-custom .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress-custom .progress-right {
    right: 0;
}

.progress-custom .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress-custom .progress-value {
    border-radius: 50%;
    background: transparent;
    font-size: 1rem;
    color: var(--ks-black-2);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.green {
    color: var(--ks-green);
}

[data-user-index="user-info"] [data-user-index="user-avatar-container"] {
    width: 8rem;
    height: 8rem;
    box-shadow: 2px 3px 5px rgba(var(--eC-primary-darker-rgb), 0.2);
    background-color: rgba(var(--eC-primary-rgb));
}

[data-user-index="user-info"] [data-user-index="user-avatar-container"] img,
[data-user-index="user-info"] [data-user-index="no-user-avatar"] {
    width: 100%;
    height: 100%;
}

[data-user-index="user-info"] [data-user-index="user-initial"] {
    position: absolute;
    top: 49px;
    left: 0;
    width: 100%;
    text-align: center;
    user-select: none;
}

[data-user-index="user-info"] [data-user-index="actions"] svg {
    width: 1.5rem;
    height: 1.5rem;
}

[data-user-index="user-info"] [data-user-index="actions"] button {
    box-shadow: 0px 0px 15px 5px rgba(var(--eC-primary-rgb), 0.25);
}

[data-user-index="signatures"] [data-user-index="table-wrapper"] {
    max-height: 20rem;
    overflow-x: auto;
}

[data-user-index="signatures"] [data-user-index="table-wrapper"] th,
[data-user-index="signatures"] [data-user-index="table-wrapper"] td {
    padding: 0.5rem;
}

[data-user-index="signatures"] [data-user-index="table-wrapper"] table tbody tr:nth-child(odd) {
    background-color: var(--ks-white);
}

[data-user-index="signatures"] [data-user-index="table-wrapper"] table tbody tr:nth-child(even) {
    background-color: var(--ks-white-2);
}

.sale-card .sale-card-progress-bar {
    height: 1rem;
    border-radius: 6px;
}

.sale-card .sale-card-progress-bar .progress-fill {
    height: 100%;
    background-color: var(--ks-green);
    border-radius: 6px;
}

.sale-card .card-package-tab {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--ks-green);
    width: 0.5rem;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

/* This padding/margin combo allows the box shadow to overflow without having to shrink the child elements */
[data-user-index="sale-list"] {
    padding: 1rem;
    margin: -1rem;
    max-height: 35rem;
}

[data-user-index="bids"] [data-user-index="table-wrapper"] {
    max-height: 20rem;
    overflow: auto;
}

[data-user-index="bids"] table thead {
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--ks-white);
    box-shadow: -6px -12px 0px 12px var(--ks-white);
}

.unread-bid-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    color: var(--ks-white);
    width: 1.5rem;
    height: 1.5rem;
}

.unread-bid-count svg {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    right: 0;
    top: 0;
}

.unread-bid-count span {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    right: 0;
    top: 0;
}

/*** Animations ***/
@keyframes rotate {
    to { transform: rotate(360deg) }
}

@keyframes draw_line {
    0%
    {
        stroke-dashoffset: 2000;
    }
    100%
    {
        stroke-dashoffset: 1000;
    }
}

@keyframes swirl_files {
    0%
    {
        stroke-dashoffset: 0;
    }
    100%
    {
        stroke-dashoffset: 1000;
    }
}

@keyframes draw_squiggle {
    0%
    {
        stroke-dashoffset: 0;
    }
    100%
    {
        stroke-dashoffset: 1000;
    }
}

@keyframes draw_flow
{
    0%
    {
        stroke-dashoffset: 0;
    }
    100%
    {
        stroke-dashoffset: 1000;
    }
}

.user-card, .user-card card {
    min-height: 111px;
}

/*** Viewport breakpoints ***/

@media (min-width: 576px) {
    /* Size: SM */

    .grid-span-sm-2 {
        grid-column-start: span 2;
    }

    .ec-card {
        background-color: var(--ks-white) !important;
        box-shadow: 0px 0px 10px var(--eC-primary-fade);
        margin-top: 0rem;
    }

    /* ec-card is used in the sale steps*/
    .ec-card > .card-body {
        flex: 1 1 auto;
        padding: 2rem;
    }

    .ec-card hr {
        margin-top: 2rem;
        margin-bottom: 2rem;
        visibility: visible;
    }

    /* fyrir drop down í skrefi 1 */
    .adv-sel .selection-field-wrapper select,
    .adv-sel option {
        font-size: 0.75rem;
    }

    .adv-sel .field-placeholder {
        position: absolute;
        font-size: 0.9rem;
        bottom: 0rem !important;
    }

    .ks-alert-base
    {
        font-size: 0.9rem;
        line-height: 19px;
    }

    .assetstatus-radio-widget label
    {
        font-size: 1rem;
    }

    .button-base
    {
        font-size: 16px;
    }

    .prev-step-button
    {
        padding: 15px 60px 15px 0;
    }

    .col-sm-0-8 {
        flex: 0 0 auto;
        width: 6.6666666%;
    }

    .col-sm-1-3 {
        flex: 0 0 auto;
        width: 10.8%;
    }

    .col-sm-1-5 {
        flex: 0 0 auto;
        width: 12.5%;
    }

    .col-sm-1-7 {
        flex: 0 0 auto;
        width: 14.16666666%;
    }

    .col-sm-2-2
    {
        flex: 0 0 auto;
        width: 18.33333333%;
    }

    .col-sm-2-5
    {
        flex: 0 0 auto;
        width: 20.83333333%;
    }

    .col-sm-2-2
    {
        flex: 0 0 auto;
        width: 18.33333333%;
    }

    .matseiningar-grid
    {
        display: grid;
        width: 100%;
        grid-template-columns: calc(100%/1.5 - 3vw);
        column-gap: 1.5rem;
        row-gap: 0.5rem;
    }

    .matseiningar-grid > div.d-inline-flex span:first-child
    {
        font-size: 16px;
        line-height: 19px;
        color: var(--ks-black-2);
    }

    .matseiningar-grid > div.d-inline-flex span:last-child
    {
        font-size: 16px;
        line-height: 19px;
        color: var(--ks-grey);
    }

    #public-property-button-container > :last-child
    {
        order: 1;
    }

    #public-property-button-container > :nth-child(2)
    {
        order: 2;
    }

    #public-property-button-container > :nth-child(3)
    {
        order: 3;
    }

    #public-property-button-container > :nth-child(4)
    {
        order: 4;
    }

    #public-property-button-container > :nth-child(5)
    {
        order: 5;
    }

    #public-property-button-container > :nth-child(6)
    {
        order: 6;
    }

    .wb-sm-breakall
    {
        word-break: break-all;
    }

    .pill {
        padding: 0.5rem 1rem;
        gap: 1rem;
        width: unset;
        text-align: unset;
        font-size: 0.9rem;
    }

    .pill svg
    {
        font-size: 0.9rem;
    }

    .pill-button {
        cursor:pointer;
    }

}

@media (min-width: 768px) {
/* Size: MD */

    .sale-card .card-body {
        margin-right:2rem;
    }

    [data-user-index="signatures"] [data-user-index="table-wrapper"] th,
    [data-user-index="signatures"] [data-user-index="table-wrapper"] td {
        padding: 0.8rem;
    }

    .delinquent-payment-grid {
        grid-template-columns: calc(100%/2 - 1rem) calc(100%/2 - 1rem);
    }

    .carousel-inner img {
        height: 400px;
    }

    #outerCarousel-img_files .carousel-control-prev > div,
    #outerCarousel-img_files .carousel-control-next > div {
        width: 3rem;
        height: 3rem;
    }

    #outerCarousel-img_files .carousel-control-prev svg {
        top: 1rem;
        right: 1.2rem;
    }

    #outerCarousel-img_files .carousel-control-next svg {
        top: 1rem;
        left: 1.2rem;
    }

    .other-fees-grid {
        display: grid;
        grid-template-columns: calc(100% / 2 - 1rem) calc(100% / 2 - 1rem);
    }

    .grid-span-md-2 {
        grid-column-start: span 2;
    }

    /* mortgages */
    .mort-title-container {
        flex-direction: row;
        align-items: center;
    }

    #ha-included-checkgroup {
        display: grid;
        grid-template-columns: calc(50% - 2vw) calc(50% - 2vw);
        row-gap: 1.5vh;
    }

    .property-contact-grid {
        display: grid;
        width: 100%;
        grid-template-columns: calc(50% - 3vw) calc(50% - 3vw);
    }

    .ks-alert-base
    {
        font-size: 1rem;
        line-height: 19px;
    }

    /* fyrir drop down í skrefi 1 */
    .adv-sel .selection-field-wrapper select,
    .adv-sel option
    {
        font-size: 1rem;
    }
    .adv-sel .field-placeholder {
        font-size: 0.9rem;
        bottom: 0.4rem !important;
    }

    .gap-md-4-3 {
        gap: 2rem;
    }

    .w-md-100 {
        width: auto;
    }

    .w-md-0 {
        width: auto;
    }

    .h5-style-md
    {
        font-family: 'Work Sans';
        font-size: 1.1rem;
        color: var(--ks-black-2);
        font-weight: 300;
        margin: 0;
    }

    .h4-style-md
    {
        font-family: 'Work Sans';
        font-size: 1.5rem;
        color: var(--ks-black-2);
        font-weight: 300;
        margin: 0;
    }

    .col-md-2-2
    {
        flex: 0 0 auto;
        width: 18.33333333%;
    }

    .col-md-2-5
    {
        flex: 0 0 auto;
        width: 20.83333333%;
    }

    .col-md-5-5
    {
        flex: 0 0 auto;
        width: 45.83333333%;
    }

    .mb-md-4-3
    {
        margin-bottom: 2rem !important;
    }

    .matseiningar-grid
    {
        display: grid;
        width: 100%;
        grid-template-columns: calc(100%/2 - 3vw) calc(100%/2 - 3vw);
        column-gap: 2rem;
        row-gap: 0.5rem;
    }

    .bid-overtake-loan-grid {
        display: grid;
        width: 100%;
        grid-template-columns: calc(100%/2 - 1vw) calc(100%/2 - 1vw);
        column-gap: 2rem;
        row-gap: 0.2rem;
    }

    .matseiningar-grid > div.d-inline-flex span:first-child
    {
        font-size: 16px;
        line-height: 19px;
        color: var(--ks-black-2);
    }

    .matseiningar-grid > div.d-inline-flex span:last-child
    {
        font-size: 16px;
        line-height: 19px;
        color: var(--ks-grey);
    }

    .br-md-end-0
    {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .br-md-start-0
    {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .br-md-6px
    {
        border-radius: 6px;
    }

    .sign-inspect-button
    {
        border-radius: 6px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sign-signer-details-card
    {
        border-radius: 6px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .wb-md-breakall
    {
        word-break: break-all;
    }
    .wb-md-normal
    {
        word-break: normal;
    }

    #sale-overview-operation-wrapper {
        grid-template-columns: calc(100%/2 - 2vw) calc(100%/2 - 2vw);
        column-gap: calc(4vw/2);
    }
}

/* Packs Modal (þegar ýtt er á Hefja rafrænan söluferil */
.package-card[data-package] {
    box-shadow: 0px 1px 1px 3px currentColor;
    position: relative;
}

.package-card[data-package] .selected-label {
    display: none;
}

.package-card[data-package].selected {
    box-shadow: 0px 1px 1px 4px currentColor;
}

.package-card[data-package].selected .selected-label {
    display: block;
    position: absolute;
    white-space: nowrap;
    top: -1.7rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--ks-black);
}

@media (min-width: 992px) {
    /* Size: LG*/

    [data-user-index="signatures"] [data-user-index="table-wrapper"] th,
    [data-user-index="signatures"] [data-user-index="table-wrapper"] td {
        padding: 1rem;
    }

    .h5-style-lg {
        font-family: 'Work Sans';
        font-size: 1.1rem;
        color: var(--ks-black-2);
        font-weight: 300;
        margin: 0;
    }

    .bid-overtake-loan-grid {
        grid-template-columns: calc(100%/2 - 1rem) calc(100%/2 - 1rem);
        column-gap: 2rem;
    }

    .border-end-lg {
        border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    }

    .delinquent-payment-grid {
        grid-template-columns: calc(100%/2 - 2rem) calc(100%/2 - 2rem);
        column-gap: 4rem;
    }

    .h3-style-lg {
        font-family: 'Work Sans';
        font-style: normal;
        font-size: 2rem;
        color: var(--ks-black-2);
        font-weight: 300;
        line-height: 28px;
        margin: 0;
    }

    .other-fees-grid {
        grid-template-columns: calc(100% / 3 - calc(4rem / 3)) calc(100% / 3 - calc(4rem / 3)) calc(100% / 3 - calc(4rem / 3));
    }

    .confirm-info-title-container {
        flex-direction: row;
    }

    .col-lg-2-2
    {
        flex: 0 0 auto;
        width: 18.33333333%;
    }

    .col-lg-2-5
    {
        flex: 0 0 auto;
        width: 20.83333333%;
    }

    .property-contact-grid {
        display: grid;
        width: 100%;
        grid-template-columns: calc(33% - 3vw) calc(33% - 3vw) calc(33% - 3vw);
    }

    .matseiningar-grid
    {
        display: grid;
        width: 100%;
        grid-template-columns: calc(100%/2.5 - 3vw) calc(100%/2.5 - 3vw);
        column-gap: 2rem;
        row-gap: 0.5rem;
    }

    .address-detail-matseiningar-grid
    {
        display: grid;
        width: 100%;
        grid-template-columns: calc(100%/2.2 - 3vw) calc(100%/2.2 - 3vw);
        column-gap: 2rem;
        row-gap: 0.5rem;
    }

    .address-detail-owner-grid {
        display: grid;
        width: 100%;
        grid-template-columns: calc(80% - 2rem);
        row-gap: 1rem;
    }

    .address-detail-owner-grid > div {
        display: grid;
        width: 100%;
        grid-template-columns: auto 35% 20%;
    }

    .address-detail-matseiningar-grid > div.d-inline-flex span:first-child,
    .matseiningar-grid > div.d-inline-flex span:first-child
    {
        font-size: 16px;
        line-height: 19px;
        color: var(--ks-black-2);
    }

    .address-detail-matseiningar-grid > div.d-inline-flex span:last-child,
    .matseiningar-grid > div.d-inline-flex span:last-child
    {
        font-size: 16px;
        line-height: 19px;
        color: var(--ks-grey);
    }

    .bid-overtake-loan-grid {
        display: grid;
        width: 100%;
        grid-template-columns: calc(100%/2.5 - 2vw) calc(100%/2.5 - 2vw);
        column-gap: 2rem;
        row-gap: 0.2rem;
    }

    .property-assetstatus-grid-columns
    {
        display: grid;
        grid-template-columns: calc(100%/3 - 2vw) calc(100%/3 - 2vw) calc(100%/3 - 2vw);
        gap: 3vw;
    }

    .gap-lg-4-3
    {
        gap: 2rem !important;
    }

    #public-property-button-container > :last-child
    {
        order: 1;
    }

    #public-property-button-container > :nth-child(2)
    {
        order: 2;
    }

    #public-property-button-container > :nth-child(3)
    {
        order: 3;
    }

    #public-property-button-container > :nth-child(4)
    {
        order: 4;
    }

    #public-property-button-container > :nth-child(5)
    {
        order: 5;
    }
    #public-property-button-container > :nth-child(6)
    {
        order: 6;
    }

    .br-lg-6px
    {
        border-radius: 6px;
    }

    /* Navbar Media 992px */
    .navbar
    {
        gap: 3rem;
    }
    .navbar-nav
    {
        gap: 1rem;
    }
    .dropdown-item-home
    {
        display: none !important;
    }

}

@media (min-width: 1200px) {
/* Size: XL */

    [data-user-index="signatures"] [data-user-index="table-wrapper"] th,
    [data-user-index="signatures"] [data-user-index="table-wrapper"] td {
        padding: 1.2rem;
    }

    .overview-detail-grid-bidders {
        grid-template-columns: auto calc(100%/3 - 3vw - 10% / 3) calc(100%/3 - 3vw - 10% / 3) fit-content(10%);
        row-gap: 0.5rem;
    }

    .overview-detail-grid-payment {
        grid-template-columns: fit-content(calc(100%/4 - 1.5rem)) calc(100%/4 - 1.5rem) auto auto;
        row-gap: 0.5rem;
    }

    .h3-style-xl {
        font-family: 'Work Sans';
        font-style: normal;
        font-size: 2rem;
        color: var(--ks-black-2);
        font-weight: 300;
        line-height: 28px;
        margin: 0;
    }

    .col-xl-2-2
    {
        flex: 0 0 auto;
        width: 18.33333333%;
    }

    .col-xl-2-5
    {
        flex: 0 0 auto;
        width: 20.83333333%;
    }

    .gap-xl-4-3
    {
        gap: 2rem !important;
    }

    #ha-included-checkgroup {
        display: grid;
        grid-template-columns: calc(33% - 3vw) calc(33% - 3vw) calc(33% - 3vw);
        row-gap: 1.5vh;
    }

}
@media (min-width: 1400px) {
    /* Size: XXL */

    #ha-included-checkgroup {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        row-gap: 1.5vh;
    }

}

.mobile-no-display {
    display:initial;
}
.mobile-display {
    display:none;
}
@media (max-width: 750px) {
    .mobile-no-display{
        display:none !important;
    }
    .mobile-display{
        display:initial !important;
    }
}

@media (max-width: 438px) {
    #navbar-user-dropdown #user-access-menu {
        top: 3rem;
        right: 0;
    }
}

.vanilla-calendar{
    z-index: 200;
    border: solid 1px var(--ks-lightgrey);
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}

.vanilla-calendar:hover, .vanilla-calendar-month:hover, .vanilla-calendar-year:hover, .vanilla-calendar-week > b,
.vanilla-calendar-day__btn_today, .vanilla-calendar-months__month, .vanilla-calendar-years__year, .vanilla-calendar-day__btn_today:hover{
    color: var(--eC-primary);
}

.vanilla-calendar-day__btn_selected, .vanilla-calendar-day__btn_selected:hover{
    background-color: var(--eC-primary);
}

.vanilla-calendar-months__month_selected, .vanilla-calendar-months__month_selected:hover,
.vanilla-calendar-years__year_selected, .vanilla-calendar-years__year_selected:hover{
    background-color: var(--eC-primary);
    color: var(--ks-white);
}

.vanilla-calendar-time__content > * > *{
    padding: 0px ;
    border: 0px ;
}

.vanilla-calendar-day__btn_today.vanilla-calendar-day__btn_selected{
    color: var(--ks-white);
}

/* Same as above, but not restricted to an element with the blob class and does not provide a bg color*/
.pulse-primary:not(:hover) {
    animation: pulse-primary 1.5s infinite;
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0px rgba(var(--eC-primary-rgb), 0.5);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(var(--eC-primary-rgb), 0);
    }
}


/**
*
**/

.sale-files-table td {
    line-height: 1.4;
}

.sale-files-table .sale-file-property {
    white-space: nowrap;
}
.sale-files-table .sale-file-property {
    margin-left: 0.15rem;
}

.sale-files-table .sale-file-property.not-valid {
    color: var(--ks-dark-orange);
}

.sale-file-property.signed {
    color: var(--ks-green);
}

.sale-file-property.needs-signing {
    color: var(--ks-white);
}

.sale-file-property.info {
    color: var(--ks-info-blue);
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    font-size: 0.9rem;
}

#saleFilePrintModal .modal-body {
    max-height: max(55vh, 250px);
    overflow: auto;
}

.sale-file-print-form-set {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0;
}

.sale-file-print-form-set__row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
}

.sale-file-print-form-set__row.header .sale-file {
    font-weight: bold;
}

.sale-file-print-form-set__row .sale-file.skip {
    flex: 0 0 3.5rem;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.sale-file-print-form-set__row .sale-file.skip .input-data {
    height: unset;
    width: fit-content;
}

.sale-file-print-form-set__row .sale-file.skip .checkbox-widget.checkbox-wrapper .checkbox-label {
    display: none;
}

.sale-file-print-form-set__row .sale-file.name {
    flex-grow: 1;
    flex-shrink: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sale-file-print-form-set__row .sale-file.name.subheading {
    margin-top: 0.5rem;
}

.sale-file-print-form-set__row .sale-file.copies {
    flex: 0 0 4rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.sale-file-print-form-set__row .sale-file.copies input {
    width: 2rem;
    text-align: center;
    height: 1.7rem;
}

/**
* Styles for 'shared_elements/loader/loader.html'
**/
.ks-loader {
    height: 0.7rem;
}

.ks-loader circle.loading-dot {
    fill: var(--ks-black-2);
}

.ks-loader.invert circle.loading-dot {
    fill: var(--ks-white);
}


/**
*
**/
#agreement-form > .field-wrapper.time-input {
    display: inline-block;
    width: 40%;
}

#agreement-form .helper-text-grid > div {
    display: inline-block;
    width: 40%;
}

#agreement-form .helper-text-grid > p {
    display: inline-block;
    width: 50%;
    margin-left: 1rem;
}
#agreement-form > .field-wrapper.time-input {
    display: inline-block;
    width: 40%;
}

#agreement-form .helper-text-grid > div {
    display: inline-block;
    width: 40%;
}

#agreement-form .helper-text-grid > p {
    display: inline-block;
    width: 50%;
    margin-left: 1rem;
}



.modal-dialog-scrollable>.modal-body {
    overflow-y: auto !important;
}


.notif-message {
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}

.notif-message {
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}

#other_owner {
    margin-left:2rem;
}

.service-contract-info {
    display: flex;
    justify-content: space-between;
    gap: 15rem;
}

.service-contract-info > .info {
    display: flex;
    width: auto;
    justify-content: space-between;
    flex-grow: 1;
}

.service-contract-info > .info > .grey {
    color: var(--ks-grey);
}

@media (width < 992px) {
    .service-contract-info {
        gap: 5rem;
    }
}

@media (width < 768px) {
    .service-contract-info {
        flex-direction: column;
        gap: 1rem;
    }
}

#agent-signatures {
    max-height: 60rem;
    overflow-x: auto;
}

#agent-signatures th,
#agent-signatures td {
    padding: 1.2rem;
}

/* Overview */

.container {
    max-width: 70% !important;
    padding: 0;
}

.tab-content {
    border-radius: 8px;
}

.overview-info-header {
    margin-bottom: 2rem;
    color: var(--ks-black-2);
    font-weight: 300;
    text-wrap: nowrap;
}

.header-upper {
    display: flex;
    margin-bottom: 0.5rem;
}
.header-lower {
    color: var(--ks-grey);
}

.header-address {
    display: flex;
    margin-right: 3rem;
}

.header-address-1 {
    font-size: 2rem;
    margin-right: 0.5rem;
    align-self: flex-end;
}

.header-address-2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    align-self: flex-end;
}

.header-status-green, .header-status-red {
    color: var(--ks-white);
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    line-height: 0.75rem;
    align-self: center;
    border-radius: 1rem;
    margin-right: 1rem;
}

.header-status-green {
    background-color: var(--ks-green);
}

.header-status-red {
    background-color: var(--ks-danger);
}

.tutorials-button-container {
    align-self: center;
}

.overview-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    /*overflow-x: auto;*/
}

.overview-actions {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    padding-top: 1.5rem;
    min-width: 260px;
}

.overview-actions button, .overview-actions a {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--ks-black-2);
    text-decoration: none;
    border-radius: 6px;
    width: 95%;
}

.overview-actions button:hover, .overview-actions a:hover {
    background-color: rgba(var(--eC-primary-rgb), 0.2);
}

.overview-actions button svg, .overview-actions a svg {
    width: 2.5rem;
    color: var(--eC-primary);
    padding-right: 1rem;
}

.overview-tabs {
    display: flex;
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(var(--eC-primary-lighter-rgb), 0.3);
    padding: 0.2rem;
}

.overview-tabs .overview-tab {
    padding: 1rem 0;
    border: none;
    background-color: transparent;
    border-radius: 6px;
    outline: none;
    color: var(--eC-text-primary);
    font-size: 1.25rem;
    flex: 1 1 0;
    transition: 0.25s;
}

.overview-tabs .overview-tab.active {
    background-color: rgba(var(--eC-primary-rgb), 0.85);
    color: var(--ks-white);
    box-shadow: 0 0 10px rgba(var(--eC-primary-rgb), 0.25);
}

.overview-tabs .overview-tab.active:hover {
    background-color: rgba(var(--eC-primary-rgb), 0.85);
    color: var(--ks-white);
}

.overview-tabs .overview-tab:hover {
    background-color: rgba(var(--eC-primary-rgb), 0.25);
    border: none;
}

/* Zebra striping */
table.primary-striped tr:nth-child(4n+3),
table.primary-striped tr:nth-child(even) {
    background: rgba(var(--eC-primary-rgb), 0.1);
}
table.primary-striped tr {
    border-bottom: 1px solid rgba(var(--eC-primary-rgb), 0.25);
}
table.primary-striped th {
    background: rgba(var(--eC-primary-rgb), 0.85);
    color: var(--ks-white);
}

.overview-table-row {
    cursor: pointer;
}

.overview-sorting-menu {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.overview-sorting-button {
    border: none;
    background-color: var(--eC-primary);
    color: var(--ks-white);
    padding: 0rem 1rem;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(var(--eC-primary-rgb), 0.25);
    transition: 0.25s ease-out;
}

.overview-sorting-button:hover {
    background-color: var(--ks-white);
    color: var(--eC-primary);
}

.overview-select svg {
    z-index: 3;
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    right:1rem;
    background-color: var(--ks-white);
    pointer-events: none;
}

.overview-select {
    position: relative;
}

.overview-select select {
    width: 220px;
    height: 42px;
    border-radius: 6px;
    border: none;
    background-color: var(--ks-white);
    color: var(--ks-black-2);
    box-shadow: 0 0 10px rgba(var(--eC-primary-darker-rgb), 0.2);
    cursor: pointer;
    transition: 0.5s ease-out;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    align-items: center;
}

.overview-bid-card {
        display: flex;
        flex-direction: column;
        background-color: var(--ks-white);
        box-shadow: 2px 3px 5px rgba(var(--eC-primary-darker-rgb), 0.2);
        border-radius: 6px;
        padding: 1rem;
}

.overview-bid-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-bid-card-info button {
    border: none;
    background-color: transparent;
}

.overview-bid-card-action {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overview-bid-extra-info {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.extra-info-bidders, .extra-info-payments {
    border-top: 1px rgba(var(--eC-primary-rgb), 0.25) solid;
    padding: 1rem 0;
}

.info-header {
    font-size: 1.5rem;
    font-weight: 300;
}

@media (width < 1920px) {
    .container {
        max-width: 80% !important;
    }

    .overview-tabs .overview-tab {
        font-size: 1rem;
    }
}

@media (width < 1440px) {
    .overview-tabs {
        flex-wrap: wrap;
    }

    .text-selection-header {
        font-size: 16px;
    }

    .overview-tabs .overview-tab {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    table.overview-collapsed-table tr{
        display: inline-flex;
        flex-direction: column;
        width: 100%;
    }

    table.overview-collapsed-table td {
        border-bottom: 1px solid rgba(var(--eC-primary-rgb), 0.25);
    }

    .info-header {
        font-size: 1rem;
    }
}

@media (width < 1024px) {

    .container {
        max-width: 85% !important;
    }

    .overview-info {
        flex: none;
    }

    .overview-content {
        flex-direction: column;
        margin-bottom: 8rem;
    }

    .overview-actions {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px rgba(var(--eC-primary-rgb), 0.2) solid;
        padding-top: 2rem;
        border-top: 2px rgba(var(--eC-primary-rgb), 0.2) solid;
    }

}

@media (width < 768px) {
    .overview-tabs {
        flex-direction: column;
    }

    .header-upper {
        flex-wrap: wrap;
    }

    .header-status-green, .header-status-red, .tutorials-button-container {
        margin-top: 1rem;
    }

    .overview-sorting-menu  {
        flex-direction: column;
    }

    .overview-sorting-menu select {
        width: 100%;
    }

    .overview-sorting-menu button  {
        padding: 0.5rem 0 ;
    }

    .overview-bid-card-info {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .overview-bid-card-action {
        width: 100%;
    }

    .overview-bid-card-action a {
        text-align: center;
    }
}

@media (width < 425px) {
    .header-address {
        flex-direction: column;
    }
    .header-address-1, .header-address-2 {
        align-self: flex-start;
    }
    .header-address-2 {
        margin-top: 0.25rem;
    }
}

.pointer{
    cursor:pointer;
}

.watch-button.transition {
    animation: pulse 0.3s;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.box-red{
    background-color: var(--ks-soft-red);
    color: var(--ks-white);
    border: 0.5px solid var(--ks-soft-red);
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.lykilord-modal{
    min-width: 30rem;
}

.nowrap {
    white-space:nowrap
}

.w-fit{
    width:fit-content;
}

.cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-wrap: break-word;
}

.overflow-y-auto {
    overflow-y: auto;
}

.no-min-height {
    min-height: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.sale-event-list {
    height: 240px;
    padding-bottom: 0.5rem;
}
