/**
* Set up a decent box model on the root element
*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
}

/**
* 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 {
  box-sizing: inherit;
  margin: 0;
}

body {
  background: #fff;
}

body, ul, ol, dl {
  margin: 0;
}

article, aside, audio,
footer, header, nav, section, video {
  display: block;
}

p {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* sets hyphenation by default on paragraphs */
textarea {
  resize: vertical;
}

/* changes textarea resizing from "both" (UA default) to vertical only */
table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
}

input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  border: 0px;
}

/* removes the inner border effect from focused buttons for form elements in Firefox */
input[type=search] {
  -webkit-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

/* removes the OS X appearance from HTML5 search inputs and submit buttons when viewed in Safari */
input:required:after {
  color: #f00;
  content: " *";
}

/* sets up required form fields with the conventional following red asterix */
input[type=email]:invalid {
  background: #f00;
}

sub, sup {
  line-height: 0;
}

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

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

html.has-scroll-smooth, [data-scroll-container] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}
/**
* Basic typography style for copy text
*/
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "Cocogoose Light";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_light.woff") format("woff"), url("./fonts/Cocogoose_light.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Pro";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_pro.woff") format("woff"), url("./fonts/Cocogoose_pro.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Semilight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_semilight.woff") format("woff"), url("./fonts/Cocogoose_semilight.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose thin";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_thin.woff") format("woff"), url("./fonts/Cocogoose_thin.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose ultralight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_ultralight.woff") format("woff"), url("./fonts/Cocogoose_ultralight.woff2") format("woff2");
}
body {
  font-size: 14px;
  font-family: "Cocogoose light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-smooth: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
* Clear inner floats
*/
.ultrathin {
  font-family: "Cocogoose ultralight";
}

.pro {
  font-family: "Cocogoose Pro";
}

.semilight {
  font-family: "Cocogoose Semilight";
}

.light {
  font-family: "Cocogoose Light";
}

.thin {
  font-family: "Cocogoose thin";
}

.default-text {
  font-family: "Inter", sans-serif;
}

.numbers {
  font-size: 18px;
  font-weight: 500;
}

.special-text {
  font-family: "Tinos", cursive;
}

.blue-colored {
  color: #305fab;
}

.yellow-colored {
  color: #edae49;
}

.shadowed {
  text-shadow: 2px 1px 0px #ccdde2;
}

.bg-1 {
  background-color: #ccdde2;
}

.bg-2 {
  background-color: #f5f4ed;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.primary-button {
  font-size: 13px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  background-color: #305fab;
  transition: all 0.45s ease-out;
  color: #f5f4ed;
  border-radius: 50px;
}
.primary-button.cancel {
  background-color: rgb(163, 35, 35);
}
.primary-button span {
  position: relative;
  z-index: 4;
}
.primary-button:hover {
  background-color: #edae49;
  color: #305fab;
}

/* From uiverse.io */
.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #201d1f;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #201d1f;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .learn-more .button-text {
    margin: 0 0 0 2rem;
  }
}
header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.header-nav #logo {
  margin-right: 48px;
}
.header-nav #logo img {
  height: 90px;
}
.header-nav .header-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header-nav .header-menu ul li {
  display: inline-block;
  margin: 0 12px;
}
.header-nav .header-menu ul li a {
  display: block;
  font-size: 16px;
  position: relative;
  color: #201d1f;
}
.header-nav .header-menu ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header-nav .header-menu ul li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
}

#left-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-right: 55px;
}
#left-menu li {
  position: relative;
}
#left-menu li .cart-number {
  position: absolute;
  top: -4px;
  right: 4px;
  background-color: #305fab;
  color: #f5f4ed;
  padding: 5px 6px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}
#left-menu li a {
  margin: 0 12px;
}
#left-menu li a img {
  height: 32px;
}

#menu-click {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#mainMenu {
  padding-top: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 8;
  background-color: #ccdde2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(0, -100%);
}
#mainMenu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg1.png");
  background-size: contain;
  background-position: right center;
  opacity: 0.15;
  z-index: 0;
}
#mainMenu .main-menu-list {
  list-style: none;
}
#mainMenu .main-menu-list li a {
  font-size: 32px;
  display: inline-block;
  margin: 14px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .main-menu-list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mainMenu .main-menu-list li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}
#mainMenu .sub-menu {
  list-style: none;
}
#mainMenu .sub-menu li a {
  font-size: 18px;
  display: inline-block;
  margin: 10px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .sub-menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scaleY(1.001);
}
#mainMenu .sub-menu li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}

.menu-contact-box {
  padding: 10px;
}
.menu-contact-box .c-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
}
.menu-contact-box p {
  font-size: 14px;
  line-height: 2;
}
.menu-contact-box .direction-link {
  font-size: 18px;
}
.menu-contact-box .direction-link a {
  position: relative;
}
.menu-contact-box .direction-link a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background-color: #edae49;
  height: 2px;
}
.menu-contact-box .default-text {
  font-size: 16px;
  margin-left: 10px;
}
.menu-contact-box .default-text a {
  position: relative;
}
.menu-contact-box .default-text a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-contact-box .default-text a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}

