﻿#CookieManager-holder {
    background-color: #002d62;
    z-index: 9;
    transition: all 500ms ease-out;
    position: fixed;
    bottom: -100px;
    width: 100%;
    color: white;
    padding: 20px;
}

    #CookieManager-holder.visible {
        bottom: 0px;
    }

    #CookieManager-holder .btn {
        color: black;
    }

    #CookieManager-holder .btn.btn-primary {
        color: white;
    }

.cookiePageBody{
    margin-left: -30px;
}

#cookieConsent {
    z-index: 999;
    justify-content: center;
    border-top: 6px solid #58595B;
    display: none;
    background-color: white;
    padding: 20px 0 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
#ChangeCookieConsent.span-link {
    color: #4991ce;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 14px;
}

#cookieConsent a {
    color: #4991ce;
}

#cookieConsent a:hover {
    color: #61a6e3;
}

#cookieConsent.visible{
    display: flex;
}

.cookieConsent-inner {
    display: flex;
    align-items: center;
    padding: 0px 15px 0px 15px;
}

.cookieConsent-content {
    flex-grow: 1;
}

.cookieConsent-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.cookieConsent-body {
}


button.cookieButton {
    max-height: 50px;
    margin-left: 15px;
    padding: 15px 15px;
    font-size: 1em;
    white-space: nowrap;
}
button.cookieButton.reject {
    background-color: #eeeeee !important;
    color: #000000 !important;
}
#ChangeCookieConsent.span-link {
    color: #4991ce;
    text-decoration: underline;
    cursor: pointer;
}

:root {
    --change-consent-height: 25px;
    --change-consent-width: 50px;
}

#ChangeConsent{
    position: fixed;
    background-color: gray;
    bottom: 0;
    height: var(--change-consent-height);
    width: var(--change-consent-width);
    cursor: pointer;
    padding: 5px 5px 0px 0px;
    border-radius: 0 4px 0 0;
    transition: all 0.4s ease-out;
    display: flex;
    justify-content: center;
}

#ChangeConsent:hover{
    height: calc(var(--change-consent-height) + 15px);
    width: calc(var(--change-consent-width) + 15px);
}

@media only screen and (max-width: 768px) {
    .cookieConsent-inner {
        flex-flow: column;
    }

    .cookieConsent-content {
        text-align: center;
    }
        

    button.cookieButton {
        margin-left: 0;
        margin-top: 15px;
    }
}


.fixedCookieBtn{
    position: fixed;
    bottom: 0px;
    left: 0px;
    border-top-right-radius: 50%;
    background-color: white;
    outline: none;
    z-index: 9;
    border: none;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    transition: all 0.3s ease;
}

.fixedCookieBtn svg{
    width: 100%;
    height: 100%;
}

.fixedCookieBtn:hover {
    height: 60px;
    width: 60px;
}

.cookieModal{
    z-index: 99999;
    padding-right: 0px;
}

.cookieModalContainerTop{
    padding: 0px 40px 40px 40px;
    background: #f6f6f6;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.cookieModalContainerButtons > div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookieModalBtn{
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 700;
    background-color: white;
    border: 1px solid;
    border-radius: 6px;
    width: 243px;
    transition: all 0.3s ease;
}

.cookieModalBtn:hover{
    background-color: #58595B;
    color: white;
}

/* The switch - the box around the slider */
.CookieSwitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.CookieSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.CookieSlider {
  position: absolute;
  cursor: inherit;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.CookieSlider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .CookieSlider {
  background-color: #2196F3;
}

input:focus + .CookieSlider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .CookieSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.CookieSlider.round {
  border-radius: 34px;
}

.CookieSlider.round:before {
  border-radius: 50%;
}

.cookieSelection{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    background: #f6f6f6;
    border-top: solid 1px #ccc;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    overflow: auto;
}

.cookieSelection > div{
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    border-bottom: solid 1px #ccc;
}

.cookieSelection > div:not(:last-child){
    border-right: solid 1px #ccc;
}

.cookieSelection label{
    cursor: pointer;
}

.cookieSelection .middle{
    border-right: solid 1px #ccc;
    border-left: solid 1px #ccc;
}

.cookieSelection span{
    font-weight: 700;
    padding-bottom: 20px;
}

.cookieDisabled{
    opacity: 0.5;
    cursor: not-allowed !important;
}

#moreInformationId{
    padding-top: 25px;
    background: #f6f6f6;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

#moreInformationId > div{
    margin-bottom: 20px;
}

.moreCookieInformation{
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    line-height: 1.5;
}

.moreCookieInformation > div > div{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.moreCookieInformation > div:not(:last-child){
    margin-bottom: 20px;
}

.moreCookieInformation .spanOne{
    flex: 2;
    font-weight: 700;
    padding-right: 5px;
    letter-spacing: 1px;
}

.moreCookieInformation .topItem{
    font-size: 15px;
    font-weight: 700;
}

.moreCookieInformation .service{
    font-size: 15px;
}

.moreCookieInformation .spanTwo{
    flex: 4;
    font-size: 13px;
}

.moreCookieInformation span a{
    text-decoration: underline;
    color: blue;
}

.cookieArrowHolder{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
    border-bottom: solid 1px #ccc;
}

.cookieArrowHolder h2 {
    margin-bottom: 0px;
    margin-right: 15px;
    color: #58595B !important;
    font-size: 18px !important;
}

.cookieArrowHolder:hover h2{
    color: #5d98c4;
}

.cookieArrowHolder .holder {
    height: 33px;
    width: 33px;
    transition: all 0.5s ease;
}

#moreInformationId a{
    text-decoration: none;
}

#moreInformationId  a[aria-expanded="false"] .holder{
    transform: rotate(-90deg);
}

#moreLessRefId a[aria-expanded="false"] .showMore{
    display: block;
}
#moreLessRefId a[aria-expanded="false"] .showLess{
    display: none;
}

#moreLessRefId a[aria-expanded="true"] .showMore{
    display: none;
}
#moreLessRefId a[aria-expanded="true"] .showLess{
    display: block;
}

.cookieArrowHolder svg {
    width: 100%;
    height: 100%;
}

#acceptNecessaryCookiesBtn .firstSpan{
    display: block;
}

#acceptNecessaryCookiesBtn .secondSpan{
    display: none;
}

.cookieModalContainerButtons{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.cookieModalContainerButtons .col-xss-6{
    width: 50%;
    align-items: stretch;
}

#moreLessRefId{
    width: 100%;
}