.warning {
  display: none;
    position: fixed;
    z-index: 9999999;
    width: 200px;
	bottom:10px;
	right:10px;

    text-align: right;
    font-size: 15px;
    font-family: Verdana, sans-serif;
    color: #FFF;
    background: #FFF;
    padding: 10px 20px;
    border-top: 4px solid #BFE2FF;
}

.warning--active {
	display: flex;
    flex-direction: column;
}


.warning__text {
	margin-right: 30px;
	    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
    flex-direction: column;
}

/* Îôîðìëåíèå êíîïîê */
.warning__apply {
    text-align: center;
    display: inline-block;
    margin: 10px 6px 4px 6px;
    text-decoration: none;
    position: relative;
    font-size: 13px;
    padding: 4px 12px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    background: #337AB7;
    border: 2px solid #BFE2FF;
}

.warning__apply:hover {
    color: #FFF;
}
.warning__apply:after,
.warning__apply:before {
    position: absolute;
    height: 2px;
    left: 50%;
    background: #337AB7;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.warning__apply:before {
    top: -6px;
}
.warning__apply:hover:after,
.warning__apply:hover:before {
    width: 100%;
    left: 0;
}
