* {
	color: #444;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	text-decoration: none !important;
}
html, body {
	font-family: 'Roboto', sans-serif;
	min-height: 100%;
	width: 100%;
	background-color: #fff;
}

.step2, .error {
    display: none;
}
.error {
    font-size: 18px;
    font-weight: bold;
    color: red;
}
.info {
    font-size: 14px;
}
.jcrop-holder {
    display: inline-block;
}

.full-screen-bg {
	position: fixed;
	transform: translateZ(0);
	z-index: 0;
	width: 100%;
	height: 100%;
 	background: url(../css/bg/bg.jpg) no-repeat center center;
	background-size: cover;
}
.full-screen-bg-main {
	position: fixed;
	transform: translateZ(0);
	z-index: 0;
	width: 100%;
	height: 100%;
	background: url(../images/room.jpg) no-repeat center center;
	background-size: cover;
}
a {
	text-decoration: none;
	color: inherit;
}
.header {
	z-index: 1000;
	position: fixed;
	top: 0;
	height: 64px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	padding: 0.5vw 0;
	border-bottom: 2px solid #00CD66;
}
#logo {
	width: 320px;
}
.nav_bar{
	margin-bottom: 0vw;
	height: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.nav-info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 2;
}
.nav_bar_item {
	margin: 0 20px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	padding-bottom: 5px;
	transition: all 250ms ease-in-out;
	border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.nav_bar_item_icon {
	height: 25px;
}
.nav_bar_item:hover{
	border-bottom: 2px solid  #7BC673;
}
.nav_bar_item_active{
	/*font-weight: bold !important;*/
	border-color: #7BC673;
}
form button {
	cursor: pointer;
	border: none;
	background-color: inherit;
	font: inherit;
}
.header-search-btn {
	box-sizing: border-box;
	border: none;
	margin: 0 1vw 0 0 ;
	width: 150px;
	height: 35px;
	font-size: 15px;
	line-height: 31px;
	text-align: center;
	border-radius: 5px;
	background-color: #fff;
	border: 2px solid #3CB371;
	color: #3CB371;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}
.header-search-btn:hover {
	background-color: #3CB371;
	border: 2px solid #3CB371;
	color: #fff;
	text-decoration: none;
}
.content {
	width: 100%;
	min-height: 100%;
	display: flex;
	padding-top: 64px;
	padding-bottom: 85px;
	box-sizing: border-box;
	position: relative;
}
.spec-wrapper {
	width: 100%;
	margin-top: 20px;
	margin-left: 270px;
	box-sizing: border-box;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
}
.sp_item {
	width: 200px;
	max-height: 300px;
	border-radius: 4px;
	padding: 20px 0;
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	position: relative;
	margin-right: 15px;
	margin-bottom: 40px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 300ms ease-in-out;
	cursor: pointer;
}

.sp_item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.profile_img_prev{
	overflow: hidden;
	border-radius: 4px;
	width: 125px;
	height: 125px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	background-color: #eee;
}

.profile_img_prev img{
	max-width: 100%;
}

.name{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 5px;
}
.sp_item_desc_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 60px;
}
.sp_item_desc img {
	width: 10px;
	height: 10px;
	margin-right: 5px;
}
.sp_item_desc {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	font-size: 13px;
	color: #969696;
	text-align: center;
}
.sp_item_desc:last-child {
	margin-right: 0;
}
.sp_check {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 7px;
	right: 7px;
}
.bttn_column{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.bttn{
	border-radius: 3px;
	font-size: 12px;
	background-color: #7BC673;
	color: #fff;
	font-family: Verdana;
	text-align: center;
	padding: 7px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	border: 2px solid rgba(0, 0, 0, 0);
	transition: all 250ms ease-in-out;
}

.bttn:hover {
	background-color: #fff;
	color: #3CB371;
	border-color: #3CB371;
}
.social-contact {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.side_bar {
	height: 100%;
	position: fixed;
	transform: translateZ(0);
	top: 0;
	left: 0;
	padding-bottom: 65px;
}
#admin_panel {
	box-sizing: border-box;
	width: 350px;
	background-color: #fff;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	position: fixed;
	height: 100%;
	top: 0;
	left: -350px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 250ms ease-in-out;
}
.admin-panel-show {
	left: 0 !important;
}
#admin_panel a {
	padding: 10px 0;
}
.boxarea_side {
	padding-bottom: 10px;
	box-sizing: border-box;
	width: 250px;
	position: fixed;
	background-color: #fff;
	transform: translateZ(0);
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	transition: all 250ms ease-in-out;
	overflow-y: scroll;
	height: calc(100% - 140px);
}

.menu{
	height: 100%;
	width: 260px;
	border-left: 1px solid #00CD66;
	border-right: 1px solid #00CD66;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-content: space-around;
	align-items: center;
	background-color: 	#F5F5F5;
}
.box_name_header {
	border-bottom: 1px solid #dfe0e4;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.box_name_header span {
	color: #888;
	font-size: 14px;
	font-weight: bold;
}
.box_name_header_close {
	width: 12px;
	height: 12px;
	cursor: pointer;
}
.box_name_1{
	padding-left: 10px;
	padding-bottom: 5px;
	padding-top: 5px;
	font-size: 12px;
	font-weight: bold;
	margin: 6px 0 3px 0;
	width: 100%;
}

#box_item_1{
	margin-left: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 13px;
}



#box_item_1 input{
	margin: 3px 4px;
	cursor: pointer;
	z-index: 999999;
}






/*For sign_in*/

.log_in_btn{
	cursor: pointer;
	font-weight: bold;
}

#log_in_wrapper{
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(62, 78, 62, 0.8);
}



#log_in{
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;

}

.log_in_inner{
	display: flex;
	top: calc(50% - 175px);
	left: calc(50% - 175px);
	flex-direction: column;
	align-content: space-around;
	justify-content: space-around;
	align-items: center;
	/*border: 1px solid #C9D929;*/
	background-color: 	#FFFAFA;
	border-radius: 5px;
	height: 350px;
	width: 350px;
	z-index: 9999;
	position: fixed;
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.log_in_inner label {
	text-align: center;
	font-size: 14px;
	padding: 0 10px;
	line-height: 1.4;
	letter-spacing: 1px;
}
.log_in_header {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

#close_log_in{
	cursor: pointer;
	position: absolute;
	width: 13px;
	height: 13px;
	top: 10px;
	right: 10px;
}

.shown{
	display: flex
	!important;
}

#log_in .f_column{

}

 #log_in .f_column label{
	font-size: 20px;
	text-align: justify;
	width: 94%;
}
.f_column button img{
	margin-left: 0.2vw;
}
#log_in button{
	border-radius: 5px;
	width: 200px;
	height: 33px;
	line-height: 28px;
	background-color: #3CB371;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 14px;
	margin-top: -30px;
	transition: all 250ms ease-in-out;
}

