/* 
  customização do menu do woocommerce
 */
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 32px;
  border: 1px solid #c8c8c8;
  box-sizing: border-box;
  border-radius: 8px;
  width: 25%;
}

.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding: 0px;
  box-sizing: border-box;
}

.woocommerce-MyAccount-navigation-link--menu-title {
  margin-bottom: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation-link--menu-title a {
  cursor: default;
  text-decoration: none !important;
  color: #000 !important;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #d9534f !important;
}

.woocommerce-MyAccount-navigation ul li+li {
  margin-top: 5px;
}

.woocommerce-MyAccount-navigation ul li+li a {
  padding: 8px 0px;
}

.woocommerce-MyAccount-navigation-link a[aria-current="page"] {
  color: #000;
  text-decoration: underline;
}


/* Customizando links */

.woocommerce-MyAccount-content {
  display: flex;
  flex-flow: column nowrap;
}

.woocommerce-MyAccount-content .woocommerce-notices-wrapper,
.woocommerce-MyAccount-content .woo-account-custom-title {
  order: -1;
}

.woocommerce-MyAccount-content .woo-account-custom-title {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

#customer_login h2,
.woocommerce-MyAccount-content h2 {
  font-size: 24px;
  color: #000;
}

.woocommerce-MyAccount-content .woo-account-custom-title svg {
  height: 24px;
}

.woocommerce-MyAccount-content .woocommerce-Address-title h2 {
  font-size: 18px;
}



.woocommerce-MyAccount-content .woocommerce-Addresses .edit {
  font-size: 14px;
  float: unset !important;
  margin-bottom: 16px;
  display: inline-block;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  background: #8d8d8d;
  padding: 8px 12px;
  border-radius: 2px;
  transition: all .3s ease;
}

.woocommerce-MyAccount-content .woocommerce-Addresses .edit:hover {
  background: #000;
}

.woocommerce-MyAccount-content .woocommerce-Addresses .edit::before {
  content: '+ Adicionar';
  display: inline-block;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: #fff;
}

.woocommerce form .form-row .select2-container--default .select2-selection--single {
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #666;
  padding: .5rem 1rem;
  transition: all .3s;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: normal;
  height: unset;
  display: flex;
  align-items: center;
  gap: 8px;
}

.woocommerce form .form-row .select2-selection__rendered {
  width: 100%;
}

.woocommerce form .form-row .select2-selection__arrow {
  position: relative !important;
  top: unset !important;
  right: unset !important;
}

.woocommerce-MyAccount-content button[name="save_address"],
.woocommerce-MyAccount-content button[name="save_account_details"] {
  margin-top: 32px;
  padding: 12px 24px;
  background: #444;
  color: #fff !important;
}

.woocommerce-MyAccount-content button[name="save_address"]:hover,
.woocommerce-MyAccount-content button[name="save_account_details"]:hover {
  background: #000;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
  background: #fff5cb;
  padding: 24px;
  margin-top: 32px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  padding: 0px 8px;
  font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-Addresses address {
  font-size: 14px;
  background: #fff5cb;
}

.woocommerce-MyAccount-content mark,
.woocommerce-MyAccount-content strong {
  color: #000 !important;
}

.woocommerce-MyAccount-content p a {
  text-decoration: underline;
  color: #000;
}

/* 
  Customizando o  Painel de conta do woocommerce
 */

.devsite_woo_my_account_quick_access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.devsite_woo_my_account_quick_access .icon-box {
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 1px solid #dbdbdb;
  background: #f5f5f5;
  background: #fff;
  border-radius: 8px;
  transition: all .3s ease;
  padding: 24px;
}

.devsite_woo_my_account_quick_access .icon-box.icon-box-logout {
  border-color: #d9534f;
}

.devsite_woo_my_account_quick_access .icon-box.icon-box-logout * {
  color: #d9534f;
  fill: #d9534f;
}


.devsite_woo_my_account_quick_access .icon-box:hover {
  background: #000;
  border-color: #000;
}

.devsite_woo_my_account_quick_access .icon-box:hover * {
  color: #fff !important;
  fill: #fff;
}

.devsite_woo_my_account_quick_access .icon-box svg {
  height: 40px;
  width: 40px;
}

.devsite_woo_my_account_quick_access .icon-box .icon-box-legenda {
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width:1024px) {

  .devsite_woo_my_account_quick_access .icon-box {
    min-height: 150px;
  }

  .devsite_woo_my_account_quick_access {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {
  .devsite_woo_my_account_quick_access {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Customizando tabela de pedidos */
.woocommerce-orders-table__cell-order-actions {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
}

.woocommerce-orders-table__cell-order-actions .button.pay {
  background: #218a15;
  color: #fff !important;
}

.woocommerce-orders-table__cell-order-actions .button.pay:hover {
  background: #13530C;
}

.woocommerce-orders-table__cell-order-actions .button.view {
  background: #404040;
  color: #fff !important;
}

.woocommerce-orders-table__cell-order-actions .button.view:hover {
  background: #000;
}

.woocommerce-MyAccount-content .woocommerce-MyAccount-downloads-file {
  background: #273078 !important;
}

/* Customizando a tela de login */
#customer_login .woocommerce-form-login__submit,
#customer_login .woocommerce-form-register__submit {
  margin-top: 32px;
}

#customer_login .woocommerce-form-login__rememberme {
  margin-top: 35px;
}

#customer_login .woocommerce-form-login__submit {
  background: #218a15;
  color: #fff !important;
}

#customer_login .woocommerce-form-login__submit:hover {
  background: #13530C;
}

#customer_login .woocommerce-form-register__submit {
  background: #404040;
  color: #fff !important;
}

#customer_login .woocommerce-form-register__submit:hover {
  background: #000;
}

#customer_login .woocommerce-privacy-policy-text {
  padding: 16px;
  background: #f2f2f2;
  font-size: 12px;
  border-radius: 4px;
}

#customer_login .woocommerce-privacy-policy-text p {
  margin: 0px;
}

#customer_login .woocommerce-privacy-policy-text a {
  text-decoration: underline;
}

/* Página de resetar a senha */
.woocommerce .woocommerce-ResetPassword {
  max-width: 600px;
  padding: 24px;
  background: #f2f2f2;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
}

.woocommerce .woocommerce-ResetPassword .woocommerce-Button {
  background: #404040;
  color: #fff !important;
  margin-top: 32px;
}

.woocommerce .woocommerce-ResetPassword .woocommerce-Button:hover {
  background: #000;
}

.woocommerce .woocommerce-ResetPassword .woocommerce-form-row {
  width: 100%;
}