.vk-content .uk-accordion-title{
    display: flex;
    justify-content: flex-start;
    text-transform: uppercase;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
}
.vk-content .uk-accordion-title span{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.vk-tab-menu{
    display: flex;
    gap: 15px;
    text-transform: uppercase;
    justify-content: center;
}
.vk-tab{
    cursor: pointer;
}
.vk-tab.active{
    border-bottom: 2px solid #fff;
}

.vk-tab-content{
    display: none;
}
.vk-tab-content.active{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.prep-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prep-content .prep-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prep-group{
    margin-bottom: 30px;
}
.prep-group  div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.sl-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.sl-content .input-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sl-content .input-group label{
    display: flex;
    gap: 10px;
    cursor: pointer;
}
.sl-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.sl-group ul li,
.sl-group ul li label{
    display: flex;
    gap: 10px;
    cursor: pointer;
}
.form-program-result{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-program-result button{
    width: fit-content;
}
.vk-submenu{
    display: flex;
    gap: 15px;
    padding-top: 30px;
    justify-content: center;
}
.vk-submenu-item{
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 150px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}
.vk-sections{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.vk-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vk-modal-container{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vk-modal{
    background-color: #333;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 450px;
    width: 100%;
}
.vk-modal-header{
    display: flex;
    justify-content: space-between;
}
.vk-modal-close{
    margin-bottom: 10px;
    width: fit-content;
    padding: 8px 15px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vk-modal .heading{
    margin-top: 0;
}
.vk-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vk-form .input-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vk-input{
    width: fit-content;
}
.vk-delete-account{
    background-color: #ff7878;
    text-transform: uppercase;
    margin-top: 30px;
    cursor: pointer;
    border: 0;
}
.vk-loader {
  border: 8px solid transparent; 
  border-top: 8px solid #ccc; 
  border-bottom: 8px solid #ccc; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}
.vk-button{
    background-color: #2dc8c2;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 15px;
    border: 0;
    width: fit-content;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}