/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

.wrapper{
    width: 98%;
    margin: 40px auto;
   /* overflow: auto;*/
}

.control{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.control a{
    font-size: 27pt;
}

.control a:hover{
    text-decoration: underline;
}

.divSearch{
    width: 500px;
    height: 35px;
    border: 2px solid gray;
    position: relative;
}

.divSearch:before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 7px;
    right: 6px;
    background-image: url('../img/search.png');
    background-repeat: no-repeat;
    background-size: 90%;
    
}

.search{
    width: 100%;
    height: 100%;
    font-size: 16pt;
    padding-left: 10px;
}

.modelTable{
    width: 100%;
    /*min-width: 960px;*/
    margin-top: 20px;
}

.modelTable th{
    padding: 20px;
    height: 50px;
    font-size: 16pt;
    background-color: DimGray;
    color: white;
}

.rowSocket{
    background-color: Gainsboro;
    font-size: 18pt;
    font-weight: 700;
    padding: 10px 20px;
}

.modelTable td{
    padding: 5px 20px;
    /*height: 50px;*/
    font-size: 12pt;
    text-align: center;
}

.modelTable td:first-child{
    text-align: left;
    
}

.modelTable td:nth-child(4){
    white-space: nowrap;
    
}

.modelTable td:first-child span{
    cursor: pointer;
    color: blue;
}

.modelTable td:first-child span:hover{
    text-decoration: underline;
}


.grayRow{
    background-color: rgb(240 240 240);
}

.whiteRow{
    background-color: GhostWhite;
}

/**************************************/
.authreg{
    width: 100%;
    max-width: 500px;
    border: 5px solid DodgerBlue;
    margin: 50px auto;
    padding: 30px;
}

.blockCapt{
    text-align: center;
    font-size: 22pt;
    font-weight: 700;
}

.typeChange{
    text-align: center;
    font-size: 18pt;
    color: DodgerBlue;
    cursor: pointer;
    margin-top: 10px;
}

.divInp{
    font-size: 16pt;
    margin-top: 30px;
    position: relative;
    display: none;
}

.req{
    display: block;
}

.eye{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 35px;
    right: 10px;
    
    background-image: url('../img/hide.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    cursor: pointer;
}

.login, .fio, .mail, .tel, .password, .password2{
    border: 2px solid DodgerBlue;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    font-size: 16pt;
    padding-left: 10px;
}

.star{
    color: red;
}

.divBtn{
    margin-top: 30px;
    text-align: center;
}

.btn{
    height: 50px;
    background-color: DodgerBlue;
    cursor: pointer;
    color: white;
    font-size: 16pt;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px;
}

.btn:hover{
    background-color: blue;
}

.sms{
    color: red;
    font-size: 15pt;
    margin-top: 20px;
}














