/* Стили после 08.12.24 */
.consultation-create-container {
    margin-top: 2vh;
}

.progress-indicator {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 8px;
}

.container-problem .line {
    width: 30%;
    height: 10px;
    background-color: #D4D4D4;
    transition: background-color 0.3s;
}

.container-problem .line.active {
    background-color: #35B728;
}

.container-problem .progress-controller{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 8px;
    margin-top: 20px;
}

.container-problem #prevButton, .container-problem #nextButton {
    border: 0px;
    border-radius: 25px;
    background-color: #35B828;
    font-size: 3.7vw;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #fff;
    transition: background-color 0.3s;
    box-shadow: 0px 4.2px 10.6px 0px #35B72833;
    padding: 10px 20px;
}

.container-problem #prevButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.container-problem h3 {
    font-size: 5.3vw;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 1vh;
    margin-left: 0.0vw;
    margin-bottom: 0vh;
    color: #2E332E;
}


.doctor-list, .pet-list {
    display: none;
    gap: 20px;
    flex-direction: column;
}

.problem-list {
    display: none;
}

.container-problem .active {
    display: flex;
    flex-direction: column;
}

.doctor-list .main-button {
    margin-bottom: 0;
}

.doctor-element {
   margin-top: 40px;
}

.info-doctor-main-container, .pet-element {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.doctor-info, .pet-main-info{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doctor-element .fa-angle-down, .doctor-element .fa-angle-up, .pet-element .fa-angle-right {
    font-size: 60px;
    color: #D4D4D4;
}

.doctor-photo, .pet-photo{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-list p {
    padding: 0 5px;
    margin-top: 30px;
}


.doctor-info p1, .pet-main-info p1{
    margin-top: 0px;
    font-size: 56px;
    font-weight: 800;
}

.doctor-info p2, .pet-main-info p2{
    margin-top: 0px;
    font-size: 42px;
    font-weight: 400;
    color: #2E332E;
}

.info-doctor-support-container {
    display: none;
}

.container-problem .button-container{
    width: 100%;
}

#submit-button {
    opacity: 0.5;
    cursor: not-allowed;
}

#submit-button.active {
    opacity: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

@media screen and (min-device-width: 480px) {
    .container-problem h3 {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin-top: 10px
    }

    .doctor-info p1, .pet-main-info p1 {
        font-size: 24px;
        font-weight: 800;
    }

    .doctor-info p2, .pet-main-info p2{
        margin-top: 0px;
        font-size: 18px;
        font-weight: 400;
        color: #2E332E;
    }

    .container-problem .line {
        height: 5px;
    }

    .container-problem #prevButton, .container-problem #nextButton {
        border-radius: 18px;
        font-size: 22px;
    }
}

@media screen and (min-device-width: 992px){
    .container-problem .head{
        margin-bottom: 10px;
    }

    .container-problem h2 {
        margin: 0;
        padding: 0 8px;
        font-size: 28px;
    }

    .consultation-create-container {
        margin-top: 10px;
    }

    .pet-element {
        border-radius: 18px;
        border: 2px solid #35B728;
        margin-top: 15px;
        padding: 20px;
    }

    .doctor-element {
        border-radius: 18px;
        border: 2px solid #35B728;
        margin-top: 15px;
        padding: 20px;
    }

    .container-problem .line {
        width: 30%;
        height: 3px;
        background-color: #D4D4D4;
        transition: background-color 0.3s;
    }


    .container-problem #prevButton, .container-problem #nextButton {border: 0px;
        border-radius: 12px;
        font-size: 18px;
        padding: 5px 10px;
    }

    .doctor-element .fa-angle-down, .doctor-element .fa-angle-up, .pet-element .fa-angle-right {
        font-size: 40px;
        color: #D4D4D4;
    }


    .doctor-photo, .pet-photo{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .doctor-info, .pet-main-info{
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}

@media screen and (min-device-width: 992px){
    .doctor-list .main-button {
        width: 100%;
        margin-top: 30px;
    }
}