/*cookies_wrapper css*/

.v-align {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.cookies_wrapper {
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1111;
    box-shadow: inset 1px 3px 10px 0px #00000021;
}
.cookies_wrapper .close {
    font-size: 20px;
    font-weight: 400;
    padding: 0 10px;
    position: absolute;
    top: 25px;
    right: 10px;
    outline: none;
    z-index: 11;
    cursor: pointer;
}
.cookies_wrapper .text_wrap {
    display: block !important;
}
.cookies_wrapper .text_wrap h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0px;
    margin-bottom: 5px;
    color: #10161A;
    font-size: 16px;
}
.cookies_wrapper .text_wrap p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    margin-bottom: 5px;
    color: #000;
}
.cookies_wrapper .copyright_links {}
.cookies_wrapper .copyright_links li {
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color: #000;
    margin-left: 0px;
    padding: 0px;
    display: inline-block;
    float: left;
    width: auto;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
}
.cookies_wrapper .copyright_links li:after {
    content: '|';
    margin: 0 10px;
}
.cookies_wrapper .copyright_links li:last-child::after {
    display: none;
}
.cookies_wrapper .copyright_links li a {
    color: #000;
    transition: all 0.2s ease;
}
.cookies_wrapper .copyright_links li a:hover {
    color: #ed5f34;
    transition: all 0.2s ease;
    font-weight: 600;
}
.rounded-btn-orange {
    border-radius: 100px;
    font-size: 16px;
    padding: 10px 30px;
    display: inline-block;
    color: #ffffff;
    background-color: #ed5f34;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border: none;
}
.rounded-btn-orange:focus {
    color: #fff;
}
.rounded-btn-orange::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-left: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 300px;
    height: 300px;
    line-height: 20em;
    left: 50%;
    margin-left: -150px;
    text-align: center;
    -webkit-transition: -webkit-box-shadow 0.5s ease-out;
    transition: -webkit-box-shadow 0.5s ease-out;
    -o-transition: box-shadow 0.5s ease-out;
    transition: box-shadow 0.5s ease-out;
    transition: box-shadow 0.5s ease-out, -webkit-box-shadow 0.5s ease-out;
    z-index: -1;
}
.rounded-btn-orange:hover::before {
    -webkit-box-shadow: inset 0 0 0 10em #000000;
    box-shadow: inset 0 0 0 10em #000000;
    border: 1px solid #000000;
}