/*================================================
       Client Menu CSS
==================================================*/	
ul.myAccount {
	background: #f1f7ed;
    padding: 15px;
    margin: 0;
    color: #191a51;
    border-radius: 4px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
}
ul.breadcrumbs.client.myAccount li a {
    color: #191a51 !important;
    font-size: 14px;
    padding: 14px 10px;
}
ul.myAccount li:last-child {
    position: absolute;
    right: 10px;
}
ul.myAccount li:last-child:before {
    content: "";
}

.my-account h2 {
    padding-bottom: 15px;
}
#contact_form fieldset {
    width: 100%;
    float: left;
    padding: 2%;
    margin-right: 0;
    background-color: #FAFBFD;
    box-sizing: border-box;
    border: 1px solid #ddd;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
#contact_form fieldset input, #contact_form fieldset select, , #contact_form fieldset textarea {
	padding: 0.375rem 0.75rem !important;
    line-height: 1.8;
    border: 1px solid #31aab9;
    border-radius: 0;
}

#contact_form .md_button {
    color: #fff;
    font-weight: 600 !important;
    cursor: pointer;
    margin: 15px auto;
	width: 25%;
	max-width: 100%;
}
#contact_form .md_button a {
    height: 45px;
}	
#contact_form .md_button:hover {
	background: #fd7f3d !important;
}
#contact_form strong {
    color: #333 !important;
}

#contact_form fieldset h3 {
	font-size: 18px;
    color: #333 !important;
    padding-bottom: 20px;
}	
	
/*================================================
       Page = My Orders CSS
==================================================*/	
h2 {
    padding-bottom: 10px;
}
#orders_output {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0px;
    -webkit-transition: .5s;
    transition: .5s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
    box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
}
#orders_output table {
    clear: both;
    max-width: none !important;
    border-collapse: separate !important;
    border: 1px solid #d1d3e0;
	border-spacing: 2px;
}
#orders_output table tr:nth-of-type(odd), .table-subscription table tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
    border-collapse: separate !important;
    border-spacing: 2px;
}
caption, td, th {
    text-align: center;
    font-weight: 400;
    border: 1px solid #d1d3e0;
    padding: 1rem !important;
    vertical-align: middle;
    box-sizing: content-box;
}
#orders_output table tr td a, a.delivery_name, a.subscription_name {
    color: rgb(33, 150, 243);
    font-weight: bold;
}
#orders_output table tr th strong, #order_det_output table tr th strong, #order_det_output table tr td strong, .delivery_addresses table tr th strong {
    color: #333 !important;
}
	
#order_det_output {
    background: #FAFBFD;
    margin: 20px 0;
    padding: 0 20px;
    padding-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #d1d3e0;
}

.complete {
    color: #ffffff;
    background-color: #10b981;
    align-items: center;
    border-radius: 0.25rem;
    display: inline-flex;
    font-size: .75rem;
    font-weight: 500;
    justify-content: center;
    letter-spacing: .025em;
    line-height: 1rem;
    padding: 0.275rem 0.5rem;
    transition-duration: .2s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    vertical-align: baseline;
}	
	
#order_det_output h2 {
    padding: 0;
    margin: 0;
}
#order_det_output td, #order_det_output th {
    text-align: left;
    font-weight: 400;
    border: 1px solid #d1d3e0;
    padding: 1rem !important;
    vertical-align: middle;
    box-sizing: content-box;
    /* border-bottom-width: 0; */
    /* border-left-width: 0; */
}	
#order_det_output td p {
	text-align: left;
	margin-bottom: 0;
}	

.rounded-full {
    width: 0.5rem;
    border-radius: 9999px;
    background-color: #10b981;
    height: 0.5rem;
    display: inline-block;
}
.rounded-full.redClr {
    background: #FF0000;
}	
table tr:hover {
    background-color: rgba(0, 0, 0, 0.01);
}	

/*================================================
       Page = My Delivery Addresses CSS
==================================================*/	
#contact_form {
    display: block;
}	
.delivery_addresses h2 {
	padding-bottom: 0;
}	
.delivery_addresses table td #delivery_new {
    background: #31aab9;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 30px;
    border-radius: 4px;
	text-decoration: none;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
