/**
* GC Cookielaw
* 
* Module for Prestashop E-Commerce Software
*
* @author    Markus Engel <info@onlineshop-module.de>
* @copyright Copyright (c) 2019, Onlineshop-Module.de
* @license   commercial, see licence.txt
*/

#cookiebanner .container {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    z-index: 9999;
    background: #fff;
    width: 100%;
    margin: 0;
    left: 0;
    padding: 10px;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 9px 0 rgba(0,0,0,.7);
}
#cookiebanner .content,
#cookiebanner .consent-preferences {
    flex-basis: 100%;
}

#cookiebanner.guideline .background {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #00000080;
}

#cookiebanner.guideline .container {
    position: absolute;
    bottom: inherit;
}

#cookiebanner .button {
    margin-left: 1em;
    margin-top: 1em;
}

#cookiebanner p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

#cookiebanner .consent {
    width: 100%;
    margin-top: 1rem;
}

#cookiebanner .consent-intro {
    margin-bottom: 1rem;
}
#cookiebanner .consent {
    display: none;
}
body#checkout #cookiebanner .container {
    min-height: inherit;
}
@media (min-width: 992px) {
    #cookiebanner.guideline .container {
        width: 50%;
        margin: 30px auto;
        padding: 60px;
    }
}

/************************************************************************************************/
.GcCookie * {
    box-sizing: border-box
}
.GcCookie .cookie-heading {
    font-weight: bold;
    font-size: 1.9rem;
}
.GcCookie .cookie-logo {
    width: 100%;
}

.GcCookie *:before,
.GcCookie *:after {
    box-sizing: inherit
}
#cookie-box-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
    transition: background-color .25s linear;
}
#GcCookieBox .flex-100 {
    flex: 100;
}
#GcCookieBox .flex-85 {
    flex: 85;
}
#GcCookieBox .flex-15 {
    flex: 15;
}
#GcCookieBox .flex-10 {
    flex: 10;
}
#GcCookieBox .wrapper {
    display: block;
    max-width: 385px;
    width: 100%;
    z-index: 10000000;
    background: #FFF;
    padding: 1rem;
    border-radius: 8px;
}
#GcCookieBox .wrapper.advanced {
    max-width: 768px;
}

#GcCookieBox .cookie-header {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}
#GcCookieBox .cookie-logo-container {
    display: none;
}
#GcCookieBox .cookie-box-advanced .cookie-header {
    align-items: stretch;
}
#GcCookieBox .cookie-box-advanced .cookie-heading {
    margin-bottom: 0.6rem;
}
#GcCookieBox .accept-button-row {
    display: flex;
    flex-wrap: wrap;
}
#GcCookieBox .accept-button-row > *{
    margin-right: 1rem;
}

#GcCookieBox .back-link {
    flex: 2;
    text-align: right;
    font-size: 0.8rem;
}
#GcCookieBox .cookie-box-simple,
#GcCookieBox .cookie-box-advanced {
    overflow: auto !important;
    width: auto !important;
    position: relative;
    max-height: 85vh;
}
.consent-switch {
    text-align: right;
}
.GcCookie input:checked~.checkerbox:after {
    display: block
}

.GcCookie input:disabled~.checkerbox:after {
    display: block
}

.GcCookie .checkerbox {
    border-style: solid;
    border-width: 2px;
    padding: 0 !important;
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    transition: .25s
}

.GcCookie .checkerbox:after {
    content: "";
    display: none;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-radius: 1px;
    position: absolute;
    left: 5px;
    top: 1px;
    height: 11px;
    width: 6px;
    transform: rotate(45deg)
}
.GcCookie span.close{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    line-height: 1rem;
    padding: 10px;
}

#GcCookieBox ul {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    list-style: none;
    margin: .6rem 0;
    padding: 0
}
#GcCookieBox ul li {
    margin: 0 .8rem 0 0;
}
.GcCookie input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    right: 0;
}
.GcCookie .checkerbox-label {
    cursor: pointer;
    display: block;
    padding-left: 2em;
    position: relative
}

.GcCookie .checkerbox-label input {
    position: absolute;
    opacity: 0;
    z-index: -1
}

.GcCookie .checkerbox-label input:checked~.checkerbox:after {
    display: block
}

.GcCookie .checkerbox-label input:disabled~.checkerbox:after {
    display: block
}
.GcCookie .checkerbox-label input:disabled~.checkerbox {
    background-color: #e8e8e8;
    border-color: #e8e8e8
}

.GcCookie .checkerbox-label .checkerbox {
    border-style: solid;
    border-width: 2px;
    padding: 0 !important;
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    transition: .25s
}

.GcCookie .checkerbox-label .checkerbox:after {
    content: "";
    display: none;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-radius: 1px;
    position: absolute;
    left: 5px;
    top: 1px;
    height: 11px;
    width: 6px;
    transform: rotate(45deg)
}


#GcCookieBox .settings {
    margin: 0 0 10px;
}
#GcCookieBox .legal {
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}
#GcCookieBox .legal a,
.accept-button-save {
    color: #7a7a7a;
}

#GcCookieBox .settings {
    font-size: 0.9rem;
    text-align: center;
}


#GcCookieBox .separator:before {
    content: "|";
    display: inline-block;
    margin: 0 2px
}

#GcCookieBox .consent-item {
    background: #efefef;
    padding: 10px;
    margin: 0 0 1rem 0;
}

#GcCookieBox .cookie-box-advanced table {
    margin: 1rem 0 0;
    width: 100%;
    background-color: #fff;
}
#GcCookieBox .cookie-box-advanced table td,
#GcCookieBox .cookie-box-advanced table th {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid;
    background-color: #fff;
    border-color: #efefef;
    font-size: 0.9rem;
}
#GcCookieBox .cookie-box-advanced table tr:last-child td,
#GcCookieBox .cookie-box-advanced table tr:last-child th {
    border-bottom: 0;
}
#GcCookieBox .cookie-box-advanced table th {
    text-align: left;
    width: 40%;
}

#GcCookieBox .consent-header {
    display: flex;
}
#GcCookieBox .consent-heading {
    flex: 2;
    font-weight: 700;
}
#GcCookieBox label.consent-btn-switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 28px;
    vertical-align: middle;
}
#GcCookieBox .consent-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .4s;
    border-radius: 15px;
    background: #bbb;
}
#GcCookieBox label.consent-btn-switch input:checked+.consent-slider {
    background: #2fb5d2;
}
#GcCookieBox label.consent-btn-switch input:checked+.consent-slider:before {
    transform: translateX(28px);
}

#GcCookieBox .consent-btn-switch .consent-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: .5s;
    border-radius: 10px;
}

#GcCookieBox .consent-btn-switch-status {
    display: inline-block;
    margin: 0 .25rem;
    vertical-align: middle
}
#GcCookieBox .hidden {
    display: none;
}
#GcCookieBox .cookie-info-toggle {
    text-align: center;
}
.cookie-info-toggle {
    text-align: center;
}
.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}


@keyframes bounceInDown {
    0% {
       opacity: 0;
       transform: translateY(-2000px);
    }
    60% {
       opacity: 1;
       transform: translateY(30px);
    }
    80% {
       transform: translateY(-10px);
    }
    100% {
       transform: translateY(0);
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes transformZero {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
    height: 0;
  }
}

.transformZero {
  animation-name: transformZero;
}


@media (min-width: 992px) {

    #GcCookieBox .cookie-logo-container {
        display: block;
    }
}