@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    width: 100%;
    position: relative;
}

.main {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.sidebar {
    width: 240px;
    position: fixed;
    height: 100vh;
    background: #fff;
    border-left: none;
    transition: 0.5s;
    padding: 0 20px;
    z-index: 9999999;

}

@media (max-width: 1200px) {
    .sidebar {
        display: none;
    }
}

.sidebar .logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.sidebar .logo img{
    width: 100%;
}

.sidebar .nav {
    margin-top: 60px;
    margin-bottom: 30px;
}

.sidebar .nav .title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    max-width: 240px;
}

.sidebar > .nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 240px;
}

.sidebar > .nav > ul > li {
    margin-bottom: 15px;
    max-width: 240px;
}

.sidebar > .nav > ul > li > a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    max-width: 240px;
}

.sidebar > .nav > ul > li > a > i {
    font-size: 20px;
    width: 40px;
    display: block;
}

.sidebar > .nav > ul > li > a > span {
    width: 160px;
}

.sidebar > .nav > ul > li:hover > a {
    color: #e48706;
}

.sidebar > .nav > ul > li:hover > a > i{
    color: #000;
}

.sidebar > .nav > ul > li:hover > a > .text{
    text-decoration: underline;
}

.sidebar .nav-2 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.sidebar .nav-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .nav-2 ul li {
    margin-bottom: 15px;
    z-index: 10;
    max-width: 240px;
}

.sidebar .nav-2 ul li a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    max-width: 240px;
}
.sidebar .nav-2 ul li a i {
    font-size: 20px;
    width: 40px;
    display: block;
}

.sidebar .nav-2 ul li a span {
    width: 160px;
    display: block;
    max-width: 240px;
}

.sidebar .nav-2 ul li:hover a {
    color: #e48706;
}

.sidebar .nav-2 ul li:hover a i{
    color: #000;
}

.sidebar .nav-2 ul li:hover a .text{
    text-decoration: underline;
}

.sidebar .consultation {
    width: 100%;
    height: 30px;
    border: none;
    background: linear-gradient(rgba(255, 205, 0, 1),  rgba(235, 213, 124, 1));
    border-radius: 10px;
}
.sidebar .consultation:hover {
    cursor: pointer;
}


.sidebar li .subnav {
    position: absolute;
    height: 100vh;
    width: 380px;
    background: rgb(42,56,72);
    background: linear-gradient(188deg, rgba(42,56,72,1) 0%, rgba(67,73,64,1) 69%, rgba(140,125,39,1) 91%, rgba(185,157,24,1) 98%, rgba(255,205,0,1) 100%);
    left: 240px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.sidebar li:hover .subnav {
    opacity: 1;
    visibility: visible;
}

.sidebar .subnav .slogan {
    color: #FFCD00;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
}

.sidebar .subnav .title {
    text-align: left;
    padding: 20px;
    font-size: 12px;
    color: #9A9A9A;
    margin: 0;
}

.sidebar .subnav > ul {
    list-style: none;
    padding: 0 20px;
}

.sidebar .subnav > ul > li {
    padding-bottom: 10px;
}

.sidebar .subnav > ul > li > .subcategory {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}

.sidebar .subnav > ul > li > .subcategory > .open {
    color: #fff;
    transform: rotate(0deg);
    transition: .4s;
    cursor: pointer;
}

.sidebar .subnav > ul > li.show > .subcategory> .open {
    color: #fff;
    transform: rotate(135deg);
}

.sidebar .subnav > ul > li > .subcategory > a{
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 13px;
}

.sidebar .subnav > ul > li > ul {
    list-style: none;
    max-height: 0px;
    overflow: hidden;
    transition: 1s;
    opacity: 0;
}

.sidebar .subnav > ul > li.show > ul {
    list-style: none;
    max-height: 3000px;
    opacity: 1;
}

.sidebar .subnav > ul > li > ul > li{
    padding-left: 20px;
    padding-bottom: 5px;
}
.sidebar .subnav > ul > li > ul > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}



.content {
    width: 100%;
    overflow: hidden;
    padding-left: 240px;
}

