@import url('https://fonts.cdnfonts.com/css/lato-tr');

.ucookie-container {
    background-color: white;
    height: 16vh;
    position: fixed;
    bottom: 0;
    z-index: 999;
    margin: -8px;
    align-items: center;
    overflow: hidden;
}

.ucookie-container a {
    color: #ff5200;
    font-family: 'Lato TR', sans-serif;
    font-size: .813em;
    line-height: 1.5;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

/* Text Group */
.ucookie-text-group {
    width: 65%;
    font-family: 'Lato TR', sans-serif;
    font-size: .813em;
    line-height: 1.5;
}

.ucookie-title {
    color: black;
    margin: 30px 0 -10px 20px;
}

.ucookie-policy-text {
    clear: both;
    text-align: left;
    color: black;
    margin: 10px 0 5px 20px;
}

/* Button Group */
.ucookie-button-group {
    width: 35%;
    text-align: center;
}

.ucookie-link {
    padding-right: 30px;
}

/* Modal */
#ucookie-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#ucookie-modal-container {
    background-color: white;
    width: 600px;
    padding: 0;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

#ucookie-modal-header {
    height: 60px !important;
    padding: 10px;
    display: flex;
    align-items: center;
    font-family: 'Lato TR', sans-serif;
    font-weight: 400;
    font-size: 23px;
    line-height: 25px;
    border-bottom: 1px solid whitesmoke;
}

#ucookie-modal-body {
    height: 460px;
    padding: 10px;
    overflow: auto;
    font-family: 'Lato TR', sans-serif;
    font-size: 13px;
    line-height: 25px;
    text-align: left;
    border-bottom: 1px solid whitesmoke;
}

/* Accordion */
.ucookie-accordion {
    max-width: 90%;
    margin: 0 auto;
}

.ucookie-accordion-header {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    display: block;
}

.ucookie-plus-icon {
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

.ucookie-accordion-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
}

.ucookie-active {
    display: block;
}

.ucookie-checkbox input[type="checkbox"] {
    display: none;
}

/* End Accordion */

/* Footer */
#ucookie-modal-footer {
    height: 60px;
    padding: 10px;
    text-align: right;
    font-family: 'Lato TR', sans-serif;
    border-bottom: 1px solid whitesmoke;
}

/* Button */
.ucookie-button {
    align-items: center;
    background-color: #bb0713;
    border: 0;
    border-radius: 3px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    max-width: 480px;
    min-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 3px;
    text-align: center;
    vertical-align: middle;
}

.ucookie-button:hover,
.ucookie-button:focus {
    background-color: #ff5200;
    color: #ffffff;
}

.ucookie-button:active {
    background: #ff5200;
    color: rgb(255, 255, 255, .7);
}

.ucookie-button:disabled {
    cursor: not-allowed;
    background: rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .3);
}

/* The switch - the box around the slider */
.ucookie-switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    float: right;
}

/* Hide default HTML checkbox */
.ucookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.ucookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.ucookie-slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .ucookie-slider {
    background-color: #ff5200;
}

.ucookie-checked {
    background-color: #5c5856 !important;
}

input:focus + .ucookie-slider {
    box-shadow: 0 0 1px #ff5200;
}

input:checked + .ucookie-slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* Rounded sliders */
.ucookie-slider.ucookie-round {
    border-radius: 17px;
}

.ucookie-slider.ucookie-round:before {
    border-radius: 50%;
}

#ucookie-modal-logo {
    text-align: right;
    height: 35px !important;
    padding: 10px;
    color: #808080;
    font-family: 'Lato TR', sans-serif;
    font-size: 10px;
}

#ucookie-logo {
    width: 70px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ucookie-container {
        display: unset !important;
    }

    .ucookie-button-group {
        width: 100% !important;
        margin: -25px 0 0 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ucookie-text-group {
        width: 98% !important;
    }

    .ucookie-title {
        font-weight: bold !important;
        margin: 20px 0 -10px 20px !important;
        font-size: 14px;
    }

    .ucookie-policy-text{
        font-size: 13px;
    }

    .ucookie-container a{
        font-size: 13px;
    }

    .ucookie-button {
        font-size: 13px;
        font-weight: 350;
        line-height: 15px;
        min-height: 35px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 3px;
    }

    .ucookie-link {
        font-size: 13px;
        padding-right: 10px;
        padding-bottom: 10px;
        white-space: normal;
        display: block;
    }

    .ucookie-modal-body {
        height: 575px !important;
    }
}

/*width: 290px - 380px*/

@media only screen and (min-height: 410px) and (max-height: 470px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 80vh !important;
    }
}

@media only screen and (min-height: 471px) and (max-height: 540px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 70vh !important;
    }
}

