@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;600&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --font-family-primary: 'Poppins', sans-serif;
  --font-family-secondary: 'Alkatra', cursive;
  --first-color: #C08B6C;
  --second-color: #333333;
  --third-color: #C08B6C;
  --main-color: #00EEFF;
  --text-color: #FFFFFF;
  --bg-color: #F1F1F1;
  --second-bg-color: #323946;
}

/* LOGIN PAGE */

.login-box {
  height: 100vh;
  width: 95vw;
  min-height: 100vh;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
}

.login-box form {
  display: block;
  width: auto;
  /* min-width: 250px; */
  /* max-width: 400px; */
  margin: auto;
  padding: 20px;
}

.login-box header {
  text-align: center;
  background-color: transparent;
  /* padding-bottom: 5em; */
  position: relative;
  top: 45px;
  /* border: 1px solid red; */
}

.login-box header h1 {
  text-transform: uppercase;
  font-size: 2em;
  color: var(--first-color);
  margin: 0 0 6px 0;
  font-weight: 600;
}

.login-box header p {
  text-transform: uppercase;
  font-size: 1em;
  color: var(--first-color);
}

.input-box {
  position: relative;
  margin: 5px;
  /* width: 100%; */
}

.input-box input {
  width: 100%;
  border: 2px solid var(--first-color);
  outline: none;
  border-radius: 40px;
  transition: ease .5s;
  font-size: 1em;
  color: var(--second-color);
  padding: 0 20px;
  height: 40px;
  background-color: var(--bg-color);
  font-family: 'Open Sans', sans-serif;
}

.input-box input:focus,
.input-box input:valid {
  border-color: var(--bg-color);
}

.input-box>label {
  position: absolute;
  top: 35%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #777;
  pointer-events: none;
  transition: ease .5s;
  font-weight: 400;
}

.input-box input:focus~label,
.input-box input:valid~label {
  top: 1px;
  font-size: 0.875em;
  background-color: var(--bg-color);
  padding: 0 6px;
  color: var(--first-color);
}

.input-box:nth-of-type(1) {
  animation: slideTop 1s ease forwards;
  animation-delay: .7s;
}

.input-box:nth-of-type(2) {
  animation: slideBottom 1s ease forwards;
  animation-delay: .7s;
}

.forgot-pass {
  margin: -15px 0 10px;
  text-align: center;
}