header {
    width: 100%;
    background-color: #2d3848;
    height: 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

header.zindex {
    z-index: 999999999999;
}

.header-nav {
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}

.header-nav .header_main {
    background-color: #2d3848;
    height: 60px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    align-items: center;
}

.header-nav .header_main .logo {
    height: 100%;
    padding: 10px 0px;
}

.header-nav .header_main .logo img {
    height: 100%;
}

.header-nav .header_main .button {
    transition: 0.5s;
}

.header-nav .header_main .button:hover {
    cursor: pointer;
}

.header-nav .header_main .button .line {
    width: 40px;
    height: 3px;
    background-color: #ffcc02;
    margin-bottom: 7px;
    border-radius: 3px;
    transition: 0.5s;
}



.header-nav .header_main .button.active .line-1 {
    transform: rotate(-45deg);
}
.header-nav .header_main .button.active .line-2{
    transform: rotate(45deg);
    margin-top: -10px;
}
.header-nav .header_main .button.active .line-3{
    display: none;
}

.header-nav .header-content {
    width: 100%;
    height: 100vh;
    background: #d4d8de;
    top: 200%;
    position: fixed;
    transition: 0.3s;
    z-index: 998;
    opacity: 0;
    margin-top: 60px;
}

.header-nav.active .header-content{
    top: 0;
    opacity: 1;
}

.header-nav .header-content .header_container {
    width: 100%;
    padding: 20px;
}

.header-nav .header-content .header_container .searth {
    width: 100%;
    position: relative;
}

.header-nav .header-content .header_container .searth input{
    width: 100%;
    padding: 10px;
    outline: none;
    padding-left: 30px;
}

.header-nav .header-content .header_container .searth i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    opacity: 0.5;
}

.header-nav .header-content .header_container .sections {
    list-style: none;
    margin-top: 10px;
    padding-bottom: 10px;
}

.header-nav .header-content .header_container .sections li {
    padding: 10px 0;
}

.header-nav .header-content .header_container .sections li a{
    color: #000;
    text-decoration: none;
}

.header-nav .header-content .header_container .sections li i{
    font-size: 20px;
    width: 40px;
    text-align: center;
}

.header-nav .header-content .header_container .nav-2 {
    list-style: none;
    padding-top: 10px;
    border-top: 1px solid #fff;
    padding-bottom: 10px;
}

.header-nav .header-content .header_container .nav-2  li {
    padding: 10px 0;
}

.header-nav .header-content .header_container .nav-2  li a{
    color: #000;
    text-decoration: none;
}

.header-nav .header-content .header_container .nav-2  li i{
    font-size: 20px;
    width: 40px;
    text-align: center;
}

.header-nav .header-content .header_container .auth {
    padding: 10px 0;
    margin-top: 20px;
}

.header-nav .header-content .header_container .auth a{
    color: #000;
    text-decoration: none;
}

.header-nav .header-content .header_container .auth i{
    font-size: 20px;
    width: 40px;
    text-align: center;
}


.header-nav .header-content .header_container .buttons {
    display: flex;
    justify-content: space-between;
}

.header-nav .header-content .header_container .buttons button {
    padding: 10px;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #fff;
    border:  none;
    border-radius: 5px;
}

.header-nav .header-content .header_container .buttons button i {
    color: #b91616;
    font-size: 20px;
    margin-right: 10px;
}

.header-nav .header-content .header_container .buttons button span {

}

@media (max-width: 1200px) {
    .content {
        padding-left: 0px;
    }    
    body {
        padding: 0 10px;
    }
    header {
        display: none;
    }
    .header-nav {
        display: block;
    }
    .main .content {
        padding-top: 60px;
    }
}

header .slogan {
    color: #FFCD00;
    font-size: 14px;
    font-weight: 600;
}

header .searth {
   position: relative;
}
header .searth input {
    height: 30px;
    width: 500px;
    padding-left: 30px;
}
header .searth i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 7px;
    opacity: 0.5;
}

header .nav {
    display: flex;
    list-style: none;    
}
header .nav li{

}
header .nav li a{
    color: #fff;
    text-decoration: none;
}
header .nav li a i {
    padding-right: 5px;
}

.main-content {
    width: 100%;
}

.main-content .banner-block{
    width: 100%;
    margin-top: 30px;
} 

.main-content .widgets {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-column-gap: 40px;
    margin-top: 40px; 
}