#log_in button:hover{
	background-color: #7BC673;
}
.text-wrapper {
	height: auto;
	text-align: left;
	padding: 10px 0 ;
	padding-top: 20px;
	margin: auto;
	max-width: 800px;
}
.text-wrapper h1 {
	text-align: center;
	font-size: 26px;
	color: #696969;
	padding-bottom: 20px;
}
.text-wrapper h2 {
	opacity: 0.9;
	font-weight: 500;
	font-size: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}
.text-wrapper p {
	padding-bottom: 20px;
	line-height: 1.4;
}
.text-wrapper ul {
	margin-bottom: 20px;
	line-height: 1.4;
	list-style: none;
}
.text-wrapper li {
	position: relative;
	margin-bottom: 10px;
	font-size: 15px;
}
.text-wrapper li::before {
	content: '';
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #66B36A;
	right: calc(100% + 7px);
	top: 5px;
}
.hint {
	font-size: 15px;
	z-index: 1;
}
.warning {
	position: absolute;
	top: calc(100% - 5px);
	margin-left: 270px;
	font-size: 15px;
	color: #EF4836;
}
.success {
	color: #26A65B;
}

.sign_text a{
	cursor: pointer;
}
#create_page{
	width: 300px
	!important;
	 background-color: #C9D929;
	 margin: 1vw 0;
	 border: 3px solid #C9D929;
	 height: 40px;
	 font-size: 18px;
}

#create_page:hover{
	background-color: #fff;
	color:  #C9D929;
	 border: 3px solid #C9D929;

}
#content_sign_6 {
	min-height: calc(90% - 142px);
	text-align: center;
	/*height: ;*/
	font-size: 22px;
	color:  #7BC673
	!important;
}
.text-wrapper button{
	margin: 1vw 2vw;
	background-color: #C9D929;
	font-size:20px;
	color: #fff;
	border: none;
	width: 120px;
	height: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	align-content: center;
	cursor: pointer;
	border-radius: 40px;

}

.text-wrapper button p{
	color: #fff;
}

#back{
	background-color: #7BC673
	!important;
}

#back img{
	margin: 10px 10px 10px 0
	!important;
}

.text-wrapper button:hover{
background-color: #7BC673;
}

#back:hover{
	background-color: #C9D929;
}


.text-wrapper button img{
	height: 25px;
	margin: 10px 0 10px 10px;
}




.sign_row{
	font-size: 17px;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 2vw 0;
	position: relative;
}

.sign_row p{
	width: 250px;
	font-size: 17px;
	margin-right: 1vw;
}

.sign_row input{
	font-family: Verdana;
	width: 350px;
	height: 30px;
	margin: 0vw 0;
	border: 1px solid #3CB371;
	border-radius: 3px;
	font-size: 17px;
	padding: 10px;
	z-index: 2;
}


.sign_row input:focus{
	border: 2px solid #3CB371;
}

.sign_row textarea{
	font-family: Verdana;
	width: 40vw;
	height: 24vw;
	max-width: 30vw;
	max-height: 10vw;
	margin: 55px 0;
	border: 1px solid #3CB371;
	border-radius: 5px;
	font-size: 0.9vw;
	padding: 10px;
	line-height: 1.4vw;

}


.sign_row textarea:focus{
	border: 2px solid #3CB371;
}

.sign_box{
	display: flex;
	flex-direction: column;
}
.small_box{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 2vw 0;

}

.small_box img{
	width: 20px;
	cursor: pointer;
}

