/************************ My Profile Page ************************/

.my-profile-wrapper {
	width: 100%;
	padding: 80px 0;
}

.my-profile-left-block {
	float: left;
	width: 250px;
	margin-right: 50px;
	background-color: #f0f4f3;
	border: 1px #dedede solid;
	border-bottom: 0;
}

.my-profile-right-block {
	float: left;
	width: calc(100% - 300px);
}

.my-profile-nave {
	float: left;
	width: 100%;
	display: none;
	padding: 6px 5px 5px;
	text-align: center;
	text-transform: uppercase;
	border-bottom: 1px #dedede solid;
}

.my-profile-nave-list {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.my-profile-nave-list > li {
	float: left;
	width: 100%;
}

.my-profile-nave-list > li > a {
	display: block;
	padding: 10px 15px 9px 30px;
	text-transform: uppercase;
	border-bottom: 1px #dedede solid;
	position: relative;
	cursor: pointer;
}

.my-profile-nave-list > li > a.active {
	color: #23527c;
}

.my-profile-nave-list > li > a:before {
	font-family: 'FontAwesome';
	position: absolute;
	content: "\f101";
	left: 15px;
	top: 8px;
}

.my-profile-title {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0 0 5px 0;
	border-bottom: 1px #4a4a4a solid;
}

.my-profile-content {
	float: left;
	width: 100%;
	margin: 30px 0 0 0;
}

/***** My Profile View *****/

.my-profile-details-view {
	float: left;
	width: 100%;
}

.my-profile-details-list {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.my-profile-details-list > li {
	float: left;
	width: 100%;
}

.my-profile-details-list > li + li {
	margin-top: 10px;
}

.my-profile-details-title {
	display: inline-block;
	vertical-align: top;
	width: 200px;
}

.my-profile-details-text {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 205px);
	color: #23527c;
}

.my-profile-details-text > div {
	float: right;
	width: calc(100% - 10px);
	margin: 2px 0 0 0;
	word-break: break-all;
}

.my-profile-details-note {
	float: left;
	width: 100%;
	font-size: 85%;
}

.my-profile-details-edit-btn {
	float: left;
	width: 100%;
	margin: 35px 0 0 0;
}

.my-profile-details-edit-btn .btn {
	margin: 0;
}

/***** My Profile Edit *****/

.my-profile-edit-form {
	float: left;
	width: 100%;
}

.my-profile-edit-form form {
	padding: 0;
	margin: 0;
}

.my-profile-edit-form-row {
	margin: -20px -10px 0 -10px;
}

.my-profile-edit-form-col {
	float: left;
	padding: 0 10px;
	margin-top: 20px;
}

.my-profile-edit-form-col.half {
	width: 50%;
}

.my-profile-edit-form-col.full {
	width: 100%;
}

.my-profile-edit-filed {
	float: left;
	width: 100%;
	height: 45px;
	padding: 5px 10px !important;
	margin: 0 !important;
	border-radius: 5px;
	border: 1px solid #e2e2e2;
	font-family: 'Roboto', sans-serif;
	color: #808b96;
	text-align: left;
	background-color: #fff;
}

.my-profile-edit-filed::placeholder {
	color: #808b96;
}

.my-profile-edit-filed:-ms-input-placeholder {
	color: #808b96;
}

.my-profile-edit-filed::-ms-input-placeholder {
	color: #808b96;
}

.my-profile-edit-form-col input:-webkit-autofill,
.my-profile-edit-form-col input:-webkit-autofill:hover,
.my-profile-edit-form-col input:-webkit-autofill:focus,
.my-profile-edit-form-col input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}

.my-profile-edit-filed-title {
	margin: 0;
	font-weight: normal;
	font-size: 85%;
}

.my-profile-edit-filed-title sup {
	color: red;
}

select.my-profile-edit-filed {
	padding-right: 35px !important;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../images/select-arrow.png);
	background-repeat: no-repeat;
	background-position: center right 10px;
	background-size: 15px;
}

.my-profile-edit-page-btn {
	float: right;
	text-align: right;
}

.my-profile-edit-page-btn .btn {
	margin-bottom: 0;
}

.booking-rating-title{
	text-align: center;
	font-size: 20px;
}

.give-rating-text textarea.rating-text-area{
	border-radius: 5px;
	border: 1px solid #ebebeb !important;
	background-color: #fafafa;
	height: 150px;
	width: 100%;
	margin-bottom: 30px;
}
.star-o{
	margin: 20px 0;
}
.rating-text-submit{
		border-radius: 50px;
	    background: #61c900;
	    color: #fff;
	    border: 0;
	    padding: 11px 20px;
}
.rating-text-submit:hover,
.rating-text-submit:focus{
	background: #0054a6;
	color: #fff;
}

@media (max-width: 991px) {
	.my-profile-wrapper {
		padding: 60px 0;
	}
	.my-profile-left-block {
		width: 200px;
		margin-right: 30px;
	}
	.my-profile-right-block {
		width: calc(100% - 230px);
	}
	.my-profile-nave-list > li > a {
		padding: 7px 10px 6px 25px;
		font-size: 15px;
	}
	.my-profile-nave-list > li > a:before {
		left: 11px;
		top: 6px;
	}
	.my-profile-content {
		margin: 20px 0 0 0;
	}
	.my-profile-details-list > li + li {
		margin-top: 5px;
	}
	.my-profile-details-title {
		width: 170px;
	}
	.my-profile-details-text {
		width: calc(100% - 175px);
	}
	.my-profile-details-edit-btn {
		margin: 20px 0 0 0;
	}
}

@media (max-width: 767px) {
	.my-profile-wrapper {
		padding: 40px 0;
	}
	.my-profile-content {
		margin: 15px 0 0 0;
	}
	.my-profile-left-block {
		width: 100%;
		margin-right: 0px;
	}
	.my-profile-right-block {
		width: 100%;
		margin-top: 20px;
	}
	.my-profile-nave {
		display: block;
	}
	.my-profile-nave-list {
		display: none;
	}
	.my-profile-title {
		font-size: 30px;
	}
	.my-profile-details-title {
		width: 135px;
		font-size: 14px;
	}
	.my-profile-details-text {
		width: calc(100% - 140px);
		font-size: 14px;
	}
	.my-profile-details-text > div {
		font-size: 14px;
	}
	.my-profile-details-note{
		line-height: 16px;
	}
	.my-profile-edit-form-row {
		margin: -10px -5px 0 -5px;
	}
	.my-profile-edit-form-col {
		padding: 0 5px;
		margin-top: 10px;
	}
	.my-profile-edit-page-btn {
		margin-top: 10px;
	}
}

@media (max-width: 479px) {
	.my-profile-edit-form-col.half {
		width: 100%;
	}
}
