@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/GilroyRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-default: #37474F;
    --primary-light: #62727B;
    --primary-dark: #102027;
    --primary-white: #fff;

    --secondary-azure-default: #445FE9;
    --secondary-azure-light: #818CFF;
    --secondary-azure-dark: #0036B6;

    --secondary-grey-default: #D9DFE2;
    --secondary-grey-light: #F3F8FB;
    --secondary-grey-dark: #C0C5C8;

    --secondary-blue-grey-default: #CFDCE4;
    --secondary-blue-grey-light: #E3EEF6;
    --secondary-blue-grey-dark: #B1BCC3;

    /* Color Palette */
    --danger-color: #d32f2f;

    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.85rem;
    --font-size-lg: 1.2rem;
    --line-height-base: 1.5;
}

/* Typography Classes */
.font-h1-headline {
    font-family: inherit;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.font-h2-headline {
    font-family: inherit;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.font-h3-headline {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.font-h4-headline {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.font-h5-headline {
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.font-body-1 {
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.font-body-2 {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.font-body-3 {
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.font-body-4 {
    font-family: inherit;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.font-body-5 {
    font-family: inherit;
    font-size: 0.625rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.font-body-6 {
    font-family: inherit;
    font-size: 0.5rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.font-body-semibold-12 {
    font-family: inherit;
    font-weight: 600;
    font-style: Semibold;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.font-body-semibold-20 {
    font-family: inherit;
    font-weight: 600;
    font-style: Semibold;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 10%;
    text-transform: uppercase;
}

body {
    font-family: 'Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary-default);
    line-height: var(--line-height-base);
    margin: 0;
}

.vox-btn {
    padding: calc(16em / 14) calc(24em / 14);
    border-radius: calc(8em / 9);
    border: var(--btn-primary-color) solid 1px;
    color: var(--btn-primary-color);
    background: var(--btn-background-color);
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.2rem;
}

.vox-btn:disabled {
    opacity: 0.5;
}

.vox-btn:hover {
    background: var(--btn-primary-color);
    color: var(--btn-background-color);
}

.vox-btn_sec-azure {
    --btn-primary-color: var(--secondary-azure-default);
    --btn-background-color: #fff;
}

.vox-btn_sec-blue-grey {
    --btn-primary-color: var(--secondary-blue-grey-dark);
    --btn-background-color: #fff;
}

.vox-btn_sec-danger {
    --btn-primary-color: var(--danger-color);
    --btn-background-color: #fff;
}

/* Button Styles */
.pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
}

.pl-btn-primary {
    background-color: var(--secondary-azure-default);
    color: white;
}

.pl-btn-primary:hover {
    background-color: var(--secondary-azure-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pl-btn-secondary {
    background-color: var(--secondary-grey-light);
    color: var(--primary-default);
    border: 1px solid var(--secondary-grey-dark);
}

.pl-btn-secondary:hover {
    background-color: var(--secondary-blue-grey-light);
    border-color: var(--secondary-azure-default);
    color: var(--secondary-azure-default);
}

.pl-btn-danger {
    background-color: transparent;
    color: var(--danger-color);
}

.pl-btn-danger:hover {
    background-color: #fce8e6;
}

.pl-btn-sm {
    padding: 6px 12px;
    font-size: var(--font-size-sm);
}

.pl-btn-block {
    display: flex;
    width: 100%;
}

/* Input Styles */
.pl-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--secondary-grey-dark);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background-color: var(--secondary-grey-light);
}

.pl-input:focus {
    border-color: var(--secondary-azure-default);
    background-color: #fff;
}

/* Toggle Switch Styles */
.autoplay-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
}

.vox-toggle-checkbox {
    position: relative;
    display: inline-block;
    aspect-ratio: 44 / 32;
    height: auto;
    overflow: hidden;
}

.vox-toggle-checkbox__input {
    opacity: 0;
    width: 0;
    height: 0;
}

.vox-toggle-checkbox__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-grey-light);
    transition: .4s;
    border-radius: calc(8 / 44 * 100%) / calc(8 / 32 * 100%);
}

.vox-toggle-checkbox__slider:before {
    position: absolute;
    content: "";
    height: calc(24 / 32 * 100%);
    width: calc(16 / 44 * 100%);
    left: calc(4 / 44 * 100%);
    top: calc(4 / 32 * 100%);
    background-color: var(--primary-white);
    transition: .4s;
    border-radius: calc(4 / 44 * 100%) / calc(4 / 32 * 100%);
    box-shadow: 0px 8px 12px 0px #1EC9E852;
}

.vox-toggle-checkbox__input:checked+.vox-toggle-checkbox__slider {
    background-color: var(--secondary-azure-default);
}

.vox-toggle-checkbox__input:checked+.vox-toggle-checkbox__slider:before {
    transform: translateX(110%);
}

/* Tabs Styles */
.vox-tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: calc(40em / 14);
}

.vox-tabs__item {
    text-align: center;
    text-decoration: none;
    font-size: calc(14rem / 16);
    font-weight: 700;
    color: #BDBDBD;
    padding: 0 calc(10em / 7) calc(8em / 14) calc(10em / 7);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: calc(2em / 14) solid transparent;
}

.vox-tabs__item:hover {
    color: var(--secondary-azure-light);
}

.vox-tabs__item_active {
    color: var(--secondary-azure-default);
    border-bottom-color: var(--secondary-azure-default);
}