.forgot-pass a {
  font-size: .85em;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.forgot-pass a:hover {
  text-decoration: underline;
  color: var(--first-color);
}

.login-box form .btn {
  width: 100%;
  font-size: 1.1em;
  border-radius: 30px;
}

.login-box form h1 {
  /* width: 10em; */
  text-align: center;
  font-size: 1.8em;
}

.signup-link {
  margin: 20px 0 10px;
  text-align: center;
}

.signup-link a {
  font-size: 1.1em;
  color: var(--first-color);
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  text-decoration: underline;
  color: #337ab7
}

section.account {
  background-color: var(--bg-color);
  width: 100%;
  height: auto;
  overflow-y: hidden;
  padding: 0;
  margin: 0;
  z-index: 9999;
  display: flex;
}



.input-box textarea:focus,
.input-box select:focus,
.input-box input:focus,
.input-box textarea:valid,
.input-box select:valid,
.input-box input:valid {
  border-color: var(--first-color);
}

.input-box input:focus~label,
.input-box input:valid~label,
.input-box select:focus~label,
.input-box select:valid~label {
  top: 1px;
  font-size: 0.8em;
  background-color: var(--bg-color);
  border-radius: 5px;
  padding: 0 6px;
  color:
    var(--first-color);
}

.input-box select {
  /* background: border-box; */
  box-sizing: border-box;
  appearance: none;
  background-image: url('../../../admin/_img/select.png');
  background-size: auto 70%;
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  border: 2px solid var(--first-color);
  outline: none;
  border-radius: 40px;
  transition: ease .5s;
  color: #333;
  padding: 0 20px;
  height: 40px;
  background-color: var(--bg-color);
}

.input-box:nth-of-type(1) {
  animation: slideTop 1s ease forwards;
  animation-delay: .7s;
}

.input-box:nth-of-type(2) {
  animation: slideBottom 1s ease forwards;
  animation-delay: .7s;
}




/*ACCOUNT BOX*/
.account_box {
  display: inline-block;
  width: 70%;
  background: var(--bg-color);
  vertical-align: top;
}



/*FORMS*/
.account_form_fields {
  padding: 30px 30px 15px 30px;
}

.account_form_fields .fieldset {
  border: 2px solid #999999;
  border-radius: 12px;
  padding: 0 20px 20px;
}

.account_form_fields .fieldset>legend {
  padding: 6px;
  font-size: 1.2em;
  border: none;
  width: auto;
  margin: 0;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.account_form_fields label {
  display: block;
  margin-bottom: 15px;
}

.account_form_fields .row label {
  flex-grow: 1;
  width: 48%;
  margin: 6px;
}

.account_form_fields label span {
  display: block;
  width: 100%;
  margin-bottom: 3px;
  font-size: 0.875em;
}

.account_form_fields label .input {
  padding: 10px;
  border: 1px solid #CCCCCC;
  color: var(--text-color);
}

.account_form_fields input,
.account_form_fields select,
.account_form_fields textarea,
.account_form_fields label .input {
  font-size: 1em;
  border: 1px solid #CCCCCC;
  border-radius: 6px !important;
  background: transparent;
  outline: none;
  color: #333333;
  font-family: 'Open sans', sans-serif;
  margin: 0 0 10px 0;
}

.account_form_fields input:focus,
.account_form_fields select:focus,
.account_form_fields textarea:focus,
.account_form_fields label .input:focus {
  border: 1px solid var(--first-color);
  box-shadow: 0 0 5px 2px var(--first-color);
}


.account_form_actions {
  padding: 30px 0;
  text-align: center;
  background: var(--bg-color);
}

.account_form_actions .btn {
  display: inline-block;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 10px 40px;
  color: black;
}

.account_form_actions img {
  height: 26px;
  margin-top: -5px;
  margin-left: 10px;
  display: none;
}

.account_form_actions a {
  display: inline-block;
  font-size: 0.7em;
  font-weight: 300;
  color: #323232;
  text-transform: uppercase;
  text-decoration: none;
}

.account_form_actions a:hover {
  text-decoration: underline;
}

.account_form_actions .create {
  margin-left: 30px;
  font-weight: 400;
  color: #333;
}




.account_box .trigger {
  font-size: 1em;
}

.account_box .trigger a {
  color: inherit;
  font-weight: bold;
}

.account_box .paginator {
  text-align: center;
  margin: 15px 0 0 0;
}

.workcontrol_account_sidebar {
  width: 20%;
  height: auto;
  min-height: 100vh !important;
  padding-right: 0;
  display: inline-block;
  vertical-align: top;
  background: #333;
}

.workcontrol_account_sidebar header {
  padding: 30px 0;
  text-align: center;
  color: #fff;
}

.workcontrol_account_sidebar header h1 {
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  margin: auto;
}

.workcontrol_account_sidebar header p {
  font-size: 0.875em;
  letter-spacing: 0.1em;
}

.workcontrol_account_sidebar_nav {
  padding-top: 10px;
  display: block;
  width: 100%;
  height: 100%;
}

.workcontrol_account_sidebar_nav li {
  width: 100%;
  padding: 0 0 0 15px;
}

/* .workcontrol_account_sidebar_nav li:nth-child(1) {
  position: relative;
  top: -20px;
  height: 20px;
  width: 100%;
  background: #333;
}

.workcontrol_account_sidebar_nav li:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 20px;
  background-color: #333;
}
 */
.workcontrol_account_sidebar_nav li a {
  display: block;
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  color: #c1c1c1;
  font-size: 0.875em;
  font-weight: bold;
  text-decoration: none;
}

.workcontrol_account_sidebar_nav li .logoff {
  color: #F33E49;
}

/*
.workcontrol_account_sidebar_nav li a:before {
  content: '-';
  margin-right: 10px;
} */

.workcontrol_account_sidebar_nav li .active,
.workcontrol_account_sidebar_nav li .active:hover {
  background: #F1F1F1;
  color: #333;
  cursor: default;
  border-radius: 30px 0 0 30px;
}

.workcontrol_account_sidebar_nav li .active:before {
  font-family: 'icomoon';
  content: "\ea1c";
  margin-right: 10px;
}

.workcontrol_account_sidebar_nav li a:hover {
  background: #555;
  border-radius: 30px 0 0 30px;
  transition: all ease .3s;
}

.workcontrol_account_view {
  padding: 30px 30px 90px 30px;
}

.account_user_avatar {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.account_box .account_form_callback {
  position: fixed;
  right: 0;
  top: 0;
  padding: 15px;
  width: 500px;
  max-width: 100%;
  z-index: 450;
}

.account_box .account_form_callback .trigger {
  text-align: left;
}

.wc_account_title {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #888;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 3px solid #f2f2f2;
}

.wc_account_title span {
  border-bottom: 3px solid #888;
  padding-bottom: 5px;
}

.wc_spacer {
  padding: 2px;
  margin: 30px 0;
  background: transparent;
}

.workcontrol_account_home p {
  display: inline-block;
  width: 50%;
  padding: 10px;
  border: 1px solid #ddd;
  margin: 0;
}

.workcontrol_account_home p b {
  font-weight: 600;
  color: #999;
}

.workcontrol_account_home .btn {
  font-size: 0.8em;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.wc_account_order {
  font-size: 0.875em;
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.wc_account_order p {
  display: inline-block;
  width: 20%;
  color: #888;
  text-align: center;
}

.wc_account_order p:first-of-type {
  text-align: left;
}

.wc_account_order a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
}

.wc_account_order a:hover {
  text-decoration: underline;
}

.wc_order_addr {
  margin: 0 0 20px 0;
  font-size: 0.875em;
  padding: 10px;
  border: 1px solid #f2f2f2;
}

.wc_order_addr b {
  font-weight: 400;
  font-size: 1.2em;
}

.workcontrol_order_completed_card {
  display: block;
  width: 100%;
}

.workcontrol_order_completed_card p {
  display: inline-block;
  width: 20%;
  text-align: center;
  font-weight: bold;
  color: #888;
  font-size: 0.875em;
}

.workcontrol_order_completed_card a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.workcontrol_order_completed_card a:hover {
  text-decoration: underline;
}

.workcontrol_order_completed_card.items img {
  display: inline-block;
  vertical-align: middle;
  width: 15%;
}

.workcontrol_order_completed_card.items .product span {
  display: inline-block;
  vertical-align: middle;
  width: 85%;
  padding-left: 5%;
}

.workcontrol_order_completed_card.items {
  border-bottom: 1px solid #eee;
}

.workcontrol_order_completed_card.items p {
  font-weight: 300;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 0;
}

.workcontrol_order_completed_card .product {
  width: 40%;
  text-align: left;
}

.workcontrol_order_completed_card.total {
  display: block;
  text-align: right;
  padding-top: 30px;
  color: #888;
  font-size: 1.3em;
  font-weight: 300;
}

.workcontrol_order_completed_card.total b {
  display: inline-block;
  width: 200px;
  font-weight: 300;
}

.workcontrol_order_completed_card.total .wc_cart_price b,
.workcontrol_order_completed_card.total .wc_cart_price {
  font-weight: 400;
  color: #000000;
}

.donation_box {
  display: inline-block;
  vertical-align: top;
  margin-left: -4px;
  padding: 10px;
}

.box25 {
  width: 25%;
}

.al_center {
  display: flex;
  text-align: center !important;
  display: block;
}

.post_single_content {
  padding: 15px;
  background: #fff;
}

.post_single a {
  margin-right: 5px !important;
}

.post_single_actions {
  padding: 15px 5px;
  background: #ffffff;
  text-align: center;
  font-size: 0.8em;
  border-radius: 0px 0px 10px 10px;
}

.font_small {
  font-size: 0.975em !important;
}

.font_medium {
  font-size: 1.245em !important;
}

.zebra {
  width: 100% !important;
  margin: 0;
  background-color: #f1f1f1;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.zebra:nth-of-type(2n+1) {
  background-color: #ffffff;
}

.al_left {
  text-align: left !important;
}

.al_right {
  text-align: right !important;
}

.donation_title {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 320px) AND (max-width: 380px) {

  .login_box {
    max-width: 100%;
  }

  .login-box form {

    width: 100vw;

    padding: 14px;

    z-index: 400;

  }


  .login_box header {
    padding: 20px;
  }

  .login_box header h1 {
    font-size: 1.8em;
  }

  .login-box header p {
    font-size: 0.875em;
    font-weight: 400;
  }

  /*FORMS*/
  .account_form_fields {
    padding: 15px;
  }

  .account_form_fields .row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .account_form_fields label {
    margin-bottom: 12px;
  }

  .account_form_fields .row label {
    flex-grow: 1;
    width: 100%;
    margin: 0.5em 0;
  }

  .account_form_fields label span {
    font-size: 0.875em;
  }

  .account_form_fields label .input {
    padding: 6px 10px;
    border: 2px solid #CCCCCC;
    color: var(--second-color);
  }

  .account_form_fields input,
  .account_form_fields select,
  .account_form_fields textarea,
  .account_form_fields label .input {
    padding: 6px 10px;
    font-size: 0.875em;
  }

  .account_form_actions {
    padding: 0;
  }

  .account_form_actions .btn {
    font-size: 0.875em;
    padding: 6px 12px;
  }
}

@media (max-width: 62em) {

  .workcontrol_account_sidebar_nav li .active,
  .workcontrol_account_sidebar_nav li .active:hover {
    border-radius: 20px 20px 20px 20px;
  }


  section.account {
    /* padding-top: 92px; */
    padding-bottom: 0px;
    height: auto;
  }

  .account_box,
  .workcontrol_account_sidebar {
    width: 100%;
    padding: 0;
  }

  .workcontrol_account_sidebar_nav {
    height: auto;
  }

  .workcontrol_account_sidebar_nav li {
    display: inline-block;
    width: 50%;
    font-size: 0.9em;
  }

  .workcontrol_account_sidebar header {
    margin-top: -20px;
  }

}

@media (max-width: 42em) {

  .workcontrol_account_sidebar_nav li .active,
  .workcontrol_account_sidebar_nav li .active:hover {
    border-radius: 20px 20px 20px 20px;
  }


  .workcontrol_account_home p {
    width: 100%;
  }

  .wc_account_order p {
    width: 50%;
    padding: 10px 0 0 0;
  }

  .wc_account_order p:first-of-type {
    width: 100%;
    padding: 10px;
    background: #F2F2F2;
  }

  .workcontrol_account_sidebar header {
    margin-top: -20px;
  }


}

/*.#########################
### KEYFRAMES ANIMATION ####
#########################.*/

@keyframes animateBlink {
  0% {
    background-color: var(--first-color);
  }

  25% {
    background-color: var(--third-color);
  }
}
