/* new cookie */
.sec_cookie {
    position: fixed;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    padding: 20px 40px;
    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);
    /* background-color: #f3f3f5; */
    /* opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms; */
    animation: sec_cookie 1s ease 200ms backwards;
    /* opacity:1;
    transform: translateY(100%);
    transition: all 500ms ease-out; */
    }
    @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: 15px;
    line-height: 25px;
    color: #25273e;
    font-weight: 400;
    }
    .sec_cookie p a, .cookie_modal p a{
    color:#3f9986;
    text-decoration:underline;
    }
    .sec_cookie .row {
    margin-top: 25px;
    }
    
    .sec_cookie .customize_cookie {
    min-width: 140px;
    min-height: 40px;
    border-radius: 0px;
    background-color: #fff;
    border: 1px solid #3f9986;
    font-size: 16px;
    line-height: 26px;
    color: #3f9986;
    font-weight: 400;
    box-shadow: none;
    }
    
    .sec_cookie .customize_cookie:hover {
    background-color: #3f9986;
    color: #fff;
    border: 1px solid #3f9986;
    box-shadow:none;
    }
    
    .sec_cookie .accept_reject {
    display: flex;
    gap: 20px;
    justify-content: end;
    }
    
    .sec_cookie .common_cookie {
    min-width: 140px;
    min-height: 40px;
    border-radius: 0px;
    background-color: #3f9986;
    font-size: 16px;
    line-height: 26px;
    color: #f3f3f5;
    font-weight: 700;
    box-shadow: none;
    }
    
    .sec_cookie .common_cookie:hover {
    background-color: #fff;
    border: 1px solid #3f9986;
    color: #3f9986;
    box-shadow:none;
    }
    .cookie_modal {
    z-index: 99999;
    }
    .cookie_modal h5 {
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top:15px;
    }
    .cookie_modal h6 {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 700;
    margin-bottom:15px;
    }
    .cookie_modal p {
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    font-weight: 400;
    text-align: justify;
    margin-bottom:20px;
    }
    .cookie_modal .allow {
    min-width: 175px;
    min-height: 45px;
    border-radius: 0px;
    background-color: #3f9986;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    box-shadow:none;
    margin-bottom:20px;
    }
    .cookie_modal .allow:hover, .cookie_modal .allow:focus{
    background-color: #fff;
    border: 1px solid #3f9986;
    color: #3f9986;
    box-shadow:none;
    outline:none;
    }
    .cookie_modal .confirm {
    width: 240px;
    height: 50px;
    border-radius: 0px;
    background-color: #3f9986;
    font-size: 16px;
    line-height: 30px;
    color: #f3f3f5;
    font-weight: 700;
    border: 1px solid #3f9986;
    box-shadow: none;
    }
    .cookie_modal .confirm:hover, .cookie_modal .confirm:focus{
    background-color: #fff;
    border: 1px solid #3f9986;
    color: #3f9986;
    box-shadow: none;
    outline: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: 10px;
    top:5px;
    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: 100%;
    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: 24px;
    height: 24px;
    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 .panel-body a{
    text-decoration:underline;
    color:#3f9986;
    }
    .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:15%;
    }
    
    .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 #b2b2b3;
    }
    .toggle-switch:before, .toggle-switch:after {
    content: "";
    }
    .toggle-switch:before {
    display: block;
    background: #808080;
    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: #808080;
    box-shadow: none;
    }
    .toggle-checkbox:checked + .toggle-switch {
    background: #e5e5e6;
    border: 1px solid #3f9986;
    }
    .toggle-checkbox:checked + .toggle-switch:before {
    left: 60px;
    background: #3f9986;
    }
    .btn:hover, .btn:focus{
    outline:none;
    }
    .toggle-checkbox {
    position: absolute;
    visibility: hidden;
    }
    
    .toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
    }
    /**vendorlist-div**/
    .vendorlist-div{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 35px;
    height: 93%;
    background-color: #fff;
    bottom: auto;
    overflow: auto;
    opacity: 0;
    z-index: -1;
    width: 100%;
    padding: 0px 20px;
    /* 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: 0px solid #3f9986;
    text-decoration:none;
    color: #3f9986;
    font-size: 15px;
    }
    .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 #3f9986;
    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: #3f9986;
    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;
    }
    /**cookies-modal-panel**/
    #sec_cookie{
    display: none;
    }
    .cookie_modal .panel-title {
    display: flex;
    align-items:center;
    }
    .cookie_modal .panel-title>a {
    color: inherit;
    width: 85%;
    font-size: 17px;
    font-weight: 500;
    line-height: 36px;
    }
    .cookie_modal .pve {
    display: inline-block;
    width: 15%;
    font-size: 13px;
    color: #313961;
    }
    .cookie_modal .panel-default {
    border-color: #ededed;
    }
    .cookie_modal .panel-default .panel-heading {
    background: #f4f4f6;
    color: #000;
    border-radius: 0px;
    }
    .fa-minus1{
    background-image: url('/images/ac-minus.png');
    width:24px;
    height:24px;
    display: inline-block;
    vertical-align:middle;
    margin-right:5px;
    }
    .fa-plus1{
    background-image: url('/images/ac-plus.png');
    width:24px;
    height:24px;
    display: inline-block;
    vertical-align:middle;
    margin-right:5px;
    }
    .ac-back-ic{
    background: url('/images/ac-back.png') no-repeat 0 0;
    width: 12px;
    height: 20px;
    display: inline-block;
    margin-right:3px;
    vertical-align:middle;
    }
    /**cookies-modal-panel-closed**/
    
    
    
    
    @media screen and (min-width:1200px) {
        .cookie_modal .modal-dialog {
            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:1024px) {
        .sec_cookie .accept_reject {
            justify-content: center;
            margin-top:0px;
        }
        .cookie_modal .vendorlist-div .accordion-body{
            max-height: inherit;
        }
        /* .sec_cookie .customize {
            display: flex;
            justify-content: center;
        } */
    
        .sec_cookie p {
            font-size: 14px;
            line-height: 24px;
        }
    
        .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 {
            font-size: 16px;
            line-height: 25px;
        }
    
        .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);
        }
        .cookie_modal .panel-title>a{
            width:85%;
        }
        .toggle {
            width: 15%;
        }
    }
    @media(max-width:767px){
        .sec_cookie .customize{
            text-align:center;
        }
        .sec_cookie .accept_reject {
            margin-top:20px;
        }
        .cookie_modal .panel-title>a{
            font-size:14px;
        }
    
    }