.spec_blocks{
    float: left;
    clear: both;
    width: 700px;
    display: none;
    height: 140px;
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}
#spec_block1,#spec_block2,#spec_block3,#spec_block4{    
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
.spec_block{
    display: inline-block;
    height: 122px;
    width: 189px;
    padding: 4px 8px 16px 8px;
    background: #fff;
    border: 3px solid var(--color-lighter-gray);
    border-radius: 10px;
    margin-right: 8px;
}
.spec_block_last{
    margin-right: 0;
}
.spec_block_bigger{
    width: 225px;
}
.spec_block span{
    padding: 3px 6px 1px 7px;
    height: 18px;
    background: var(--color-lighter-gray);
    border-radius: 27px;
    font-weight: 825;
    font-size: 10px;
    letter-spacing: 0.25px;
    color: var(--color-purple-light);
    margin-bottom: 5px;
    display: inline-block;
}
.spec_block span img{
    display: inline;
    margin-right: 2px;
    position: relative;
    top: -1px;
}
.spec_line{
    padding: 0px 0px 8px;
    width: 165px;
    height: 26px;
    border-bottom: 1px dashed var(--color-gray);
    margin-bottom: 6px;
}
.spec_line_bigger{
    width: 205px;
}
.spec_line_last{
    border-bottom: none;
    margin-bottom: 6px;
}
.spec_title, .spec_value{
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: var(--color-dark-gray);
}
.spec_title{
    float: left;
}
.spec_value{
    float: right;
}
.spec_value b{
    color: #000;
    font-weight: 500;
}
.spec_value a{
    text-decoration: underline;
}
#extra_spec_info{
    width:370px;
    display: none;
}
.box_expanded #extra_spec_info{
    display: block;
}
#extra_spec_info p{
    font-size: 14px;
    color: var(--color-purple-dark);
    position: relative;
    top: 15px;
    left: 3px;
    font-weight: 500;
    z-index: 0;
}
#extra_spec_info p a{
    text-decoration: underline;
}
#paragraphs{
    width: 100%;
    max-width: 752px;
    min-height: 1px;
    margin: 40px auto;
}
#paragraphs::after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#paragraphs h1 {
    font-size: 36px;
    line-height: 36px;
}
#paragraphs h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 800;
}
#paragraphs h3 {
    font-size: 28px;
    line-height: 28px;
}
#paragraphs h4 {
    font-size: 24px;
    line-height: 24px;
}
#paragraphs h5 {
    font-size: 22px;
    line-height: 22px;
}
#paragraphs h6 {
    font-size: 20px;
    line-height: 20px;
}
#paragraphs p {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0px;
    text-align: left;
}
#faq{
    width: 100%;
    max-width: 752px;
    min-height: 1px;
    margin: 20px auto;
}
#question_boxes{
    width: 100%;    
    overflow: hidden;
}
.question_boxes_height{
    height: 400px;
}
.question_box{
    width: 100%;
    background: #fff;
    border: 3px solid var(--color-lighter-gray);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}
.question_box p.question{
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.5px;    
}
.question_box p.answer{
    font-weight: 400;
    font-size: 18px; 
    padding: 15px 15px 15px 40px;
    line-height: 28px;
    color: var(--color-darker-gray);
    background: url(../imgs/ico_info.svg) no-repeat left;
    background-size: 24px;
    background-position-y: 16px;
}
#faq::after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#faq h3{
    font-weight: 800;
    font-size: 32px;
    line-height: 32px;
    padding-bottom: 25px;
}
#question_expand{
    width: 100%;
    height: 150px;
    padding-top: 105px;
    position: relative;
    top: -148px;
    margin-bottom: -148px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,1));
}
#question_expand a{
    width: 120px;
    display: block;
    height: 35px;
    text-align: center;
    margin: auto;
}
#question_expand a p{
    font-weight: 800;
    font-size: 22px;    
    text-align: center;
    color: var(--color-purple-light);
    top: 3px;
    left: 10px;
    position: relative;
    display: inline-block;
}
#question_expand a .select_arrow_purple{  
    position: unset;
    display: inline-block;
}

@media (max-width: 480px) {
    .spec_blocks{
        width: calc(100% - 10px);
    }
    .spec_block_bigger{
        width: 189px;
    }
    .spec_line_bigger{
        width: 165px;
    }
    #extra_spec_info, .box_expanded #extra_spec_info{
        display: none;
    }
    #paragraphs{ 
        min-width: 360px;
        max-width: 448px;
        width: 100%;
        padding: 16px;        
    }
    #faq{ 
        min-width: 360px;
        max-width: 448px;
        width: 100%;
        padding: 16px;        
    }
    .question_boxes_height{
        height: 700px;
    }
}
@media (max-width: 430px) {
    #paragraphs{ 
        max-width: 430px;      
    }
    #faq{ 
        max-width: 430px;      
    }
}
@media (max-width: 359px) {
    #paragraphs{
        min-width: 320px;
    }
    #faq{
        min-width: 320px;
    }
}