
:root {
    --cookie-theme1: #BF202F;
    --cookie-theme2: #BE1E2D;
    --cookie-checkbox: #BF202F;
    --cookie-checkbox-disabled: linear-gradient(0deg, rgba(191, 32, 47, 0.20) 0%, rgba(191, 32, 47, 0.20) 100%), rgba(217, 217, 217, 0.20);
    --cookie-banner-background: #FFF;
    --cookie-font-color: #000;
}

section.cookie_policy {
    display: block;
    position: fixed;
    bottom: -1px;
    left: 0px;
    width: 100%;
    height: fit-content;
    z-index: 42069;
}

    section.cookie_policy * {
        transition: all .2s ease-in;
        box-sizing: border-box;
        letter-spacing:unset !important;
    }

    section.cookie_policy .cookie_popup {
        display: none;
    }

    section.cookie_policy .cookie_banner {
        display: none;
    }

    section.cookie_policy button {
        cursor: pointer;
    }

    section.cookie_policy.cookie_banner_opened .cookie_banner {
        height: fit-content;
        display: flex;
        padding: 20px 36px;
        background-color: #FFF;
        /* border-radius: 20px 20px 0px 0px; */
        background: var(--Brand-Primary-Dark, #72161D);
        box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.25);
        align-items: center;
        justify-content: space-between;
    }

    section.cookie_policy .cookie_banner .lefty {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 15px;
        width: calc(100% - 229px);
        /* max-width: 896px; */
    }

        section.cookie_policy .cookie_banner .lefty img {
            width: 64px;
            height: 64px;
        }

        section.cookie_policy .cookie_banner .lefty h3 {
            color: #FFF;
            font-family: 'sen-regular';
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
            line-height: 150%;
            text-transform: capitalize;
        }

        section.cookie_policy .cookie_banner .lefty p {
            color: #FFF;
            font-family: 'AnekLatin-Regular';
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            line-height: 150%;
        }

        section.cookie_policy .cookie_banner .lefty a {
            color: #FFF;
            font-family: 'AnekLatin-Regular';
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            line-height: 150%;
            text-decoration-line: underline;
        }

    section.cookie_policy .cookie_banner .righty {
        display: flex;
        width: fit-content;
        column-gap: 15px;
        width: 380px;
        justify-content: flex-end;
        height: fit-content;
    }

        section.cookie_policy .cookie_banner .righty button {
            border: 1px solid var(--cookie-theme2);
            background: var(--cookie-theme2);
            color: #fff;
            text-align: center;
            font-family: 'sen-regular';
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 130%; /* 18.2px */
            letter-spacing: 0.56px;
            padding: 12px 20px;
            width: fit-content;
            height: fit-content;
            text-transform: uppercase;
        }

            section.cookie_policy .cookie_banner .righty button.customize {
                border: 1px solid var(--White, #FFF);
                background: var(--Brand-Primary-Dark, #72161D);
            }

            section.cookie_policy .cookie_banner .righty button:hover {
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--cookie-theme2);
                border: 1px solid #72161D;
            }

            section.cookie_policy .cookie_banner .righty button.customize:hover {
                border: 1px solid var(--White, #FFF);
                background: rgba(255, 255, 255, 0.10);
            }

    section.cookie_policy .cookie_popup {
        display: none;
    }

    section.cookie_policy.cookie_popup_opened .cookie_popup {
        display: flex;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        align-items: center;
        z-index: 42042069;
        justify-content: center;
    }

    section.cookie_policy .cookie_popup .cookie_popup_bg {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 69;
        left: 0;
        top: 0;
        background: rgba(51, 51, 51, 0.15);
        backdrop-filter: blur(2px);
    }

    section.cookie_policy .cookie_popup .cookie_popup_window {
        width: 100%;
        height: auto;
        max-height: 100vh;
        position: relative;
        z-index: 420;
        max-width: 704px;
        background: var(--cookie-banner-background);
        box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25), 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
        padding: 19px 18px;
        border-radius: 0;
        overflow-y: auto;
    }

        section.cookie_policy .cookie_popup .cookie_popup_window .hed {
            display: flex;
            width: 100%;
            padding-bottom: 5px;
            align-items: flex-start;
            justify-content: space-between;
        }

        section.cookie_policy .cookie_popup .cookie_popup_window .title {
            display: flex;
            column-gap: 15px;
            justify-content: flex-start;
            align-items: center;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window .title img.two-cookies {
                display: block;
                width: 40px;
                height: 40px;
                object-fit: contain;
                object-position: center;
            }

            section.cookie_policy .cookie_popup .cookie_popup_window .title h2 {
                color: var(--cookie-font-color);
                font-family: 'sen-regular';
                font-size: 25px;
                font-style: normal;
                font-weight: 700;
                line-height: 120%;
                letter-spacing: 0.5px;
                height: fit-content;
                text-transform: capitalize;
                color: var(--cookie-theme1);
            }

        section.cookie_policy .cookie_popup .cookie_popup_window .hed .bak-arow {
            padding: 0px;
            width: 21px;
            height: 21px;
            /* border: 1px solid var(--cookie-theme1); */
            border: none;
            background: #FFF;
            border-radius: 0px;
            display: block;
            transform: none;
            box-shadow: none;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window .hed .bak-arow img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: contain;
                /* transform: rotate(45deg); */
            }

            section.cookie_policy .cookie_popup .cookie_popup_window .hed .bak-arow:hover {
                /*border: 1px solid #F99B1C;*/
            }

                section.cookie_policy .cookie_popup .cookie_popup_window .hed .bak-arow:hover img {
                 
                    filter: brightness(0) saturate(100%) invert(11%) sepia(33%) saturate(3421%) hue-rotate(332deg) brightness(93%) contrast(96%);
                   
                }



        section.cookie_policy .cookie_popup .cookie_popup_window .hed .detail-button {
            border: 1px solid var(--cookie-theme1);
            background: #FFF;
            padding: 10px 20px;
            width: fit-content;
            height: fit-content;
            font-weight: 600;
            line-height: 100%;
            color: var(--cookie-theme1);
        }

            section.cookie_policy .cookie_popup .cookie_popup_window .hed .detail-button:hover {
                border: 1px solid var(--cookie-theme2);
                color: var(--cookie-theme2);
            }

        section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description {
            padding-top: 6px;
            padding-bottom: 22px;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description .text * {
                color: var(--cookie-font-color);
                font-family: 'sen-regular';
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 160%; /* 19.2px */
                letter-spacing: 0.24px;
            }

            section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description .text {
                padding-bottom: 10px;
            }

            section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description .yes-no-cookie {
                column-gap: 15px;
                display: flex;
            }

            section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description button {
                border-radius: 0;
                color: #fff;
                text-align: center;
                font-family: 'sen-regular';
                font-size: 12px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
                letter-spacing: 0.24px;
                padding: 10px 20px;
                box-shadow: none;
                transform: none;
                width: fit-content;
                height: fit-content;
                border: 1px solid var(--cookie-theme1);
                background: var(--cookie-theme2);
            }

                section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description button:hover {
                    border: 1px solid #BE1E2D;
                    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #BE1E2D;
                    color: #FFF;
                }

        section.cookie_policy .cookie_popup .cookie_popup_window .cookie-form-cont {
            padding-top: 22px;
            padding-bottom: 0;
            height: fit-content;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window .cookie-form-cont h3 {
                color: var(--cookie-font-color);
                font-family: 'sen-regular';
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                letter-spacing: 0.28px;
                margin-bottom: 10px;
                text-transform: capitalize;
            }

            section.cookie_policy .cookie_popup .cookie_popup_window .cookie-form-cont .text {
                padding-bottom: 7px;
            }

                section.cookie_policy .cookie_popup .cookie_popup_window .cookie-form-cont .text * {
                    color: var(--cookie-font-color);
                    font-family: 'sen-regular';
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 160%; /* 19.2px */
                    letter-spacing: 0.24px;
                }

                section.cookie_policy .cookie_popup .cookie_popup_window .cookie-form-cont .text a {
                    text-decoration: underline;
                    font-weight: 600;
                    color: var(--cookie-theme1);
                    );
                }

        section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            height: fit-content;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .form-fields {
                height: fit-content;
                max-height: 295px;
                overflow-y: auto;
                overflow-y: overlay;
                padding-top: 7px;
                padding-right: 7px;
                padding-left: 0;
                margin-bottom: 10px;
                width: 100%;
                scrollbar-gutter: stable;
            }

            section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper {
                width: 100%;
                padding-bottom: 34px;
            }

                section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    /* padding-bottom: 34px; */
                }

                section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row2 {
                    height: 0px;
                    padding: 0px;
                    overflow: hidden;
                }

                section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 p {
                    color: var(--cookie-font-color);
                    font-family: 'sen-regular';
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: normal;
                    letter-spacing: 0.4px;
                }

                section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 .righty {
                    display: flex;
                    column-gap: 15px;
                    align-items: center;
                }

                    section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 .righty button {
                        padding: 6px 3px;
                        padding-right: 30px;
                        box-shadow: none;
                        border: none;
                        transform: none;
                        background-color: transparent;
                        color: var(--cookie-font-color);
                        text-align: right;
                        font-family: 'sen-regular';
                        font-size: 12px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 100%;
                        letter-spacing: 0.24px;
                        width: fit-content;
                        word-break: keep-all;
                        white-space: nowrap;
                        position: relative;
                        word-break: keep-all;
                        white-space: nowrap;
                    }

                        section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 .righty button:after {
                            content: '';
                            background-image: url('/Files/templates/0-site/down-arow.svg');
                            position: absolute;
                            right: 5px;
                            top: 8px;
                            background-position: center;
                            background-size: contain;
                            width: 14px;
                            height: 8px;
                        }

                section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper.desc-opened .row1 .righty button:after {
                    transform: rotate(180deg);
                }

        section.cookie_policy .cookie_popup .cookie_popup_window button.save-pref {
            background-color: #FFF;
            border: 1px solid var(--cookie-theme1);
            color: var(--cookie-theme1);
            box-shadow: none;
            font-size: 14px;
            width: fit-content;
            padding: 12px 20px;
            font-family: 'sen-regular';
            font-weight: 700;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window button.save-pref:hover {
                /*border: 1px solid #252525;*/
                background: linear-gradient(0deg, rgba(191, 32, 47, 0.20) 0%, rgba(191, 32, 47, 0.20) 100%), rgba(217, 217, 217, 0.20);
                /*color: #FFF;*/
            }

    section.cookie_policy .custom_checkbox {
        margin: 0;
        width: 73px;
        height: 38px;
        background: transparent;
        /* border: 1px solid #999; */
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        /* border-radius: 25px; */
        position: relative;
        box-shadow: none;
        =: hidden;
        cursor: pointer;
        /* box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset; */
    }

        section.cookie_policy .custom_checkbox .checkbox-bg {
            content: '';
            color: transparent;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            z-index: 1;
            height: 100%;
            background-color: #D9D9D9;
            border-radius: 60px;
            background: #D9D9D9;
            /* box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset; */
            border-radius: 60px;
            background: #D9D9D9;
            box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
        }


        section.cookie_policy .custom_checkbox label {
            display: block;
            width: 30px;
            height: 30px;
            border: none;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 50%;
            -webkit-transition: all .4s ease;
            -moz-transition: all .4s ease;
            -o-transition: all .4s ease;
            -ms-transition: all .4s ease;
            transition: all .4s ease;
            cursor: pointer;
            position: absolute;
            top: 4px;
            left: 3px;
            z-index: 69;
            background: #fff;
            /* border: 1px solid #999; */
            filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
        }

        section.cookie_policy .custom_checkbox input[type=checkbox] {
            position: relative;
            z-index: 420;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

            section.cookie_policy .custom_checkbox input[type=checkbox]:checked + label {
                left: 38px;
            }

            section.cookie_policy .custom_checkbox input[type=checkbox]:checked ~ .checkbox-bg {
                background-color: var(--cookie-checkbox);
            }

            section.cookie_policy .custom_checkbox input[type=checkbox]:disabled ~ .checkbox-bg {
                background: var(--cookie-checkbox-disabled);
            }


            section.cookie_policy .custom_checkbox input[type=checkbox]:hover ~ .checkbox-bg {
                filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.25));
            }

            section.cookie_policy .custom_checkbox input[type=checkbox]:disabled:hover ~ .checkbox-bg {
                filter: none;
            }


    section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper.desc-opened .row2 {
        padding-top: 15px;
        height: fit-content;
        /* padding-bottom: 15px; */
    }

    section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row2 p {
        font-family: 'sen-regular';
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.24px;
        color: #000;
    }
@media (max-width: 1024px) {


    section.cookie_policy .cookie_banner .lefty h3 {
        font-size: 20px;
    }

    section.cookie_policy .cookie_banner .lefty p {
        font-size: 14px;
    }
    section.cookie_policy .cookie_banner .lefty a {
  
        font-size: 14px;
      
    }

    section.cookie_policy.cookie_banner_opened .cookie_banner {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 16px;
    }
    section.cookie_policy .cookie_banner .lefty {
        flex-direction: row-reverse;
        width: 100%;
    }
    section.cookie_policy .cookie_banner .righty {

        justify-content: flex-start;
        height: fit-content;
    }


    section.cookie_policy .cookie_banner .righty button {
    }
}
@media (max-width: 834px) {

    section.cookie_policy .cookie_popup .cookie_popup_window .title {
        width: calc(100% - 25px);
        align-items: flex-start;
    }

        section.cookie_policy .cookie_popup .cookie_popup_window .title h2 {
            font-size: 20px;
        }

    section.cookie_policy .cookie_popup .cookie_popup_window .cookie-description .text * {
        font-size: 10.5px;
    }

    section.cookie_policy .cookie_popup .cookie_popup_window .cookie-form-cont .text * {
        font-size: 10px;
    }

    section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 p {
        font-size: 15px;
        letter-spacing: 0.3px;
    }

    section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 .righty {
        column-gap: 6px;
    }

        section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 .righty button {
            font-size: 8px;
            padding-right: 21px;
        }

            section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row1 .righty button:after {
                width: 9px;
                height: 5px;
                top: 7px;
            }

    section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row2 {
        padding-top: 10px;
    }

        section.cookie_policy .cookie_popup .cookie_popup_window form#cookie-custom-form .input-wrapper .row2 p {
            font-size: 10px;
        }

    section.cookie_policy .custom_checkbox {
        width: 48px;
        height: 25px;
    }

        section.cookie_policy .custom_checkbox .checkbox-bg {
            content: '';
            color: transparent;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            z-index: 1;
            height: 100%;
            background-color: #D9D9D9;
            border-radius: 60px;
            background: #D9D9D9;
            /* box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25) inset; */
            border-radius: 39.474px;
            box-shadow: 0px 0.658px 2.632px 0px rgba(0, 0, 0, 0.25) inset;
        }


        section.cookie_policy .custom_checkbox label {
            width: 21px;
            height: 21px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 50%;
            top: 2px;
            left: 3px;
            z-index: 69;
            filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
        }

        section.cookie_policy .custom_checkbox input[type=checkbox]:checked + label {
            left: 24px;
        }

    section.cookie_policy .cookie_popup .cookie_popup_window button.save-pref {
        font-size: 14px;
        letter-spacing: 0.28px;
    }



    section.cookie_policy .cookie_banner .lefty {
        width: 100%;
        align-items: flex-start;
    }

    section.cookie_policy .cookie_banner .righty {
/*        width: 100%;

        padding-left: 0;
        justify-content: center;*/
    }
   

    section.cookie_policy .cookie_banner .righty button {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    section.cookie_policy .cookie_banner .lefty h3 {
        margin-bottom: 8px;
    }
    section.cookie_policy .cookie_banner .lefty p {
        width: 125%;
    }
}
@media (max-width: 400px) {
    section.cookie_policy .cookie_banner .lefty p {
        width: 135%;
    }
}