@media (max-width: 1200px) {
    .main-content .widgets {
        grid-template-columns: 100%;
    }
    .widgets .last-post {
        margin-bottom: 40px;
    }
}

.main-content .widgets .useful {
    background: #FECC00;
    height: 180px;
    padding: 20px;
}

.main-content .widgets .useful .useful-carousel {
    width: 100%;
}

.main-content .widgets .useful hr {
    border: 1px solid #ffffff90;
    margin-bottom: 10px;
    margin-top: 10px;
}

.main-content .widgets .useful .useful-carousel .item {
    background-color: #fff;
    height: 80px;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 5px;
    transition: 0.2s;
    margin-bottom: 20px;
}

.main-content .widgets .useful .useful-carousel .item a {
    text-decoration: none;
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content .widgets .useful .useful-carousel .item:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.main-content .widgets .useful .useful-carousel .owl-nav {
    position: absolute;
    top: 35%;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.main-content .widgets .useful .useful-carousel .owl-nav button {
    font-size: 40px;
}

.main-content .widgets .useful .useful-carousel .owl-nav .owl-prev {
    transform: translate(-130%, -50%);
}

.main-content .widgets .useful .useful-carousel .owl-nav .owl-next {
    transform: translate(130%, -50%);
}

.owl-carousel .owl-stage-outer {
    z-index: 99;
}

.main-content .widgets .last-post {
    background: #E5E9F2;
    height: 270px;
    margin-top: 40px;
    padding: 20px;
}

.main-content .widgets .last-post hr{
    border: 1px solid #ffffff90;
    margin-bottom: 10px;
    margin-top: 10px;
}

.main-content .widgets .last-post .posts {
    overflow-y: scroll;
    height: 180px;
}

.main-content .widgets .last-post .post {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #ffffff90;
    transition: .4s;
}

.main-content .widgets .last-post .post:hover {
    background: #d4d8de;
}

.main-content .widgets .last-post .post a {
    color: #000;
    text-decoration: none; 
    display: block;
    font-size: 14px;
}

.main-content .widgets .news {
    background: #2A3848;
    height: 490px;
    padding: 20px;
    padding-right: 60px;
}

.main-content .widgets .news hr{
    border: 1px solid #ffffff90;
    margin-bottom: 10px;
    margin-top: 10px;
}

.main-content .widgets .news .posts {
    overflow-y: scroll;
    height: 400px;
}

.main-content .widgets .news .posts .post {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #ffffff90;
    transition: .4s;
    font-size: 13px;
}

.main-content .widgets .news .posts .post a {
    color: #fff;
    text-decoration: none;
}

.main-content .widgets h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
}
.main-content .widgets .news h3{
    color: #fff;
}
.main-content .seminars {
    width: 100%;
    margin-top: 40px;
}

.main-content .seminars h2{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 25px;
}

.main-content .seminars .carts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
}
.main-content .seminars .carts .cart {

}

.main-content .seminars .carts .cart a {
    text-decoration: none;
}

.main-content .seminars .carts .cart .image {
    position: relative;
    width: 100%;
    height: 130px;
}

.main-content .seminars .carts .cart .image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-300deg) scale(0);
    color: #fff;
    font-size: 30px;
    transition: .6s;
}


.main-content .seminars .carts .cart:hover .image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    color: #fff;
    font-size: 30px;
    transition: .6s;
}

.main-content .seminars .carts .cart .image .overflow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #2A3848;
    transition: .6s;
    opacity: 0.3;
}

.main-content .seminars .carts .cart:hover .image .overflow {
    opacity: 0.7;
}

.main-content .seminars .carts .cart .image img {
    width: 100%;
    height: 130px;
    object-fit: cover; 
}

.main-content .seminars .carts .cart .title {
    margin-top: 10px;
    text-decoration: none;
    color: #000;
}
.main-content .viewed-post {
    background: #2A3848;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.main-content .viewed-post h3 {
   color: #fff;
   text-transform: uppercase;
   font-size: 24px;
   font-weight: 500;
}

.main-content .viewed-post hr {
    border: 1px solid #ffffff90;
    margin-bottom: 10px;
    margin-top: 10px;
}
.main-content .viewed-post ul {
    list-style: none;
}
.main-content .viewed-post ul li {
    margin-bottom: 15px;
}
.main-content .viewed-post ul li:last-child{
    margin-bottom: 0px;
}

