:root {
    --primary: #062D5A;
    --secondary: #08F0BE;
    --white: #ffffff;
    --body-background: #F6F7F9;
    --text-grey: #7E7E7E;
    --text-grey-darker: #4D5151;
    --link: #008c94;
    --link-hover: #01BEA0;
    --score-result-bg: #004F8B;
}

/* FONTS */
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-Thin.ttf") format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-Light.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-RegularItalic.ttf") format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-Semibold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'GraphikWeb';
    src: url("../fonts/GraphikWeb-SemiboldItalic.ttf") format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* COLORS & TEXT COLORS */

.background-primary {
    background-color: var(--primary);
}

.background-secondary {
    background-color: var(--secondary);
}

.normalgrey {
    color: var(--text-grey);
}
.darkergrey {
    color: var(--text-grey-darker);
}

.akasi-text-primary {
    color: var(--primary);
}

.akasi-text-secondary {
    color: var(--secondary);
}

.akasi-text-white {
    color: var(--white);
}

/* END COLORS & TEXT COLORS */

/* FONTSIZE */

.fs48 {
    font-size: 3rem;
}

.fs20 {
    font-size: 1.25rem;
}

.fs15 {
    font-size: 0.938rem;
}

.fs13 {
    font-size: 0.813rem;
}


/* END FONTSIZE */

/* MARGINS & PADDINGS */


/* END MARGINS & PADDINGS */

/* OPACITIES */

.opacity-70 {
    opacity: .7;
}

.opacity-100 {
    opacity: 1;
}

/* END OPACITIES */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-background);
    /* padding-top: 140px; */
    font-family: "GraphikWeb";
}

.absolute {
    position: absolute;
}

/* BACKGROUND IMAGE */
.akasi-background {
    z-index: -1;
    min-height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* BODY BACKGROUND IMAGE */

.akasi-static-background {
    background-image: url("../assets/images/bg.png");
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
}


.pos-rb-0 {
    right: 0;
    bottom: 0;
}

.tab-title {
    margin-bottom: 20px;
    font-size:54px;
    line-height:60px;
    display: block;
}

.tab-sub-title {
    font-size:14px;
    line-height:17px;
    letter-spacing: 3px;
    display: block;
}


.footer-link {
    color: var(--white);
    cursor: pointer;
}

/* CTA link */
.cta-link {
    color: var(--primary);
    cursor: pointer;
}
.cta-link :hover {
    color: var(--text-grey);
}

/*---- BACK TO TOP BUTTON ----*/
#back-to-top-button {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: var(--white);
	position: fixed;
	bottom: 16px;
    right: 16px;
	z-index: 20;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    border: none;
}

#back-to-top-button span {
	text-decoration: none;
	color:#323336;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#back-to-top-button span:hover {
	color:#97999c;
}

#back-to-top-button.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease;
}

/*---- HEADER ----*/

header img {
    max-height: 70px;
}

@media(max-width: 576px){
    header img {
        max-height: 50px;
    }
}

.akasi-header-nav {
    /* padding: 10px 10px; */
}

@media(max-width: 1200px){
    .akasi-header-nav {
        padding: 15px 0;
    }
}

.akasi-header-nav-visible {
    background-color: var(--primary);
}

.akasi-header-nav .header-logos {
    white-space: nowrap;
    padding: 0px 10px;
}

.logo-akasi {
    /* padding-top: 16px;
    padding-bottom: 16px; */
    height: 42px;
    width: auto;
}