.delivery_addresses table td #delivery_new:hover {
    background: #fd7f3d;
}
.delivery_addresses .create-01 {
    display: flex;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
}  
.btn_client {
    background: #000;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 55px;
    border-radius: 4px;
	text-transform: capitalize;
	text-wrap: nowrap;
    text-decoration: none !important;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
.btn_client:hover {
	background: #f34f3f;
}

#orders_output a.del_reminder, .delivery_addresses a.del_delivery {
	background-color: #f84b6a;
    padding: 0.1875rem;
    width: 22px;
    height: 22px;
    box-shadow: 0 0.3125rem 0.9375rem 0 rgba(247, 43, 80, 0.2) !important;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
    line-height: 1.6;
}
a.del_reminder svg, .delivery_addresses a.del_delivery svg {
    vertical-align: middle;
    font-size: 16px;
}
		
/*================================================
       Page = My Reminders CSS
==================================================*/	
.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
.popup-inner {
  max-width: 700px;
  width: 90%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
  border-radius: 3px;
  background: #fff;
}
.my_reminders .popup-inner h2 {
	border-bottom: 1px solid rgb(241, 241, 242);
	padding: 10px 0;
	margin-bottom: 20px !important;
}		
.popup-close {
  width: 30px;
  height: 28px;
  padding-top: 2px;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  -moz-transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
}
.popup-close:hover {
  background: rgba(253, 127, 61,1);
  text-decoration: none;
  color: #fff;
}
.my_reminders #contact_form fieldset {
    margin-bottom: 0;
    display: inline-block;
}

#contact_form .sub-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
#contact_form .sub-form label {
	font-size: 16px;
	display: flex;
	align-items: center;
    margin: 10px 15px;
    cursor: pointer;
}
#contact_form .sub-form .input-radio {
    box-shadow: 0px 0px 0px 1px #6d6d6d;
    font-size: 3em;
    width: 20px;
    height: 20px;
    margin-right: 10px;
	margin-top: 0;
	margin-bottom: 0;
    border: 4px solid #fff;
    background-clip: border-box;
    border-radius: 50%;
    appearance: none;
	padding: 0 !important;
    transition: background-color 0.3s, box-shadow 0.3s;
}
#contact_form .sub-form .input-radio.on:checked {
    box-shadow: 0px 0px 0px 4px #00eb27;
    background-color: #51ff6e;
}
#contact_form .sub-form .input-radio.off:checked {
    box-shadow: 0px 0px 0px 4px #eb0000;
    background-color: #ff5151;
}	
	
a.subUpd:hover {
	background: #000 !important;
}
.read-more-btn {
    padding: 10px 50px;
    line-height: 24px;
    background: #000;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
	border-radius: 4px;
	text-decoration: none;
    transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}
.read-more-btn:hover {
    background: #f34f3f ;
    color: #fff;
	text-decoration: none;
}	
	
/*** Responsiveness ***/	
@media screen and (max-width:1024px) {
	.wrapper {
		padding: 0 10px;
	}
}
@media screen and (max-width:800px) {
	ul.myAccount {
		text-align: center;
	}
	ul.breadcrumbs.client.myAccount li a {
		padding: 8px 10px;
		display: inline-block;
	}
	ul.myAccount li:last-child {
		position: unset;
	}
	ul.myAccount li:last-child:before {
		content: " | ";
	}
	
	#contact_form .md_button {
		width: 35%;
	}
}	
@media screen and (max-width:767px) {
	.wrapper {
    	padding: 0;
	}
	#orders_output, .table-delivery, .table-subscription {
		overflow: auto;	
	}
	#contact_form label, #contact_form2 label, .contact_form label, .contact_form2 label {
		width: 100%;
	}
	.delivery_addresses {
		margin-bottom: 30px;
	}
}
@media screen and (max-width:525px) {
	ul.myAccount {
		text-align: left;
	}
	ul.breadcrumbs.client.myAccount li {
		display: block;
	}
	ul.breadcrumbs.client.myAccount li:before {
		content: "";
	}
	ul.breadcrumbs.client.myAccount li a {
		padding: 8px 10px;
		display: block;
		background: rgba(255,255,255,0.7);
    	color: #333 !important;
    	margin-bottom: 5px;
	}
	ul.myAccount li:last-child {
		position: unset;
	}
	ul.myAccount li:last-child:before {
		content: "";
	}
	ul.breadcrumbs.client.myAccount li a:hover {
		background: rgba(243, 79, 63,0.7); 
	}
	
	#contact_form fieldset input, #contact_form fieldset select, #contact_form fieldset textarea {
		width: 100%;
	}
	#contact_form .md_button {
		width: 100%;
		height: 50px;
	}
	
	#contact_form fieldset {
		display: block !important; 
	}
}	
	

