.psi-cookie-consent-container {
    position: fixed;
    bottom:10px;
    color:white;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: none;
    z-index: 1100;
}

.psi-cookie-consent {
    border-radius: 4px;
    background: rgba(246,249,252,.9);
    -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
    color: #424770;
    margin: 0 auto;
    display: inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.psi-cookie-consent-container-copy {
    padding: 8px 5px 8px 15px;
}

.psi-cookie-consent-container-copy a.common-link {
    color: #6772e5;
    font-weight: 500;
    -webkit-transition: color .1s ease;
    transition: color .1s ease;
    cursor: pointer;
}

.psi-cookie-consent .dismiss-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    overflow: hidden;
    text-indent: -9999px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    width: 40px;
    height: 40px;
    color: #8898aa;
    -webkit-transition: color .15s;
    transition: color .15s;
    cursor: pointer;
}

.psi-cookie-consent .dismiss-button:after,.psi-cookie-consent .dismiss-button:before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:40%;
    height:2px;
    background:currentColor;
    border-radius:2px;
    -webkit-transform:translate(-50%,-50%) rotate(45deg);
    transform:translate(-50%,-50%) rotate(45deg)
}
.psi-cookie-consent .dismiss-button:after{
    -webkit-transform:translate(-50%,-50%) rotate(-45deg);
    transform:translate(-50%,-50%) rotate(-45deg)
}

.psi-cookie-consent .dismiss-button:hover{
    color:#32325d
}

.psi-cookie-consent-container.shown {
    display: block;
}


@media (min-width: 420px) {
    .psi-cookie-consent-container {
        bottom: 10px;
    }
}