::-webkit-scrollbar {
    width: 12px;
    height: 12px; 
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px; 
    border: 2px solid #f1f1f1; 
}

::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

html body .container {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto 0;
    z-index: 10;
}

@media only screen and (min-width: 768px) {
    html body .container {
        width: 768px;
    }
}

@media only screen and (min-width: 992px) {
    html body .container {
        width: 992px;
    }
}
@media only screen and (min-width: 1200px) {
    html body .container {
        width: 1170px;
    }
}
@media only screen and (min-width: 1300px) {
    html body .container {
        width: 1270px;
    }
}
@media only screen and (min-width: 1400px) {
    html body .container {
        width: 1370px;
    }
}


.container ul {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.container ul li {
    position: relative;
    list-style: none;
}

.container ul li:before {
    content: '';
    position: absolute;
    top: 59%;
    transform: translateY(-50%);
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4D029B;
    display: block;
}

.button-primary {
    display: inline-block;
    padding: 17px 40px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    background: linear-gradient(247deg, #29FADF -2.17%, #8B1DFF 84.87%);
    background-size: 100% 100%;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.button-primary:hover {
    background-size: 180% 100%;
}


/* Secondary */
.button-secondary {
    display: inline-block;
    border: 1px solid #5C28A3;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    color: #4827AF;
    transition: all 0.4s ease;
}

.button-secondary:hover {
    color: #fff;
    background: #4D029B;
    border-color: #4D029B;
}


.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 99999;
    display: none;
    transition: 0.3s ease;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 50px;
    box-sizing: border-box;
    border-radius: 30px;
    z-index: 999991;
    display: none;
    border: 1px solid #E3D6F5;
    background: #CFEDFF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
}


.window .close_window {
    position: absolute;
    top: 20px;
    right: 20px;
}

.window .close_window svg path {
    fill: #20124D;
    opacity: 0.5;
}

.window .close_window:hover svg path {
    opacity: 1;
}

.window .contact_us_container {
    width: 520px;
    display: block;
}

.window .contact_us_container h3 {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    margin: 0 0 25px;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(90deg, #31EAE1 18.77%, #5498ED 47.16%, #8B1DFF 76.67%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.window .contact_us-item {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.window .contact_us-item-submit {
    margin-bottom: 0;
}


.window .contact_us-item input[type="text"],
.window .contact_us-item input[type="email"],
.window .contact_us-item input[type="tel"] {
    width: 100%;
    height: 47px;
    padding: 0 15px;
    outline: none;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #fff;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    color:#20124D;
}

.window .contact_us-item textarea {
    width: 100%;
    height: 130px;
    padding: 10px 15px;
    outline: none;
    resize: none;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #fff;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    color:#20124D;
}

.window .contact_us-item input[type="text"]::placeholder,
.window .contact_us-item input[type="email"]::placeholder,
.window .contact_us-item input[type="tel"]::placeholder,
.window .contact_us-item textarea::placeholder {
    color: #5f5972;
}

.window .contact_us-item .input_holder {
    position: absolute;
    top: -9px;
    left: 15px;
    display: inline-block;
    font-size: 14px;
    padding: 3px 7px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s ease;
    background: #15123D;
}


.window .contact_us-item input[type="submit"] {
    display: block;
    width: 100%;
    color: #29FADF;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    background: #8715FF;
    border-radius: 7px;
    padding: 15px 35px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

.window .contact_us-item input[type="submit"]:hover {
    background: #29FADF;
    color: #8715FF;
}

.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-response-output {
    display: none;
}

.wpcf7-spinner {
    display: none;
}

form input.wpcf7-not-valid {
    border: 1px solid #ff005c !important;
}

.window.contact_us-thanks {
    padding: 45px 60px;
}

.window.contact_us-thanks .contact_us_container {
    width: 300px;
    text-align: center;

}
.window.contact_us-thanks .contact_us_container svg{
    display:block;
    margin:0 auto;

}
.window.contact_us-thanks .contact_us_container h3 {
    margin: 20px 0 25px;
}

.window.contact_us-thanks .contact_us_container p {
    color: #20124D;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (max-height: 700px) {
    .window {
        height: calc(100vh - 30px);
        overflow-y: scroll;
    }
}

@media only screen and (max-width: 767px) {
    .window {
        padding: 30px 15px;
        width: calc(100% - 30px);
    }

    .window .contact_us_container {
        width: 100%;
    }

    .window .contact_us_container h3 {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .window .contact_us-item input[type="text"],
    .window .contact_us-item input[type="email"],
    .window .contact_us-item input[type="tel"] {
        height: 35px;
    }

    .window .contact_us-item textarea {
        height: 80px;
    }

}

/* Menu */


.page_navbar {
    background: #F9F4FF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.page_navbar.active {
    background: none;
}

.page_navbar .page_navbar_inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.page_navbar .page_navbar_inner .page_navbar_logo {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #FFF;
    padding: 8.5px 12px;
}

.page_navbar .page_navbar_inner .page_navbar_logo a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.page_navbar .page_navbar_inner .page_navbar_logo img {
    width: 92px;
    height: auto;
    display: block;
}

.page_navbar .page_navbar_inner .page_navbar_logo span {
    position: relative;
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3em;
    text-decoration: none;
}

.page_navbar .page_navbar_inner .page_navbar_logo span:before {
    content: '';
    position: absolute;
    width: 1px;
    height: calc(100% + 5px);
    top: -2px;
    left: -10px;
    background: #722DAC;
}

/* Navber */
.page_navbar_menu {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
}

.page_navbar_menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex-direction: row;
}

.page_navbar_menu ul li:before {
    opacity: 0;
}

.page_navbar_menu ul li a {
    font-size: 16px;
    line-height: 1em;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    text-decoration: none;
    position: relative;
    display: flex;
    padding: 4px;
}

.page_navbar_menu ul li a div {
    color: #20124D;
    border-radius: 8px;
    padding: 10px 15px;
    transition: 0.3s ease;
    position: relative;
    line-height: 1em;

}

.page_navbar_menu ul li a div:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;

}

.page_navbar_menu ul li a div span {
    position: relative;
    z-index: 2
}

.page_navbar_menu ul li a:hover div,
.page_navbar_menu ul li a.active div{
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);

}

.page_navbar_menu ul li a:hover div:before {
    opacity: 1;
}

.page_navbar_menu ul li ul {
    position: absolute;
    width: 97.6%;
    top: calc(100% + 25px);
    left: 16px;
    z-index: 999;
    background: none;
    /*border-radius: 20px;*/
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 22.5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    display: none;
}

.page_navbar_menu ul li.menu-item-has-children ul.show {
    visibility: visible;
    opacity: 1;
    display: flex;
}

.page_navbar_menu ul li ul li {
    width: calc(100% - 15px);
    margin: 0;
}

.page_navbar_menu ul li ul li a {
    border-radius: 12px;
    padding: 0px;
    display: flex;
    font-size: 14px;
    line-height: 1.5em;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    border-bottom: none !important;
    position: relative;
    transition: 0.3s ease;
    margin-right: 0px !important;
}


.page_navbar_menu ul li ul li a div {
    border-radius: 8px;
    padding: 7px 5px !important;
    transition: 0.3s ease;
    position: relative;
    line-height: 1em;
    width: 90%;
}

.page_navbar_menu ul li ul li a .menu__link-title {
    display: flex;
    align-items: center;
}


.page_navbar_menu ul li ul li a .menu_description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 128.571%;
    width: 100%;
    margin: 5px 0 0;
    transition: 0.3s ease;
    display: none;
}


.page_navbar_menu ul li ul li a img {
    width: 58px;
    height: 34px;
    display: block;
    margin-right: 10px;
    display: none;
}

.page_navbar_menu ul li ul li a svg {
    position: absolute;
    top: 8px !important;
    right: 5px !important;
    opacity: 0;
    transition: 0.3s ease;
    transform: translateY(0%) rotate(0deg) !important;
}

.page_navbar_menu ul li ul li a:hover {
    background: #380259;
}

.page_navbar_menu ul li ul li a:hover div:before,
.page_navbar_menu ul li ul li a:focus div:before {
    opacity: 0;
}

.page_navbar_menu ul li ul li a:hover svg {
    opacity: 1;
}

.page_navbar_menu ul li ul li a:hover img {
    filter: drop-shadow(0px 5.748px 6.371px #8715FF);
}

.page_navbar_menu ul li ul li a:hover .menu_description {
    opacity: 1;
}

@media only screen and (max-width: 1199px) {
    .page_navbar_menu ul li ul {
        padding: 15px;
    }

    .page_navbar_menu ul li ul li a {
        font-size: 14px;
    }

    .page_navbar_menu ul li ul li a .menu_description {
        display: none;
    }

    .page_navbar_menu ul li.menu-item-has-children a svg {
        display: none;
    }
}


/* Login Menu */
.page_left_navbar_menu {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}

.page_right_navbar_menu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.page_navbar_cta {
    display: flex;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    padding: 4px;
    text-decoration: none;
}

.page_navbar_cta div {
    border-radius: 8px;
    color: #20124D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    padding: 10px 15px;
    transition: 0.3s ease;
    position: relative;
}

.page_navbar_cta div:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.page_navbar_cta.active div:before {
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
}

.page_navbar_cta div:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #6F389E;
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.page_navbar_cta.active div:after {
    background: linear-gradient(247deg, #8B1DFF -8.95%, #29FADF 87.19%);
}


.page_navbar_cta div span {
    position: relative;
    z-index: 2
}

.page_navbar_cta.active div span {
    color: #fff;
}

.page_navbar_cta:hover div {
    color: #fff;
}

.page_navbar_cta:hover div:before {
    opacity: 1;
}

.page_navbar_login .page_navbar_cta.active:hover div:before {
    opacity: 0;
}

.page_navbar_login .page_navbar_cta.active:hover div:after {
    opacity: 1;
}

.page_navbar_login {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.page_navbar_login .page_navbar_cta {
    border: none;
    background: none;
    box-shadow: none;
}

.page_navbar_login .page_navbar_cta.active {
    padding-left: 0;
}

.page_navbar_login .page_navbar_cta.active div:before {
    opacity: 1;
}


.page_navbar_burger {
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.page_navbar_burger:hover {
    background: linear-gradient(247deg, #29FADF -8.95%, #8B1DFF 87.19%);
}
.page_navbar_burger:hover svg path{
    fill:#fff;
}
.navbar-right {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    /*max-width:360px;*/
    width: 100%;
    height: 100dvh;
    background: #1E052C;
    z-index: 99999;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateX(100%);
}

.navbar-right.active {
    opacity: 1;
    transform: translateX(0);
}

.navbar-right-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.navbar-right-top .page_navbar_logo {
    padding: 8.5px 9px;
    border-radius: 12px;
    border: 1px solid #E3D6F5;
    background: #F9F4FF;
    box-shadow: 0 4px 10px -0.409px rgba(135, 21, 255, 0.05);
}

.navbar-right-top .page_navbar_logo a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-right-top .page_navbar_logo img {
    width: 31px;
    height: auto;
    display: block;
}

.navbar-right-menu {
    display: flex;
    justify-content: center;
}

.navbar-right-menu ul {
    margin: 0;
    padding: 0;
}

.navbar-right-menu ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar-right-menu ul li a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2em;
    text-decoration: none;
    position: relative;
}

.navbar-right-menu ul li a svg {
    display: none;
}

.navbar-right-menu ul li ul {
    max-height: 200px;
    overflow-y: scroll;
    padding: 10px;
}

.navbar-right-menu ul li ul li a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2em;
}


.navbar-right-copyright {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.navbar-copuright {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5em;
    text-align: center;
}

.navbar-right-copyright .menu_soc {
    padding: 0;
    text-align: center;
}

.page_navbar .page_navbar_inner .page_navbar_logo .mobile_logo {
    display: none;
}

.navbar-open {
    display: none;
}

@media only screen and (max-width: 991px) {
    .page_navbar_menu{
        display: none;
    }
    .navbar-open{
        display: flex;
    }
}

@media only screen and (max-width: 599px) {
    .contant_sales{
        display: none;
    }
}


/* Footer */

.footer{
    background: #F8F8FC;
}

.footer .footer-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
}
.footer-row{
    padding:45px 0;
}

.footer .footer-logo img{
    width:100px;
    height: auto;
    display: block;
}

.footer .footer-menu ul{
    padding-left: 0;
    flex-direction: row;
    gap: 25px;
}

.footer .footer-menu ul li:before{
    display: none;
}

.footer .footer-menu ul li a{
    color: #20124D;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
.footer .footer-menu ul li a:before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: #20124D;
    transition: 0.3s ease
}
.footer .footer-menu ul li a:hover:before{
    width: 100%;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom .footer-copyright{
    color: #20124D;
    font-size: 12px;
}

.footer-bottom .footer-menu{
    display: flex;
    gap:10px;
    justify-content: flex-end;
    align-items: center;
}

.footer-bottom .footer-menu a{
    color: #20124D;
    font-size: 12px;
    position: relative;
}

.footer-bottom .footer-menu a:before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background: #20124D;
    transition: 0.3s ease
}

.footer-bottom .footer-menu a:hover:before{
    width: 100%;
}

.footer-bottom .footer-menu .footer-divider{
    width:1px;
    height:12px;
    display: block;
    background: #20124D;
}



@media (max-width: 991px){
    .page_navbar .page_navbar_inner .page_navbar_logo{
        padding:5px 6px;
    }
    .page_navbar .page_navbar_inner .page_navbar_logo .pc_logo{
        display: none;
    }
    .page_navbar .page_navbar_inner .page_navbar_logo .mobile_logo{
        display: block;
        width: 34px;
    }
}

@media (max-width: 767px){
    .footer-row{
        padding: 25px 0;
    }
    .footer .footer-top{
        flex-direction: column;
        gap:10px;
    }
    .footer .footer-menu ul{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap:10px;
    }
}




.cookie {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: auto;
	display: none;
	opacity: 0;
	background: #f9efff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	padding: 20px 0;
	z-index: 9999991;
	transition: 0.3s ease;
}

.cookie.active {
	display: block;
	opacity: 1;
}

.cookie_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}

.cookie_inner_item_1 {
	width: 330px;
}

.cookie_inner_item_1 img {
	width: 100%;
	height: auto;
	display: block;
}

.cookie_inner_item_2 {
	width: calc(100% - 650px);
	font-size: 16px;
	line-height: 1.5em;
	color: #666666;
	text-align: left;
}

.cookie_inner_item_2 a {
	color: #666666;
	text-decoration: underline;
}

.cookie_inner_item_2 a:hover,
.cookie_inner_item_2 a:focus {
	text-decoration: none;
}

.cookie_inner_item_3 {
	width: 190px;
}

.cookie_inner_item_3 a {
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	text-transform: uppercase;
	color: #450768;
	padding-left: 35px;
	text-decoration: none;
}

.cookie_inner_item_3 a:hover,
.cookie_inner_item_3 a:focus {
	text-decoration: underline;
}

.cookie_agree {
	background: url(../img/cookie3.png) 0px 0px no-repeat;
}

.cookie_deagree {
	background: url(../img/cookie4.png) 0px 0px no-repeat;
	color: #925EB0;
}


.cookie_popup {
	position: fixed;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	background: #450768;
	box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 25px;
	width: 720px;
	height: auto;
	z-index: 9999993;
	transition: 0.3s ease;
	display: none;
	opacity: 0;
}

.cookie_popup.active {
	display: block;
	opacity: 1;
}

.cookie_popup_inner {
	padding: 30px 45px;
}

.cookie_popup_inner_top {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.cookie_popup_inner_top_item {
	width: calc(50% - 15px);
}

.cookie_popup_inner_top_item img {
	display: block;
	width: 130px;
	height: auto;
}

.cookie_popup_inner_top_item2 {
	text-align: right;
}

.cookie_popup_inner_top_item a {
	font-size: 20px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, 0.7);
	opacity: 0.8;
	transition: 0.3s ease;
	text-decoration: none;
}

.cookie_popup_inner_top_item a:hover,
.cookie_popup_inner_top_item a:focus {
	color: rgba(255, 255, 255, 1);
	opacity: 1;
}

.cookie_popup_inner h2 {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3em;
	text-align: center;
	color: #FFFFFF;
	margin: 35px 0 25px;
}

.cookie_popup_inner p {
	font-size: 20px;
	line-height: 1.5em;
	text-align: center;
	color: #FFFFFF;
	opacity: 0.8;
}

.cookie_popup_inner_bot {
	text-align: center;
	margin: 30px 0 0;
}

.cookie_popup_inner_bot_item {
	padding: 15px 0 0;
}

.cookie_popup_agree {
	display: inline-block;
	line-height: 1em;
	padding: 17px 35px 15px;
	font-size: 24px;
	background: #f06e9c;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border: 4px solid #fff;
	border-radius: 75px;
	-webkit-box-shadow: 0px 0px 30px #f06e9c;
	box-shadow: 0px 0px 30px #f06e9c;
	-webkit-transition: .5s ease;
	-o-transition: .5s ease;
	transition: .5s ease;
	text-transform: uppercase;
	font-weight: 700;
}

.cookie_popup_agree:hover,
.cookie_popup_agree:focus {
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	border-radius: 0;
}

.cookie_popup_deagree {
	font-size: 20px;
	line-height: 1.5em;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	opacity: 0.8;
	text-decoration: none;
	transition: 0.3s ease;
}

.cookie_popup_deagree:hover,
.cookie_popup_deagree:focus {
	color: #fff;
	opacity: 1;
}



@media (max-width: 1199px) {
	.cookie_inner_item_2 {
		width: calc(100% - 540px);
	}

	.cookie_inner_item_1 img {
		width: 290px;
	}

	.cookie_popup_inner p {
		font-size: 16px;
	}

	.cookie_popup_agree {
		padding: 15px 35px 13px;
		font-size: 20px;
	}
}

@media (max-width: 991px) {
	.cookie_inner_item_1 {
		width: 275px;
	}

	.cookie_popup_inner h2 {
		font-size: 32px;
		margin: 20px 0 10px;
	}

	.cookie_popup {
		top: 100px;
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.cookie_popup {
		top: 90px;
		width: calc(100% - 15px);
	}

	.cookie_popup_inner {
		padding: 15px;
	}

	.cookie_popup_inner_top_item1 {
		width: 160px;
	}

	.cookie_popup_inner_top_item2 {
		width: calc(100% - 180px);
	}

	.cookie_popup_inner h2 {
		font-size: 26px;
	}

	.cookie_popup_inner_top_item a {
		font-size: 17px;
	}

	.cookie_popup_inner_bot {
		margin: 0;
	}

	.cookie_popup_agree {
		padding: 11px 25px 9px;
		font-size: 16px;
		border: 2px solid #fff;
	}

	.cookie_popup_deagree {
		font-size: 16px;
	}

	.cookie_inner_item_3 a {
		background: none !important;
	}

	.cookie_inner {
		flex-wrap: wrap;
	}

	.cookie_inner_item_1 {
		display: none;
	}

	.cookie_inner_item_2 {
		width: 100%;
		text-align: center;
		padding: 0 0 15px;
	}

	.cookie_inner_item_3 {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 479px) {
	.cookie_popup_inner_top_item1 {
		display: none;
	}

	.cookie_popup_inner_top_item2 {
		width: 100%;
		text-align: center;
	}

	.cookie_popup_inner h2 {
		margin: 10px 0 0;
	}

	.cookie_popup_inner p {
		margin-top: 0;
	}

	.cookie_popup_inner_bot_item {
		padding: 0px 0 0px;
	}

	.cookie_popup_agree {
		padding: 9px 20px 7px;
		font-size: 16px;
		border: 2px solid #fff;
		margin: 0 0 10px;
	}

	.cookie_inner_item_2 br {
		display: none;
	}

}
