#faq * {
	box-sizing: border-box;
}
#faq a {
    color: #2f3c52;
    text-decoration: none;
}

#faq {
    padding-top: 60px;
    padding-bottom: 30px;
    color: #2f3c52;
    font-size: 14px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

#faq h1 {
    color: #2c3e52;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
	line-height: 150%;
    
    font-family: AlbertaSans, Roboto, sans-serif;
    position: relative;
}
#faq h1:after {
    content: "";
    position: absolute;
    border-bottom: 1px solid #cacdd2;
    height: 0;
    width: 96px;
    bottom: -30px;
    left: 50%;
    transform: translateX( -50% );
}

.faq-list {
    display: flex;
    display: -ms-flexbox;
    flex-direction: row;
}

.faq-list .storage_plans_left,
.faq-list .storage_plans_right {
    display: inline-block;
    margin-top: 90px;
    width: calc(50% - 10px);
}

.faq-list .faq-list__item:not(:first-of-type) {
    margin-top: 20px;
}

.faq-list .faq-list__item__q:after {
    content: "+";
    float: right;
    font-size: 20px;
    font-family: AlbertaSans, Roboto, sans-serif;
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9cfd5;
}

.faq-list .faq-list__item_open .faq-list__item__q:after {
    content: "-";
    color: #889ba8;
}

.faq-list .faq-list__item__q {
    position: relative;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    border: 1px solid #e1e4e7;
    border-radius: 30px;
    background: #f9fafc;
    padding: 20px 50px;
    cursor: pointer;
}

.faq-list .faq-list__item__a {
    font-family: AlbertaSans, Roboto, sans-serif;
    font-weight: 300;
    padding-left: 40px;
    line-height: 20px!important;
    font-size: 14px;
    padding-top: 12px;
    color: rgba(47, 60, 82, 0.7);
    position: relative;
}

.faq-list .faq-list__item__a:before {
    content: "";
    position: absolute;
    left: 28px;
    height: calc(100% - 18px);
    border-left: 1px solid #c4c9cf;
    bottom: 2px;
}

.faq-list .faq-list__item.faq-list__item_open .faq-list__item__q {
    background: white;
}

.faq-list .faq-list__item.faq-list__item_open .faq-list__item__a {
    display: block;
}

.faq-list .storage_plans_right {
    margin-left: auto;
}

    .faq-list .faq-list__item .faq-list__item__a {
        display: none;
    }

    .faq-list .faq-list__item .faq-list__item__q {
        color: #2f3c52;
        font-size: 18px;
        font-weight: 300;
        font-family: AlbertaSans, Roboto, sans-serif;
    }


@media only screen and (max-width: 1200px) {
    #faq {
        min-width: 320px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 910px) {
    .faq-list .storage_plans_left,
    .faq-list .storage_plans_right {
        width: 100%;
        max-width: 100%;
        align-items:center;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .faq-list {
        flex-direction: column;
    }

    .faq-list .storage_plans_right {
        margin-top: 20px;
    }

    .faq-list .faq-list__item__a {
        padding-right: 40px;
    }
}


@media only screen and (max-width: 900px) {

    #faq {
        padding-bottom: 30px;
    }
    .faq-list .storage_plans_left {
        margin-top: 74px;
    }
}