.cookie_new *,
.cookie_new {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.cookie_popup_wrap{
    text-align: left;    
}

.cookie_new button {
    margin: 5px 0;
    appearance: none;
    border: none;
    background: #f2f2f2;
    padding: 0.7em 1.1em;
    border: 1px solid #cecece;
    cursor: pointer;
    font-weight: 600
}

@media (max-width:350px) {
    .cookie_new button {
        padding: 0.7em 0.7em
    }
}

.cookie_new button:hover {
    background: #cecece
}

.cookie_new button.cookie_agree_all_btn {
    background: #44b736;
    border: none;
    color: #FFFFFF
}

.cookie_new button.cookie_agree_all_btn:hover {
    background: #389b2c
}

.cookie_new button.cookie_disagree_all_btn {
    background: #b73636;
    border: none;
    color: #FFFFFF
}

.cookie_new button.cookie_disagree_all_btn:hover {
    background: #982c2c
}

.cookie_new button + button {
    margin-left: 10px
}

.cookie_new .cookie_popup_wrap {
    display: none;
    position: fixed;
    z-index: 9999999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px
}

.cookie_new .cookie_popup_wrap_close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.cookie_new .cookie_popup_wrap .cookie_popup {
    background: #FFF;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    overflow-y: auto
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form > * {
    border-top: 1px solid #cecece
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form > *:first-child,
.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form > *:nth-child(2) {
    border-top: 0
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0
}

@media (max-width:510px) {
    .cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label {
        flex-direction: column-reverse;
        align-items: flex-end
    }
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label .cookie_checkbox_content {
    margin-left: 50px
}

@media (max-width:510px) {
    .cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label .cookie_checkbox_content {
        margin: 0
    }
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label .cookie_title {
    font-size: 1.2em;
    margin: 1em 0;
    font-weight: 700
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label p {
    font-size: 0.9em
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input {
    appearance: none;
    display: none
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input[disabled] + span {
    cursor: no-drop;
    opacity: 0.6
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input + span {
    position: relative;
    width: 70px;
    height: 35px;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid #cecece;
    cursor: pointer;
    background: #b73636;
    min-height: auto;
    padding: 0
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input + span:before {
    content: '';
    width: 33px;
    height: 33px;
    position: absolute;
    left: -1px;
    top: 0;
    border: 1px solid #cecece;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: #FFF;
    z-index: 9;
    box-shadow: 0 0 5px -2px #000000;
    cursor: inherit
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input + span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out;
    border-radius: 30px;
    background: transparent;
    transform: none;
    top: auto;
    border: none
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input:checked + span:before {
    left: calc(50% + 1px);
    border-color: #44b736;
    box-shadow: 0 0 0 1px #44b736 inset
}

.cookie_new .cookie_popup_wrap .cookie_popup .cookie_form label input:checked + span:after {
    background: #44b736
}

.cookie_new .cookie_content {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: auto;
    background: #FFF;
    z-index: 9999999999999999;
    padding: 20px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    max-width: 630px;
    text-align: center;
    display: none;
    width: 100%;
}

@media (max-width:350px) {
    .cookie_new .cookie_content {
        padding: 20px 10px;
        bottom: 10px;
        left: 10px;
        right: 10px
    }
}

.cookie_new .cookie_content.active {
    display: block
}

.cookie_new .cookie_content .cookie_title {
    font-size: 1.3em;
    font-weight: 700
}

.cookie_new .cookie_content .cookie_text {
    font-size: 0.9em;
    color: #5e5e5e
}

.cookie_new .cookie_content a.cookie_set_popup {
    color: inherit;
    text-decoration: underline;
    margin-top: 0.3em;
    font-size: 0.9em;
    display: inline-block
}

.cookie_new .cookie_content .cookie_button_wrap {
    display: flex;
    justify-content: center
}

.cookie_new.active_setting .cookie_popup_wrap {
    display: flex
}

.cookie_new.active_setting .cookie_content {
    display: none
}

.cookie_info_text_wrap{
    display: none;
}