.visible {
  display: block;
  position: absolute;
  right: 0;
  top: -2em;
  z-index: 1;
  margin-top: 0.6em;
  font-size: 0.8em;
  color: brown;
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .visible {
    font-size: 0.6em;
  }
}

@media only screen and (min-width: 376px) {
  .visible {
    font-size: 0.6em;
  }
}

.fadeIn {
  -webkit-animation: In 0.3s  ease-in;
          animation: In 0.3s  ease-in;
}

.fadeOut {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.display {
  display: none;
}

.shake {
  color: brown;
  -webkit-animation: shake ease 0.6s;
          animation: shake ease 0.6s;
}

@-webkit-keyframes In {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes In {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@-webkit-keyframes Out {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes Out {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/**
 * Set up a decent box model on the root element
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

/**
   * Make all elements from the DOM inherit from the parent box-sizing
   * Since `*` has a specificity of 0, it does not override the `html` value
   * making all elements inheriting from the root box-sizing value
   * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
   * Basic styles for links
   */
a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  z-index: 2;
  margin: 0;
  padding: 0;
  line-height: 0.9em;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

input, textarea, select {
  outline: none;
  text-decoration: none;
  border: 0;
}

p {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "BebasNeue-Regular";
  src: url("../../assets/fonts/BebasNeue-Regular.ttf");
}

@font-face {
  font-family: "Rubik-Medium";
  src: url("../../assets/fonts/Rubik-Medium.ttf");
}

@font-face {
  font-family: "coolvetica rg";
  src: url("../../assets/fonts/coolvetica rg.ttf");
}

@font-face {
  font-family: "DidactGothic-Regular";
  src: url("../../assets/fonts/DidactGothic-Regular.ttf");
}

/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  outline: none;
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
  outline: none;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
  outline: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  outline: none;
  border: 0;
  background-color: transparent;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: none;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: none;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
          box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.btnw {
  width: 100%;
  height: 100%;
  padding: 0.8em;
  font-family: "coolvetica rg";
}

.btnw-primary {
  border-radius: 1.2em;
  background-color: #FFFFFF;
  color: #ff7f00;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.btnw-primary:hover, .btnw-primary:active, .btnw-primary:visited, .btnw-primary:link, .btnw-primary:focus {
  border: solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
}

.btnw-secundary {
  border-radius: 1.2em;
  background-color: #ff7f00;
  color: #FFFFFF;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btnw-secundary:hover, .btnw-secundary:active, .btnw-secundary:visited, .btnw-secundary:link, .btnw-secundary:focus {
  border: solid #ff7f00;
  background-color: transparent;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  color: #ff7f00;
}

.btnw-wish {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  border-radius: 0.3em;
  background-color: #ff7f00;
  overflow: hidden;
  outline: none;
  color: #FFFFFF;
}

.btnw-wish button {
  outline: none !important;
  width: 100%;
  height: 100%;
}

.btnw-wish:hover, .btnw-wish:active, .btnw-wish:visited, .btnw-wish:link, .btnw-wish:focus {
  background-color: #dddddd;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  color: #ff7f00;
}

.btnw-shopping {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ff7f00;
  position: absolute;
  bottom: 1em;
  right: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btnw-shopping:hover, .btnw-shopping:active, .btnw-shopping:visited, .btnw-shopping:link, .btnw-shopping:focus {
  background-color: #dddddd;
  -webkit-transition: ease-in .2s;
  transition: ease-in .2s;
}

.btnw-shopping__wishes {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff7f00;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -3px;
  right: -2px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btnw-shopping button {
  width: 50%;
  height: 50%;
  outline: none;
  background-image: url(../images/carretilla.png);
  background-size: contain;
}

.btnw-shopping__cart {
  position: relative;
  width: 75%;
  height: 75%;
  font-size: 10px;
}

.card {
  position: relative;
}

.card-container {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  font-size: 16px;
  border-radius: 0.3em;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-container:nth-child(1) {
  margin-top: 1em;
}

.card-container__single {
  border-radius: 0.8em;
  margin: 1em auto 1em auto;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  max-width: 325px;
  margin: 1em auto 4em auto;
  background-color: #FFFFFF;
}

@media only screen and (min-width: 376px) {
  .card-container__single {
    margin: 1em  auto;
  }
}

.card-container__single .card-top-image {
  position: relative;
  height: 175px;
}

.card-container__single .card-top-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5555);
}

.card-container__single .card-top-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.card-container__single .card-product__name {
  line-height: 0.2px;
}

.card-container__single .card-descript-single {
  height: 175px;
  margin-top: 0.5em;
  background-color: #FFFFFF;
}

.card-container__single .card-descript-single .text__p {
  font-size: 22px;
  font-family: "coolvetica rg";
  color: #404356;
  margin-left: 10px;
}

.card-container__single .card-descript-single .text__s {
  font-size: 15px;
  font-family: "coolvetica rg";
  color: #404356;
  margin-left: 10px;
}

.card-text {
  font-family: "coolvetica rg";
  color: #404356;
  text-align: justify;
  margin-left: 10px;
}

.card-text__p {
  font-size: 20px;
}

.card-text__s {
  font-size: 12px;
  font-family: "Roboto";
}

.card-pay__buttons {
  width: 100%;
  background-color: #ff7f00;
}

.card-pay__buttons input {
  background-color: transparent;
  color: #FFFFFF;
}

.card-pay__buttons-buttons {
  background-color: #ff7f00;
  color: #FFFFFF;
}

.card-pay__buttons-buttons input {
  background-color: transparent;
  color: inherit;
}

.card-pay__buttons-buttons button {
  outline: none;
  color: inherit;
  background-color: transparent;
}

.card-image a img {
  margin-top: 5px;
  width: 95%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3em;
}

.card-pay {
  margin-left: 10px;
  margin-bottom: 10px;
}

.shopping-cart {
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 35px;
  right: 30px;
}

.shopping-cart__wish {
  position: absolute;
  top: 0;
  right: -18px;
  height: 28px;
  width: 28px;
  font-size: 12px;
  border-radius: 50%;
  background-color: #ff7f00;
  color: #FFFFFF;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.button-pay { 
  padding: 0.4em;
  background-color: #ff7f00;
  border-radius: 0.3em;
  color: #FFFFFF;
  font-family: "coolvetica rg" !important;
}

.form {
  width: 90%;
  margin: 1em auto;
  color: #FFFFFF;
  font-family: "DidactGothic-Regular", Arial, Helvetica, sans-serif;
}

.form_title {
  width: 90%;
  margin: 0 auto 2em auto;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

@media only screen and (max-width: 320px) {
  .form_title {
    font-size: 14px;
  }
}

.form-field {
  position: relative;
  width: 90%;
  margin: 1em auto 0 auto;
  padding: 0.2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: #FFFFFF;
  font-weight: bold;
  border-bottom: 0.1em solid #FFFFFF;
}

.form-field input, .form-field input::-webkit-input-placeholder {
  width: 70%;
  margin: 0 auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field input, .form-field input:-ms-input-placeholder {
  width: 70%;
  margin: 0 auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field input, .form-field input::-ms-input-placeholder {
  width: 70%;
  margin: 0 auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field input, .form-field input::placeholder {
  width: 70%;
  margin: 0 auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

@media only screen and (max-width: 320px) {
  .form-field {
    font-size: 15px;
  }
}

.form-field_animation {
  position: relative;
  width: 90%;
  margin: 2.3em auto 0 auto;
  padding: 0.2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: #FFFFFF;
  font-weight: bold;
  border-bottom: 0.1em solid #FFFFFF;
}

.form-field_animation input, .form-field_animation input::-webkit-input-placeholder {
  width: 60%;
  margin: 0 auto 0.3em auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field_animation input, .form-field_animation input:-ms-input-placeholder {
  width: 60%;
  margin: 0 auto 0.3em auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field_animation input, .form-field_animation input::-ms-input-placeholder {
  width: 60%;
  margin: 0 auto 0.3em auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field_animation input, .form-field_animation input::placeholder {
  width: 60%;
  margin: 0 auto 0.3em auto;
  color: #FFFFFF;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
}

.form-field_animation span {
  position: absolute;
  left: 0;
  bottom: 0.3em;
  scale: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.form-field_animation input:focus ~ span,
.form-field_animation input:valid ~ span {
  scale: 1;
  margin-top: -0.5em;
  bottom: 2.8em;
  font-size: .777em;
}

@media only screen and (max-width: 320px) {
  .form-field_animation {
    font-size: 16px;
  }
}

.form-contain_btnw {
  width: 90%;
  margin: 1.5em auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1em;
  overflow: hidden;
}

.form-contain_btnw button {
  outline: none;
}

@media only screen and (max-width: 320px) {
  .form-contain_btnw {
    margin: 20% auto 0 auto;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .form-contain_btnw {
    margin: 3em auto 0 auto;
  }
}

@media only screen and (min-width: 376px) {
  .form-contain_btnw {
    margin: 4em auto 0 auto;
  }
}

.nav nav {
  margin: 0;
  padding: 0;
}

.nav-container {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 65px;
  background-color: #ff7f00;
}

.nav-header {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-controller {
  background-image: url("../../assets/images/hamburguesa.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-controller__open {
  width: 29px;
  height: 29px;
}

.nav-controller__close {
  width: 29px;
  height: 29px;
  margin: 0.8em 0 0 0.8em;
}

.nav-logo {
  width: 80%;
  height: 80%;
  background-image: url("../../assets/images/head.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.nav-items {
  width: 60%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -65%;
  z-index: 2;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #ff7f00;
}

.nav-items__profile {
  height: 22%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "coolvetica rg";
  text-align: center;
  color: #FFFFFF;
}

.nav-items__profile img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-items__link {
  margin-top: 1em;
  padding-top:12px;
  height: 75%;
  border-radius:0 1.5em 0 0;
  font-weight:300;
  background-color: #404356;
  font-family: "coolvetica rg";
  color: #FFFFFF;
}

.nav-items__link .item {
  position: relative;
  margin: 0 auto 15px auto;
  padding: 6px 0;
  width: 88%;
  border-bottom: 1px solid #FFFFFF;
}

.nav-items__link .item a {
  margin-left: 0.3em;
}

.nav-items__link .item:first-child {
  padding-top: 1.5em;
}

.nav-items__link .item-logo {
  width: 95%;
  height: 90px;
}

.nav-items__link .item-logo img {
  margin: 0 auto;
  width: 90%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-shadow {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100vh;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.search-bar__container {
  border: solid transparent;
  width: 100%;
  height: 155px;
  border-radius: 0 0 35px 35px;
  background-color: #ff7f00;
  margin-bottom: 40px;
}

@media only screen and (max-width: 320px) {
  .search-bar__container {
    height: 145px;
    margin-bottom: 70px;
  }
}

.search-bar__single {
  border: solid transparent;
  width: 100%;
  height: 80px;
  border-radius: 0 0 1.5em 1.5em;
  background-color: #ff7f00;
}

.search-bar-items {
  margin: 0 auto 0.5em auto;
  padding-top: 0.5em;
  width: 80%;
  font-family: "coolvetica rg";
  color: #FFFFFF;
}

.search-bar-items__greeting {
  width: 100%;
  font-size: 1em;
  margin: 0;
}

.search-bar-items__greeting-sayName {
  font-size: 75%;
  font-family: "Roboto";
}

@media only screen and (max-width: 320px) {
  .search-bar-items__greeting-sayName {
    font-size: 65%;
  }
}

.search-bar-searcher {
  width: 90%;
  margin: 0 auto;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 1em;
  font-family: "DidactGothic-Regular";
}

.search-bar-searcher input {
  background-color: transparent;
  padding: .5em 0 .5em 1em;
  width: 85%;
  color: #ff7f00;
  letter-spacing: 1px;
}

.search-bar-searcher img {
  position: absolute;
  top: 0.4em;
  right: 0.5em;
  bottom: 0;
  width: 25px;
  height: 25px;
}

.search-bar-logo {
  width: 70%;
  height: 85px;
  margin: 0.5em auto 0 auto;
  overflow: hidden;
  border-radius: 0.7em;
}

.search-bar-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.search-bar-searcher__single {
  width: 90%;
  margin: 1em auto;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 1em;
}

.search-bar-searcher__single h6 {
  margin: 0 !important;
}

.search-bar-searcher__single input {
  background-color: transparent;
  padding: .5em 0 .5em 1em;
  width: 90%;
  color: #ff7f00;
  letter-spacing: 1px;
}

.search-bar-searcher__single img {
  position: absolute;
  top: 0.4em;
  right: 0.5em;
  bottom: 0;
  width: 25px;
  height: 25px;
}

.swiper-carousel__category {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 10px 0 10px;
  margin-top: 10px;
}

@media only screen and (max-width: 320px) {
  .swiper-carousel__category {
    height: 105px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .swiper-carousel__category {
    height: 120px;
    max-height: 125px;
  }
}

@media only screen and (min-width: 376px) {
  .swiper-carousel__category {
    height: 120px;
    max-height: 125px;
  }
}

.swiper-carousel__recommended {
  width: 100%;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  padding: 0 10px;
}

@media only screen and (max-width: 320px) {
  .swiper-carousel__recommended {
    margin-top: 5%;
    height: 180px;
    max-height: 180px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .swiper-carousel__recommended {
    height: 175px;
    max-height: 175px;
    margin-top: 1em;
  }
}

@media only screen and (min-width: 376px) {
  .swiper-carousel__recommended {
    margin-top: 13%;
    height: 100%;
    max-height: 200px;
  }
}

.swiper-title {
  width: 90%;
  font-family: "coolvetica rg";
  font-size: 1.5em;
  color: #404356;
}

.swiper-slide {
  position: relative;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.swiper-slide__category {
  border-radius: 0.3em;
  margin-top: auto;
  margin-bottom: auto;
  max-height: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide__category .category-image {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide__recommended {
  min-height: 65%;
  max-height: 65%;
  border-radius: 0.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
}

.swiper-slide__recommended a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shopping-cart__container {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 320px) {
  .shopping-cart__container {
    height: 87%;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__container {
    border: solid lightgreen;
    height: 89%;
  }
}

.shopping-cart__content {
  width: 100%;
  margin-top: 5%;
  font-family: "coolvetica rg";
  text-align: center;
  overflow-y: auto;
}

@media only screen and (max-width: 320px) {
  .shopping-cart__content {
    height: 50%;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__content {
    height: 58%;
  }
}

@media only screen and (min-width: 376px) {
  .shopping-cart__content {
    height: 58%;
  }
}

.shopping-cart__content .order-id {
  margin: 1em auto 0 auto;
  width: 90%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shopping-cart__content .order-item {
  margin: 1em auto 1em auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shopping-cart__content .order-item__image {
  width: 75px;
  height: 80px;
  border-radius: 0.3em;
  overflow: hidden;
}

.shopping-cart__content .order-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shopping-cart__content .order-item__description {
  width: 75%;
  height: 100%;
  margin-left: 0.5em;
  text-align: left;
}

.shopping-cart__content .order-item__description .add {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.shopping-cart__content .order-item__description .price {
  font-size: 22px;
}

.shopping-cart__pay {
  font-family: "coolvetica rg";
}

@media only screen and (max-width: 320px) {
  .shopping-cart__pay {
    margin-top: 1em;
    height: 26%;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__pay {
    height: 26%;
  }
}

@media only screen and (min-width: 376px) {
  .shopping-cart__pay {
    height: 18%;
  }
}

.shopping-cart__pay .item {
  width: 100%;
  height: 100%;
}

.shopping-cart__pay .item-pay {
  margin: 0 auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2em;
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__pay .item-pay {
    margin-bottom: 2.6em;
  }
}

.shopping-cart__pay .item-confirm__pay {
  margin: 0 auto;
  width: 75%;
  height: 40%;
  text-align: center;
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__pay .item-confirm__pay {
    height: 35%;
  }
}

.shopping-cart__pay .item-confirm__pay button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.shopping-cart__pay .item-confirm__pay .btnw {
  padding: 0;
}

.car-conntainer {
  width: 100%;
  height: 73vh;
}

.car-payment {
  width: 90%;
  margin: 10px auto 0 auto;
  font-size: 16px; 
  display: box;
  
  font-family: "coolvetica rg";
  color: #404356;
}

@media only screen and (max-width: 320px) {
  .car-payment {
    margin: 2px auto;
  }
}

.car-payment .payment-check {
  width: 150px;
  display: block;
  text-align: left;
}

.car-title {
  margin-top: 7px;
  font-family: "coolvetica rg";
  text-align: center;
  color: #ff7f00;
}

.car-product__container {
  margin: 10px auto 0 auto;
  width: 90%; 
  overflow-y: auto;
}

.car-card__product {
  margin-top: 1em;
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3em;
  background-color: #FFFFFF;
  overflow: hidden;
}

.car-card__product .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.car-card__product .item-image {
  width: 25%;
  overflow: hidden;
}

.car-card__product .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.car-card__product .item-name {
  width: 55%;
  font-size: 14px;
  font-family: "DidactGothic-Regular";
  text-align: center;
  color: #404356;
}

.car-card__product .item-name span {
  text-align: center;
  display: block;
  width: 100%;
}

.car-card__product .item-button {
  margin-right: 10px;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

.car-card__product .item-button button {
  z-index: 1;
  position: relative;
  outline: none !important;
  -webkit-transition: ease .2s;
  transition: ease .2s;
}

.car-card__product .item-button button:hover, .car-card__product .item-button button:active, .car-card__product .item-button button:visited, .car-card__product .item-button button:link, .car-card__product .item-button button:focus {
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.car-card__product .item-button button:hover::before, .car-card__product .item-button button:active::before, .car-card__product .item-button button:visited::before, .car-card__product .item-button button:link::before, .car-card__product .item-button button:focus::before {
  content: "";
  z-index: -1;
  top: -0.32em;
  left: -0.26em;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #bfc0c1;
  border-radius: 50%;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.car-card__product .item-button i {
  color: #404356;
}

.car-card__product .item-price {
  width: 20%;
  font-size: 14px;
  font-family: "DidactGothic-Regular";
}

.car-card__total {
  margin: 5px auto 0 auto;
  padding-top: 0.2em;
  width: 90%;
  text-align: right;
  border: solid #404356;
  border-radius: 0.3em;
  font-family: "coolvetica rg";
  color: #404356;
}

.car-card__total p {
  margin-right: 5px;
}

.history-container {
  margin-top: 8px;
  max-height: 400px;
  background-color: #FFFFFF;
  overflow: hidden;
}

@media only screen and (max-width: 320px) {
  .history-container {
    max-height: 300px;
  }
}

.history-title {
  font-family: "coolvetica rg";
  color: #ff7f00;
}

.history-table {
  width: 100%; 
  margin: 0 auto;
  margin-bottom: 1em;
  overflow-y: auto;
}

.history-table .tw-table {
  margin: 0 auto;
  font-size: 14px;
}

@media only screen and (max-width: 320px) {
  .history-table .tw-table {
    height: 230px;
    font-size: 11px;
  }
}

.history-table .tw-table thead {
  text-align: center;
  font-family: "DidactGothic-Regular";
  color: #404356;
  letter-spacing: 2px;
  border: solid #404356;
}

.history-table .tw-table thead tr {
  border: 0;
}

.history-table .tw-table thead tr th {
  border: 0;
}

.history-table .tw-table tbody {
  text-align: center;
  font-family: "DidactGothic-Regular";
  color: #404356;
}

.history-table .tw-table tbody tr:nth-child(even) {
  background-color: #404356;
  color: #ffffff;
}

.shopping-cart__container {
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 320px) {
  .shopping-cart__container {
    height: 87%;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__container {
    border: solid lightgreen;
    height: 89%;
  }
}

.shopping-cart__content {
  width: 100%;
  margin-top: 5%;
  font-family: "coolvetica rg";
  text-align: center;
  overflow-y: auto;
}

@media only screen and (max-width: 320px) {
  .shopping-cart__content {
    height: 50%;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__content {
    height: 58%;
  }
}

@media only screen and (min-width: 376px) {
  .shopping-cart__content {
    height: 58%;
  }
}

.shopping-cart__content .order-id {
  margin: 1em auto 0 auto;
  width: 90%;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shopping-cart__content .order-item {
  margin: 1em auto 1em auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shopping-cart__content .order-item__image {
  width: 75px;
  height: 80px;
  border-radius: 0.3em;
  overflow: hidden;
}

.shopping-cart__content .order-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shopping-cart__content .order-item__description {
  width: 75%;
  height: 100%;
  margin-left: 0.5em;
  text-align: left;
}

.shopping-cart__content .order-item__description .add {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.shopping-cart__content .order-item__description .price {
  font-size: 22px;
}

.shopping-cart__pay {
  font-family: "coolvetica rg";
}

@media only screen and (max-width: 320px) {
  .shopping-cart__pay {
    margin-top: 1em;
    height: 26%;
  }
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__pay {
    height: 26%;
  }
}

@media only screen and (min-width: 376px) {
  .shopping-cart__pay {
    height: 18%;
  }
}

.shopping-cart__pay .item {
  width: 100%;
  height: 100%;
}

.shopping-cart__pay .item-pay {
  margin: 0 auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2em;
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__pay .item-pay {
    margin-bottom: 2.6em;
  }
}

.shopping-cart__pay .item-confirm__pay {
  margin: 0 auto;
  width: 75%;
  height: 40%;
  text-align: center;
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
  .shopping-cart__pay .item-confirm__pay {
    height: 35%;
  }
}

.shopping-cart__pay .item-confirm__pay button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.shopping-cart__pay .item-confirm__pay .btnw {
  padding: 0;
}

.car-conntainer {
  width: 100%;
  height: 73vh;
}

.car-payment {
  width: 90%;
  margin: 10px auto 0 auto;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "coolvetica rg";
  color: #404356;
}

@media only screen and (max-width: 320px) {
  .car-payment {
    margin: 2px auto;
  }
}

.car-payment .payment-check {
  width: 150px;
  display: block;
  text-align: left;
}

.car-title {
  margin-top: 7px;
  font-family: "coolvetica rg";
  text-align: center;
  color: #ff7f00;
}

.car-product__container {
  margin: 10px auto 0 auto;
  width: 90%; 
  overflow-y: auto;
}

.car-card__product {
  margin-top: 1em;
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3em;
  background-color: #FFFFFF;
  overflow: hidden;
}

.car-card__product .item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.car-card__product .item-image {
  width: 25%;
  overflow: hidden;
}

.car-card__product .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.car-card__product .item-name {
  width: 55%;
  font-size: 14px;
  font-family: "DidactGothic-Regular";
  text-align: center;
  color: #404356;
}

.car-card__product .item-name span {
  text-align: center;
  display: block;
  width: 100%;
}

.car-card__product .item-button {
  margin-right: 10px;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}

.car-card__product .item-button button {
  z-index: 1;
  position: relative;
  outline: none !important;
  -webkit-transition: ease .2s;
  transition: ease .2s;
}

.car-card__product .item-button button:hover, .car-card__product .item-button button:active, .car-card__product .item-button button:visited, .car-card__product .item-button button:link, .car-card__product .item-button button:focus {
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.car-card__product .item-button button:hover::before, .car-card__product .item-button button:active::before, .car-card__product .item-button button:visited::before, .car-card__product .item-button button:link::before, .car-card__product .item-button button:focus::before {
  content: "";
  z-index: -1;
  top: -0.32em;
  left: -0.26em;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #bfc0c1;
  border-radius: 50%;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.car-card__product .item-button i {
  color: #404356;
}

.car-card__product .item-price {
  width: 20%;
  font-size: 14px;
  font-family: "DidactGothic-Regular";
}

.car-card__total {
  margin: 5px auto 0 auto;
  padding-top: 0.2em;
  width: 90%;
  text-align: right;
  border: solid #404356;
  border-radius: 0.3em;
  font-family: "coolvetica rg";
  color: #404356;
}

.car-card__total p {
  margin-right: 5px;
}

.login {
  width: 100vw;
  height: 100vh;
  background-image: url("../../assets/images/loging.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "coolvetica rg";
  overflow: hidden;
  background-color: #ff7f00;
}

.login_title {
  margin: 1em auto 0.5em auto;
  width: 90%;
  color: #FFFFFF;
  font-family: "DidactGothic-Regular", Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
}

@media only screen and (max-width: 320px) {
  .login_title {
    margin-top: 1.5em;
    font-size: 20px;
  }
}

.login_logo {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login_logo img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 320px) {
  .login_logo {
    width: 150px;
    height: 150px;
  }
}

/*---------------------------------------------------------------*/
/*This file content styles for page home*/
/*---------------------------------------------------------------*/
.home-container {
  display: block;
  width: 100%;
}

.profile-container {
  margin-top: 65px;
  width: 100%;
  height: 88vh;
}

.profile-content {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.profile-image {
  width: 90%;
  height: 35%;
  margin: 1em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "coolvetica rg";
  color: #404356;
}

.profile-image img {
  width: 75%;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5em;
}

.profile-information {
  width: 100%;
  height: auto;
  font-family: "coolvetica rg";
  font-size: 18px;
  color: #404356;
}

.profile-information .telephone {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-information .telephone-icon {
  width: 25px;
  height: 25px;
}

.profile-information .address {
  width: 97%;
  margin: 0.6em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: justify;
}

.profile-information .address span {
  font-size: 14px;
  width: 50%;
}

.profile-edit {
  position: absolute;
  bottom: 1em;
  left: 0;
  right: 0;
  width: 60%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 25px auto 0 auto;
  border-radius: 1.5em;
  background-color: #ff7f00;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.profile-edit:hover, .profile-edit:active, .profile-edit:visited, .profile-edit:link, .profile-edit:focus {
  border: 1.5px solid #ff7f00;
  background-color: transparent;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.profile-edit:hover button, .profile-edit:active button, .profile-edit:visited button, .profile-edit:link button, .profile-edit:focus button {
  color: #ff7f00;
}

.profile-edit button {
  padding: 0;
  color: #FFFFFF;
}
/*# sourceMappingURL=main.css.map */