/* body {
    font-family: 'Raleway', sans-serif;
} */

* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                    supported by Chrome, Opera and Firefox */
}

body {
    overflow: hidden;
}

.no-gutter {
    scrollbar-gutter: stable;
    scrollbar-width: thin;
}

.loading-grey {
    background: linear-gradient(-45deg, #d4d4d4, #ffffff, #d4d4d4);
    background-size: 400% 400%;
    animation: gradient 2s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.card {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0px 10px 23px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
}


[data-bs-theme="dark"] .card {
    border: 1px solid rgba(255,255,255,0.1);
}


.card-footer:last-child {
    border-top: 0px;
    border-radius: 0rem;
}

.card-header {
    border-bottom: 0px;
    border-radius: 0rem;
}

.shadow {
    box-shadow: 0px 10px 23px rgba(0, 0, 0, 0.08);
}

.btn-circle-small {
    border-radius: 100%;
    padding: 0.6em 0.85em !important;
}

.btn-fully-rounded {
    padding: 1em 1em;
    border-radius: 100px;
}

[data-host-device="IOS"] .tab-bar.floaty {
    margin-bottom: 22px;
}

a.tab.tab-primary {
    padding: 0px;
    background-color: var(--primary);
    padding: 13px 13px 10px 18px;
    border-radius: 39px;
    color: #FFFF;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3) !important;
}

a.tab.tab-secondary {
    opacity: 0.7;
}

a.tab.tab-secondary.active {
    opacity: 1;
    color: var(--primary)
}


.search-bar {
    border-radius: 50px;
    background-color: #FFF;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    font-size: 0.9em;
    color: rgb(63, 63, 63);
}

.search-bar>input {
    width: calc(100% - 20px);
    display: inline-block;
    padding-left: 1em;
}

.transparent-input {
    border: 0px;
    background-color: transparent;
    outline: none;
}

.link-unstyled,
.link-unstyled:visited,
.link-unstyled:hover,
.link-unstyled:active,
.link-unstyled:focus,
.link-unstyled:active:hover {
    font-style: inherit;
    color: inherit;
    background-color: transparent;
    font-size: inherit;
    text-decoration: none;
    font-variant: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-family: inherit;
    border-radius: inherit;
    border: inherit;
    outline: inherit;
    box-shadow: inherit;
    padding: inherit;
    vertical-align: inherit;
}


.badge.badge-medium {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 7px;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.base-image {
    width: 100vw;
    height: 30vh;
    overflow: hidden;
}

.btn-rounded {
    border-radius: 197px;
    padding: 0.6em 2em !important;
}

.screen-proportions {
    height: calc(100vh * 0.2 + 1em);
    width: calc(100vw * 0.2 + 1em);
}

.chip {
    padding: 0.5em 1em;
    border-radius: 50px;
    display: inline-block;
}

.circle {
    padding: 10px 16px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.cropper-point,
.cropper-point.point-se {
    background-color: #fff;
    height: 15px;
    opacity: .75;
    width: 15px;
    border-radius: 100%;
}

.cropper-view-box {
    outline: transparent;
    outline-color: transparent;
}

.cropper-line {
    background-color: transparent;
}

.cropper-bg {
    background-image: unset;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    position: absolute;
    left: 0px;
    top: 0px;
}


.tab-bar.floaty {
    margin: 12px;
    border-radius: 6px 6px 30px 30px;
    box-shadow: 0px 10px 50px rgb(40 44 116 / 18%);
}
.card.selectable{
    transition: 0.2s;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.card.selectable:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.backdrop {
    z-index: 999999;
    background-color: #ffffff8a;
    backdrop-filter: blur(3px);
}

[data-bs-theme='dark'] .backdrop {
    background-color: #0000008a;
}

.slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    aspect-ratio: 16/9;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s;
}
.showing {
    opacity: 1;
    z-index: 2;
}

[hidden] {
    display: none !important;
}

textarea {
    resize: none;
}

.form-group {
    margin-bottom: 1rem;
}

.accordion-item:last-of-type {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.wide-container {
    width: 100%;
    padding-top: 56.25%;
    /* 1:1 Aspect Ratio */
    position: relative;
    /* If you want text inside of it */
}

.wide-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

hr {
    color: #cfcfcf;
}

.card.selected {
    outline: 2px solid var(--primary);
    transition: 0.1s;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}

img.cover-image {
      height: 100%;
      object-fit: cover;
      object-position: center;
      margin: auto;
      min-width: 100%;
      vertical-align: middle;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border: 1px solid #dee2e6;
    appearance: none;
    background: transparent;
    padding: 0.375rem 1rem !important;
    transition: 0.2s;
    border-radius: 0.5rem !important;
    box-shadow: none !important;
}

.choices__item {
    width: 100%;
    white-space: pre;
    white-space-collapse: preserve;
    text-wrap-mode: nowrap;
    text-overflow: ellipsis;
}

.is-open .choices__inner {
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

.is-focused .choices__inner, 
.is-open .choices__inner {
  border-color: var(--primary);
}

.choices__list {
    max-height: 150px;
}

.h-100-keyboard {
    height: calc(100% - env(keyboard-inset-height, 0px)) !important;
    transition: 0.2s;
}

.keyboard-height {
    height: env(keyboard-inset-height, 0px) !important;
}

.env-safe-top {
    padding-top: env(safe-area-inset-top, 0px) !important;
}

.tab-bar {
    z-index: 999;
}

.slider-dots {
    z-index: 9999;
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: end;
    
}

.slider-dot {
    width: 5px;
    height: 5px;
    background-color: rgb(255 255 255 / 50%);
    border-radius: 10px;
    margin: 10px 5px;
    transition: 0.2s;
}

.slider-dot.active {
    background-color: #fff;
}

.no-touch {
    pointer-events: none;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.circle-chip {
    width: 40px;
    padding: 0px !important;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.border-primary {
    border: 1px solid var(--primary) !important;
}