.mb2-0 {margin-bottom: 2rem;}

.nav-lang ul { text-align: center; margin: 0 0 1rem 0; padding: 0;}
.nav-lang li { display: inline-block; margin: 0 0.5rem; }
.nav-lang a, .nav-lang strong { color: #fff; } 
.nav-lang strong { font-weight: bold; color: #000; }

.alert { color: #ED4F32; }

.attention {
    position: fixed;
    bottom: 15px;
    right: 10px;
	color: #717171;
	border: 3px solid #ED4F32;
    background: #fff;
    z-index: 100;
    box-shadow: 10px 10px 46px #00000029;
    padding: 1rem;
    width: 315px;
    max-height: 90vh;
    overflow: auto;
	animation: slideInRight 1s ease-in-out 3s 1 normal backwards;
}

.attention .btn-section1 a {
    background-color: #fff;
    color: rgba(19,88,255,1);
}

.btn-close {
	display: none;
}

.attention .btn-close {
	display: block;
	align-items: flex-end;
	text-align: right;
	font-size: 1.5rem;
	font-weight: bold;
    appearance: none;
    background: none;
    color: #ef6c00;
    border: none;
    cursor: pointer;
	position: absolute;
    right: 5px;
    text-align: center;
    top: 5px;
}

.attention .btn-close span {
	display: block;
	font-size: 0.5rem;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
	right: -320px;
    /* transform: translateX(320px); */
  }

  100% {
    opacity: 1;
	right: 10px;
    /* transform: translateX(0); */
  }
}
