/* 遮罩 */
.mask{
    position: fixed;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 5;
    background: rgba(0,0,0,0.65);
    display: none;
}
.icon-wx{
	width: 79rem;
	height: 87.6rem;
	background: url(../images/v4/wxqrcode.png) no-repeat;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	position: absolute;
}
.icon-wx-close{
	width: 4.8rem;
    height: 4.8rem;
    position: absolute;
    cursor: pointer;
    left: 50%;
    transition: 0.5s;
    transform: translate(-50%,calc(-50% + 50rem));
    top: 50%;
}
.icon-wx-qrcode{
	width: 65rem;
	height: 65rem;
	left: 50%;
    top: 45%;
    transform: translate(-50%,-50%);
    position: absolute;
}
.icon-wx-mask{
	position: fixed;
	top: 0;
	left:0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
    background: rgba(0,0,0,0.65);
	display: none;
}
.mask-menu{
    position: fixed;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 5;
    background: black;
    display: none;
}
.mask-art{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 20;
    background: rgb(0,0,0,0.75);
    display: none;
}
.show-big-art{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
    flex-direction: column;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	width: 106.6rem;
	height: 67rem;
}
.mask-video{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 99;
	background-size: 192rem auto;
	opacity: 0.65;
    display: none;
}
.mask-world-window{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width: 100%;
    height: 100%;
    z-index: 99;
	background-color: #ffffff;
	background-size: 192rem auto;
	opacity: 0.65;
    display: none;
}
.mask-video-close{
	width: 6.6rem;
	height: 6.6rem;
	background: url(../images/v4/reserve-close.png) no-repeat;
	background-size: 100% 100%;
	right: -5rem;
    position: absolute;
    z-index: 100;
    top: 0;
    cursor: pointer;
	transition: 0.5s;
}
.mask-video-close:hover{
	transition: 0.5s;
	transform: rotate(180deg);
}
/* 点击视频 */
.show-video{
    position: absolute;
	-webkit-transform: translate(-50%,-50%) scale(0.5);
	transform: translate(-50%,-50%) scale(0.5);
    top: 50%;
    left: 50%;
    bottom: 0;
    right: 0;
    width: 118.4rem;
    height: 66.6rem;
    z-index: 100;
    display: none;
}

.show-video-on{
	animation-name: show-video-on;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
.show-video-off{
	animation-name: show-video-off;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}

@keyframes show-video-on {
	0% {
		opacity: 0;
		transform: translate(-50%,-50%) scale(0.8);
	}
	40%{
		opacity: 0;
	}
	80%{
		opacity: 1;
		transform: translate(-50%,-50%) scale(1.01);
	}
	100% {
		opacity: 1;
		transform: translate(-50%,-50%) scale(1);
	}
}
@keyframes show-video-off {
	0% {
		opacity: 1;
		transform: translate(-50%,-50%) scale(1);
	}
	20%{
		opacity: 1;
		transform: translate(-50%,-50%) scale(1.01);
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: translate(-50%,-50%) scale(0.8);
	}
}
.show-video-play{
	width: 100%;
    height: 66.6rem;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
}
.show-video-play video{
    width: 100%;
    height: 100%;
}
.body,.content{
	width: 100%;
	height: 100%;
	position: relative;
	background-color: #F2F2F2;
}
#newsBody{
	overflow-y: auto;
}
.menu-list-right{
	width: 6.6rem;
	height: 6.6rem;
	background: url(../images/v4/menu.png) no-repeat;
	background-size: 100% 100%;
	right: 6.6rem;
	top: 16rem;
	cursor: pointer;
	position: absolute;
	filter: invert(1);
}
.menu-list-left-scroll{
	filter: invert(1);
	width: 1.6rem;
	height: 9.1rem;
	bottom: 3.6rem;
	left: 50%;
	transform: translateX(-50%);
}
.menu-list{
	background-color: black;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: none;
}
.menu-body{
	position: absolute;
	top: 23.7rem;
	width: 100%;
}
.menu-body a{
	text-decoration: none;
}
.menu-body-li{
	font-size: 3.6rem;
	color: white;
	display: flex;
    justify-content: space-between;
    width: 94.8rem;
    margin: 0 auto;
	border-bottom: 2px solid white;
	padding-bottom: 3rem;
	margin-bottom: 12rem;
	cursor: pointer;
}
.menu-body-li .title-zh::after{
	position: absolute;
    top: 8rem;
    left: 0;
    width: 100%;
    height: 0.9rem;
    content: '';
    background-color: white;
}
.menu-body-li .check::after{
	position: absolute;
    left: 0;
    width: 100%;
    height: 0.9rem;
    content: '';
    background-color: #1A8CFF;
}
.menu-body-li .title-zh{
	width: 20rem;
    text-align: center;
	position: relative;
}
.menu-body-li .title-en{
}

