
#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 5%;
    max-width: fit-content;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    gap: 20px;
    background: rgba(13, 22, 36, 1);
    z-index: 1000;
}

#cookie_note div{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.flex-form{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

#agreement-data{
    width: 40px;
    margin: 20px 0;
}

#cookie_note p{
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
}

a.cookie_more{
    color: #fff;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cookie_more:after{
    content: "";
    background: url("../assets/icons/arrow-right-short.svg") no-repeat 100% 100%;
    background-size: cover;
    transform: rotate(180deg);
    display: block;
    width: 30px;
    height: 30px;
}

.cookie_accept{
    width: 160px;
    height: min-content;
    font-size: 18px;
    padding: 6px !important;
}

.showing-cook{
    justify-content: center;
    align-items: center;
}

#sign-up form fieldset:nth-last-of-type(1){
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
}
@media (max-width: 1400px){
    #cookie_note div{
        flex-direction: column;
    }
    #cookie_note{
        max-width: 90%;
    }
}
@media (min-width: 991px){
    #cookie_note.showing-cook{
        display: flex;
        justify-content: space-around;
    }
}

@media (max-width: 991px){
    #cookie_note{
        bottom: 125px;
    }
    #cookie_note div{
        flex-direction: column;
    }
    #cookie_note.showing-cook{
        display: flex;
        justify-content: end;
        align-items: center;
    }
    #cookie_note p{
        font-size: 17px;
        line-height: 21px;
    }
    #cookie_note{
        border-radius: 8px;
        gap: 15px;
    }
    .cookie_accept{
        font-size: 14px;
    }
    #cookie_note{
        padding: 14px;
    }
}

@media (max-width: 640px){
    #cookie_note p,
    a.cookie_more{
        font-size: 12px;
        line-height: 17px;
        text-align: start;
    }
    .cookie_more:after{
        width: 18px;
        height: 18px;
    }
    #cookie_note.showing-cook {
        display: flex;
        justify-content: end;
        flex-direction: row;
        align-items: end;
    }
    .cookie_accept{
        width: 100%;
        padding: 10px !important;
    }
    #cookie_note div{
        align-items: self-start;
    }
}