.navbar-logo-divider {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.logo-almirall {
    /* padding-top: 16px;
    padding-bottom: 16px; */
    height: 22px;
    width: auto;
}

/* Collapsed Menu button */
.navbar-toggler {
    border-color: transparent !important;
}

.navbar-toggler:focus,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.akasi-header-nav li {
    padding: 0px 8px !important;
}

.akasi-header-nav li a {
    opacity: .7;
    color: var(--white);
    font-size: 14px;
    white-space: nowrap;
}

.akasi-header-nav li a:hover {
    color: var(--secondary);
}

.akasi-header-nav li .active {
    opacity: 1;
    color: var(--white) !important;
    border-bottom: 2px solid #00F0BD;
}

.start-calculating-button {
    opacity: 1 !important;
    padding: 10px 25px;
    border: 1.44px solid #FFFFFF;
    border-radius: 26.5px;
    letter-spacing: 1px;
    font-size: 12px;
    max-width: 250px;
    white-space: nowrap;
}

.start-calculating-button:hover span {
    opacity: .7 !important;
}

/* LANGUAGE DROPDOWN */

.dropdown {
    white-space: nowrap;
    background-color: transparent !important;
}

.dropdown .btn {
    opacity: .7;
    background-color: transparent !important;
    color: var(--white) !important;
    border-color: transparent;
}

.dropdown .btn:active {
    border-color: transparent;
}

.dropdown-menu {
    background-color: var(--primary) !important;
}

a.dropdown-item {
    color: var(--white) !important;
}

a.dropdown-item:hover {
    background-color: var(--white);
    color: var(--primary) !important;
}

/*---- END HEADER ----*/

/* FOOTER */

footer {
    /* height: 100px; */
    /* padding: 1rem 5.375rem 3rem 3rem; */
    padding: 1.875rem 6.25rem 1.875rem 3rem;
    background-color: var(--primary);
    font-size: 13px;
    z-index: 10;
}

footer span {
    padding-left: 10px;
    padding-right: 10px;
    color: var(--white);
}

footer .footer-logo {
    max-height: 30px;
    /* padding-top: 10px;
    padding-bottom: 10px; */
}

#footer-links {
    /* height: 30px; */
}

/* END FOOTER */

/* CALCULATION METHOD */

.calc-title {
    color: var(--white);
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
}

div.bluedot {
	width: 6px;
	height: 6px;
    background-color: #00F0BE;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
    display: inline-block;
    position: relative;
    bottom: -13px;
    margin: 0 5px;
}

ul.calc-item-list {
    list-style: none;
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
    padding: 0;
    margin: 0;
}

ul.calc-item-list input[type="radio"] {
    float:right;
    position: relative;
    bottom: -18px;
}

.calc-item {
    height: 56px;
    border: 1px solid #E5E9F2;
    border-radius: 2px;
    background-color: #FFFFFF;
    padding: 0 14px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: table;
    width: 100%;
}

.calc-item span {
    display: table-cell;
    vertical-align: middle;
}

.calc-item span:nth-child(1) {
    color: #6F6F6F;
    font-family: 'GraphikWeb' !important;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 22px;
    width: 20px;
    min-width: 12px;
}

.unaffected-img {
    margin-top: 16px;
    width: 20px;
}

.item-txt {
    padding: 0 5px;
    line-height: 18px;
    text-align: left;
    display:inline-block;
    width:100%;
    overflow: hidden;
    font-size: 0.875rem;
}

/* END CALCULATION METHOD */

/* */

section {display: block;}
:target:before {
    content: "";
    display: block;
    height: 200px;
    margin: -200px 0 0;
}


/* TAB TITLTE & SUBTTITLE */
.tab-title {
    margin-bottom: 20px;
    font-size:54px;
    line-height:60px;
    display: block;
}

.tab-sub-title {
    font-size:14px;
    line-height:17px;
    letter-spacing: 3px;
    display: block;
}

@media(max-width:767px) { /*XS*/
    .tab-title {
        font-size: 52px !important;
    }
}

/* TABLES */
table {
    width: 100%;
}

.score-calc-table th, td {
    padding: 0 5px;
    width: 20%;
    font-size: 0.75rem;
}


@media (max-width: 767px) {
    .score-calc-table th,
    .score-calc-table td,
    .akasi-table th,
    .akasi-table td {
        padding: 0 5px;
    }
}

