.cookie_body_dialog{
            display: none;
            position: fixed;
            left:0;
            bottom: 0;
            z-index: 999;
            height: auto;
            width: calc(100% - 16px);
            font-size: 15px;
            line-height: 22px;
            max-width: 400px;
            background: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,.15);
            border-radius: 10px;
            transition: all .5s ease;
        }
        .cookie_body_dialog *{
            padding: 0;
            margin: 0;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }
        .cookie_body{
            align-items: flex-start;
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            position: relative;
        }
        .cookie_body_dialog_close{
            position: absolute;
            right: -8px;
            top: -8px;
            z-index: 2;
            width: 24px;
            height: 24px;
            padding: 4px;
            display:flex;
            display:-ms-flexbox;
            display:-webkit-flex;
            justify-content:center;
            -ms-justify-content:center;
            -webkit-justify-content:center;
            align-items: center;
            -webkit-align-items: center;
            -ms-align-items:center;
            cursor: pointer;
            background: #fff;
            box-shadow: 0 0 3px rgba(0,0,0,.3);
            border-radius: 50%;
            
        }
        .cookie_body_dialog_close svg{
            display: block;
            width: 16px;
            height: 16px;
        }
     
        .cookie_content_bars{
            width: 100%;
            display:flex;
            display:-ms-flexbox;
            display:-webkit-flex;
            border-bottom: 1px solid #d6d6d6;
        }
        .cookie_content_bars .item{
            width: calc(100% / 3);
            color: #141414;
            font-weight: 600;
            height: 100%;
            outline-offset: -5px;
            padding: 1em;
            text-align: center;
            white-space: nowrap;
            cursor: pointer;
            border-bottom: 2px solid transparent;
        }
        .cookie_content_bars .item.hover{
            border-color: transparent;
            border-bottom: 2px solid #1032cf;
            color: #1032cf;
        }

        .cookie_content_tabs{
            width: 100%;
        }

        .cookie_content_tabs_item{
            display: none;
            padding: 1.3em;
            height: 100%;
        }
        .cookie_content_tabs_item1_con{
            height: 100%;
            display: flex;
            flex-direction: column;
            height: auto;
            overflow: auto;
            width: 100%;
        }
        .cookie_content_tabs_item_text{
            font-size: 12px;
        }

        .cookie_content_tabs_item1_con_scroll{
            overflow-x: hidden;
            overflow-y: auto;
            height: 100%;
            max-height: 60vh;
        }

        .cookie_content_tabs_item1_con_scroll:first-of-type{
            scrollbar-track-color: #f2f2f2;
            scrollbar-face-color: #141414;
            scrollbar-color: #141414 #f2f2f2;
            scrollbar-width: thin;
        }
        .cookie_content_tabs_item1_con_scroll::-webkit-scrollbar {width:5px;background:#fff;}

        .cookie_content_tabs_item_title{
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cookie_content_tabs_item_list_item{
            padding: 1.125em 0.5em 1.5em;
            border-bottom: 1px solid #d6d6d6;
        }
        .cookie_content_tabs_item_list_item_top{
            display:flex;
            display:-ms-flexbox;
            display:-webkit-flex;
            justify-content:space-between;
            -ms-justify-content:space-between;
            -webkit-justify-content:space-between;
            align-items: center;
            -webkit-align-items: center;
            -ms-align-items:center;
        }

        .cookie_content_tabs_item_list_item_top_title{
            width: calc(100% - 57px);
            font-weight: bold;
        }
        .cookie_content_tabs_item_list_item_top_btn{
            display: flex;
            flex-shrink: 0;
            height: 20px;
            position: relative;
            width: 40px;
            padding: 3px;
            background: #141414;
            border-radius: 20px;
            cursor: pointer;
            transition:all 0.5s;
            -webkit-transition:all 0.5s;
        }
        .cookie_content_tabs_item_list_item_top_btn::before{
            content: "";
            display: block;
            border-radius: 8px;
            content: "";
            height: 14px;
            transition: transform .4s;
            width: 20px;
            background: #fff;
            transform: translateX(0);
            transition:all 0.5s;
            -webkit-transition:all 0.5s;
        }

        .cookie_content_tabs_item_list_item_top_btn.disabled{
            justify-content:flex-end;
            -ms-justify-content:flex-end;
            -webkit-justify-content:flex-end;
            cursor: no-drop;
            background: #d6d6d6;
        }
        .cookie_content_tabs_item_list_item_top_btn.active{
            justify-content:flex-end;
            -ms-justify-content:flex-end;
            -webkit-justify-content:flex-end;
            background: #1032cf;
            transition:all 0.5s;
            -webkit-transition:all 0.5s;
        }
        /* .cookie_content_tabs_item_list_item_top_btn.active::before{
            transform: translateX(26px);
            transition:all 0.5s;
            -webkit-transition:all 0.5s;
        } */
        

        .cookie_content_tabs_item_list_item_top_down{
            padding-top: 1em;
        }
        

        .cookie_content_footer{
            width: 100%;
            padding: 1em 1.5em;
            border-top: 1px solid #d6d6d6;
        }
        .cookie_content_footer_item{
            display: none;
        }
        .cookie_content_btns{
            width: 100%;
            display:flex;
            display:-ms-flexbox;
            display:-webkit-flex;
            justify-content:space-between;
            -ms-justify-content:space-between;
            -webkit-justify-content:space-between;
            align-items: center;
            -webkit-align-items: center;
            -ms-align-items:center;
        }

        .cookie_content_btn{
            display:flex;
            display:-ms-flexbox;
            display:-webkit-flex;
            justify-content:center;
            -ms-justify-content:center;
            -webkit-justify-content:center;
            align-items: center;
            -webkit-align-items: center;
            -ms-align-items:center;
            width: 33%;
            background: #1032cf;
            padding: 1em 0;
            color: #fff;
            font-weight: bold;
            border-radius: 0.25em;
            cursor: pointer;
            transition:all 0.5s;
            -webkit-transition:all 0.5s;
        }
        /*.cookie_content_btn::after{*/
        /*    content: "";*/
        /*    border-color: #ffffff;*/
        /*    border-style: solid;*/
        /*    border-width: 0.15em 0.15em 0 0;*/
        /*    display: inline-block;*/
        /*    height: 0.5em;*/
        /*    margin-left: 1em;*/
        /*    transform: rotate(45deg);*/
        /*    vertical-align: baseline;*/
        /*    width: 0.5em;*/
        /*}*/
        .cookie_content_btn:hover{
            opacity: 0.85;
            transition:all 0.5s;
            -webkit-transition:all 0.5s;
        }



        @media screen and (max-width: 768px){
            .cookie_body_dialog{
                left: 8px;
                bottom: 42px;
            }
            /*.cookie_content_btns{*/
            /*    flex-direction: column;*/
            /*    -webkit-flex-direction: column;*/
            /*    -ms-flex-direction: column;*/
            /*}*/
            .cookie_content_btn{
                /*margin-bottom: 0.5em;*/
            }

        }
        }