.my-account{
	padding: 80px 0;
}

.my-account-inner{
	display: flex;
	gap: 30px;
}

.my-account-inner .aside{
	flex: 0 0 300px;
}

.my-account-inner .aside .navigation a{
	display: block;
	padding: 20px;
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	color: #333333;
	font-weight: 700;
}

.my-account-inner .aside .navigation li:not(.active) a:hover{
	background-color: #efefef;
}

.my-account-inner .aside .navigation li.active a{
	background-color: var(--primary-color);
	color: #ffffff;
}

.my-account-inner .aside .navigation li:last-child a{
	border-bottom: 1px solid #dddddd;
}

.my-account-content{
	flex: 1;
	border: 1px solid #dddddd;
}

.my-account-content__head .btn-edit svg{
	width: 23px;
	height: auto;
}

.my-account-content__head{
	background-color: #efefef;
	padding: 20px 30px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
}

.my-account-content__body{
	padding: 30px;
}

.my-profile ul li .lebel{
	flex:  0 0 150px;
}

.my-profile ul li .divider{
	width: 30px;
}

.my-profile ul li .val{
	flex: 1;
}

.my-profile ul li{
	display: flex;
	margin-bottom: 20px;
	line-height: 1.6;
}

.my_account_orders {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
  }

  .my_account_orders a{
	color: #333333;
  }

  .my_account_orders th {
	text-align: left;
  }

  tr {
	border-bottom: 1px solid #ccc;
  }

  th,
  td {
	padding: 6px;
  }

  .order-actions .button{
	background-color: var(--primary-color);
	padding: 3px 10px;
	color: #ffffff;
	border-radius: 4px;
	display: inline-block;
	font-size: 12px;
  }

  @media
  only screen and (max-width: 600px) {
	/* Force table to not be like tables anymore */
	  table, thead, tbody, th, td, tr {
		  display: block;
	  }

	/* Hide table headers (but not display: none;, for accessibility) */
	  thead tr {
		  position: absolute;
		  top: -9999px;
		  left: -9999px;
	  }

	td {
		  /* Behave  like a "row" */
		  border: none;
		  border-bottom: 1px solid #eee;
		  position: relative;
		  padding-left: 35%;
	  }

	td:last-child {
		   border-width: 0;
	  }

	td:before {
	   content: attr(data-title);
	   color: #ccc;
		  position: absolute;
		  top: 6px;
		  left: 6px;
		  width: 45%;
		  padding-right: 10px;
		  white-space: nowrap;
	  }
  }

  .ws-box {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0,0,0,.1);
	padding: 30px;
}

.order-details .head {
    text-align: center;
    padding-bottom: 30px;
}

.order-details .head .status {
    display: inline-block;
    padding: 3px 5px;
    border-radius: 2px;
    background: #27AE60;
    color: #fff;
    font-size: 12px;
}

.order-details .head h1 {
    margin: 0 0 5px;
	font-size: 22px;
}

.g-box {
    background: #f2f4f8;
    border-radius: 5px;
    padding: 20px;
}

.g-box .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
	position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.order-summary table {
    width: 100%;
}

.order-summary table td {
    padding: 0 0 7px;
}

.table-order-products {
    margin-bottom: 20px;
}

.table-bordered {
    width: 100%;
}

.table-order-products thead td {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.table-bordered thead td {
    padding: 14px 10px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    background: #f5f7f9;
}

.table-order-products img {
    height: 50px;
}

.info-page .content img {
    max-width: 100%;
}

.actions a{
	padding: 5px 10px;
	background-color: var(--primary-color);
	display: inline-block;
	border-radius: 3px;
	color: #000000;
	font-size: 14px;
}

.add-review-popup {
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(99, 88, 84, 0.7);
    z-index: 999999;
    top: 0;
    left: 0;
}

.create-milestone-popup.d-none, .add-review-popup.d-none {
    display: none;
}

.review-popup__inner {
    width: 600px;
    margin: 50px auto 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
	position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.review-popup__inner .review-field{
	margin-bottom: 20px;
	overflow: hidden;
}

.review-popup__inner label{
	margin-bottom: 10px;
	display: block;
}

.review-popup__inner textarea,
.review-popup__inner input{
	border: 1px solid #dddddd;
	width: 100%;
	font-size: 15px;
}

.review-popup__inner input{
	height: 40px;
	padding: 0 15px;
}

.review-popup__inner textarea{
	height: 130px;
	padding: 15px;
	font-family: "Open Sans", sans-serif;
}

.review-field button{
	background-color: var(--primary-color);
	color: #000000;
	padding: 15px 30px;
	font-size: 16px;
	border-radius: 4px;
	border: 0;
}

.ratting-wrapper {
    position: relative;
    display: inline-block;
}

.ratting-wrapper svg {
	max-width: 100%;
}

.portfolio-blog .active-ratting {
    position: absolute;
    width: 0;
    overflow: hidden;
    top: -1px;
    left: 0;
    z-index: 99;
}

.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
}

.rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
}

.rate:not(:checked) > label {
    float:right;
    width:1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
}

.rate:not(:checked) > label:before {
    content: '★ ';
}

.rate > input:checked ~ label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
.pagination{
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.pagination li .page-link{
    height: 30px;
    width: 30px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.pagination li.active .page-link{
    background: var(--secondary-color);
}