@media (max-width: 767px){
    .score-calc-table .font-normal,
    .akasi-table .font-normal {
        /* font-size: 10px; */
        /* font-size: 0.813rem; */
    }
    .akasi-table th,
    .akasi-table td {
        padding: 0 5px;
    }
}

.grey-row,
.white-row,
.darkergrey-row {
    height: 45px;
}

.blue-row {
    height: 50px;
    background-color: #17E2BC;
}

.grey-row {
    background-color: #F5F5F5;
}

.darkergrey-row {
    background-color: #F0F0F0;
}

.white-row {
    background-color: #FFFFFF;
}

/* END TABLES */

/*
 * LEGAL CONTENT
 */

.legal-container {
    word-wrap: break-word;
    margin-top: 12rem;
    margin-bottom: 5rem;
    margin-left: 10rem;
    margin-right: 10rem;
    padding: 4rem 4rem 6rem 4rem;
    background-color: var(--white);

    h2 {
        color: var(--primary);
        font-weight: normal;
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }

    h4 {
        color: var(--primary);
        font-weight: normal;
        font-size: 1.125rem !important;
    }

    h5 {
        margin-bottom: 1.25rem !important;
        color: var(--primary);
        font-weight: normal;
    }

    p {
        font-weight: 300;
    }

    ol {
        font-weight: 300;
    }

    #cookies-table th, td {
        word-wrap: break-word;
    }

    .table-striped > tbody th,
    .table-striped > tbody > tr:nth-child(2n+1) > td {
        background-color: #eff5f7;
    }

    .table-striped > tbody th {
        font-weight: 400;
    }

    .table-striped > tbody td {
        font-weight: 300;
    }

    .table-striped td,
    .table-striped th {
        color: #052D5A;
    }

    .legal-version {
        font-style: italic;
    }

    .link {
        color: var(--link);
        background-color: transparent !important;
    }

    .link:hover {
        color: var(--link-hover);
        background-color: transparent !important;
    }

    .inline-image-left {
        width: 26px;
        padding-left: 10px;
    }

    .inline-image-right {
        width: 26px;
        padding-right: 10px;
    }
}

/* REMOVE OneTrust menu */
.ot-privacy-notice-language-dropdown-container {
    display: none !important;
}

.otnotice-menu {
    display: none !important;
}

.otnotice-section {
    strong {
        font-weight: 600 !important;
    }

    a {
        color: var(--link) !important;
        background-color: transparent !important;
        text-decoration: none !important;
    }

    a:hover {
        color: var(--link-hover);
        background-color: transparent !important;
    }

    table {
        table-layout: fixed !important;
        width: 100% !important;
        margin-right: none !important;
    }

    table>:not(caption)>*>* {
        padding: .5rem .5rem;
    }

    table > tbody th,
    table > tbody > tr:nth-child(2n+1) > td {
        background-color: #eff5f7;
    }

    table > tbody th {
        font-weight: 400;
    }

    table > tbody td {
        font-weight: 300;
    }

    table td,
    table th {
        word-wrap: break-word;
        color: #052D5A;
        font-size: 1rem !important;
    }
}

@media (max-width: 992px) {
    .legal-container {
        margin-top: 10rem;
        margin-left: 6rem;
        margin-right: 6rem;
        padding: 3rem 1.75rem 3rem 1.75rem;
    }
}

@media (max-width: 768px) {
    .legal-container {
        margin-top: 10rem;
        margin-left: 3rem;
        margin-right: 3rem;
        padding: 3rem 1.75rem 3rem 1.75rem;
    }
}

@media (max-width: 576px) {
    .legal-container {
        margin-top: 7rem;
        margin-bottom: 3rem;
        margin-left: 1.75rem;
        margin-right: 1.75rem;
        padding: 1.75rem 1rem 3rem 1rem;
    }
}

/*
 * END LEGAL CONTENT
 */