.menu-list .reserve-btn{
	width: 94.8rem;
	height: 12.6rem;
	cursor: pointer;
	position: absolute;
	left: 50%;
    transform: translate(-50%,calc(-50% + 57.8rem));
    top: 50%;
}
.icon-list{
	width: 94.8rem;
	height: 9rem;
	cursor: pointer;
    background-size: auto 100%;
	position: absolute;
	left: 50%;
    transform: translate(-50%,calc(-50% + 83.4rem));
    top: 50%;
	display: flex;
    justify-content: space-evenly;
}
.icon-list-li{
	height: 9rem;
	width: 9rem;
	filter: invert(1);
}
.copyright-bottom{
	font-size: 2rem;
	color: white;
	bottom: 3.6rem;
	position: absolute;
	left: 50%;
    transform: translate(-50%,calc(-50% + 91.6rem));
    top: 50%;
	height: max-content;
}

.menu-list .logo{
	position: absolute;
	left: 6.6rem;
	top: 1.6rem;
	width: 28rem;
	height: 10rem;
}
#reserve-main{
	position: absolute;
	width: 99.8rem;
	height: 84.2rem;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	background: url(../images/v4/reserve-main.png) no-repeat;
    background-size: 100% 100%;
	z-index: 99;
	display: none;
}
.reserve-msg{
	position: absolute;
    min-width: 52rem;
    height: 16rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -100;
    background-color: #F1F1F1;
    font-size: 3rem;
    display: flex;
    align-items: center;
    color: #5a5a5a;
    justify-content: center;
    padding: 0 1rem;
    box-shadow: 0px 2px 10px 0px #9e9e9e;
    border-radius: 0.5rem;
	opacity: 0;
	visibility: hidden;
}
.reserve-main{
	width: 75rem;
    margin: 0 auto;
    top: 22rem;
    position: relative;
}
.reserve-system span{
	font-size: 1.2rem;
	color: #686c72;
}
.reserve-system-list{
	position: relative;
	margin-top: 1.2rem;
	outline: 1px solid #A8A8A8;
	height: 6rem;
	display: flex;
}
.reserve-system-and img{
	width: 11.9rem;
	height: 2.8rem;
}
.reserve-system-ios img{
	width: 7.1rem;
	height: 3rem;
}
.reserve-system-pc img{
	width: 6.8rem;
	height: 2.6rem;
}
.reserve-system-li{
	width: 25rem;
	height: 6rem;
	display: flex;
	justify-content: center;
    align-items: center;
	cursor: pointer;
}
.reserve-system-check{
	background-color: #1657D9;
}
.reserve-system-check img{
	filter: invert(1);
}
.reserve-phone{
	margin-top: 3.8rem;
    position: relative;
}
.reserve-phone input{
	width: 100%;
	height: 8rem;
	background-color: #CDCED0;
    outline: 1px solid #A8A8A8;
    border: none;
    text-indent: 20px;
	font-size: 3rem;
	color: #282828;
}
.reserve-sms{
	margin-top: 2.2rem;
    position: relative;
	display: flex;
}
.reserve-sms-code{
	width: 44.4rem;
	background-color: #CDCED0;
    outline: 1px solid #A8A8A8;
	border: unset;
    text-indent: 20px;
	font-size: 3rem;
	height: 8rem;
}
.reserve-sms-btn{
	margin-left: 1rem;
	width: 29.6rem;
	height: 8rem;
    outline: 1px solid #262626;
	border: unset;
	background-color: #262626;
	color: white;
	font-size: 3.6rem;
	cursor: pointer;
}
.reserve-agree{
	margin-top: 5.5rem;
    position: relative;
	display: flex;
}
.reserve-agree-check{
	width: 2.6rem;
	height: 2.6rem;
	cursor: pointer;
}
.reserve-agree-txt{
	font-size: 2.6rem;
	color: #262626;
	margin-left: 1.1rem;
	line-height: 1;
}
.reserve-agree-txt a{
	color: #262626;
}
.reserve-submit{
	margin-top: 2rem;
    position: relative;
}
.reserve-submit input{
	width: 100%;
	height: 8rem;
	background-color: #1657D9;
    outline: unset;
    border: none;
	font-size: 3rem;
	color: white;
	cursor: pointer;
}
.reserve-close{
	width: 6.6rem;
    height: 6.6rem;
    position: absolute;
    cursor: pointer;
    bottom: -6rem;
    left: 50%;
    transition: 0.5s;
    transform: translateX(-50%);
}
.reserve-close:hover{
	transition: 0.5s;
	transform: rotate(180deg);

}
/* 新闻 */

