.vf_frame{
    width: calc(100vw - 55px);
    height: calc(91vh);
    max-width: 360px;
    max-height: 480px;
}
.vf_conteiner{
    display: block;
    padding: 0px 0px 0px 5px;
    color: #FFFFFF;
    outline: none;
    font-size: 9px;
    border: 0px solid #080284;
    
    text-align: center;
}
.vf_input{
    width: 55px;
    height: 12px;
    border: 1px solid #009de1;
    font-size: 9px;
    text-align: center;
    background: #FFCF5C !important;
}
.vf_submit{
    display: inline-block;
    width: 45px;
    height: 14px;
    font-size: 9px;
    color: yellow;
    border: 1px solid #009de1;
    background: #2a2c58 !important;
    cursor: pointer;
}
.vf_submit:hover{color: white;}
.vf_submit_img{display: inline-block; height: 20px; vertical-align: bottom;}
.vf_a{
    
    font-size: 9px;
    color: white;
}
.znak_lk{display: inline-block; vertical-align: bottom; margin: 0 5px 0 0; cursor: pointer;}
.znak_lk:hover{width: 21px; margin:0 3px 0 0;}
.znak_exid{display: inline-block; vertical-align: bottom; margin: 0 5px 0 0; cursor: pointer;}
.znak_exid:hover{width: 21px; margin:0 3px 0 0;}
/*Затемнение дисплея*/
.overlay {
    background-color: rgba(1, 0, 0, 0.77);
    right: 0;
    left: 0;
    position: fixed; 
    top: 0;
    bottom: 0;
    z-index: 11;
    display: none;
}
/*Слой становится видимым*/
.overlay:target {
    display: block;
}
/*Растягиваю картинку на всю ширину попапа*/
.vf_window img { 
   width: 100%;
}
/*Характеристики самого окна, которое появляется после клика на кнопке*/
.vf_window {
    left: 50%;
    z-index: 12;
    margin: 0;
    position: fixed;
    padding: 1px;
    border: 1px solid #383738;
    background: #fefeff;
    border-radius: 5px;
    box-shadow: 0 13px 21px rgba(0,1,0,.19),0 21px 63px rgba(0,1,0,.31);
    transform: translate(-50%, -450%);
    transition: transform 0.6s ease-out;
}
/*Появление модального окошка с верхнего края экрана*/
.overlay:target+.vf_window {
    transform: translate(-50%, 0);
    top: 3.5%;
}
/*Внешний вид кнопки «Закрыть»*/
.close {
    top: -11px;
    right: -11px;
    width: 23px;
    height: 23px;
    position: absolute;
    padding: 0;
    border: 2px solid #ccd;
    border-radius: 15px;
    background-color: rgba(61, 61, 61, 0.81);
    box-shadow: 0 0 12px #010;
    text-align: center;
    text-decoration: none;
    font: 18px sans-serif;
    font-weight: bold;
    transition: all ease .9s;
}
.close:before {
    color: rgba(254, 254, 254, 0.89);
    content: "X";
    text-shadow: 0 1px 3px #010;
    font-size: 14px;
}
/*Изменение характеристик при наведении на область */
.close:hover {
    background-color: rgba(253, 21, 0, 0.83);
    transform: rotate(360deg);    
}
/*Оформление главной кнопки*/
#button {
  margin-left: 40%;
font-size: 33px;
  border-radius: 11px;
    background-color: rgba(63, 63, 63, 0.9);
    box-shadow: 0 3px 10px #010;
    text-align: center;
    text-decoration: none;
   background: #DCDCDC; 
    padding: 6px 17px; 
}