/* new cookie */
.sec_cookie {
    position: fixed;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    padding: 20px 30px;
    vertical-align: middle;
    z-index: 999;
    display: inline-block;
    margin: 0 auto;
    max-width: 1220px;
    bottom: 0;
    box-shadow: 0px 4px 28.5px 13px rgba(0, 1, 1, 0.14);
    border-radius: 6px;
    animation: sec_cookie 1s ease 200ms backwards;
}

#sec_cookie {
    display: none;
}

@keyframes sec_cookie {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}

.sec_cookie.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.sec_cookie p {
    font-size: 14px;
    line-height: 24px;
    color: #25273e;
    font-weight: 400;
    margin-bottom: 0px;
}

.sec_cookie p a,
.cookie_modal p a {
    color: #df7a5e;
    text-decoration: underline;
}

.sec_cookie .row {
    margin-top: 20px;
}

.sec_cookie .customize_cookie {
    min-width: 140px;
    min-height: 30px;
    border-radius: 35px;
    background-color: #fff;
    border: 1px solid #3d405a;
    font-size: 14px;
    line-height: 24px;
    color: #040404;
    font-weight: 400;
    box-shadow: none;
}

.sec_cookie .customize_cookie:hover {
    background-color: #3d405a;
    color: #fff;
    border: 1px solid #3d405a;
    box-shadow: none;
}

