﻿.timeoutPopup3 {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, .8);
    z-index: 999;
    visibility: visible;
    opacity: 1;
    transition: opacity .1s linear, visibility .1s linear, background .1s linear
}

.timeoutPopup_hidden3 {
    visibility: hidden;
    opacity: 0;
    background: transparent
}

.timeoutPopup_hidden3 .timeoutPopup__wrapper3 {
    top: -100%;
    visibility: hidden;
    opacity: 0
}

.timeoutPopup__wrapper3 {
    margin: 20px 0;
    position: relative;
    max-width: 1200px;
    visibility: visible;
    opacity: 1;
    transition: opacity .4s linear, visibility .4s linear, top .4s linear;
    border: aqua solid 5px;
	border-radius: 10px 10px 10px 10px;
}

.timeoutPopup__content {
    background: #2d2d2d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 10px;
    border-radius: 5px;
}

.timeoutPopup__content2 {
	font-size: 18px;	
	font-style:italic;
	color:yellow;
    background: #2d2d2d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 10px;
    margin-top:-45px;
    border-radius: 5px;
}

.timeoutPopup__content3 {
	font-size: 18px;	
	font-style:italic;
    font-weight:bold;
	color:yellow;
    background: #2d2d2d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 10px;
    margin-top:-45px;
    border-radius: 5px;
}

.timeoutPopup__close {
    position: absolute;
    right: 3px;
    top: 6px;
    width: 30px;
    height: 30px;
    background: url(../img/timeoutPopup__close.png) no-repeat;
    opacity: 1;
    transition: 0.3s;
}
   
.timeoutPopup__close:hover{
    position: absolute;
    right: 3px;
    top: 6px;
    width: 30px;
    height: 30px;
    opacity: .7;
    cursor: pointer;
}


@media (min-width: 320px) and (max-width: 767px) {

.timeoutPopup__close {
    position: absolute;
    right: 6px;
    top: 7px;
    width: 30px;
    height: 30px;
    background: url(../img/timeoutPopup__close.png) no-repeat;
    opacity: 1;
    transition: 0.3s;
}
   
.timeoutPopup__close:hover{
    position: absolute;
    right: 6px;
    top: 7px;
    width: 30px;
    height: 30px;
    opacity: .7;
    cursor: pointer;
}
