body {
    background-color: #f1f1f1;
    font-family: 'Roboto', sans-serif; 
    margin: 0;
    padding: 0;
}

.skyds-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    height: 64px;
    box-sizing: border-box;

    position: fixed;
    top: 0;
    z-index: 100;
}

.skyds-header-section-start {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 16px;
}

.skyds-header-section-center {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    pointer-events: none;
}

.skyds-header-section-end {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 40px;
}

.skyds-nav-drawer {
    position: fixed;
    left: 0;
    top: 64px;
    width: 256px;
    height: calc(100vh - 64px);
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 99;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skyds-nav-drawer.opened {
    transform: translateX(0);
}

.skyds-nav-drawer.closed {
    transform: translateX(-100%);
}

.skyds-nav-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 98;
}

.skyds-nav-drawer-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.skyds-nav-drawer-section-top {
    flex: 0 1 auto;
    overflow-y: auto;
    padding: 16px 0;
    max-height: calc(100vh - 64px - 120px);
}

.skyds-nav-drawer-section-bottom {
    flex: 0 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 16px 0;
}

.skyds-nav-drawer-navigation {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.skyds-nav-drawer-navigation a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: background-color 0.2s;
    cursor: pointer;
}

.skyds-nav-drawer-navigation a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.skyds-nav-drawer-navigation a.active {
    background-color: rgba(33, 150, 243, 0.12);
    color: #2196F3;
    border-left: 4px solid #2196F3;
    padding-left: 12px;
}

.skyds-nav-drawer-navigation a i {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.54);
}

.skyds-nav-drawer-navigation a.active i {
    color: #2196F3;
}

content {
    display: block; 
    width: 100%; 
    max-width: 1200px; /* Установите желаемую максимальную ширину (например, 1200px) */
    margin: 64px auto 0 auto; /* Центрирует блок и сохраняет отступ сверху */
    box-sizing: border-box;
    padding: 20px 40px;
}

.skyds-card {
    padding: 20px 45px 45px 45px; 
    margin-bottom: 15px; 
    background-color: #ffffff;
    border-radius: 2px; 
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 
                0 2px 10px 0 rgba(0,0,0,0.12);
    color: #333;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



.skyds-title {
    display: block;
    margin-top: 0; 
    margin-bottom: 10px;

    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.87);
}


.skyds-card:hover {
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 
                0 4px 15px 0 rgba(0,0,0,0.15);
}




.skyds-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 14px;
  vertical-align: middle;
}

.skyds-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.skyds-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.26);
  transition: .3s;
  border-radius: 15px;
}


.skyds-switch-slider:before {
  position: absolute;
  content: "";

  height: 20px;
  width: 20px;
  left: -2px; 
  bottom: -3px; 
  background-color: #FAFAFA; 
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 
              0 3px 1px -2px rgba(0,0,0,0.12), 
              0 1px 5px 0 rgba(0,0,0,0.2);
}


input:checked + .skyds-switch-slider {
  background-color: rgba(33, 150, 243, 0.5); 
}

input:checked + .skyds-switch-slider:before {
  background-color: #2196F3; 
  transform: translateX(20px); 
}


.skyds-button {
    --btn-color: #2196F3;
    
 
    border: none;
    outline: none;
    cursor: pointer;
    
   
    padding: 0 16px;
    min-width: 88px;
    height: 36px;
    border-radius: 2px; 
    margin-right: 8px;
    margin-top: 8px;

    background-color: var(--btn-color);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 
                0 3px 1px -2px rgba(0,0,0,0.12), 
                0 1px 5px 0 rgba(0,0,0,0.2);
    
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.2s;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skyds-button:hover {
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 
                0 1px 10px 0 rgba(0,0,0,0.12), 
                0 2px 4px -1px rgba(0,0,0,0.2);
}

.skyds-button:active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));

    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 
                0 3px 14px 2px rgba(0,0,0,0.12), 
                0 5px 5px -3px rgba(0,0,0,0.2);
}









.skyds-button {
    position: relative;
    overflow: hidden;
}


.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.5); 
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none; 
}

@keyframes ripple-animation {
    to {
        transform: scale(4); 
        opacity: 0;          
    }
}
.skyds-oneline {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center; 
    width: 100%;
}

.skyds-oneline .skyds-card {
    flex: 1 1 300px; 
    max-width: 400px;
    margin-bottom: 0;

    box-sizing: border-box; 
}
.card-fixed {
    flex-grow: 0 !important; 
    flex-shrink: 0;          
}

.skyds-icon-button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.54);
    transition: background-color 0.3s;
}

.skyds-icon-button:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.skyds-icon-button:active {
    background-color: rgba(0, 0, 0, 0.08);
}

