/* General */
.container {
    max-width: 1230px;
}
.blue {
    color: #0a1efa;
}
body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 1.0;
    margin-bottom: 25px;
}
h1.giant{
    font-size: 72px;
}

h1, h2, h3, h4, h5, h6, strong, b {
    font-weight: bold;
}
a {
    color: #0a1efa;
}
a:hover {
    color: #0a1efa;
    text-decoration: underline;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}
.form-group > label,
.form-label {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    display: block;
    opacity: 1;
    -webkit-transition: .333s ease top, .333s ease opacity;
    transition: .333s ease top, .333s ease opacity;
}
.form-control {
    border-radius: 0;
    border-color: #ccc;
    border-width: 0 0 2px 0;
    border-style: none none solid none;
    box-shadow: none;
    padding: 0;
    line-height: 1.2;
    height: calc(1.25em + 0.5rem + 2px);
}
.form-control:focus {
    box-shadow: none;
    border-color: black;
    /* border-color: #0a1efa; */
    /* border-bottom-width: 1px; */
}

.field-validation-error {
    font-size: 80%;
}
.validation-summary-errors ul {
    padding-inline-start: 0px;
}
.validation-summary-errors.text-danger {
    font-style: italic;
    font-weight: bold;
}

input[type='checkbox'] {
    accent-color: black;
    border-radius: 0!important;
    -webkit-box-shadow: 0px 0px 0px 2px black inset;
    box-shadow: 0px 0px 0px 2px black inset;
}


/* Background */
body {
    height: 100%;
    margin: 0;
    background: whitesmoke;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@media(min-width:768px){
    .sxr-bg-image-1 {
        background-image: url("/img/Frontpage_hero-1536x899.jpg");
    }
    .sxr-bg-rand-0 {
        background-image: url("/img/sxr-bg-rand-0.jpg");
    }
    .sxr-bg-rand-1 {
        background-image: url("/img/sxr-bg-rand-1.jpg");
    }
    .sxr-bg-rand-2 {
        background-image: url("/img/sxr-bg-rand-2.jpg");
    }
    .sxr-bg-rand-3 {
        background-image: url("/img/sxr-bg-rand-3.jpg");
    }
}
.sxr-bg-white {
    background: white!important;
}
.sxr-bg-lightyellow {
    background: #f6f2e8!important;
}
.sxr-bg-gray {
    background: #777777!important;
}


/* Alerts */
.alert {
    border-radius: 0;
}
.alert.transparent {
    padding: 0 42px 0 0;
    background-color: transparent;
    border-color: transparent;
    font-style: italic;
    font-weight: bold;
}
.alert.transparent.alert-danger {
    color: #dc3545;
}
.alert.transparent.alert-success {
    color: #28a745;
}



/* Navigation bar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    padding: 0;
    height: 85px;
}
.navbar.navbar-transparent {
    background-color: transparent!important;
    box-shadow: none;
}
.navbar-toggler-icon {
    stroke: #0a1efa;
    width: 20px;
}
.navbar-nav-icon {
    padding: 4px 3px;
    font-size: 1.25rem;
    line-height: 1;
}

.navbar-toggler {
    padding-right: 20px;
    padding-left: 20px;
}
@media only screen and (max-width: 767px){
    .navbar-toggler {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 50px;
        height: 50px;

        padding: 0;
        padding-top: 9px;
        text-align: center;
        cursor: pointer;
        background-color: #000;
        border-radius: 0;
    }
    .navbar-toggler-icon {
        stroke: white;
        width: 33px;
    }
    .navbar {
        height: 50px;
    }
    h1,
    h1.giant {
        font-size: 40px;
    }
}

.sidebar {
    height: 100%;
    top: 0;
    right: 0;
    width: 0; /* 0 width when collapsed */
    white-space: nowrap;
    position: fixed;
    z-index: 2;
    
    background-color: #f6f2e8;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px;

    transition: width .5s ease,
        padding .5s ease,
        position .5s ease;
}

.sidebar.show {
    height: 100%;
    width: 50%;
    max-width: 500px;
    padding-left: 5vw;
    padding-right: 30px;
}
.sidebar.collapsing {
    max-width: 500px;
    transition: all 0.1s ease-in;
}

.sidebar-overlay {
    position: fixed;
    display: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.0;
}
.sidebar-overlay.collapsing,
.sidebar-overlay.show {
    display: block;
    opacity: 0.1;
}

