﻿.cookie, .cookie-mobile {
    position: fixed;
    bottom: 0;
    right: 0;
    
    width: 559px;
    
    padding: 14px 3px 3px;
    
    
    line-height: 18px;
    
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0, 0.2);
    -moz-box-shadow: 0px 0px 15px rgba(0,0,0, 0.2);
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0, 0.2);
    -o-box-shadow: 0px 0px 15px rgba(0,0,0, 0.2);
    
    z-index: 100;
}

.cookie-mobile {
    width: 100%;
    left: 0;
}

.cookie-content {
    display: flex;
    flex-direction: column;

    row-gap: 8px;
    
    padding: 15px 30px 28px 30px;
}

.cookie > .cookie-content .button-orange {
    align-self: flex-end;
    
    margin: 0;
}

.cookie-text {
    font-size: 14px;
    color: #253137;
    line-height: 20px;
    
    margin-bottom: 16px;
}

.cookie-text > a {
    color: #622CF4;
}

.close-button {
    display: block;
    
    border: none;
    background: none;
    outline: none;
    
    position: relative;
    
    height: 20px;
    width: 20px;
    min-width: 20px;
    min-height: 20px;
    
    max-width: max-content;

    margin-left: auto;
}

.close-button::before{
    content: '';
    
    display: block;
    
    position: absolute;

    height: 11px;
    width: 11px;

    top: calc(50% - 5.5px);
    left: calc(50% - 5.5px);
    
    background: url('../images/delete-doc.gif?v=2') 0px 0px no-repeat;
}
