﻿
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with transparency */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Adjust as needed */
    border-radius: 8px;
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .modal-content h4, .modal-content h5 {
        color: #333;
        font-weight: bold;
        margin-bottom: 15px;
        font-size:1rem;
        text-align: center;
    }

    .modal-content p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.cookie-setting {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    font-family: 'Gotham Rounded', sans-serif;
    color: #fff;
    background: #ad1c17;
    position: fixed;
    z-index: 9999;
    display: none; 
}

    .cookie-setting .container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .cookie-setting .title h2 {
        font-weight: bold;
    }

    .cookie-setting .title {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: bold;
        text-align: center;
        font-family: 'Gotham Rounded', sans-serif;
        font-weight: normal;
    }

.cookie-setting__buttons {
    display: flex;
    justify-content: space-between;
}

    .cookie-setting__buttons button {
        min-height: 38px;
        margin: 0 10px 0 0;
        padding: 8px 20px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-transform: uppercase;
        line-height: 1;
        font-size: 13px;
        font-weight: 600;
        color: #000;
        border: none;
        background: rgba(234, 234, 234, 1);
        transition: all 0.3s ease;
        border-radius: 5px;
        font-family: 'Gotham Rounded', sans-serif;
    }

        .cookie-setting__buttons button:hover {
            background-color: #558E2F;
            color:#ffffff;
        }

.modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: normal;
}

.btn-success {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: bold;
}

    .btn-success:hover {
        background-color: #218838;
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    font-family: 'Gotham Rounded', sans-serif;
    font-weight: bold;
}

    .btn-secondary:hover {
        background-color: #5a6268;
    }

.custom-control.custom-switch {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.custom-control-label {
    margin-left: 10px;
    font-weight: bold;
}

input[type="checkbox"] {
    width: 40px;
    height: 20px;
    position: relative;
    appearance: none;
    background: #ddd;
    outline: none;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s;
}

    input[type="checkbox"]:checked {
        background: #28a745;
    }

        input[type="checkbox"]:checked::before {
            left: 20px;
        }

    input[type="checkbox"]::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: white;
        transition: 0.3s;
    }
