﻿html,body{
    margin:0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
}

.kvkk-banner{
    background: #aaa;
    width: 100%;
    display: none; /*flex*/
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px -2px 10px #00000044;
    position: fixed;
    bottom: 0;
}
.kvkk-banner .kvkk-container {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.kvkk-banner .kvkk-container .kvkk {
    padding: 20px 7px;
    font-size: 15px;
    color: white;
}

.kvkk-banner .kvkk-container .kvkk a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}
.kvkk-banner .kvkk-container img {
    height: 20px;
}

.send{
    border:1px solid white;
    border-radius: 20px;
    padding: 10px 20px;
    color:white; 
    font-weight: bold;

}

@media screen and (max-width: 990px) and (min-width:770px) {
    .kvkk-banner .kvkk-container img {
        display: none;
    }
    .kvkk-banner .kvkk-container {
        flex-direction: column;
        width: 85%;
    }
    .send{
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 770px) {
    .kvkk-banner .kvkk-container img {
        display: none;
    }
    .kvkk-banner .kvkk-container {
        flex-direction: column;
        width: 90%;
    }
    .send{
        margin-bottom: 10px;
        padding: 10px 60px;
    }
}