* {
    font-family: $font-family-sans-serif;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}

::placeholder {
    opacity: 1;
}

a {
    text-decoration: none;
}

.w-100 {
    width: 100%;
}

.w-85 {
    width: 85%;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.w-15 {
    width: 15%;
}

.w-1em {
    width: 1em;
}

.w-6em {
    width: 6em;
}

.w-7em {
    width: 7em;
}

.h-100 {
    height: 100%;
}

.h-90 {
    height: 90%;
}

.h-10 {
    height: 10%;
}

.vh-50 {
    height: 50vh;
}

.bg-sde-blue {
    background-color: $sde-blue;
}

.bg-white {
    background-color: white;
}

.block-container {
    padding: 0 8px;
}

.block {
    color: white;
    padding: 1em 2em;
    border-radius: 4px;
    background-color: $sde-blue;
}

.links{
    position: absolute;
    width: 100%;
    bottom: 8px;
    height: 2rem;
    justify-content: center;
}

.link{
    height: 2rem;
    display: inline-flex;
    align-items: center;
    align-content: center;
    align-self: center;
    margin-left: 8px;
}

.lh-2 {
    line-height: 2rem;
}

.bs-cover {
    background-size: cover;
}

.bp-center {
    background-position: center;
}

.resize-vertical {
    resize: vertical;;
}


.pt-0{
    padding-top: 0 !important;
}