.small_box p{
	width: 300px;
	font-size: 17px;
	z-index: 1;
	margin-right: 1vw;
}
.sign_box input{
	width: 16px;
	margin-right: 1vw;
	cursor: pointer;
	text-align: center;
}
.small {
	font-size: 17px;
	margin: 0;
	margin-bottom: 10px;
}
.small p {
	font-size: 17px;
	line-height: 1.4;
	margin:0;
}
/*#input_sm {
	font-size: 14px;
	height: 24px;
	width:160px;
	margin-left: -250px;
}
#input {

	font-size: 14px;
	height: 24px;
	width:160px;
	margin-left: -140px;
}*/`
#file {
	padding: 0;
	cursor: pointer;
	border: none;
	font-size: 14px;
}

.center-wrapper {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 98%;
	background-size: cover;
	z-index: 1;
}
.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 600px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	padding: 35px 0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.18);
	z-index: 1;
}
.center-desc {
	text-align: center;
	width: 90%;
	font-size: 14px;
	line-height: 1.4;
	color: #444;
}
.center-button {
	background-color: #3CB371;
	color: #fff;
	letter-spacing: 1px;
	font-size: 20px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	margin-bottom: 10px;
	transition: all 250ms ease-in-out;
}
.center-button-icon {
	height: 23px;
	margin-right: 15px;
}
.center-button:hover {
	color: #fff;
	opacity: 0.8;
}


#btn_find{
	border-radius: 5px;
	margin: 20px 5px;
	font-size: 16px;
	cursor: pointer;
	height: 30px;
	width: 65px;
	background-color: #fff;
	border: 2px solid #3CB371;
	color: #3CB371;
}

#btn_find:hover{
	background-color: #3CB371;
	border: 2px solid #3CB371;
	color: #FFF;
}




.box_link:hover{
	color: #C9D929;

}

#box_form{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin: 0 0 2vw 0 ;
	width: 100%;
}

.box_row{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.box_column{
	display: flex;
	flex-direction: column;
	width: auto;
	justify-content: flex-start;
	border-bottom: 1px solid #dfe0e4;
	padding-bottom: 10px;
}
.box_column:last-child {
	border-bottom: 0;
}

#box_item{

	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0.8vw 0 0 -10vw;
}

#box_item input{

	height: 1.2vw;
	margin-left: -1vw;
}

#box_item label{
	display: inline;
	margin: 0 0 0 -10.5vw;
	font-size: 1.2vw;
	line-height: 1.6vw;
}

.box_name{
	font-weight: bold;
	display: inline;
	font-size: 1.4vw;
	margin: 2vw 0 0.5vw;
}

#filter{
	width: 94%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-content: space-around;
	justify-content: space-around;
}


#filter a{
	margin: 0 auto;
}




/*For footer*/

#footer {
	z-index: 999;
	position: fixed;
	transform: translateZ(0);
	bottom: 0;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 70px;
	background-color: #3CB371;
	border-top:6px double #fff;
	box-sizing: content-box;
}

.cal{

	position: absolute;
	bottom: 0;
}

.f_item{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.f_item_text {
	color: #fff;
  font-size: 14px;
}
.f_item:hover {
	opacity: 0.9;
}
.feedback {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.f_item img{
	height: 40px;
	/*margin: 10px;*/
}

#logo_s{
	height: 60px;
	margin: 0 1vw;
}

.contacts{
	color: #fff;
	font-size: 14px;
	font-family: Verdana;
	line-height: 1.8vw;
	margin: 0 0 0 1vw;
}



#location{
	width: 100%;
	height: 100%;
	border: 2px solid #C9D929;
	margin: auto 0;
}
.table-content {
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	padding: 20px;
	margin: 20px auto;
}

/*For popup-form*/

.row{
	display: flex;
	flex-direction: row;
	z-index: 1;
}


.column{
display: flex;
flex-direction: column;
justify-content: space-between;
}

.popup-box {
	overflow: auto;
	display: none;
  position: fixed;
	transform: translateZ(0);
  top: 1vh;
  border-radius: 20px;
  background: #fff;
  width: 50vw;
  height: 90%;
  left: 25vw;
  z-index: 9999999;
}
.popup-box-1 {
	overflow-x: hidden;
	overflow: auto;
	display: none;
  position: fixed;
	transform: translateZ(0);
  top: 1vh;
  border-radius: 5px;
	padding: 20px;
  background: #fff;
  width: 800px;
  height: 95%;
  left: calc(50% - 400px);
  z-index: 1001;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.popup-box-1::-webkit-scrollbar {
  width: 8px;
}
.popup-box-1::-webkit-scrollbar-track {
	background-color: #D2D7D3;
}
.popup-box-1::-webkit-scrollbar-thumb {
	background-color: #95A5A6;
	border-radius: 4px;
}
#popup-box-1{
	overflow-x: hidden;
}

#popup-box-2{
	overflow: hidden;
}


#popup-box-6{
	overflow-x: hidden;

}

#popup-box-7{
	overflow-x: hidden;

}

.search-close {
	position: absolute;
	top: 25px;
	right: 10px;
}
.pop_content{
	width: 90%;
	margin-left:5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 32px;
}

.pop_text{
	width: 90%;
}

.profile_img{
	overflow: hidden;
	margin: auto;
	width: 125px;
	height: 125px;
	border: 1px solid  #3CB371;
}

.profile_img img{
	min-height: 100%;
	width: 100%;
}
.pop_name{
	display: inline;
	color: #828282;
	font-size: 1.4vw;
	font-weight: 600;
	margin: 0vw 0vw 10px 0;
}
.pop_text div{
	min-width: 50%;
	font-size: 1.2vw;
	margin: 14px 18px 0 0;
}
.mark{
	margin:14px 7px 0 0 ;
	width: 5%;

}
.plus{
	opacity: 0.6;
	width: 10px;
	margin-right: 5px;
}
.contacts_profile{
	display: none;
	border-radius: 3px;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	height: auto;
	width: 600px;
	margin: auto;
	margin-top: 25px;
	max-width: 90%;
	background-color: #3CB371;
	align-content: space-around;
}

.contacts_profile .row{
	flex-flow: row wrap;
	justify-content: space-around;
}


.shown_c{
	display: flex;
}

.contacts_profile img{
	width: 20px;
	margin: 0 0.5vw;
}

.contacts_profile div{
	display: flex;
	align-items: center;
	margin: 10px 15px;
	color: #fff;
	font-size: 14px;

}


.connect, button[name=connect]{
	cursor: pointer;
	width: 140px;
	height: 35px;
	font-size: 17px;
	line-height: 35px;
	text-align: center;
	border-radius: 50px;
	background-color: #3CB371;
	border: 2px solid #3CB371;
	color: #fff;
	margin: 2vw auto;
	letter-spacing: 1px;
}

.connect:hover{
	background-color: #fff;
	color:#3CB371;
}

#connect, button[name=connect]{
	cursor: pointer;
	width: 140px;
	height: 35px;
	font-size: 17px;
	line-height: 30px;
	text-align: center;
	border-radius: 50px;
	background-color: #3CB371;
	border: 2px solid #3CB371;
	color: #fff;
	margin: 2vw auto;
}

#connect:hover{
	background-color: #fff;
	color:#3CB371;
}
.search-control {
	width: 27px;
	cursor: pointer;
	position: fixed;
	height: 100%;
	width: 100px;
	z-index: 9999999;
	display: none;
	background-color: rgba(0, 0, 0, 0);
	justify-content: center;
	align-items: center;
	transition: all 350ms ease-in-out;
}
.search-control:hover {
	background-color: rgba(62, 78, 62, 0.2);
}
.search-control img {
	height: 40px;
	opacity: 1;
}
.prev {
	left: 0;
}
.next{
	right: 0;
}
.prev img {
	transform: rotate(180deg);
}
.popup-box .close {
	right: 15px;
	top: 15px;
	cursor: pointer;
    position: absolute;
    float: right;
    width: 20px;
    height: 20px;
}


.popup-box-1 .close {
	right: 14px;
	top: 14px;
	cursor: pointer;
    position: absolute;
    float: right;
    width: 16px;
    height: 16px;
}


.f_row{
	margin: 55px auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.f_column{
	position: relative
	!important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 200px;
}

.popup-box h2 {
	font-family: Verdana;
	text-align: center;
    margin:  auto;
    margin-top: 40px;
    font-size: 30px;
    line-height: 45px;
}

.popup-box form{
	width: 92%;
	display: flex;
	flex-direction: column;
	margin: auto;
	margin-top: 30px;
}

.popup-box input{
	font-family: Verdana;
	display: block;
	width: 300px;
	height: 34px;
	margin: 14px 0;
	border: 1px solid #C9D929;
	border-radius: 5px;
	padding-left: 7px;
	font-size: 14px;
	margin-right: 20px;
}
.red{
	font-size: 16px;
	margin-left: 25px
	!important;
}

.red div label{
	width: 180px;
}

.red div textarea{
	width: 180px;
	height: 60px;
}
.registrated {
	position: inherit;
}
.reg {
	margin-top: 15px;
}
.reg > .row {
	margin-bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
}
.reg > .row label {
	text-align: right;
	width: 35%;
	margin-right: 20px;
}
.reg > .row input[type='radio'] {
	margin-right: 5px;
}
.reg > .row input[type='checkbox'] {
	margin-right: 5px;
}
.another {
	font-size: 14px;
  height: 24px;
  width: 160px;
	border: 1px solid #3CB371;
  border-radius: 5px;
}
.row-box {
	width: 380px;
}


.redag{
	margin-right: 0;
	border:1px solid  #3CB371;
	width: 380px
	!important;
	height: 30px;
	font-size: 16px;
}



.red_btn{
background-color: #3CB371;
color: #fff;
border: none;
}



.reg_app div{
	margin: 10px 0
	!important;
}

.reg_app div label{
	width: 200px;
}


.reg_app div textarea{
	height: 200px;
}


.popup-box textarea{
	font-family: Verdana;
	margin-top: -1.6vw;
	height: 320px;
	max-height: 320px;
	display: block;
	width: 320px;
	max-width:320px;
	border: 1px solid #C9D929;
	border-radius: 5px;
	padding: 0.5vw;
	font-size: 14px;
}

.popup-box input:focus{
	outline: none;
	border: 2px solid #C9D929;
}


.popup-box textarea:focus{
	outline: none;
	border: 2px solid #C9D929;
}

.popup-box button{
	width:231px;
	height: 55px;
	font-size: 19px;
	font-weight: 100;
	letter-spacing: 2px;
	text-align: center;
	border-radius: 50px;
	background-color: #3CB371;
	color: #fff;
	border: none;
	cursor: pointer;
	margin: 0 auto;
}

.popup-box button:hover{
	background-color: #7BC673;
}

#blackout {
	background: rgba(62, 78, 62, 0.8);
  position: fixed;
	transform: translateZ(0);
  top: 0;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

/*For calendar*/

.adm_calendar {
	z-index: 99;
	position: absolute;
	left: 160px;
	width:auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-color: #fff;
}

.adm_history {
	padding: 10px;
	width: 100%;
	background-color: #DCDCDC;
}
.adm_history > table {
	width: 100%;
}
.adm_history tr:nth-child(2n) {
	background-color: #C7C7C7;
}

.adm_history td{
	width: auto;
	color: #444444;
	border: 1px solid #A7A7A7;
}

.my_reservations{
	width: 500px;
	margin-top: 10px;
	padding: 10px;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.my_reservations table {
	width: 100%;
}
.my_reservations td {
	text-align: center;
}

.event_list{
	margin: 5px 0;
}

#delete{
	height: 15px;
	width: 15px;
	margin: 5px;
}

#add{
	height: 15px;
	width: 15px;
	margin: 5px;
}
.calendar-wrapper {
	/*overflow: hidden;*/
	/*position: fixed;
	left: calc(50% - 300px);*/
	margin: auto;
	margin-top: 10px;
	margin-bottom: 20px;
	background-color: #fff;
	width: 600px;
	/*padding: 10px;*/
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	position: relative;
}
.calendars {
	width: auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.calendar {
	margin-right: 20px;
}
.calendar:last-of-type {
	margin-right: 0;
}
.calendar-day-header-wrapper {
	height: 45px;
}
.calendar-day-header {
  border-top: 1px solid #dfe0e4;
	padding: 10px;
	height: 45px;
	background-color: #fff;
	border-radius: 0 0 4px 4px;
	width: 600px;
	top: 64px;
	transition: all 200ms ease;
	text-align: center;
}
.fixed {
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	position: fixed;
	z-index: 9999;
	left: calc(50% - 300px);
}
.calendar-day-header > .date {
	font-size: 20px;
	color: #848484;
}

.calendar-reserv {
	height: 100%;
	width: 580px;
	margin: auto;
	margin-top: 0;
}
.calendar-reserv-item {
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	margin-bottom: 20px;
	padding: 10px;
}
.calendar-reserv-row {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.calendar-reserv-row-item {
	font-size: 14px;
  margin-right: 15px;
  color: #929292;
}
.calendar-reserv-row > .row-header {
	width: 100%;
	display: flex;
	/*align-items: center;*/
	justify-content: space-between;
}
.calendar-reserv-row p {
	color: #656565;
	font-size: 16px;
	line-height: 1.4;
}
.row-header > .date {
	color: #444;
	font-size: 25px;
}
.calendar-resern-row-close {
	width: 15px;
	height: 15px;
	cursor: pointer;
	transition: all 200ms ease-in-out;
}
.calendar-resern-row-close {
	opacity: 0.8;
}
.calendar-reserv-title {
	font-size: 20px;
}
.none {
	display:none;
}
.dropdown {
	color: #444444;
	font-size: 1.2vw;
}
.calender_section {
	width: 289px;
}
.calender_section h2 {
	color:#444444;
	font-size:16px;
	text-align:center;
	line-height:40px;
}
.calender_section h2 a {
	color:#F58220;
	float:none;
 }
.calender_section_top {
	width:100%;
	float:left;
}
.calender_section_top ul {
	padding:0;
	list-style-type:none;
}
.calender_section_top ul li {
	color: #828282;
	float:left;
	display:block;
	width:41px;
	border-right:1px solid #fff;
	text-align:center;
	font-size:14px;
	min-height:0;
	background:none;
	box-shadow:none;
	margin:0;
	padding:0;
}
.calender_section_bot {
	width:100%;
	float:left;
}
.calender_section_bot ul {
	margin:0;
	padding:0;
	list-style-type:none;
}
.calender_section_bot ul li {
	background-color: #fff;
	font-size: 13px;
	float:left;
	width:41px;
	height:41px;
	text-align:center;
	min-height:0;
	background:none;
	box-shadow:none;
	margin:0;
	padding:0;
	position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.calender_section_bot ul li span {
	width: 23px;
	height: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align:center;
	border-radius: 50%;
	padding-bottom: 1px;
	padding-right: 1px;
	/*что за хуйня?*/
}

.light_grey{color: #C1C1C1; !important;}
.grey{ background-color: #00cd66 !important; color: #E9FFF4;}
.light_sky{ background-color:#F4B350 !important; color: #FFF5E6;}
.dark_sky{ background-color: #EF4836 !important; color: #FFE9E6}

.reserv-wrap {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.reserv-wrap a {
	color: #868686;
	display: flex;
	align-items: center;
}
.reserv-wrap a:hover {
	color: #868686;
	opacity: 0.8;
}
.reserv-wrap img {
	width: 15px;
	height: 15px;
	margin-left: 10px;
}
/*========== Hover Popup ===============*/
.date_cell {
	cursor: pointer;
	transition: background-color 100ms ease-in-out;
}
.date_cell:hover { background-color: #DADFE1;}
.date_popup_wrap {
	position: absolute;
	width: 150px;
	/*height: 100px;*/
	z-index: 999;
	top: 100%;
	left: 0;
	right: calc(50% - 75px);
	color: #666 !important;
	/*border-radius: 4px;*/
	background-color: #D2D2D2;
}
.date_window {
	text-align: left;
	font-size: 14px;
	padding: 10px;
	display: flex;
	flex-direction: column;
}
.date_windows_header {
	margin-bottom: 10px;
	color: #5F5E5E;
}
.date_window_link {
	margin-bottom: 5px;
}
.events_window {
	overflow: hidden;
	overflow-y: auto;
	width: 133px;
	height: 115px;
	margin-top: 28px;
	margin-left: 25px;
}
.event_wrap {
	margin-bottom: 10px; padding-bottom: 10px;
	border-bottom: solid 1px #E4E4E7;
	font-size: 12px;
	padding: 3px;
}

.popup_event {
	margin-bottom: 2px;
	padding: 2px;
	font-size: 16px;
	width:100%;
}
.popup_event a {color: #000000 !important;}
.packeg_box a {color: #F58220;float: right;}
/*a:hover {color: #181919;text-decoration: underline;}*/
.black_overlay {
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: rgba(62, 78, 62, 0.8);
	z-index:99999;
}
.white_content {
	border-radius: 5px;
	display: none;
	position: fixed;
	width: 500px;
	height: auto;
	left: calc(50% - 250px);
	top: 15%;
	padding: 16px;
	background-color: white;
	z-index: 999999;
	overflow: auto;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.white_content p{
	font-size: 18px;
	color: #3CB371;
	margin-bottom: 10px;
}
.booking-row {
	display: flex;
	flex-direction: column;
}
.booking {
	color: #3CB371;
	border: 2px solid #3CB371;
	border-radius: 3px;
	padding: 5px 7px;
	margin-top: 5px;
	transition: all 250ms ease-in-out;
}
.booking:hover {
	color: #fff;
	background-color: #3CB371;

}

.white_content select{
	height: 30px;
  margin-bottom: 15px;
  font-size: 16px;
	width: 250px;
}
.event {
	/*margin-top: 15px;*/
}
.periodHour {
	margin-bottom: 10px;
}
.white_content > .date {
	width: 200px;
}
.white_content input[type=button]{
	border-radius: 5px;
	margin: 20px 5px;
	font-size: 16px;
	cursor: pointer;
	height: 30px;
	width: 120px;
	background-color: #fff;
	border: 2px solid #3CB371;
	color: #3CB371;
}
.white_content input[type=button]:hover{
	background-color: #3CB371;
	border: 2px solid #3CB371;
	color: #FFF;
}
.white_content input[type=text]{
	border: none;
	background-color: inherit;
}
.booking-input {
	width: 250px !important;
	margin: 0 !important;
	margin-bottom: 10px !important;
	padding-left: 5px !important;
	padding-bottom: 5px !important;
	color: #444 !important;
	border-bottom: 2px solid #7FBF78 !important;
}
.booking-input:hover {
	background-color: #fff !important;
	opacity: 0.95 !important;
}
.white_content textarea{
	height: 100px;
}

#close{
  cursor: pointer;
  position: absolute;
  top: 0; right: 0;
  margin: 2%;
  width: 15px;
}
li img{
	width: 10px;
	margin: 0 4px;
	cursor: pointer;
}
.login_buttons{
	position: absolute;
	height: 2%;
	top: 0; right: 0;
	margin: 2%;
}
.login_buttons input{
	display: inline-block;
}
.user_form{
	position: absolute;
	top: 6%;
	margin: 2%;
	right: 0;
}
.signin_form{
	position: absolute;
	width: 50%;
	left: 50%;
	margin-left: -25%;
	height: auto;
}
#logout{
	position: absolute;
	left: 45%;
}
.history{
	position: absolute;
	top: 50%;
	width: 50%;
}
.highlight{
	border: 1px solid;
	border-color: red;
}
input[name=history]{
	position: absolute;
	top: 50%;
}





.menu div{
	box-sizing: content-box;
	font-size: 15px;
	text-align: center;
	margin: -1vw 0;
}
.menu div:hover{
	color: #C9D929;
}

/*For admin panel*/


.admin_item{
	font-size: 14px;
	text-align: center;
}

.admin_item:hover{
	color: #000;
}


table{
	top: 70px;
	left: 175px;
	font-size: 14px;
	border-collapse: collapse;
	max-width: 1200px;
}

thead{
	text-align: center;
	font-weight: bold;
}
tr:nth-child(2n) {
	background-color: #F3F3F3;
}

td {
	border: 1px solid #CACACA;
	height: 26px;
	padding: 0 14px;
	font-size: 14px;
}

tbody{
	font-size: 16px;
}

.table_buttons{
	text-align: center;
}

.see_more{
	margin: 10px;
	padding: 7px 10px;
	cursor: pointer;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	white-space: nowrap;
	color: #0970B5;
	/*background-color: #7589C1;*/
	border: 2px solid #0970B5;
	transition: all 250ms ease-in-out;
}
.see_more:hover{
	opacity: 0.8;
	background-color: #0970B5;
	color: #fff;
}
.footer-search {
	top: 5px !important;
	right: 5px !important;
}
.confirm{
	margin: 10px;
	padding: 7px 10px;
	cursor: pointer;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	white-space: nowrap;
	color: #fff;
	background-color: #7BC673;
	border: 2px solid #7BC673;
	transition: all 250ms ease-in-out;
}
.confirm:hover {
	opacity: 0.8;
}
.cencel {
	margin: 10px;
	padding: 7px 10px;
	cursor: pointer;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #D91E18;
	white-space: nowrap;
	border: 2px solid #D91E18;
	transition: all 250ms ease-in-out;
}
.cencel:hover {
	opacity: 0.8;
	background-color: #D91E18;
	color: #fff;
}

#actions {
	width: 800px;
	margin: auto;
	margin-top: 20px;
	padding: 20px;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
#actions li {
	margin-bottom: 5px;
}
#actions p {
	font-size: 20px;
	padding-bottom: 20px;
}

.label{
	width: 40vw;
}

.applications{
	position: absolute;
	right: 0;
}
.applications img{
	cursor: pointer;
	width: 16px;
}



/*For admin page*/

#admin{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: url(bg/bg_1.jpg);
	background-size: cover;
}


#admin form{
	padding: 10px 0;
	border-radius: 5px;
	height: 300px;
	width: 300px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

#admin form p{
	color: #444;
	font-size: 30px;
}

#admin form input{
	text-align: center;
	padding: 10px;
	height: 34px;
	width: 230px;
	border-radius: 30px;
	color: #3CB371;
	font-size: 16px;
	border: 1px solid #3CB371;
}

#admin form button{
	cursor: pointer;
	height: 36px;
	width: 120px;
	border-radius: 40px;
	background-color: #3CB371;
	color: #fff;
	font-size: 20px;
	border: 2px solid #3CB371;
}

#admin form button:hover{
	background-color:#fff;
	color: #3CB371;
}
.history{
	position: absolute;
	top: 50%;
	left: 45%;
	width: 50%;
}
.phone {
	display: none;
}
.user {
	display: flex;
	align-items: center;
	margin-right: 10px;
	padding: 3px;
	border-radius: 4px;
	padding-left: 10px;
	transition: all 300ms ease-in-out;
	cursor: pointer;
}
.user:hover {
	background-color: #C5EED7;
}
.user-name {
	margin-right: 10px;
}
.user-avatar {
	width: 33px;
	height: 33px;
	border-radius: 3px;
}
.nav-menu {
	width: 350px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	height: 100%;
	position: fixed;
	top: 0;
	right: -350px;
	display: block;
	z-index: 1000;
	transition: all 300ms ease-in-out;
	padding: 10px;
	transform: translateZ(0);
}
.nav-menu-show {
	right: 0;
}
.nav-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	padding-bottom: 30px;
}
.nav-menu-header {
	font-size: 17px;
}
.nav-menu-links {
	display: flex;
	flex-direction: column;
}
.nav-menu-link {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 2px dotted #DBDBDB;
}
.nav-menu-links-icon {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}
.nav-menu-icon {
	width: 18px;
	cursor: pointer;
}
.account-wrapper {
	width: 800px;
	min-height: 100%;
	margin: auto;
	margin-top: 84px;
  margin-bottom: 90px;
}
.account-icon {
	width: 20px;
	height: 20px;
}
.account-mesg {
	margin-bottom: 20px;
	border-radius: 3px;
	background-color: #66B36A;
	padding: 20px;
	padding-top: 25px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	position: relative;
}
.account-mesg-close {
	width: 15px;
	height: 15px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	opacity: 0.8;
	transition: all 300ms ease-in-out;
}
.account-mesg-close:hover {
	opacity: 1;
}
.account-mesg p {
	color: #fff;
	line-height: 1.5;
	font-size: 14px;
	letter-spacing: 1px;
}
.account-mesg h1 {
	color: #fff;
	font-size: 17px;
	letter-spacing: 1px;
	margin-bottom: 5px;
}
.account {
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	border-radius: 3px;
	padding-top: 20px;
	position: relative;
}
.account-edit {
	position: absolute;
	top: 25px;
	right: 20px;
	transform: all 250ms ease-in-out;
	opacity: 0.8;
	cursor: pointer;
}
.account-edit img {
	width: 25px;
	height: 25px;
}
.account-edit:hover {
	opacity: 1;
}
.account-row {
	width: 100%;
	display: flex;
	border-bottom: 2px solid #E0E0E0;
	padding-bottom: 20px;
	padding-top: 20px;
}
.account-row:first-of-type {
	padding-top: 0;
}
.account-row:last-child {
	padding-bottom: 15px;
}
.account-avatar-wrap {
	overflow: hidden;
	width: 200px;
	height: 200px;
	min-width: 200px;
	min-height: 200px;
	border-radius: 3px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	background-color: #eee;
}

.account-avatar {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	-webkit-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
					transform: translate(-50%,-50%);
}
.account-info-box {
	width: 100%;
	margin-left: 30px;
}
.account-info-check {
	margin-right: 5px;
}

.account-info input[type="checkbox"] {
	width: 13px;
	height: 13px;
}
.not-check {
	width: 13px;
	height: 13px;
	margin-right: 5px;
}
.account-info-check-btn {
	display: none;
	border: 0;
	outline: 0;
	background-color: #fff;
	color: #0970B5;
  border: 2px solid #0970B5;
	padding: 7px 10px;
	cursor: pointer;
	border-radius: 3px;
	transition: all 250ms ease-in-out;
}
.btn-succ {
	display: none;
	border: 0;
	outline: 0;
	background-color: #1DB55D;
	color: #fff;
	width: 100%;
	padding: 7px 10px;
	cursor: pointer;
	border-radius: 3px;
	transition: all 250ms ease-in-out;
}
.account-info-check-btn:hover {
	background-color: #0970B5;
	color: #fff;
}
.account-name {
	color: #444;
	font-size: 20px;
	margin-bottom: 15px;
}
.account-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
	font-size: 13px;
	display: flex;
}
.account-info-item label {
	color: #7D7D7D;
	width: 150px;
}
.account-list {
	width: 50%;
}
.account-list p {
	color: #3CB371;
  font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
.account-list ul {
	list-style: none;
	padding-left: 20px;
}
.account-list li {
	position: relative;
	margin-bottom: 7px;
}
.account-list li::before {
	content: '';
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #66B36A;
	right: calc(100% + 5px);
	top: calc(50% - 4px);
}
.account-text {
	width: 100%:
}
.account-text span {
	color: #3CB371;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
.account-text p {
	font-size: 14px;
	/*letter-spacing: 1px;*/
	line-height: 1.5;
	padding-top: 7px;
}
.cap {
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: fixed;
	z-index: 11111111111111;
	display: none;
	justify-content: center;
	align-items: center;
	transform: translateZ(0);

}
.cap p {
	text-align: center;
	color: #66B36A;
	line-height: 1.5;
	font-size: 17px;
}
.nav-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
}
.logo-wrapper {
	display: flex;
	align-items: center;
}
.adm-tool-link {
	width: 30px;
	height: 30px;
	margin-left: 10px;
	cursor: pointer;
}
.log-in-wrap {
	width: auto;
	position: relative;
}
.log-in {
	color: red;
	margin: 25px 0;
	margin-right: 20px;
	cursor: pointer;
	font-weight: 300;
	color: #444;
}
.log-in-dropdown {
	background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	position: absolute;
	border-radius: 4px;
	width: 250px;
	right: 0;
	padding: 10px;
	padding-top: 20px;
	text-align: center;
	font-family: Tahoma;
	visibility: hidden;
	opacity: 0;
	transition: all 200ms ease-in-out;
}
.log-in-dropdown.active{
	visibility: visible;
	opacity: 1;
}
.log-in-dropdown::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: calc(100% - 18px);
	right: 15px;
	box-sizing: border-box;
	border: 9px solid black;
	border-color: transparent transparent #fff #fff;
	border-bottom-color: rgba(255,255,255,0.98);
	transform-origin: 0 0;
	transform: rotate(135deg);
	border-radius: 1px;
	box-shadow: -1px 1px 0px 0px rgba(0,0,0,0.1);
}
.log-in-dropdown-header {
	color: #444;
	margin-bottom: 10px;
}
.log-in-btn {
	background-color: #3CB371;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	border-radius: 3px;
	color: #fff;
	width: 200px;
	margin: auto;
	margin-bottom: 10px;
	font-size: 14px;
	transition: opacity 250ms ease-in-out;
}
.log-in-btn:hover {
	opacity: 0.8;
	color: #fff;
}
.social {
	justify-content: flex-start;
	text-align: center;
}
.log-in-btn.fb {
	background-color: #3a5795;
}
.log-in-btn.vk {
	background-color: #597da3;
}
.log-in-btn img {
	width: 25px;
	height: 25px;
	margin-right: 27px;
}
.log-in-dropdown-desc {
	color: #444;
	font-size: 13px;
	line-height: 1.4;
	margin-top: 40px;
	margin-bottom: 10px;
	font-family: Tahoma;
}
.schedule-content {
	background-color: #fff;
	width: auto;
	margin: auto;
	margin-top: 80px;
	padding: 10px;
}
.schedule-button {
	position: fixed;
	top: 64px;
	background-color: #00CD66;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	padding: 7px 10px;
	border-radius: 3px;
	border: 0;
	margin: 10px;
	cursor: pointer;
	transition: all 200ms ease-in-out;
}
.schedule-button:hover {
	opacity: 0.8;
}
.schedule-title {
	text-align: center;
	margin-bottom: 15px;
}
.schedule-title h2 {
	color: #757575;
}
.schedule-week {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
.schedule-day {
	text-align: center;
	margin-right: 5px;
	border-bottom: 2px solid #444;
}
.schedule-day:last-of-type {
	margin-right: 0px;
}
.schedule-hour {
	height: 65px;
	display: flex;
	align-items: center;
}
.schedule-hour span {
	background-color: #F7F7F7;
	height: 65px;
	width: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border: 2px solid #444;
	border-right: 0;
	border-bottom: 0;
}
.schedule-hour-desc {
	border: 2px solid #444;
	border-bottom: 0;
	height: 65px;
	width: 175px;
	text-align: left;
	/*background-color: #A9CEA9;*/
	padding: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.schedule-hour-desc .name {
	margin-top: 0;
	font-size: 12px;
}
.schedule-hour-desc .group {
	margin-bottom: 5px;
	font-size: 12px;
}
.schedule-hour-desc .phone-num {
	font-size: 12px;
}
.schedule-day-desc {
	display: flex;
	justify-content: center;
	flex-direction: column;
	border: 2px solid #444;
	padding: 5px;
	border-bottom: 0;
	background-color: #ECECEC;
}
.landscape-only {
	display: none;
}
.sign-up-wrapper {
	width: 750px;
	margin: 15px auto;
}
.sign-up {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.sign-up-item {
	transition: all 300ms ease-in-out;
}
.sign-up-item-header {
	padding: 10px;
	background-color: #3CB371;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.sign-up-item-header span {
	background-color: #8AD483;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	color: #fff;
	padding-left: 1px;
	margin-right: 10px;
	font-size: 14px;
}
.sign-up-item-header.border-top {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.sign-up-item-header.border-bottom {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.sign-up-item-content {
	display: none;
	padding: 10px;
	/*background-color: #fff;*/
}
.sign-up-item-content.active {
	display: block;
}
.input {
  position:relative;
	width: 300px;
	margin: auto;
}
.input input {
  font-size:18px;
  padding:10px 10px 10px 5px;
	margin-top: 35px;
  display:block;
  width: 300px;
  border:none;
  border-bottom:1px solid #757575;
}
.input input:focus 		{ outline:none; }
.input-desc {
  color:#999;
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left: 5px;
  top: 15px;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}
/* active state */

.input input:focus ~ .input-desc, .input input.used ~ .input-desc{
  top: -15px;
  font-size:12px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:300px; }
.bar:before, .bar:after 	{
  content:'';
  height:2px;
  width:0;
  bottom:1px;
  position:absolute;
  background:#5264AE;
  transition:0.2s ease all;
  -moz-transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%;
}

/* active state */
.input input:focus ~ .bar:before, .input input:focus ~ .bar:after {
  width:50%;
}
.input.small {
	width: 150px;
	margin: 0;
	margin-left: 10px;
}
.input.small input {
	margin-top: 0;
	width: 150px;
	font-size: 12px;
}
.input.small .bar {
	max-width: 150px;
}
.input.small .input-desc {
	font-size: 12px;
}
.input.small input:focus ~ .input-desc, .input.small input.used ~ .input-desc {
  top: -5px;
  font-size:10px;
  color:#5264AE;
}
.dropdown-input {
	margin-left: 50px;
}
.add {
	position: absolute;
	left: calc(100% + 10px);
	top: 20px;
}
.input-warning {
	position: absolute;
	/*left: calc(100% + 10px);*/
	margin-top: 2px;
	left: 5px;
	width: auto;
	border-radius: 3px;
	text-align: center;
	font-size: 11px;
	color: #EF4836;
}
/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
.month {
	color: #a9a9a9;
	font-size: 16px;
	display: flex;
	align-items: center;
	margin-left: 5px;
	margin-top: 5px;
}
.input-list {
	padding-top: 20px;
	width: 300px;
	margin: auto;
	display: flex;
	flex-direction: column;
}
.input-list-header {
	padding-bottom: 10px;
}
.input-list-item {
	width: 350px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 5px;
}
.input-list-item input[type="checkbox"], .input-list-item input[type=radio] {
	margin-right: 5px;
	margin-bottom: 2px;
	width: 15px;
	height: 15px;
}
.spec-check {
	display: block;
}
.input-list-item span {
	font-size: 14px;
}
.sign-up-btn-wrap {
	width: 200px;
	margin: 15px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sign-up-btn {
	background-color: #7BC673;
	color: #fff;
	border-radius: 2px;
	font-size: 18px;
	padding: 7px 14px;
	margin-right: 10px;
	white-space: nowrap;
}
.sign-up-btn-prev {
	background-color: #A9A9A9;
}
.sign-up-btn-next:disabled {
	background-color: yellow;
}
.file_upload {
	background-color: #E0FBDE;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 500px;
	margin: 30px auto;
}
.file_upload img {
	border-radius: 5px;
	margin-bottom: 15px;
}
.file_upload span {
	font-size: 15px;
	padding: 10px 0;
	text-align: center;
}
#about_user {
	width: 350px;
	height: 220px;
}
.feedback-form {
	display: flex;
	flex-direction: column;
}
.feedback-form h2 {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	margin-top: 75px;
	margin-bottom: 30px;
}
.feedback-form input {
	width: 350px;
	margin: auto;
	margin-bottom: 10px;
	padding: 7px 13px;
	border: 2px solid #66B36A;
	border-radius: 3px;
}
.feedback-form textarea {
	width: 350px;
	height: 200px;
	margin: auto;
	margin-bottom: 15px;
	padding: 5px;
	border: 2px solid #66B36A;
	border-radius: 3px;
}
@media only screen
	and (min-device-width: 320px)
	and (max-device-width: 800px)
	and (-webkit-min-device-pixel-ratio:0) {
	.feedback-form input {
		width: 100%;
	}
	.feedback-form textarea {
		width: 100%;
	}
	.log_in_inner {
    left: calc(50% - 150px);
    width: 300px;
	}
	.log-in {
		margin: 0;
		margin-right: 10px;
	}
	.header {
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		margin: 0;
		height: 100px;
	}
	.phone {
		display: flex;
	}
	.no-phone {
		display: none !important;
	}
	.logo {
		margin-top: 10px;
		padding: 0;
	}
	.nav_bar {
		justify-content: space-between;
		/*padding: 0 10px;*/
		margin: 5px 0;
		align-items: flex-start;
		height: auto;
	}
	.nav-info {
		justify-content: flex-start;
		margin-left: 10px;
	}
	.nav-wrapper {
		padding-bottom: 5px;
	}
	.nav-menu {
		width: 100%;
		right: -100%;
	}
	.nav-menu-show {
		right: 0;
	}
	.nav_bar_item {
		margin: 0;
		margin-right: 10px;
		font-size: 15px;
	}
	.nav_bar_item_icon {
		height: 20px;
	}
	.center-wrapper {
		margin-bottom: 10px;
		padding: 0 10px;
	}
	.center {
		width: 100%;
	}

	#footer {
		display: block;
		height: auto;
		position: inherit !important;
		margin-top: 43px;
	}
	.f_item {
		padding-bottom: 10px;
	}
	.f_item img {
		margin: 10px;
	}
	.contacts {
		line-height: 20px;
	}
	.contact {
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
	}
	.contact-icon {
		height: 30px;
		margin-right: 10px;
	}
	.feedback {
		flex-direction: row;
	}
	.spon {
		padding: 25px;
		justify-content: center;
	}
	.text-wrapper {
		padding-top: 10px;
		margin: 0 10px;
	}
	.sign_row {
		flex-direction: column;
		margin: 0 10px;
		align-items: flex-start;
		margin-bottom: 15px;
	}
	.warning {
		margin-left: 0;
	}
	.small_box {
		margin: 10px 10px;
		flex-direction: column;
	}
	.sign_row input {
		width: 100%;
		margin: 10px 0;
	}
	.sign_row.small {
		display: block;
		flex-direction: row;
		align-items: center;
		margin: 5px 0;
		width: 100%;
	}
	.small p {
		line-height: normal;
		margin-left: 10px;
		width: auto;
		max-width: 88%;
		float: left;
		margin-top: 5px;
		margin-bottom: 10px;
	}
	#input {
		margin-left: 10px;
	}
	#input_sm {
		margin-left: 0;
	}
	.sign_row.small input {
		width: 25px;
		margin: 0;
		float: left;
	}
	.form {
		width: 100%;
	}
	.content {
		margin-top: 100px;
	}
	.text-wrapper button {
		margin-left: 10px !important;
	}
	.sign_row textarea {
		width: 100%;
		height: 200px;
		max-width: 100%;
		max-height: 200px;
		font-size: 16px;
		line-height: 1.4;
		margin: 10px;
	}
	.sign_row p {
	}
	.file_upload {
		align-items: center;
		width: 100%;
	}
	.table-content {
		overflow-x: scroll;
	}
	table {
		width: 100%;
		max-width: none;
	}
	#file {
		max-width: 100%;
		margin: 10px 0;
	}
	.content {
		position: relative;
		margin-top: 45px;
	}
	.check_form {
		/*padding-bottom: 40px;*/
	}
	.boxarea_side {
		width: 100%;
		left: -100%;
		position: absolute;
		z-index: 999;
		/*margin-left: -10px;*/
		padding-bottom: 0;
	}
	.boxarea_side_show {
		left: 0;
	}
	.spec-wrapper {
		margin-top: 40px;
		margin-left: 10px;
	}
	.box_filter {
		position: absolute;
		left: 100%;
		margin-left: 10px;
		width: 22px;
		height: 22px;
		cursor: pointer;
	}
	.sp_item {
		margin-right: 5px;
	}
	.specialists_hide {
		display: none !important;
	}
	.popup-box-1 {
		width: 100%;
		left: 0;
		top: 0;
		height: 100%;
		border-radius: 0;
	}
	.account-row {
		flex-direction: column;
	}
	.account-avatar {
		width: 100px;
		height: 100px;
		min-width: 100px;
		min-height: 100px;
	}
	.account-info-box {
		margin-left: 0;
		margin-top: 5px;
	}
	.account-list {
		width: 100%;
		margin-bottom: 10px;
	}
	.account-list:last-of-type {
		margin-bottom: 0;
	}
	.account-wrapper {
		width: 100%;
		margin-top: 100px;
	}
	.account-info-item {
		flex-direction: column;
		margin-bottom: 10px;
		align-items: flex-start;
	}
	.account-info-item label {
		margin-bottom: 2px;
	}
	.account-info input[type="checkbox"] {
	  position: absolute;
	  left: 4px;
	  margin-top: 3px;
	}
	.reg > .row {
		flex-direction: column;
	}
	.reg > .row label {
		text-align: left;
		margin-bottom: 5px;
		width: 100%;
	}
	.redag {
		width: 100% !important;
	}
	.row-box label{
		color: #6D6D6D;
		font-size: 14px;
	}
	.reg > .row input[type='checkbox'], .reg > .row input[type='radio'] {
		width: 20px;
		height: 20px;
	}
	#admin_panel {
		width: 100%;
		left: -100%;
	}
	.calendar-reserv {
		width: 100%;
	}
	.calendar-wrapper {
		width: 100%;
	}
	.reserv-wrap {
		margin: 0 10px;
		margin-top: 10px;
	}
	.my_reservations {
		width: 100%;
	}
	.calendars {
		align-items: center;
		flex-direction: column;
	}
	.calendar {
		margin-right: 0;
	}
	.calendar-day-header {
		width: 100%;
	}
	.calendar-day-header {
		width: 100%;
	}
	.fixed {
		top: 100px;
		left: 0;
	}
	.text-wrapper {
		margin: 0 25px;
	}
	.text-wrapper h1 {
		text-align: left;
	}

}
@media only screen
	and (min-device-width: 320px)
	and (max-device-width: 800px)
	and (-webkit-min-device-pixel-ratio:0)
	and (orientation : landscape) {

	.boxarea_side {
		padding-bottom: 20px;
		box-sizing: border-box;
		width: 250px;
		position: absolute;
		left: 0;
		background-color: #fff;
		transform: translateZ(0);
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
		transition: all 250ms ease-in-out;
		overflow: scroll;
	}
	.no-landscape {
		display: none;
	}
	.header {
		flex-direction: row;
		align-items: center;
		height: 50px;
	}
	.logo {
		margin: 0;
	}
	#logo {
		width: 40px;
		height: 40px;
		border-radius: 2px;
		margin-left: 5px;
	}
	.landscape-only {
		display: block;
	}
	.content {
		margin-top: 0;
		padding-top: 50px;
	}
	.box_filter {
		display: none;
	}
	.not-check {
		width: 0;
		margin: 0;
	}
	.spon {
		padding: 0;
		justify-content: flex-start;
		padding: 5px;
	}
	.calendars {
		flex-direction: row;
	}
	.nav-menu {
		width: 300px;
	}
	.account-info-item {
		flex-direction: row;
	}
	.fixed {
		top: 50px;
	}
	.spec-wrapper {
		margin-left: 270px;
	}
}