@media only screen and (max-width: 1400px) {
  .header-nav .header-menu ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    display: none;
  }
  #mainMenu {
    justify-content: flex-start;
    overflow-y: scroll;
    padding-top: 120px;
  }
  #mainMenu .main-menu-list li a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  #left-menu {
    padding-left: 0;
  }
  #left-menu li a img {
    width: 24px;
  }
  .header-nav #logo {
    margin-right: 15px;
  }
}
footer {
  padding: 60px 0 0 0;
  background-color: #305fab;
  color: #f5f4ed;
  position: relative;
}
footer .footer-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .footer-flex .footer-item {
  width: 33.33%;
  margin-bottom: 48px;
}
footer .footer-flex .footer-item .footer-item-title {
  font-size: 1rem;
  font-weight: bold;
}
footer .footer-flex .footer-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .footer-flex .footer-item ul li a {
  display: inline-block;
  line-height: 2.3;
  position: relative;
  font-size: 13px;
  color: #f5f4ed;
}
footer .footer-flex .footer-item ul li a:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  transition: all 0.25s ease-in-out;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}
footer .footer-flex .footer-item ul li a:hover:before {
  width: 100%;
}
footer .footer-flex .footer-item ul li a .default-text {
  font-size: 15px;
}
footer .foot-end {
  padding: 15px 0;
  margin-top: 30px;
}
footer .foot-end #seperator {
  position: relative;
}
footer .foot-end #seperator:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1.001);
  width: 100%;
  height: 1px;
  background-color: #edae49;
  z-index: 0;
}
footer .foot-end #seperator .d-inline-flex {
  background-color: #305fab;
  position: relative;
  padding: 4px;
}
footer #footer-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 33.33%;
}
footer #footer-image img {
  max-width: none;
  max-height: 450px;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  footer .footer-flex {
    flex-wrap: wrap;
  }
  footer .footer-flex .footer-item {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  footer #footer-image {
    width: 100%;
    opacity: 0.05;
  }
  footer #footer-image img {
    max-height: 100vh;
  }
}
div.login-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.container-main, div.container-poster {
  width: 50%;
  height: 100%;
}

div.container-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  text-align: center;
  padding-bottom: 80px;
}

.containerMain-header {
  width: 50%;
  margin-bottom: 20px;
}

.mainHeader-title {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 0;
  color: #305fab;
}

.containerMain-form {
  width: 75%;
  margin: 10px 0;
}

.formField-txtFieldName {
  width: 100%;
  height: 50px;
  border: 1px solid rgb(223, 223, 223);
  padding: 30px 20px;
  outline: none;
}

#txtUsername {
  border-radius: 5px 5px 0 0;
}

#txtPassword {
  border-radius: 0 0 5px 5px;
  margin-bottom: 20px;
}

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

.formField-leftSide, .formField-rightSide {
  width: 50%;
  font-size: 13px;
}

.formField-leftSide {
  text-align: left;
}

.formField-chFieldName {
  cursor: pointer;
  filter: invert(100%) hue-rotate(150deg) brightness(86%);
  transform: scale(1.3);
  margin: 10px;
}

.formField-lblFieldName {
  color: var(--color-gray);
}

.formField-rightSide {
  display: flex;
  justify-content: flex-end;
}

.formField-lblForget {
  color: #edae49;
  text-decoration: underline;
  font-size: 13px;
  margin-bottom: 0;
}

.formField-lblForget:hover {
  text-decoration: none;
}

.mainForm-btnLogin {
  width: 100%;
  height: 55px;
  margin: 20px 0;
  border-radius: 3px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #305fab;
  color: #f5f4ed;
}

.mainForm-btnLogin:active {
  box-shadow: 0 0 0 2px #5298e4;
}

.mainForm-lblOr {
  width: 100%;
  text-align: center;
  margin: 0 0 10px 0;
}

.mainForm-btnsocialButtons {
  margin: 5px;
}

.mainForm-btnsocialButtons:nth-child(1) {
  background-color: #3b5998;
}

.mainForm-btnsocialButtons:nth-child(2) {
  background-color: #0d95e8;
}

.mainForm-btnsocialButtons:nth-child(3) {
  background-color: #e82e1e;
}

.mainForm-btnsocialButtons i {
  margin-right: 10px;
}

.alternate-text a {
  color: #edae49;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 1000px) {
  .container {
    flex-direction: column;
  }
  div.container-main, div.container-poster {
    width: 100%;
  }
  .container-poster {
    min-height: 300px;
    display: none;
  }
  div.container-poster:nth-child(1) {
    display: block;
  }
}
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.section-title {
  margin-bottom: 32px;
}
.section-title span {
  position: relative;
  padding: 12px 0px;
  line-height: 1;
}
.section-title span img {
  height: 32px;
  margin: 0 24px;
}
.section-title span:before, .section-title span:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #edae49;
  position: absolute;
  left: 0;
  transform: scaleY(1.001);
}
.section-title span:before {
  top: 0;
}
.section-title span:after {
  bottom: 0;
}

.floating1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.floating2 {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #edae49;
  height: 0;
  opacity: 0.75;
}

.top-line {
  top: 0;
}

.bottom-line {
  bottom: 0;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  margin-bottom: 4px;
  font-weight: 500;
  opacity: 0.9;
}
.form-group .form-control {
  border-radius: 0px;
  border: 1px solid #ccdde2;
  background-color: #fafafa;
  font-size: 14px;
}

#page-title {
  background-color: #f5f4ed;
  padding: 175px 0 30px 0;
}
#page-title h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #305fab;
}
#page-title p {
  font-size: 13px;
}

@media only screen and (max-width: 600px) {
  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 32px;
  }
  #page-title {
    background-color: #f5f4ed;
    padding: 120px 0 30px 0;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title h2 .text:before {
    display: none;
  }
  .section-title h2 .text:after {
    display: none;
  }
}
#billing-address {
  display: none;
  margin-top: 40px;
}

#diff-address {
  display: inline-block;
}/*# sourceMappingURL=login-signup.css.map */