.main-content .viewed-post ul li a {
    color: #fff;
    text-decoration: none;
}

.main-content .viewed-post ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
footer {
    background-color: #E5E9F2;
    padding: 40px 40px;
    margin-top: 80px;
}

footer .nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
}

footer .nav h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
footer .nav ul {
    list-style: none;
}

footer .nav ul li{
    margin-bottom: 5px;
}
footer .nav ul li a {
    text-decoration: none;
    color: #000;
    opacity: 0.5;
}
footer .nav ul li a:hover {
    text-decoration: underline;
    opacity: 1;
}
footer .copyright{
    margin-top: 40px;
}

@media (max-width: 1200px) {
    footer .nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 40px;
        grid-row-gap: 20px;
    }
    .main-content .seminars .carts{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    footer .nav {
        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 40px;
        grid-row-gap: 20px;
    }
    
}

.section-wrap {}



.section-wrap .posts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-wrap .posts .image {
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.section-wrap .posts .image .overlay {
    background: #000;
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.section-wrap .posts .image .title {
    z-index: 11;
    position: absolute;
    color: #fff;
    width: 100%;
    padding: 10px;
}
.section-wrap .posts .image .cover_logo {
    z-index: 11;
    position: absolute;
    color: #fff;
    width: 25%;
    margin: 10px;
    right: 0;
    bottom: 0;
}

.section-wrap .posts a {
    color: #000;
    text-decoration: none;
}

.section-wrap .posts .post > .title {
    color: #000;
    text-decoration: none;
    margin-top: 5px;
}
.section-wrap .posts .post > .description {
    font-size: 14px;
    margin-top: 3px;
}
.author_detail_block {
    margin-top: 50px;
}
.author_detail_block .author_info {
    margin-bottom: 30px;
}
.main_page__profile {
    margin-top: 40px;
    padding: 0 20px;
}

.main_page__profile .user_photo {
    width: 200px;
}

.seminars_main_page {
    margin-top: 40px;
}

.seminars_main_page h1 {
    margin-bottom: 20px;
}

.seminars_page .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 40px;
}
.seminars_page .cards .card {
    width: 100%;
}

.seminars_page .cards .card img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
}

.seminars_page .cards a {
    text-decoration: none;
    color: #000;
}
.seminars_page .cards a .title {
    margin-top: 10px;
}
.seminars_page .cards a .date {
    margin-top: 5px;
    color: #959aa0;
    font-size: 12px;
}
.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999999999;
}

.popup.hide {
    display: none;
}

.popup .overlay {
    background: rgba(50, 49, 49, 0.698); 
    backdrop-filter: blur(8px); 
    height: 100vh;
    position: absolute;
    width: 100%;
}
.popup .window {
    position: absolute;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    max-height: 700px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: grid;
    grid-template-columns: 2fr 3fr;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.popup .window .image {
    width: 100%;
    height: 100%;
    background-color: #b91616;
    background-position: center;
    background-size: cover;
}

.popup .window .form {
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup .window .form h1 {
    margin-bottom: 5px;
}

.popup .window .form p {
    margin-bottom: 5px;
    color: #3c3c3c;
    font-style: italic;
}

.popup .window .form form {
    margin-top: 20px;
}
.popup .window .form form p {

}
.popup .window .form form p label{
    display: block;
    width: 100%;
    margin-bottom: 3px;
}
.popup .window .form form p input{
    display: block;
    width: 100%;
    outline: none;
    padding: 3px;
}

.popup .window .form form p textarea {
    display: block;
    width: 100%;
    padding: 3px;
    outline: none;
    resize: none;
}


.popup .window .form form button {
    width: 100%;
    background-color: #FFCD00;
    padding: 10px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}

.popup .window .form form .info {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
}

.popup .window .close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    line-height: 30px;
}

.popup_1 .window .image{
    background-image: url("/static/base/img/popup.png");
}
.popup_2 .window .image{
    background-image: url("/static/base/img/popup_2.png");
}
.popup_3 .window .image{
    background-image: url("/static/base/img/popup_2.png");
}
.search {
    
}

.search input {
    width: 500px;
    border: none;
    background: none;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    padding: 5px;
    outline: none;
}

.search input::placeholder {
    color: #fff;
    opacity: 0.7;
}

.search.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999;
    width: 100vw;
    height: 100vh;
    background: #d4d8de;
}