.sidebar .sidebar-close {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    background: #f04b2d;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    /* z-index: 3; */
}
.sidebar-close svg {
    width: 20px;
    margin-top: 15px;
}

.sidebar li > a {
    color: black;
    font-size: 140%;
    font-weight: bold;
    transition: color 0.5s ease;
}
.sidebar li > a:hover {
    color: #0a1efa;
    text-decoration: none;
}

/* Sticky bottom footer */
.footer {
    display: block;
    height: 40px;
    line-height: 40px;
    width: 100%;
    background-color: #444444;
    margin: 0px;
    padding: 0px;
    color: lightgrey;
}
.footer a {
    color: lightgrey;
}
.footer a:hover {
    color: #007bff;
}


/* Fancy buttons */
.fancy-button {
    background: #282828;
    color: #fff!important;
    border: 1px solid #282828;

    padding: 0.375rem 3rem;
    margin: 4px;
    display: inline-block;
    position: relative;
    line-height: 1.5;
    white-space: nowrap!important;

    text-align: center;
    font-size: 1rem;
    border-radius: 26px;
	text-decoration: none!important;
    transition: 
        background-color .5s ease-in-out, 
        color .5s ease-in-out,
        border-color 0.5s ease-in-out;
}
a.fancy-button {
    background: #282828!important;
    color: #fff!important;
}
.fancy-button:hover:not(.disabled) {
    background: #0a1efa!important;
    border: 1px solid #0a1efa;
    /* color: #fff!important; */
    text-decoration: none!important;
}
.fancy-button.outline {
    border: 1px solid #282828;
    background: transparent!important;
    color: black!important;
}
.fancy-button.outline.blue {
    border: 1px solid #0a1efa;
    background: transparent!important;
    color: #0a1efa!important;
}
.fancy-button.outline.disabled {
    background: #EEEEEE!important;
}
.fancy-button.outline:hover:not(.disabled) {
    background: #0a1efa!important;
    color: #fff!important;
}
.fancy-button.outline.black:hover:not(.disabled) {
    border: 1px solid black;
    background: black!important;
    color: #fff!important;
}

/* Modal */
.modal-dialog {
    opacity: 0.85;
    margin-top: 15%;
}
.modal-content {
    border: none;
    border-radius: 0;
}
.modal-body {
    padding: 40px;
}

/* Workspace cards */
.card-container {
    transition: transform 0.15s ease;
}
.card-container:hover {
    transform: scale(1.03);
}

.card.card-workspace {
    /* border-radius: 4px; */
    color: black;
    background: #fff;
    /* transition: transform 0.15s ease; */
    cursor: pointer;
}
.card.card-workspace:hover{
    /* transform: scale(1.02); */
    text-decoration: none;
}
/* .card.card-workspace + div{
    transition: transform 0.15s ease;
}
.card.card-workspace:hover + div{
    transform: scale(1.05);
} */
.card.card-workspace .card-body span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* a:hover {
    color: #0a1efa;
    text-decoration: underline;
} */

h1.numbered-terms-section { font-size:large ; font-weight: bold; margin-top: 20px; margin-bottom: 15px;}
h2.numbered-terms-section, h3.numbered-terms-section { font-size: medium; font-weight: normal; }
table.terms-table-grid, table.terms-table { margin: 10px; }
table.terms-table-grid, table.terms-table-grid th, table.terms-table-grid td { border: 1px solid grey; }
table.terms-table { border: 1px solid grey; }
span.underline{ text-decoration: underline; }
span.header-section-number{ 
    /* text-decoration: underline; */
    margin-left: -10px;
}


/* Cookie consent notification */
#cookieConsent {
    color: #141414;
    background: white;
    box-shadow: 0 5px 7px rgb(0 0 0 / 16%);
    border-color: transparent;
}
#cookieConsent .button {
    background: #282828;
    height: 40px;
    line-height: 40px;
    font-size: 11px;
    padding: 0 30px;
    margin: 4px 8px;
    border: 0;
    border-radius: 26px;
    font-weight: 400;
    color: #fff;
    transition: all .5s ease-in-out;
    display: inline-block;
    position: relative;
}
#cookieConsent .button:hover {
    background: #0a1efa;
    color: #fff;
    text-decoration: none;
}
#cookieConsent .button.ghost {
    border: 1px solid #0a1efa;
    background: transparent!important;
    color: #0a1efa;
}
#cookieConsent .button.ghost:hover {
    background: #0a1efa!important;
    color: #fff;
}


