* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;	
    font-family: 'Piazzolla', serif;
	
}
a {
	font-family: 'Piazzolla', serif;
	font-size: 16px;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
}
a:focus {
	outline: none !important;
}
a:hover {
  text-decoration: none;
  color: #ffd700;
}
p {
	font-family: 'Piazzolla', serif;
	font-size: 16px;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}
input {
	outline: none;
	border: none;
}
button {
	outline: none !important;
	border: none;
	background: transparent;
}
button:hover {
	cursor: pointer;
}

.red { color:red;}
.txt1 {
  font-family: 'Piazzolla', serif;
  font-size: 20px;
  color: #555555;
  margin: 15px 0;
}

.txt2 {
  font-family: 'Piazzolla', serif;
  font-size: 16px;
  color: #999999;
}
.txt3 {
  font-family: 'Piazzolla', serif;
  font-size: 26px;
  display: flex;
  justify-content: center;
  color: #999999;
}

.main-login {  
  width: 100%;  
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.wrap-login {
  width: 500px;
  padding: 60px; 
  background: #fff;
  position: relative;
  border-radius: 0px 350px / 2000px;
}
/*Form */
.title {
  display: block;
  padding: 0 0 40px; 
  font-family: 'Piazzolla', serif;
  font-size: 40px;
  text-align: center;
}
.wrap-input {
  width: 100%;
  position: relative;
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin: 15px 0;
}
.form-input {
  font-family: 'Piazzolla', serif;
  color: #333333;
  font-size: 17px;
  display: block;
  width: 100%;
  background: transparent;
  height: 57px;
  padding: 0 20px;
}
.form-input:focus  {
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 15px 1px #ffd700;
}
.form-btn {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 60px;
  background-color: #333333;
  border-radius: 10px;
  font-family: 'Piazzolla', serif;
  font-size: 19px;
  font-weight: bold;
  text-shadow: black 0 0 16px;
  color: #fff;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  background: #ffd700;
  opacity: 0;
  transition: all 0.8s;
  text-shadow: black 0 0 2px; 
}
.form-btn:hover:before {
  opacity: 1;
}
.modal {
  z-index: 2;
  display: none; 
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.close {
  color: #aaaaaa;
  font-size: 20px;
}
.close:hover { cursor: pointer; color: #000;}


.contactForm {
  border-radius: 0px 350px / 2000px;
  box-sizing: border-box;
  margin: auto;
  width: 500px;
  background: #fff;  
  padding: 30px 22px;
  box-shadow:
   0 1px 4px rgba(0, 0, 0, .3),
   -23px 0 20px -23px rgba(0, 0, 0, .8),
   23px 0 20px -23px rgba(0, 0, 0, .8),
   0 0 40px rgba(0, 0, 0, .1) inset;
}
.contactForm .formHeader {
  border-bottom: 2px dashed #ffd700;
  text-align: center;
   font-size: 25px;
}



.container-recovery {
  width: 100%;  
  display: flex;
  flex-wrap: wrap;
}

.wrap-recovery {
  width: 500px;
  min-height: 100vh;
  background: #fff;
  border-radius: 2px;
  position: relative;

}
.recovery-more {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: calc(100% - 500px);
  position: relative;
  z-index: 1;
}

.recovery-input {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #dbdbdb;
  margin-bottom: 25px;
}

.recovery_input {
  display: block;
  width: 100%;
  height: 50px;
  background: transparent;
  font-family: Poppins-Regular;
  font-size: 22px;
  color: #000000;
  line-height: 1.2;
  padding: 0 2px;
}

.focus-recovery_input {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-recovery_input::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background: #ffd700;
  background: linear-gradient(to right, #ffd700, black);
}
.recovery_input:focus + .focus-recovery_input::before {
  width: 100%;
}
.selects  {
  font-size: 18px;
  margin-top: 15px;
  width:99%;
  border:solid 1px #d3cfc7;
  padding:10px; 
  text-overflow: ellipsis;
}
.password-control {
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url(../images/on_eye.ico) 0 0 no-repeat;
}
.password-control.view {
	background: url(../images/off_eye.ico) 0 0 no-repeat;
}
.valid {
	position: absolute;
	bottom: 40px;
	left: -40px;
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url(../images/yes.ico) 0 0 no-repeat;
}
.invalid {
	position: absolute;
	bottom: 40px;
	left: -40px;
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url(../images/no.ico) 0 0 no-repeat;
}
/*Osnova */

.hi{
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 80vw;  
  height: 55px;
box-shadow: #C0C0C0 0 0 12px; 
border: 2px solid #ffd700;
}
.profile{
  font-weight: 600;
  width: 200px;  
  position: relative;
  margin-left:calc(100% - 170px );
}
.menu {	
  margin: 20px;
  position: fixed;
  width: 50px;
  height: 100%;
}
.logo {
  position: fixed; 
  margin-top:35px;
  top: 35px;
  right: 35px;
  font-size: 28px;
  pointer-events: none;
  user-select: none;
}
.menu  a{
  text-decoration: none;
  font-size: 23px;
}
.menu .menu-item {
  cursor: pointer;
  margin-bottom:10px;
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  transition: all 0.5s;
  color: #ffd700;
  text-shadow: #000000  0 2px; 
  box-shadow: #C0C0C0 0 0 12px; 
  border: 2px solid #ffd700;
  border-radius: 20px 2360px / 400px;
}

.menu .menu-item .menu-text {
  position: absolute;
  top: 0;
  left: -187px;
  height: 50px;
  width: 170px;
  background-color: #ffd700;
  font-size: 22px;
  text-align: center;
  transition: all 1s;
}
.menu .menu-item:hover {
  text-shadow: #DCDCDC  0 0 2px; 
  border-color: #ffd700;
  background-color: #ffd700;
  color: #565a60;
  font-size: 35px; 
}
.menu .menu-item:hover .menu-text {
   left: 70px;
   box-shadow: #C0C0C0 0 0 10px; 
}
.content{
	display: flex;
    flex-wrap: wrap;
	align-items:flex-start;
	flex-direction:row;
position: fixed;
overflow: auto;
word-wrap: break-word;
width: 85vw;  
height: calc(-250px + 99vh );
margin-top: 175px ;	
margin-left:auto;
margin-right:auto;
left:0;
right:0;
box-shadow: #C0C0C0 0 0 12px; 
color: #ffd700;
border: 2px solid #ffd700;
padding: 1em;
}


::-webkit-scrollbar-thumb {
background-color:#fdda5c;
}
::-webkit-scrollbar{
width: 8px;
}

.note {
  font-weight: 900;
  letter-spacing: 1.2px;
  color: black;
  position: relative;
  width: 295px;
  padding: 1em;
  margin: 1em;
  background: linear-gradient( to left bottom, transparent 50%, rgba(255, 255, 255, 0.6) 0) no-repeat 100% 0 / 22px 22px, linear-gradient(-135deg, transparent 15px, rgba(253, 218, 92) 0);
  filter: drop-shadow(3px 2px 4px #a9a9a9);
}

.buttonplus {
  font-size: 20px;
  color:#a9a9a9;
  text-align:center;
  height: 35px;
  width: 35px;
  background-color: white;
  border-radius: 40px;
  border: 2px solid rgba(0, 0, 0, 0.05);
}
.note input{
	cursor: text;
	color: black;
	margin-left: 11px;
	margin-bottom: 11px;
    padding: 4px;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    height: 40px;
}
.note textarea{
  letter-spacing: 1.2px;
  color: black;
    resize:vertical;
    overflow: auto;
    outline: none;
    width: 100%;
    padding: 4px;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
    margin-bottom: 10px;
    height: 100%;
}
.text_area
{
    white-space: pre-wrap;       /* css-3 */
   white-space: -moz-pre-wrap;  /* Mozilla, с 1999 года*/
   white-space: -pre-wrap;      /* Opera 4-6 */
   white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;
  padding: 4px;
  border-bottom: 1px solid black;
  margin-bottom: 10px;
  width: 100%;
  background: transparent;
  line-height: 1.2;
  font-weight: 500;
}

.colorsSelector{
  display: none;
  position: relative;
  height: 150px;
  width: 235px;
  background-color: #E9E9E9;
  border: 1px solid #ccc;
  padding: 5px;
  left: 0;
  top: -150px;
}
.buttonplus:hover .colorsSelector{
display: block;
}
.a_palette_color {
    border: 2px solid rgba(0, 0, 0, 0.05);
	box-shadow: 7px 7px 15px rgba(55, 84, 170, 0.15);
	text-shadow: 1px 1px rgba(0,0,0,0.5);
	border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #999;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}
.a_palette_color:nth-child(20n + 1) {  background-color: #fdda5c;}
.a_palette_color:nth-child(20n + 2) {  background-color: #dff9fb;}
.a_palette_color:nth-child(20n + 3) {  background-color: #ffcccc;}
.a_palette_color:nth-child(20n + 4) {  background-color: #DDA0DD;}
.a_palette_color:nth-child(20n + 5) {  background-color: #FFE4B5;}
.a_palette_color:nth-child(20n + 6) {  background-color: #b2bec3;}
.a_palette_color:nth-child(20n + 7) {  background-color: #B0E0E6;}
.a_palette_color:nth-child(20n + 8) {  background-color: #d3b3b8;}
.a_palette_color:nth-child(20n + 9) {  background-color: #90FF81;}
.a_palette_color:nth-child(20n + 10) {  background-color: #B5F2EA;}
.a_palette_color:nth-child(20n + 11) {  background-color: #C6D8FF;}
.a_palette_color:nth-child(20n + 12) {  background-color: #E7ECFF;}
.a_palette_color:nth-child(20n + 13) {  background-color: #AB82FF;}
.a_palette_color:nth-child(20n + 14) {  background-color: #BDB76B;}
.a_palette_color:nth-child(20n + 15) {  background-color: #B5B5B5;}
.a_palette_color:nth-child(20n + 16) {  background-color: #B4EEB4;}
.form_containers  {
  background-color: rgba(76, 76, 76, 0.8) !important;
  height: 100% !important;
  position: fixed !important;
  width: 100% !important;
  z-index: 100 !important;
  top: 0 !important;
  left: 0 !important;
margin:auto !important;
display:none;
    } 
.form_container {
top: 30% !important;
margin:auto !important;  
min-width: 80vw;
    } 



.searchs111 {
    position: fixed; 
  margin-top:35px;
  top: 35px;
  right: 35px;
  float:left !important;  
    width:200px !important;  
  width: 200px !important;    
  top:120px !important;  
  margin-left:calc(100% - 280px ) !important;  
}
.searchs111 form {
  height: 42px;
}
.searchs111 input {
  height: 100%;
  width: 0;
  padding: 0 42px 0 15px;
  border: none;
  border-bottom: 2px solid transparent;
  outline: none;
  background: transparent;
  transition: .4s cubic-bezier(0, 0.8, 0, 1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.searchs111 input:focus {
  width: 300px;
  z-index: 1;
  border-bottom: 2px solid #F9F0DA;
}
.searchs111 button {
  border: none;
  height: 42px;
  width: 42px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.searchs111 button:before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 16px;
  color: black;
}
.double-border-button {
  text-decoration: none;
  text-align:center;
  font-weight: 600;
  font-size: 12pt;
  width: 115px;
  height: 40px;
  display: inline-block;
  padding: 5px;
  position: relative;
  border: 2px solid black;
  color: black;
  transition: .4s;
  margin-left:calc(100% - 120px);
}
.double-border-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: .4s;
}
.double-border-button:hover {
  color: black;
}
.double-border-button:hover:after {
  border-color: black;
  color: black;
  width: calc(100% - 10px);
  height: calc(100% + 10px);
}
#block_profile {
 background-color: #f2f2f2;
 padding: 20px;
 border-radius: 4px;
 border-bottom: 4px solid #ddd;
}
#real-estates-detail #author img {
 border-radius: 100%;
 border: 5px solid #ecf0f1;
 margin: 50px;
}
.switch-field {
	display: flex;
	margin-bottom: 36px;
	overflow: hidden;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 8px 16px;
	margin-right: -1px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #a5dc86;
	box-shadow: none;
}



.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;border-radius: 9px !important;background-color:#333333 !important}