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

:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 11px 30px 0 rgba(0, 0, 0, 0.048),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --color-text-black: #333333;
    --color-text-grayblack: #666666;
    --color-text-gray: #dcdcdc;
    --color-background: #f7f9fb;
    --color-line: #dcdcdc;
    --color-white: #ffffff;
    --primary-color: #003366;
    --secondary-color: #ffd700;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    caret-color: transparent !important;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-black);
    background-color: var(--color-white);
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    box-shadow: none;
    font-family: inherit;
    letter-spacing: 0.2px;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

button,
select,
input {
    font-family: inherit;
    letter-spacing: 0.25px;
}

input,
textarea {
  caret-color: var(--primary-color) !important;
}

::placeholder {
    color: var(--color-text-gray);
    letter-spacing: 0.2px;
    font-weight: 400;
}

.container {
    max-width: 82%;
    height: auto;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1300px;
    }
}

.mx {
    margin: 0 auto;
}

.ys-hidden {
    display: none;
}

body.home .mx.container.breadcrumb {
    display: none;
}

#googleSignInDiv {
    display: table;
    border-radius:
        12px;
    overflow:
        hidden;
    padding:
        5px;
    margin:
        20px auto;
}

.breadcrumb,
.breadcrumb a {
    color: var(--color-text-gray);
    font-size: 14px;
    font-weight: 500;
    padding:
        24px 0;
}

.breadcrumb>span {
    color: #ffc300;
}

.mx.container.breadcrumb {
    padding:
        0;
}


.ys-loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%, #ffa516);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}

.footer-callToAction-wrapper {
    margin-bottom: -104px;
}

.progress-area,
.uploaded-area {
    display: none;
}

/* HTML: <div class="loader"></div> */
.upload-loader {
  width: 50px;
  margin: 0 auto;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #514b82;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation: l5 1s infinite;
}
@keyframes l5 {to{transform: rotate(.5turn)}}

button .upload-loader {
    width: 14px;
    background: #ffc300;
}