﻿@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 70px;
    margin-bottom: 40px;
}

.ux-slider {
    width: 100%;
    appearance: none;
    height: 4px;
    background-color: #444;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.slider-marker {
    position: absolute;
    top: -70px;
    width: 32px;
    height: 62px;
    z-index: 2;
    pointer-events: none;
}

.marker-image {
    width: 100%;
    height: 100%;
}

.marker-label {
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: bold;
    color: black;
}
/*=========================================================*/
/*                   TOAST CSS                            */
/*=======================================================*/
.toast-root {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast-card {
    --toast-bg: #1f2937;
    --toast-fg: #fff;
    background: var(--toast-bg);
    color: var(--toast-fg);
    border-radius: 12px;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: auto;
}

    .toast-card.in {
        opacity: 1;
        transform: none;
    }

.toast-icon {
    line-height: 0;
    margin-top: 2px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin: 0 0 2px;
    font-size: .95rem;
}

.toast-msg {
    opacity: .9;
    font-size: .9rem;
}

.toast-close {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px;
    cursor: pointer;
    opacity: .8;
}

.toast-card.success {
    --toast-bg: #065f46;
    --toast-fg: #fff;
}

.toast-card.error {
    --toast-bg: #7f1d1d;
    --toast-fg: #fff;
}

.toast-card.info {
    --toast-bg: #334155;
    --toast-fg: #fff;
}

.toast-card.warning {
    --toast-bg: #78350f;
    --toast-fg: #fff;
}

#methodWrapper.locked .form-check-input:disabled + .form-check-label {
    opacity: 0.6;
    cursor: not-allowed;
}

#methodWrapper.locked .form-check-input:disabled {
    cursor: not-allowed;
}