/* Base */
@import url("https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #ff9843;
  --background: #ffffff;
  --secondary-background: #ffdd95;
  --secondary: #fff5ec;
  --text: #4d4d4d;
  --text-solid: #000000;
  --text-disabled: #999999;
  --text-regular: #292929;
  --text-accent: #2a539a;
  --warning: #f59e0b;
  --border: #cccccc;
  --card-border: #e6e6e6;
  --max-width: 1024px;
  --mobile-ui-size: 720px;
}

*,
html {
  font-family: "Signika", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: var(--text);
}

body {
  background-color: var(--background);
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
}

/* Root Component */
img {
  max-width: 100%;
}

ul {
  list-style-type: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus {
  text-decoration: none;
  outline: none;
}

hr {
  margin: 1rem 0;
  border: 0.6px solid var(--border);
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-1 {
  flex: 1;
  margin-top: auto;
  margin-bottom: auto;
}

.flex-2 {
  flex: 2;
  margin-top: auto;
  margin-bottom: auto;
}

.text-center {
  text-align: center;
}

.wrapper {
  max-width: var(--max-width);
}

/* Custom Component */
.button {
  padding: 12px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  height: 52px;
  text-align: center;
  width: 100%;
  border: none;
}

.button:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Text style */
.text-body-medium {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-solid);
}

.text-body-small {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
}

.text-button-small {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.open-preview {
  cursor: pointer;
}