.search .search-top {
    display: flex;
}

.search.open .search-top {
    display: flex;
    width: 100%;
}

.search.open .search-top .input {
    width: 100%;
}

.search.open .search-top .input input {
    outline: none;
    border: none;
    font-size: 18px;
}

.search.open .search-top .input input {
    width: 100%;
    height: 50px;
    padding: 10px;
}

.search .search-top  .search-open-icon {
    color: #fff;
    display: none;
}

.search .search-top .search-close-icon {
    display: none;
}

.search.open .search-top .search-close-icon {
    display: block;
    position: absolute;
    right: 10px;
    top: 2px;
    font-size: 40px;
    cursor: pointer;
}

.search .search-top .search-title{
    display: none;
}

.search .results {
    display: none;
}

.search.open .results {
    display: block;
    height: 100%;
    overflow-y: scroll;
}
.search.open .results .error404 {
    display: none;
}

.search.open .results .error404.show {
    display: flex;
    background: url("/static/base/img/404.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
} 

.search.open .results .error404 {
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search.open .results .error404 h3 {
    font-size: 50px;
    max-width: 700px;
    text-align: center;
    margin-bottom: 50px;
}

.search.open .results .error404 p{
    font-size: 20px;
    margin-bottom: 50px;
}
.search.open .results .error404 button {
    width: 200px;
    height: 50px;
    background: none;
    border: 2px solid white;
    color: #fff;
    cursor: pointer;
    margin-bottom: 25vh;
}

.search.open .results a {
    text-decoration: none;
}

.search.open .results .result{
   display: flex;
   margin: 20px;
   text-decoration: none;
}

.search.open .results .result .left {

}

.search.open .results .result .left img {
    width: 200px;
    height: 100px;
    object-fit: cover; 
}

.search.open .results .result .right {
    margin-left: 20px;
}

.search.open .results .result .right .title {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.search.open .results .result .right .description {
    color: #000;

}

#cookie_note2 {
  background: #ffffff;
  padding: 16px;
  gap: 40px;
  color: #000000;
  border-radius: 0px;
  padding-left: 30px;
  box-shadow: 0px 0px 20px #0000001f;
  z-index: 9999999;
}
.co_row {display:flex; gap:40px;}
.co_row > * {align-self:center}
.home_title {font-size:16px; font-weight:700;}
.co_1 p{ 
 
font-size: 14px;
font-weight: 400;
line-height: 20px;
letter-spacing: -0.0001em;
text-align: left;
}
.co_1 p a {text-decoration:underline;color: #000000;}
.co_3 a {
     background: #0b1728;
     color:#fff;
     width:160px;
     display: none;
     text-align:center;
     font-weight: 400;
     font-size: 15px;
     border-radius: 6px;
     border: 0px;
     color: #fff;
     padding: 13px 0px;
     }

.co_3 button {
     background: #000000;
     color:#fff;
     width:160px;
     display:block;
     text-align:center;
     font-weight: bold;
     font-size:14px;
     border-radius: 0px;
     border: 0px;
     color: #ffffff;
     padding: 13px 0px;
     margin-top:8px;
     }
#cookie_note {position:fixed;width:100%;bottom:20px;z-index: 100000;z-index: 9999999;}
#cookie_note {display:none;}
#cookie_note.show {display:block;}
@media (max-width:768px) {
  .co_1 p {font-size:11px;line-height:15px;padding-top: 10px!important;padding-bottom: 10px!important;}
  .co_row {display:block;}
  #cookie_note2 {padding:10px;}
  .co_2 {display:none;}
  .co_3 {}
  .co_3 a,.co_3 button {width:100%; font-size:12px; padding:8px;}
    .co_3 a {display:none;}
    .cookie_accept.btn {
    font-size: 12px!important;
    margin: 0px;
    max-width: 100%;
    margin-top: 5px;
} .co_2 {display:block}
    .co_2 button {position:absolute; right:20px; top:0px; z-index:11;}
}
.co_3 a,.co_3 button {transition:0.3s;}
#cookie_note .container {margin:0px auto;max-width: 90%;}
.cookie_accept svg * {fill:#000!important}
.co_2 {display:none}