html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

header {
    position:relative;
    z-index:1045;
}

body {
    margin-bottom: 60px;
    font: 16px/1.4 'Roboto', sans-serif;
}

main, main > div {
    min-height: calc(100vh - 73px);
}

[role=button], .btn {
    cursor: pointer;
}

    .btn.btn-rodeo,
    .btn.btn-rodeo:hover {
        background-color: #ff6363;
        border-color: #ff6363;
        color: #fff;
    }

    .btn.btn-outline-rodeo,
    .btn.btn-outline-rodeo:hover {
        background-color: #ffffff;
        border-color: #ff6363;
        color: #ff6363;
    }

.sub-title {
    color: #38383a;
    margin-bottom: 1em;
    font-size:.9rem;
}

img {
    border: 0;
    max-width: 100%;
    display: block;
}

a.breadcrumb-item {
    color: #36485e;
    font: 16px/1.4 'Roboto', sans-serif;
}

    a.breadcrumb-item:hover {
        color: #36485e;
        text-decoration: none;
    }

.main-body {
    margin-bottom:3rem;
}


.m-2em {
    margin: 2rem !important;
}

.mt-2em,
.my-2em {
    margin-top: 2rem !important;
}

.mr-2em,
.mx-2em {
    margin-right: 2rem !important;
}

.mb-2em,
.my-2em {
    margin-bottom: 2rem !important;
}

.ml-2em,
.mx-2em {
    margin-left: 2rem !important;
}

.mw-30 {
    max-width: 30rem;
}

.mw-50 {
    max-width: 50rem;
}

.mw-70 {
    max-width: 70rem;
}


/* SEARCH */
.search {
    position: relative;
    max-width: 20em;
}

.search-icon {
    position: absolute;
    right: .5em;
    top: calc(50% - 12px);
    color: rgba(0, 0, 0, 0.54);
}

.search-clear {
    position: absolute;
    right: -1.5em;
    top: calc(50% - 12px);
    color: #db4453;
}

.search-input {
    display: block;
    padding: .5em 1em;
    font-size: 1em;
    height: 2.5em;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    min-width: 240px;
    width: 100%;
    outline: none;
}

    .search-input:focus {
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        outline: 0;
        border-color: #66afe9;
    }


html .shadow-lg {
    box-shadow: 0.5px 2px 2.2px rgba(0, 0, 0, 0.042), 1.2px 4.7px 5.3px rgba(0, 0, 0, 0.061), 2.3px 8.9px 10px rgba(0, 0, 0, 0.075), 4px 15.9px 17.9px rgba(0, 0, 0, 0.089), 7.5px 29.7px 33.4px rgba(0, 0, 0, 0.108), 18px 71px 80px rgba(0, 0, 0, 0.15) !important;
}


.loading-spinner-mask {
    position: fixed;
    z-index: 99;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background .2s ease-in-out;
}

    .loading-spinner-mask.loading-spinner-mask--white {
        background: rgba(255,255,255,.5);
    }

.loading-spinner-target {
    position: relative;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #555;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-radius: 50%;
    width: 6em;
    height: 6em;
    display: inline-block;
    position: absolute;
    top: calc(50% - 3em);
    left: calc(50% - 3em);
    z-index: 100;
}

    .loading-spinner.loading-spinner--fixed {
        position: fixed;
    }

    .loading-spinner.loading-spinner--sm {
        border: 2px solid #f3f3f3;
        border-top: 2px solid #555;
        width: 1.5em;
        height: 1.5em;
        top: calc(50% - .75em);
        left: calc(50% - .75em);
    }

        .loading-spinner.loading-spinner--sm.loading-spinner--btn {
            border-top-color: #aab2bd;
        }


    .loading-spinner.load-complete {
        -webkit-animation: none;
        animation: none;
        border-color: #1cba9b;
        transition: border 500ms ease-out;
    }

    .loading-spinner .checkmark.draw:after {
        animation-duration: 800ms;
        animation-timing-function: ease;
        animation-name: checkmark;
        transform: scaleX(-1) rotate(135deg);
    }

    .loading-spinner .checkmark:after {
        opacity: 1;
        width: 2rem;
        height: 4rem;
        transform-origin: left top;
        border-right: 4px solid #1cba9b;
        border-top: 4px solid #1cba9b;
        content: "";
        left: .5rem;
        top: 3rem;
        position: absolute;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.mask {
    position: absolute;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 1px;
    bottom: 0;
    right: 1px;
}

    .mask.--white {
        background: rgba(255,255,255,.9);
    }

.confirm-modal-content {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0.75rem;
    top: calc(50% - 15.5px);
}

    .confirm-modal-content .mask {
        width: unset;
        right: 1px;
    }

        .confirm-modal-content .mask.--white {
            background: rgba(255,255,255,.85);
        }

.confirm-modal-content__text {
    color: #434a54;
}

/* used for x-cloak alpinejs attribute */
[x-cloak] {
    display: none !important;
}


/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24
}

.material-symbols-outlined.fw-100 {font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-200 {font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-300 {font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-400 {font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-500 {font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-600 {font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-700 {font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24 }

.material-symbols-outlined.fw-100.fill {font-variation-settings: 'FILL' 1, 'wght' 100, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-200.fill {font-variation-settings: 'FILL' 1, 'wght' 200, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-300.fill {font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-400.fill {font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-500.fill {font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-600.fill {font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24 }
.material-symbols-outlined.fw-700.fill {font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24 }