/* Hide the mobile select by default */
.kcop-account-mobile-select {
  display: none;
}

/* Phone only */
@media (max-width: 767px) {

  .kcop-account-mobile-select {
    display: block;
    width: 100%;
    background: #212121;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 18px;
    cursor: pointer;
  }

  .kcop-account-mobile-select:focus {
    outline: 2px solid #E50000;
    outline-offset: 2px;
  }

  .kcop-account-mobile-select {
    background: #ffffff;
    color: #212121;
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 1.2em;
    font-weight: 400;
    text-transform: none;
  }
  
  .woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th {
     display: block!important;  
  }
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
     margin: 0px 0px 30px 0px;
  }

  .woocommerce-MyAccount-navigation {
     display: none;
  }
}

/* Tablet and desktop stay normal */
@media (min-width: 768px) {
  .woocommerce-MyAccount-navigation {
    display: block;
  }

  .kcop-account-mobile-select {
    display: none;
  }
}