.sb-header .bottom-bar {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #EDEDED;
    padding:0 10px;
    background: #fff;
}

@media (max-width: 991px) {
    .sb-header .bottom-bar {
        justify-content: space-between;
        padding: 0 0 10px;
    }
}

/**/
.sb-header .bottom-bar .logo {
    margin-right: 20px;
    margin-left: 10px;
}

.sb-header .bottom-bar .catalog-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color:#303030;
    display: flex;
    align-items: center;
    padding:17px 24.5px;
    border:1px solid #5DA1FF;
    border-radius: 5px;
    background-color: #DFECFF;
    margin:-1px 25px -1px 0;
}
.sb-header .bottom-bar .catalog-link img {
    margin-right: 6px;
}
@media (max-width: 991px) {
    .sb-header .bottom-bar .catalog-link {
        font-size: 16px;
        padding:11px 20px;
        margin-right: 10px;
    }
    .sb-header .bottom-bar .catalog-link img {
        width: 16px;
        height: 16px
    }
}

/**/
.sb-header .bottom-bar .menu {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    margin:0 25px 0 0;
    padding:0;
    list-style-type: none;
    display: flex;
    flex-grow: 1;
}
.sb-header .bottom-bar .menu li:nth-last-child(n + 2){
    margin-right: 20px;
}
.sb-header .bottom-bar .menu a {
    color:#303030;
}

/**/
.sb-header .bottom-bar .search {
    width:320px;
    margin-right: 20px;
}

/**/
.sb-header .bottom-bar  .ask-question {
    /*margin-right: 10px;*/
}

/**/
.calculate-cost-items {
    position: relative;
}
.calculate-cost-btn {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 10px 16px;
    border: 1px solid #5DA1FF;
    background-color: #5DA1FF;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    cursor:pointer;
}

.calculate-cost-dropdown .open {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    margin-bottom: 10px;
}
.calculate-cost-dropdown .calculate-cost-close {
    color:#fff;
}
.calculate-cost-dropdown .sub-title {
    font-size: 12px;
    width:calc(100% - 290px);
    padding-right: 5px;
}

.calculate-cost-dropdown .list {
    flex-shrink: 0;
    flex-grow: 0;

    width:290px;
    margin-left: auto;
    background-color: #fff;
    box-shadow: 0 2px 15px rgb(0 0 0 / 15%);
    padding:7px 0;
    border-radius: 3px;
}

.calculate-cost-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    right: -10px;
    /*background-color: #DFECFF;*/
    background-color: #5DA1FF;
    opacity: 0;
    visibility: hidden;
    padding: 15px 10px 10px 15px;
    width: 465px;
    /*border: 1px solid #5DA1FF;*/
    border-radius: 5px;
    max-height: 500px;
    overflow: auto;
    transition-property: opacity, visibility;
    transition-duration: .3s;

    color:#fff;
    display: flex;
    flex-wrap: wrap;
    background-image: url('/wp-content/themes/vsv/img/calculator-bg.svg');
    background-position: left bottom;
    background-repeat: no-repeat;
}
.calculate-cost-dropdown .item:nth-last-child(n + 2) {
    /*margin-bottom: 10px;*/
}
.calculate-cost-dropdown .item a {
    color:#333b45;
    display: block;
    padding:7px 20px;
}

.calculate-cost-dropdown a:hover,
.calculate-cost-dropdown a:focus {
    color:#5da2ff;
}
.calculate-cost-dropdown.__show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .calculate-cost-dropdown {
        max-width: calc(100vw - 20px);
        right: 0;
    }
    body.fixed-header .calculate-cost-dropdown  {
        max-height: calc(100vh - 60px);
    }
}

@media (max-width: 575px) {
    .calculate-cost-btn {
        flex-grow: 1;
    }
    .calculate-cost-dropdown {
        max-width: unset;
        width: 100vw;
        right: -15px;
    }
    body .calculate-cost-dropdown {
        max-height: calc(100vh - 97px);
    }

    .calculate-cost-dropdown .open {
        padding-bottom: 10px;
        border-bottom: 1px solid;
    }
    .calculate-cost-dropdown .sub-title,
    .calculate-cost-dropdown .list{
        width:100%;
    }
}

/**/
@media only screen and (max-width: 991px) {
    .header__main_calc {
        height: 40px;
    }
}