.news{
	position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 0;
}
.news-slide:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -99;
}
.page-body{
    width: 100%;
	height: 100%;
    left: 50%;
    margin: 0 auto;
    transform: translate(-50%);
    position: absolute;
    z-index: 100;
}
.head-animate{
	animation-name: head-animate;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
@keyframes head-animate{
	0%{
		opacity: 0;
		margin-left: -10rem;
	}
	100%{
		opacity: 1;
		margin-left: 0rem;
	}
}
.news-head{
	width: 28.6rem;
	height: 6rem;
	background: url(../images/v4/news-img.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 16rem;
	left: 6.6rem;
}
.news-body-show{
    left: 50%;
	width: 94.6rem;
	top: 18rem;
    transform: translateX(-50%);
    position: absolute;
}
.news-body{
	width: 94.6rem;
	flex-direction: column;
	overflow: hidden;
	display: flex;
	position: absolute;
}
.news-body-banner{
	height: 53.4rem;
	width: 94.6rem;
	overflow: hidden;
}
.news-body-list{
	min-height: 97.5rem;
	width: 94.6rem;
	background-color: white;
}
#news-swiper-pagination{
	position: sticky;
    width: 80%;
    bottom: 1.5rem;
    left: 3rem;
    z-index: 1;
    display: inline-block;
}
.news .swiper-pagination-bullet{
	width: 3.5rem;
	height: 0.5rem;
	background-color: white;
	display: inline-block;
	margin:  0.5rem;
	cursor: pointer;
}
.news .swiper-pagination-bullet-active{
	background-color: #4DA1FF;
}
.news-body-list-body{
	margin: 0 auto;
	width: 82rem;
}
.news-body-list-body a{
	text-decoration: none;
}
.news-list-head{
	margin-top: 6rem;
	border-bottom: 1px solid black;
}
.news-list-head ul{
	display: flex;
    justify-content: space-evenly;
	text-align: center;
	align-items: center;
}
.news-list-head li{
	width: 16.4rem;
	height: 5rem;
	font-size: 3.4rem;
	color: #272727;
	font-weight: bold;
	display: flex;
    align-items: center;
    justify-content: center;
}
.news-list-head  .check{
	color: white;
	background-color: #1657d9;
}
.news-list-content{
	border-bottom: 1px dashed #8c8c8c;
	display: flex;
    align-items: center;
	padding: 6.9rem 0;
	position: relative;
}
.news-list-content-type{
	background-color: #1657D9;
	width: 7.4rem;
	height: 3rem;
	display: flex;
    align-items: center;
    justify-content: space-between;
	transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.news-type-1{
	width: 2.7rem;
	height: 1.4rem;
	padding-left: 1rem;
}
.news-type-2{
	width: 1rem;
	height: 0.7rem;
	background: url(../images/v2/zhankai.png) no-repeat;
	background-size: 100% 100%;
	margin-right: 1rem;
}
.news-list-content-title{
	height: 3rem;
	width: 56rem;
	font-size: 2.8rem;
	font-weight: bolder;
	color: #4b4b4b;
	padding-left: 2rem;
	line-height: 3rem;
    overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.news-list-content-time{
	font-size: 1.6rem;
	color: #4b4b4b;
    margin-left: auto;
	position: absolute;
    bottom: 2.1rem;
    right: 0;
}
.news-list-more{
	cursor: pointer;
	width: 9rem;
	height: 1.4rem;
	background: url(../images/v2/news-more.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 6.4rem;
    z-index: 2;
    bottom: 4rem;
}
.page-footer{
	position: absolute;
	left: 6.6rem;
    right: 6.6rem;
	bottom: 2rem;
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 99;
}

.page-footer-animate{
	animation-name: page-footer-animate;
	animation-duration: 0.5s;	
	animation-fill-mode: forwards ;
}
@keyframes page-footer-animate{
	0%{
		opacity: 0;
		bottom: 0rem;
	}
	100%{
		opacity: 1;
		bottom: 4.5rem;
	}
}
.news-footer-img{
	width: 96.75rem;
	height: 14.4rem;
}
.page-footer-copyright{
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.page-footer-copyright-1{
	width: 9.5rem;
	height: 1.5rem;
	cursor: pointer;
}
.page-footer-copyright-2{
	width: 21.8rem;
	height: 1.1rem;
	margin-top: 1rem;
}
.news-list-page .num{
	width: max-content;
}
.news-list-page{
	bottom: 4rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 1.6rem;
	margin: 0 auto;
	display: flex;
    align-items: center;
    justify-content: center;
}
.news-list-page li{
	float: left;
	margin: 0 3rem;
	font-size: 3.6rem;
	color: #262626;
}
.news-list-page .pre{
	width: 15.6rem;
	height: 4rem;
	margin: 0 1.5rem;
	cursor: pointer;
}
.news-list-page .next{
	width: 15.6rem;
	height: 4rem;
	margin: 0 1.5rem;
	cursor: pointer;
}
.news-list-page  .check{
	color: #1657d9;
}

#news-body{
	width: 94.6rem;
	background-color: white;
	margin: 0 auto;
	position: relative;
	margin-bottom: 10rem;
	height: auto!important;
}
#news-body .news-body-body{
	margin: 0 auto;
	padding: 3.6rem 4rem;
	position: relative;
	overflow: hidden;
}
.news-body-body img{
	max-width: 100%;
}
#news-body .news-body-flex{
	margin-top: 4rem;
	margin-bottom: 2rem;
	position: relative;
	display: flex;
	align-items: center;
}
.news-body-back{
	width: 2.73rem;
	height: 4rem;
	background: url(../images/news-back.png) no-repeat;
	background-size: 100% 100%;
	position: relative;
	cursor: pointer;
}
.news-body-title{
	font-size: 4.6rem;
	width: 100%;
	font-weight: bold;
}
.news-body-type{
	width: 16.4rem;
	height: 5rem;
	font-size: 3.4rem;
	color: white;
	background-color: #1657d9;
	text-align: center;
	line-height: 5rem;
}
.news-body-time{
	text-align: right;
	font-size: 2.4rem;
	color: #7f7f7f;
	margin-left: 2rem;
	padding-bottom: 0.2rem;
}
.news-body-time span{
	color: #1657D9;
}
.news-body-content{
	margin-top: 6rem;
	word-wrap: break-word;
	word-break: break-all;
	min-height: 55rem;
}
/* .news-body-content *{
	font-size: 20px;
} */
.top{
	width: 6rem;
	height: 6rem;
	background: url(../images/top.png) 0px 0px no-repeat;
	background-size: 100% 100%;
	position: fixed;
	left: calc(50% + 60rem);
	bottom: 32.5rem;
	opacity: 0;
	z-index: 50;
	visibility:hidden;
}

.top-move{
	animation:top-move 0.5s;
	animation-fill-mode: forwards;
}
.top-move-close{
	animation:top-move-close 0.5s;
	animation-fill-mode: forwards;
}
@keyframes top-move{
	0%{
		cursor: pointer;
        opacity: 0;
		visibility:hidden;
	}
	100%{
		cursor: pointer;
        opacity: 1;
		visibility:visible;
	}
}

@keyframes top-move-close{
	0%{
		cursor: pointer;
        opacity: 1;
		visibility:visible;
    }
	100%{
		cursor: unset;
        opacity: 0;
		visibility:hidden;
	}
}

/* 版权信息 */
.footer-phone{
/*	position: absolute;
	bottom: 0;*/
	border-top: 1px solid black;
	background-color: #fff;
}
.footer-phone .content {
	background-color: #fff;
}
.footer {
	z-index: 15;
	position: fixed;
    bottom: -99rem;
    width: 100%;
}
.footer-1 {
	margin-top: 2rem;
	font-size: 3.375rem;
	color: black;
	text-align: center;
/*	font-weight: bold;*/
	display: flex;
    justify-content: center;
}
.footer-1 a{
	color: black;
}
.footer-line {
	margin: 0 2rem;
}
.footer-2{
	margin-top: 2rem;
	display: flex;
    align-items: center;
    justify-content: center;
}
.footer-2-img-1{
	width: 30rem;
/*    height: 7.3rem;*/
	margin:0 2.5rem;
}
.footer-2-img-2{
	width: 10rem;
	height: 10rem;
	margin:0 2.5rem;
}
.footer-5{
	margin: 0 auto;
	width: 25rem;
	height: 7.3rem;
	margin-top: 5.5rem;
	padding-bottom: 8.1rem;
}
.footer-3{
	margin: 0 auto;
	width: 90%;
/*	height: 7.3rem;
	margin-top: 2rem;*/
	text-align: left;
	padding-bottom: 1rem;
}
.footer-mask{
	width: 100%;
	position: fixed;
	height: 100%;
	display: none;
	z-index: 15;
	left: 0;
	top: 0;
}
.footer-mid {
	font-size: 3rem;
}

/* nav和cookie弹窗 */
.nav{
	position: fixed;
    background: white;
    z-index: 101;
	width: 30%;
	height: max-content;
    top: 28rem;
	right: 6rem;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out,
	width 0.3s ease-in-out;
}
.nav-ul{
	display: flex;
    justify-content: center;
	align-items: center;
	flex-direction: column;
    height: 60%;
	position: relative;
	top: 20%;
}
.nav-ul-li{
	cursor: pointer;
	width: 100%;
    text-align: center;
	padding: 2rem 0;
	font-size: 3.2rem;
	background: white;
}
.nav-ul a{
	color: black;
    text-decoration: unset;
}
.nav-li-img{
	width: 5.2rem;
	height: 5.2rem;
	display: inline-block;
}
.nav-li-border{
	border-bottom: 1px solid #ceaeae;
}
.new-games:hover #dropdown-menu-topup,.hot-games:hover #dropdown-menu-hot{
	color: red;
	display: block;
	opacity: 1;
}
.dropdown-menu-topup li,.dropdown-menu-hot li{
	padding: 1rem 2rem;
}
.dropdown-li-border{
	border-bottom: 1px solid #ceaeae;
}

.cookie-show{
	max-height: 100%;
    max-width: 100%;
	position: fixed;
	width: 70rem;
	height: 60rem;
	background-color: white;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 999;
	margin-bottom: 4rem;
	padding: 4rem;
	border-radius: 2rem;
	overflow: hidden;
	display: none;
	border: 1px solid #ceaeae;
}
.cookie-show h3{
	font-size: 6rem;
	margin: 4rem;
	text-align: center;
}
.cookie-txt{
	margin: 4rem;
	font-size: 4rem;
}
.cookie-btn{
	background: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1em;
    margin: 0;
    overflow: hidden;
    padding: .86em 1em;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: opacity .2s ease-out;
    white-space: nowrap;
	margin-bottom: 2rem;
}
.cookie-self-txt,.cookie-self-txt2{
	align-items: center;
    color: #2c2e30;
    display: flex;
    font-size: 2.8rem;
    font-weight: bold;
    justify-content: space-between;
    line-height: 1em;
    padding: 1.3em 0;
    position: relative;
    text-decoration: none;
	cursor: pointer;
}
.cookie-self-txt:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-bottom: .5em solid;
    border-right: .5em solid transparent;
    border-top: 0;
    border-left: .5em solid transparent;
}
.cookie-self-txt2:after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .5em solid;
	border-right: .5em solid transparent;
	border-bottom: 0;
	border-left: .5em solid transparent;
}
.cookie-self-info,.cookie-self-info-list{
	display: none;
}
.cookie-self-info-need{
	margin-top: 2rem;
	font-size: 3.2rem;
	position: relative;
	font-weight: bolder;
}
.cookie-self-info-need:after{
	background: #0d6efd;
	height: 1.4em;
	margin-top: -.7em;
	right: 0;
	transition: background .2s ease-out, opacity .2s ease-out;
	width: 2.5em;
	z-index: 0;
	border-radius: 1.4em;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
	opacity: 0.6;
	cursor: pointer;
}
.cookie-self-info-need:before{
	border-radius: 1.4em;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
	background: #fff;
    height: 1em;
    margin-top: -.5em;
    right: .75em;
    transform: translateX(-.55em);
    transition: transform .2s ease-out;
    width: 1em;
    z-index: 1;
	cursor: pointer;
}
.cookie-self-info-txt{
	margin-top: 6rem;
	font-size: 2.8rem;
}
.cookie-self-info-detail{
	margin: 8rem 0 6rem;
	color: blue;
    text-decoration: underline;
	font-size: 2.8rem;
	cursor: pointer;
}
.cookie-self-info ul{
	padding-left: 2.4rem;
	font-size: 3.2rem;
}
.cookies__cookie{
	color: #676767;
	font-size: 2.4rem;
    line-height: 2.4rem;
	margin: 4rem 0;
}
.cookies__name{
	color: #1d2731;
    display: inline;
    font-weight: bolder;
    line-height: 4.4rem;
}
.cookies__duration{
	color: #8a8e92;
    display: inline;
    text-align: right;
}
.cookies__description{
    color: #8a8e92;
    display: block;
    line-height: 120%;
    padding-top: .3em;
    text-align: left;
    width: 100%;
}