@media only screen and (min-height: 541px) and (max-height: 580px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 60vh !important;
    }
}

@media only screen and (min-height: 581px) and (max-height: 630px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 55vh !important;
    }
}

@media only screen and (min-height: 631px) and (max-height: 700px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 50vh !important;
    }
}

@media only screen and (min-height: 701px) and (max-height: 780px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 45vh !important;
    }
}

@media only screen and (min-height: 781px) and (min-width: 290px) and (max-width: 380px) {
    .ucookie-container {
        height: 40vh !important;
    }
}

/*width: 381px - 520px*/

@media only screen and (min-height: 310px) and (max-height: 370px) and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 85vh !important;
    }
}

@media only screen and (min-height: 371px) and (max-height: 440px) and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 70vh !important;
    }
}

@media only screen and (min-height: 441px) and (max-height: 510px) and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 60vh !important;
    }
}

@media only screen and (min-height: 511px) and (max-height: 580px) and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 50vh !important;
    }
}

@media only screen and (min-height: 581px) and (max-height: 650px) and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 45vh !important;
    }
}

@media only screen and (min-height: 651px) and (max-height: 720px) and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 40vh !important;
    }
}

@media only screen and (min-height: 721px)  and (min-width: 381px) and (max-width: 520px) {
    .ucookie-container {
        height: 35vh !important;
    }
}

/*width: 521px - 790px*/

@media only screen and (min-height: 260px) and (max-height: 340px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 85vh !important;
    }
}

@media only screen and (min-height: 341px) and (max-height: 410px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 65vh !important;
    }
}

@media only screen and (min-height: 411px) and (max-height: 490px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 55vh !important;
    }
}

@media only screen and (min-height: 491px) and (max-height: 550px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 45vh !important;
    }
}

@media only screen and (min-height: 551px) and (max-height: 650px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 40vh !important;
    }
}

@media only screen and (min-height: 651px) and (max-height: 730px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 35vh !important;
    }
}

@media only screen and (min-height: 731px) and (min-width: 521px) and (max-width: 790px) {
    .ucookie-container {
        height: 30vh !important;
    }
}

/*width: 791px - 950px*/

@media only screen and (min-height: 310px) and (max-height: 360px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 62vh !important;
    }
}

@media only screen and (min-height: 361px) and (max-height: 420px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 52vh !important;
    }
}

@media only screen and (min-height: 421px) and (max-height: 480px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 46vh !important;
    }
}

@media only screen and (min-height: 481px) and (max-height: 570px) and (min-width: 791px) and (max-width: 951px) {
    .ucookie-container {
        height: 41vh !important;
    }
}

@media only screen and (min-height: 571px) and (max-height: 650px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 36vh !important;
    }
}

@media only screen and (min-height: 651px) and (max-height: 760px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 31vh !important;
    }
}

@media only screen and (min-height: 761px) and (max-height: 880px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 27vh !important;
    }
}

@media only screen and (min-height: 881px) and (max-height: 1100px) and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 22vh !important;
    }
}

@media only screen and (min-height: 1101px)  and (min-width: 791px) and (max-width: 950px) {
    .ucookie-container {
        height: 18vh !important;
    }
}

/*width: 951px - 1250px*/

@media only screen and (min-height: 290px) and (max-height: 320px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 55vh !important;
    }
}

@media only screen and (min-height: 321px) and (max-height: 370px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 47vh !important;
    }
}

@media only screen and (min-height: 371px) and (max-height: 440px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 42vh !important;
    }
}

@media only screen and (min-height: 441px) and (max-height: 520px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 37vh !important;
    }
}

@media only screen and (min-height: 521px) and (max-height: 625px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 32vh !important;
    }
}

@media only screen and (min-height: 626px) and (max-height: 820px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 25vh !important;
    }
}

@media only screen and (min-height: 821px) and (max-height: 1100px) and (min-width: 951px) and (max-width: 1250px) {
    .ucookie-container {
        height: 22vh !important;
    }
}

/*width: 1251px - 1475px*/

@media only screen and (min-height: 270px) and (max-height: 300px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 50vh !important;
    }
}

@media only screen and (min-height: 301px) and (max-height: 361px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 45vh !important;
    }
}

@media only screen and (min-height: 361px) and (max-height: 430px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 40vh !important;
    }
}

@media only screen and (min-height: 431px) and (max-height: 500px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 35vh !important;
    }
}

@media only screen and (min-height: 501px) and (max-height: 620px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 30vh !important;
    }
}

@media only screen and (min-height: 621px) and (max-height: 800px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 25vh !important;
    }
}

@media only screen and (min-height: 801px) and (max-height: 1100px) and (min-width: 1251px) and (max-width: 1475px) {
    .ucookie-container {
        height: 20vh !important;
    }
}