.skyds-input-group {
    position: relative;
    margin-top: 25px;    
    margin-bottom: 20px;
}
.skyds-input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: 4px;
    background: transparent;
    outline: none;
    transition: border-color 0.2s, border-width 0.1s;
    box-sizing: border-box;
}

.skyds-input:focus {
    border: 2px solid #6200ee;
    padding: 15px;
}

.skyds-textarea {
    width: 100%;
    padding: 24px 16px 8px 16px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    border-radius: 4px 4px 0 0;
    background-color: rgb(245, 245, 245); 
    outline: none;
    transition: background-color 0.2s, border-bottom-color 0.2s;
    min-height: 120px;
    resize: vertical;
    box-sizing: border-box;
}
    


.skyds-textarea:focus {
    border-bottom: 2px solid #2196F3; 
}


.skyds-label {
    position: absolute;
    left: 12px;
    top: 16px; 
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    pointer-events: none; 
    transition: all 0.2s ease;
    background: transparent;
}

.skyds-label-filled {
    position: absolute;
    left: 16px;
    top: 8px;
    font-size: 12px;
    color: #2196F3;
    pointer-events: none;
}
.skyds-input:focus ~ .skyds-label,
.skyds-input:not(:placeholder-shown) ~ .skyds-label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #6200ee;
    background: white; 
    padding: 0 4px;
}

.skyds-input:focus {
    border: 2px solid #6200ee;
}
.skyds-textarea:focus ~ .skyds-label,
.skyds-textarea:not(:placeholder-shown) ~ .skyds-label {
    top: 4px;
    left: 16px;
    font-size: 12px;
    color: #2196F3;
}

.skyds-textarea {
    padding-top: 24px;
}


.skyds-input-search {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    pointer-events: auto;
}

.skyds-search-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    background-color: #f5f5f5;
    border-radius: 2px;
    transition: background-color 0.2s, box-shadow 0.2s;
    padding: 0 12px;
    box-sizing: border-box;
}

.skyds-search-container:hover {
    background-color: #eeeeee;
}

.skyds-search-container:focus-within {
    background-color: #ffffff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.skyds-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: rgba(0, 0, 0, 0.87);
    outline: none;
    padding: 0 8px;
}

.skyds-search-input::placeholder {
    color: rgba(0, 0, 0, 0.54);
}

.skyds-search-button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.54);
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.skyds-search-button:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.skyds-search-button:active {
    background-color: rgba(0, 0, 0, 0.08);
}







.skyds-snackbar {
    visibility: hidden;
    min-width: 288px;
    max-width: 568px;
    background-color: #323232; 
    color: #ffffff;
    text-align: left;
    border-radius: 2px;
    padding: 14px 24px;
    position: fixed;
    z-index: 1000;
    left: auto;
    right: 24px; 
    bottom: 24px; 
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,0.2), 
                0 6px 10px 0 rgba(0,0,0,0.14), 
                0 1px 18px 0 rgba(0,0,0,0.12);
}

.skyds-snackbar-action {
    color: #ff4081; 
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.skyds-snackbar.show {
    visibility: visible;
    animation: slide-in-right 0.4s cubic-bezier(0, 0, 0.2, 1), 
               fade-in 0.4s;
}

/* Анимация исчезновения */
.skyds-snackbar.hide {
    visibility: visible;
    animation: slide-out-right 0.4s cubic-bezier(0.4, 0, 1, 1), 
               fade-out 0.4s;
}

@keyframes slide-in-right {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

@keyframes slide-out-right {
    from { transform: translateX(0); }
    to { transform: translateX(120%); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}


/* Адаптив для телефонов */
@media (max-width: 600px) {
    .skyds-snackbar {
  
        right: auto; 
        left: 50%;
        bottom: 16px; 

        width: calc(100% - 32px); 
        transform: translateX(-50%); 
        
        min-width: 0;
        max-width: none;
        border-radius: 4px;
    }

    
    .skyds-snackbar.show {
        visibility: visible;
        animation: slide-in-bottom-mobile 0.4s cubic-bezier(0, 0, 0.2, 1), fade-in 0.4s;
    }

    .skyds-snackbar.hide {
        visibility: visible;
        animation: slide-out-bottom-mobile 0.4s cubic-bezier(0.4, 0, 1, 1), fade-out 0.4s;
    }
}


@keyframes slide-in-bottom-mobile {
    from { transform: translate(-50%, 150%); } 
    to { transform: translate(-50%, 0); }
}

@keyframes slide-out-bottom-mobile {
    from { transform: translate(-50%, 0); }
    to { transform: translate(-50%, 150%); }
}