/* ===============================
   WooCommerce My Account
================================== */

.woocommerce{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.woocommerce::after{
    content:"";
    display:block;
    clear:both;
}

/* Left Menu */

.woocommerce-MyAccount-navigation{
    width:25%;
    float:left;
}

.woocommerce-MyAccount-navigation ul{
    list-style:none;
    margin:0;
    padding:0;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.woocommerce-MyAccount-navigation li{
    border-bottom:1px solid #eee;
}

.woocommerce-MyAccount-navigation li:last-child{
    border-bottom:none;
}

.woocommerce-MyAccount-navigation a{
    display:block;
    padding:16px 20px;
    text-decoration:none;
    color:#1f3b57;
    font-weight:600;
    transition:.3s;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a{
    background:#c89012;
    color:#fff;
}

/* Right Content */

.woocommerce-MyAccount-content{
    width:70%;
    float:right;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3{
    color:#123b2f;
    margin-bottom:25px;
}

/* Forms */

.woocommerce form .form-row{
    margin-bottom:18px;
}

.woocommerce label{
    font-weight:600;
    color:#333;
}

.woocommerce input[type=text],
.woocommerce input[type=email],
.woocommerce input[type=password],
.woocommerce textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
}

.woocommerce input:focus,
.woocommerce textarea:focus{
    border-color:#c89012;
    outline:none;
    box-shadow:0 0 0 3px rgba(200,144,18,.15);
}

/* Save Button */

.woocommerce button.button{
    background:#c89012 !important;
    color:#fff !important;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.woocommerce button.button:hover{
    background:#0d4637 !important;
}

/* Notices */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
    border-radius:8px;
    margin-bottom:20px;
}

/* Responsive */

@media(max-width:992px){

    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content{
        width:100%;
        float:none;
    }

    .woocommerce-MyAccount-navigation{
        margin-bottom:25px;
    }

}