﻿.response-page-container{
    width: 100%;
    max-width:1240px;
    margin: 0 auto;
    padding-top: 30px;
    padding-left: 20px;
    box-sizing: border-box;
}

.response-page-container *{
    box-sizing: border-box;
}
.response-page-header {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 32px;
    color: #004677;
    margin-bottom: 32px;
}

.responses-filter-section{
    margin-bottom: 32px;
}

.responses-filter {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}

.input-wrapper{
    width: 31%;
    position: relative;
}

    .input-wrapper select, .input-wrapper input {
        display: block;
        width: 100%;
        border: 1px solid #BFC6CD;
        border-radius: 5px;
        height: 50px;
        padding-left: 20px;
        padding-right: 40px;
        -moz-appearance: none; /* Firefox */
        -webkit-appearance: none; /* Safari and Chrome */
        -o-appearance: none;
        appearance: none;
        background-image: url("/content/img/arrow-select.svg");
        background-repeat: no-repeat;
        background-position: right 16px center;
    }

.input-wrapper select::-ms-expand {
    display: none;
}

 
.scrolled-drop {
    display: none;
    max-height: 100px;
    width: 100%;
    background: #fff;
    border: 1px solid #C1C1C1;
    overflow: auto;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
}

.filter-label {
    display: block;
    margin-bottom: 10px;
}

.filters-clear-wrapper{
    text-align: right;
}


.filters-clear-wrapper a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #0C0F12!important;
}

.filter-variant{
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #bbb;
    cursor: pointer;
    padding: 10px 0 10px 15px;
    text-align: left;
}

.filter-variant:hover {
    background: #F3F3F3;
}

.filter-variant.text{
    cursor: text;  
}

.filter-variant.text:hover{
    background: transparent;
}
.responses-list, .page .responses-list {
    margin-bottom: 55px;
}

.response-item, .page .response-item {
    margin: 0 0 33px 0;
    background: #F8F8F8;
    border-radius: 10px;
    padding: 38px;
}

.response-info{
    display: flex;
    align-items: flex-start;
    padding-bottom: 26px;
    border-bottom: 3px solid #fff;
}
.response-info::before{
    display: block;
    content:"";
    width: 90px;
    height: 55px;
    background: url("https://cdn.specialist.ru/content/file/layouts/responses/quotes.svg") no-repeat;
    background-size:contain;
    margin-right: 37px;
    flex-shrink: 0;
}

.response-info-item {
    margin-bottom: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}

.response-info-item:last-child{
    margin-bottom: 0;
}

.response-info-item span{
    font-weight: 600;
}

.response-author {
    font-weight: 500;  
}

.response-info-item a {
    color: #004677!important;
}

.response-text, .response-text p {
    padding-top: 25px;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    line-height: 1.67;
}

.inline-filter {
    color: white;
    background: #004677;
    border: 1px solid #004677;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all, 300ms;
    text-transform: uppercase;
    position: relative;
    top: -3px;
}

.inline-filter:hover {
    color: #004677;
    background: transparent;
    transition: all, 300ms;

}

.paginator{
    text-align: center;    
}

.page-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #818F9C;
    border-radius: 3px;
    color: #141414;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 12px;
    padding: 6px 8px;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 10px;
}

.page-button:first-child {
    display: inline-block;
}

.page-button:last-child {
    display: inline-block;
}

.page-button.visible {
   display: inline-block;
}
.page-button.active {
    display: inline-block;
    border: 1px solid #004677;
    color: #004677;
}

.loader{    
    position: relative;
    height: 5px;
    overflow: hidden;    
}

.loader-inner {
    position: absolute;
    top: 0;
    left: 0;
    background: #004677;
    width: 50%;
    height: 100%;
    animation: loader linear alternate 3s infinite;
}

/*подсказки преподов*/
.teachers-box{
    margin-bottom: 20px;
}
.teachers-block-header {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.teachers-buttons-list{
    display: flex;
    flex-wrap: wrap;
}
.teacher-select {
    display: block;
    width: 130px;
    height: 100%;
    margin-right: 5px;
    margin-bottom: 5px;
    border: none;
    box-shadow: 0 0 2px #bbb;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    transition: all, 300ms;
}

.teacher-select:hover {
    background: #eee;
    transition: all, 300ms;
}

.teacher-infoblock{
    margin-bottom: 20px;
    width: 140px;
}

.teacher-fio{
    font-weight: 500;
}


@keyframes loader {
    from {
        left: 0;
    }

    to {
        left: 50%;
    }
}

@media (max-width: 1240px) {
    .container {
        padding-right: 20px;
    }
}

@media (max-width: 994px) {
    .responses-filter {
        flex-wrap: wrap;
    }

    .input-wrapper {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 730px) {
    .input-wrapper {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 550px) {
    .response-info {
        flex-wrap: wrap;
    }

        .response-info:before {
            margin-right: 0;
            margin-bottom: 10px;
            width: 45px;
            height: 28px;
        }

    .response-info-right {
        width: 100%;
    }

    .page .response-item{
       padding: 20px;
    }
}

