@charset "UTF-8";

/* src/styles.scss */
@font-face {
  font-family: "Cera Pro Light";
  src: url("./media/Cera-Pro-Light.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro Medium";
  src: url("./media/Cera-Pro-Medium.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro Bold";
  src: url("./media/Cera-Pro-Bold.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("./media/Oswald-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-main-color: #D51022;
  --primary-dark-color: #256320;
  --primary-light-color: #EBFFD9;
  --black: #101111;
  --white: #FFFFFF;
  --gray-main: #9E9E9E;
  --gray-dark: #525252;
  --gray-light: #F2F2F2;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  touch-action: manipulation;
}
body {
  font-family: "Cera Pro Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}
button {
  font-family: "Cera Pro Medium", sans-serif;
  background: transparent;
  border: none;
  cursor: pointer;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url("./media/desktop-bg.png") no-repeat center;
  background-size: cover;
}
.main {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: relative;
}
@media only screen and (min-width: 585px) {
  .main {
    border-radius: 30px;
    width: 300px;
    height: 650px;
  }
  .main::after {
    content: "";
    width: 331px;
    height: 678px;
    position: absolute;
    top: -14px;
    left: -14px;
    background-image: url("./media/phone.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 99;
  }
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 49px;
  width: 100%;
  border-radius: 2px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #000000;
  box-shadow: 5px 5px 0 0 #000000;
  transition:
    color 300ms,
    border 300ms,
    background 300ms;
}
.button._blue {
  background: #3A6CE8;
}
.button._white {
  background: #EEEEEE;
  color: #222222;
}
.button._disabled {
  background: transparent;
  border: 1px solid rgba(118, 118, 118, 0.5019607843);
  pointer-events: none;
  color: rgba(118, 118, 118, 0.5019607843);
}
.modal-wrapper {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  gap: 10px;
}
.modal-wrapper .video-wrapper {
  width: calc(100% - 40px);
  border: 3px solid #222222;
  border-radius: 2px;
}
.modal-wrapper .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
@media only screen and (min-width: 585px) {
  .modal-wrapper {
    border-radius: 20px;
  }
}
.modal-inner {
  position: relative;
  padding: 36px 20px 20px 20px;
  border-radius: 2px;
  border: 1px solid #222;
  background: #fff;
  width: calc(100% - 40px);
  height: auto;
}
.close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -8px;
  right: -8px;
  cursor: pointer;
}
.close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.final-text {
  font-size: 14px;
  flood-color: #101111;
  font-weight: 700;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