.only-print, .only-print * {
    display: none !important;
}
@media print {
    @page {
        margin: 0 !important;
    }

    body {
        margin: 1.6cm;
        padding-top: 0;
        margin-bottom: 0;
    } 
    .no-print, .no-print * {
        display: none !important;
    }

    .only-print, .only-print * {
        display: block !important;
    }

    .pagebreak {
        clear: both;
        page-break-after: always;
    }
}

.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 50%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    left: 15%;
    width: 65%;
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

#Coi-Renew {
    right: 0;
    left: auto !important;
    background: #fff !important;
    bottom: 10px !important;
    border-radius: 32px!important;
}

#Coi-Renew svg {
    vertical-align: top;
}

.coi-consent-banner__summary, .coi-consent-banner__consent-area {
    background-color: #f6f2e8 !important
}

.bottom-bar__update-consent, .coi-consent-banner__agree-button {
    background-color: #061efa !important;
    border-radius: 26px !important;
    text-transform: none !important;
}
.bottom-bar__update-consent {
    margin-bottom: 10px !important
}

.coi-consent-banner__decline-button {
    background-color: #282828 !important;
    color: #fff !important;
    border-radius: 26px !important;
    text-transform: none !important
}

.coi-consent-banner {
    border-top: none !important
}

.coi-consent-banner__indicator {
    border-bottom: 1px solid #fff
}

    .coi-consent-banner__category-expander:checked ~ .coi-consent-banner__name-container, .coi-consent-banner__cookie-details:nth-child(even), .coi-consent-banner__indicator.active {
        background: #fbfbfb !important
    }

.coi-consent-banner__name-container {
    background-color: #fff !important
}

.coi-consent-banner__cookie-details {
    background-color: #fff !important
}

.cookie-details__detail-content a {
    color: #000 !important
}

.coi-consent-banner__category-expander:focus + .coi-consent-banner__name-container {
    outline: none !important
}

.coi-consent-banner__category-checkbox:checked ~ .coi-consent-banner__checkmark {
    border: 2px solid #061efa !important;
    background-color: #061efa !important
}

.coi-consent-banner__category-name {
    margin-bottom: 25px !important
}

.coi-consent-banner__base {
    border-top: 1px solid #ececec
}

.coi-consent-banner__summary {
    border-right: 1px solid #ececec
}

.coi-consent-banner__checkmark {
    width: 45px !important;
    height: 23px !important;
    border: none !important;
    background: #f0f0f0 !important;
    transition: all .5s;
    border-radius: 26px !important
}

.coi-consent-banner__consent-area {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    box-sizing: border-box;
    color: #fff;
    background-color: #fff !important;
    border-left: 1px solid #ececec !important
}

label.coi-consent-banner__category-name {
    flex: 1 0 50% !important;
    padding-left: 55px !important
}

.coi-consent-banner__category-checkbox:checked ~ .coi-consent-banner__checkmark {
    width: 45px !important;
    height: 23px !important;
    border: none !important;
    background: #9199fc !important;
    border-radius: 26px !important
}

.summary-texts__show-details, .summary-texts__hide-details {
    font-weight: 800;
    text-decoration: none !important;
    text-transform: none !important
}

.coi-consent-banner__checkmark:after {
    border: none !important;
    width: 19px !important;
    height: 19px !important;
    border-radius: 50%;
    background: #fff !important;
    display: block !important;
    margin-top: 1px;
    left: 2px !important
}

.coi-consent-banner__checkmark:after {
    transition: all .5s;
    box-shadow: 0px 0px 11px rgba(169,169,169,.5803921569)
}

.coi-consent-banner__category-checkbox:checked ~ .coi-consent-banner__checkmark:after {
    background: #fff !important;
    margin-left: 22px
}

@media screen and (min-width: 700px) {
    .coi-consent-banner__consent-area {
        border: none !important
    }

    .coi-consent-banner__summary {
        order: 1
    }

    .coi-consent-banner__consent-area {
        order: 2
    }

    .coi-consent-banner__cookie-categories {
        margin-top: 15px
    }
}

@media screen and (max-width: 700px) {
    .coi-consent-banner__summary {
        padding-top: 25px !important
    }

    .coi-consent-banner__consent-area {
        padding-top: 25px !important
    }

    .coi-consent-banner__category-name {
        margin-top: 10px !important
    }
}