.sec_cookie .accept_reject {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.sec_cookie .common_cookie {
    min-width: 140px;
    min-height: 30px;
    border-radius: 30px;
    background-color: #3d405a;
    font-size: 14px;
    line-height: 24px;
    color: #f3f3f5;
    font-weight: 600;
    box-shadow: none;
}

.sec_cookie .common_cookie:hover {
    background-color: #fff;
    border: 1px solid #3d405a;
    color: #112d4b;
    box-shadow: none;
}

.cookie_modal {
    z-index: 99999;
}

.cookie_modal h5,
.heading-five {
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.cookie_modal h6,
.heading-six {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 700;
    display: block;
}

.cookie_modal p {
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    font-weight: 400;
    text-align: justify;
}

.cookie_modal .allow {
    min-width: 175px;
    min-height: 45px;
    border-radius: 30px;
    background-color: #3d405b;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Roboto";
    box-shadow: none;
}

.cookie_modal .allow:hover,
.cookie_modal .allow:focus {
    background-color: #fff;
    border: 1px solid #3d405a;
    color: #112d4b;
    box-shadow: none;
}

.cookie_modal .confirm {
    width: 240px;
    height: 50px;
    border-radius: 30px;
    background-color: #3d405b;
    font-size: 16px;
    line-height: 30px;
    color: #f3f3f5;
    font-weight: 700;
    border: 1px solid #3d405a;
    box-shadow: none;
}

.cookie_modal .confirm:hover,
.cookie_modal .confirm:focus {
    background-color: #fff;
    border: 1px solid #3d405a;
    color: #112d4b;
    box-shadow: none;
}

.cookie_modal .modal-body {
    padding: 2rem 1.5rem;
}

.cookie_modal .modal-content {
    border-radius: 10px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
    background-color: #ffffff;
    border: 3px solid #ffffff;
}

.cookie_modal .btn-close {
    position: absolute;
    right: 0px;
    top: 10px;
    background: url('../images/ac-cancel.png');
    width: 24px;
    height: 24px;
    border: none;
    background-repeat: no-repeat;
    opacity: 1;
}

.cookie_modal .accordion-button {
    border-radius: 10px;
    background-color: transparent;
    width: 82%;
    border: none;
    font-size: 18px;
    line-height: 26px;
    color: #112d4b;
    font-weight: 400;
    min-height: 45px;
    position: relative;
    padding-left: 65px;
}

.cookie_modal .accordion-button:hover,
.cookie_modal .accordion-button:focus {
    box-shadow: none;
}

.cookie_modal .accordion-button:not(.collapsed) {
    color: #112d4b;
    background-color: transparent;
    box-shadow: none;
}

.cookie_modal .accordion-button::before {
    content: "";
    background-image: url('../images/ac-plus.png');
    position: relative;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 20px;
}

.cookie_modal .accordion-button:not(.collapsed)::before {
    content: "";
    background-image: url('../images/ac-minus.png');
    width: 25px;
    height: 25px;
    position: absolute;
    left: 20px;
}

.cookie_modal h2 {
    margin-bottom: 0px;
}

.cookie_modal .accordion-header {
    position: relative;
    background-color: transparent;
    display: flex;
    align-items: center;
    border-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.cookie_modal .accordion-body {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 25px;
    color: #333333;
    font-weight: 400;
    border: 1px solid #f3f3f3;
    background-color: #f4f4f6;
    border-radius: 0px 0px 10px 10px;
    border-top: 1px solid #e1e1e1;
    text-align: justify;
}

.cookie_modal .accordion-body a {
    text-decoration: underline;
}

.cookie_modal .accordion-item {
    border-radius: 10px;
    background-color: #f4f4f6;
    border: 0px solid rgba(63, 153, 134, 0.23);
    margin-bottom: 10px;
}

.pp-text-right {
    text-align: right;
}

.cookie_modal .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion-button::after {
    display: none;
}

.toggle {
    cursor: pointer;
    display: inline-block;
    width: 12%;
}

.pve {
    display: inline-block;
    width: 12%;
    font-size: 13px;
    color: #313961;
}

.toggle-switch {
    display: inline-block;
    background: #e5e5e6;
    border-radius: 30px;
    width: 100px;
    height: 45px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
    border: 1px solid #e3aea3;
}

.toggle-switch:before,
.toggle-switch:after {
    content: "";
}

.toggle-switch:before {
    display: block;
    background: #e3b0a2;
    border-radius: 50%;
    box-shadow: none;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}

.toggle:hover .toggle-switch:before {
    background: #e3b0a2;
    box-shadow: none;
}

.toggle-checkbox:checked+.toggle-switch {
    background: #e5e5e6;
    border: 1px solid #3d3f59;
}

.toggle-checkbox:checked+.toggle-switch:before {
    left: 60px;
    background: #3e3e5a;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

/**vendorlist-div**/
.vendorlist-div {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 35px;
    height: 93%;
    background-color: #fff;
    bottom: auto;
    overflow: auto;
    opacity: 0;
    z-index: -1;
    /* transform: translateY(100%);
transition: all 500ms ease-out; */
}

.vendorlist-div.active {
    opacity: 1;
    z-index: 1;
    /* transform: translateY(0%);
transition-delay: 1000ms; */
}

.cookie_modal .vendorlist-div .accordion-body {
    background-color: #fff;
    /* max-height: 340px; */
    height: 100%;
    overflow: auto;
}

.vback {
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 1px solid #df7a5e;
}

.vback svg {
    height: 12px;
    width: 12px;
}

.vendorlist-div table {
    background-color: #efeff1;
    margin-bottom: 0px;
}

.vendorlist-div .table-responsive {
    background-color: #efeff1;
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.vendorlist-div table tr td {
    border: 0px;
    font-size: 15px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    padding: 6px 15px;
}

.vendorlist-div table tr td:first-child {
    width: 18%;
    font-weight: 500;
    color: #000;
}

.checktgl {
    cursor: pointer;
    display: flex;
    width: 12%;
    justify-content: right;
}

.checktgl input[type=checkbox] {
    position: relative;
    border: 2px solid #df7a5e;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 26px;
    width: 26px;
    -webkit-appearance: none;
    opacity: .5;
}

.checktgl input[type=checkbox]:hover {
    opacity: 1;
}

.checktgl input[type=checkbox]:checked {
    background-color: #df7a5e;
    opacity: 1;
}

.checktgl input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #f4f4f6;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.checktgl input[type=checkbox]:checked:before {
    border: solid #fff;
    border-width: 0 2px 2px 0;
}


@media screen and (min-width:1200px) {
    .cookie_modal .modal-dialog {
        max-width: 750px;
    }
}


@media(min-width:992px) and (max-width:1199px) {
    .cookie_modal .modal-dialog {
        max-width: 750px;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .cookie_modal .modal-dialog {
        max-width: 750px;
    }
}

@media(max-width:998px) {
    .sec_cookie .accept_reject {
        justify-content: center;
        margin-top: 0px;
    }

    .cookie_modal .vendorlist-div .accordion-body {
        max-height: inherit;
    }

    .sec_cookie p {
        font-size: 12px;
        line-height: 20px;
    }

    .sec_cookie .common_cookie {
        font-size: 14px;
        line-height: 20px;
        min-width: 140px;
        min-height: 40px;
    }

    .sec_cookie .customize_cookie {
        min-width: 155px;
        min-height: 40px;
        font-size: 14px;
        line-height: 24px;
    }

    .cookie_modal h5,
    .heading-six {
        font-size: 14px;
        line-height: 22px;
    }

    .cookie_modal p {
        font-size: 14px;
        line-height: 26px;
    }

    .cookie_modal .accordion-button {
        font-size: 14px;
        line-height: 26px;
        padding-right: 15px;
        padding-left: 50px;
        width: 80%;
    }

    .cookie_modal .accordion-button:not(.collapsed)::before,
    .cookie_modal .accordion-button::before {
        background-size: 75%;
        background-repeat: no-repeat;
    }

    .toggle-switch {
        width: 55px;
        height: 30px;
    }

    .toggle-checkbox:checked+.toggle-switch:before {
        left: 30px;
    }

    .toggle-switch:before {
        width: 20px;
        height: 20px;
    }

    .cookie_modal .allow {
        font-size: 16px;
        line-height: 24px;
    }

    .cookie_modal .confirm {
        min-width: 290px;
        font-size: 16px;
        line-height: 24px;
    }

    .cookie_modal .slider {
        left: 8px;
    }

    .cookie_modal .slider.round {
        width: 67px;
        height: 35px;
    }

    .cookie_modal .switch {
        width: 60px;
        height: 34px;
    }

    .cookie_modal .slider:before {
        height: 30px;
        width: 30px;
    }

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

@media(max-width:767px) {
    .sec_cookie .customize {
        text-align: center;
    }

    .sec_cookie {
        padding: 15px 15px;
    }

    .sec_cookie p {
        font-size: 12px;
        line-height: 22px;
    }

    .sec_cookie .row {
        margin-top: 10px;
    }

    .sec_cookie .accept_reject {
        margin-top: 10px;
    }
}