.cookie_wrap{
    position: fixed;
    width: 100%;
    max-width: 545px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    z-index: 999;
}
.cookie_wrap .cookie_modal{
    padding: 24px;
    gap: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 16px 64px rgba(117, 125, 170, 0.1);
    border-radius: 32px;
}


.cookie_wrap .cookie_button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    background: #0097db;
    border-radius: 32px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
}
.cookie_wrap .cookie_text{
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #232323;
}
.cookie_wrap .cookie_text a{
    color: #1D7FDA;
}
@media (max-width: 559px) {
    .cookie_modal {
        margin: 0 16px;
    }
    .cookie_wrap{
        bottom: 16px;
    }
    .cookie_wrap .cookie_text{
        font-weight: 500;
    }
}