

/* Start:/local/templates/depohost/components/bitrix/news.detail/news/style.css?168837225011524*/
.news-article {
    font-size: 15px;
    line-height: 24px;
}

.news-article-text {
    display: block;
    width: 65%;
}

.news-article img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.news-article table {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    margin: 40px 0;
    border: 1px solid #E1E5EB;
    border-radius: 4px;
}

.news-article table tbody {
    display: block;
    width: 100%;
    padding: 25px;
}

.news-article tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E1E5EB;
    margin-bottom: 15px;
}

.news-article tr:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.news-article td:first-child {
    font-weight: 700;
}
.news-article td {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.7px;
    width: 100%;
}

.news-article p {
    display: block;
    margin: 20px 0;
}

.news-article h3 {
    margin: 60px 0 30px;
}

.news-article ul {
    margin: 20px 0;
    padding-left: 15px;
}

.news-article ul li {
    margin: 10px 0;
}

.news-article ul li:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000000;
    margin-right: 5px;
}

.news-article .cross-block {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 35px 0;
}
.news-article .cross-block>div {
    display: flex;
    align-items: center;
    gap: 25px;
}
.news-article .cross-block>div:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.news-article .cross-block>div>div {
    width: calc(100% / 2 - 25px);
}

.news-article .background {
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.news-article .server-rental {
    margin-top: 40px;
}

.news-article .server-rental-item__title {
    margin: 0 0 10px 0;
}

.news-article-dedicated-servers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-article-dedicated-servers h3 {
    margin-top: 0;
}

.news-article-dedicated-servers-left {
    width: 25%;
    margin-right: 3%;
}

.news-article-dedicated-servers-right {
    width: 72%;
}

.news-article-dedicated-servers-items-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.copy-block {
    position: relative;
    font-family: 'Roboto Mono';
    font-weight: 400;
    background-color: #EDF4F8;
    padding: 20px 45px 20px 35px;
    border-radius: 12px;
    margin: 25px 0;
}

.copy-block-text {
    overflow-x: auto;
}

.copy-block input.hide {
    position: absolute;
    z-index: -20;
    opacity: 0;
    left: -1000%;
}

.copy-block-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: url("/local/templates/depohost/components/bitrix/news.detail/news/../../../../pictures/icons/copy.svg");
    background-size: cover;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.popular-dedicated-servers-description {
    display: block;
    margin-top: 18px;
    white-space: normal;
}

.news-article-dedicated-servers-items {
    padding: 15px;
}

@media screen and (max-width: 1400px) {
    .news-article-text {
        width: 100%;
    }

    .news-article-dedicated-servers-left {
        width: 35%;
    }

    .news-article-dedicated-servers-right {
        width: 60%;
    }
}

@media screen and (max-width: 1024px) {
    .news-article .background {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .news-article-dedicated-servers-left {
        width: 100%;
    }

    .news-article-dedicated-servers-right {
        width: 100%;
        margin-top: 20px;
    }
}

/* questions */
.faq-block {
    background: #FFFFFF;
    -webkit-box-shadow: 0 10px 40px rgba(65, 69, 96, 0.1);
    box-shadow: 0 10px 40px rgba(65, 69, 96, 0.1);
    border-radius: 12px;
    padding: 0 30px;
}

.faq-wrapper {
    padding: 25px 0;
    border-bottom: 1px solid #E1E5EB;
}

.faq-wrapper:last-child {
    border-bottom: none;
}

.faq-title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    vertical-align: middle;
    padding-left: 30px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    font-size: 18px;
    line-height: 24px;
}

.faq-title:hover {
    color: #0094FF;
    text-shadow: none;
}

.faq-title:before,
.faq-title:after {
    content: "";
    position: absolute;
    left: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 20px;
    background-color: #0094FF;
    top: auto;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.faq-title:before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.faq-title.active:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq-content {
    display: none;
    padding: 0 30px;
    margin-top: 20px;
    color: #647185;
    line-height: 24px;
}

@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 14px;
        line-height: 18px;
    }

    .faq-title:before,
    .faq-title:after {
        height: 15px;
    }

    .faq-content {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 540px) {
    .faq-block {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}
/* /questions */

.detail-warning {
    position: relative;
    background-color: #FFF1CF;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0 40px;
}
.detail-warning:before {
    content:"";
    display: inline-block;
    vertical-align: middle;
    background: url('/local/templates/depohost/pictures/icons/warning.svg') no-repeat center/cover;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* rent server */

.popular-dedicated-servers-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 24px 30px 75px;
    /*-webkit-box-shadow: 0 10px 40px rgba(65, 69, 96, 0.1);*/
    /*box-shadow: 0 10px 40px rgba(65, 69, 96, 0.1);*/
    background-color: #FFFFFF;
    border-radius: 12px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    max-width: 300px;
}

.popular-dedicated-servers-item:last-child {
    margin-right: 0;
}

.popular-dedicated-servers-item:hover {
    -webkit-box-shadow: 0 5px 10px #0004;
    box-shadow: 0 5px 10px #0004;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.popular-dedicated-servers-item__title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.popular-dedicated-servers-item__label {
    position: absolute;
    right: 0;
    top: 20px;
    display: inline-block;
    vertical-align: top;
    padding: 7px 20px 7px 10px;
    color: #FFFFFF;
    border-radius: 6px 0 0 6px;
}

.popular-dedicated-servers-item__label:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 6px;
}

.popular-dedicated-servers-item__label.hit {
    background-color: #FF603D;
}

.popular-dedicated-servers-item__label.hit:before {
    background: url("/local/templates/depohost/components/bitrix/news.detail/news/../../../../pictures/icons/star.svg");
}

.popular-dedicated-servers-item__label.recommended {
    background-color: #00BF7A;
}

.popular-dedicated-servers-item__label.recommended:before {
    background: url("/local/templates/depohost/components/bitrix/news.detail/news/../../../../pictures/icons/like.svg");
}

.popular-dedicated-servers-item__price {
    display: block;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}

.popular-dedicated-servers-item-characteristics {
    margin: 20px 0 50px;
}

.popular-dedicated-servers-item-characteristics li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.popular-dedicated-servers-item-characteristics li:last-child {
    margin-bottom: 0;
}

.popular-dedicated-servers-item-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
}

.popular-dedicated-servers-item__label {
    display: inline-block;
    vertical-align: top;
    padding: 7px 20px 7px 10px;
    color: #FFFFFF;
    border-radius: 6px;
}

.popular-dedicated-servers-item__label:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 6px;
}

.popular-dedicated-servers-item__label.hit {
    background-color: #FF603D;
}

.popular-dedicated-servers-item__label.hit:before {
    background-image: url("/local/templates/depohost/pictures/icons/star.svg");
}

.popular-dedicated-servers-item__label.sale {
    background-color: #00BF7A;
}

.popular-dedicated-servers-item__label.sale:before {
    background-image: url("/local/templates/depohost/pictures/icons/percent.svg");
}

.popular-dedicated-servers-item__label.bitrix {
    background-color: #F9A400;
}

.popular-dedicated-servers-item__label.bitrix:before {
    width: 27px;
    background-image: url("/local/templates/depohost/pictures/icons/1c-icon-small.svg");
}

@media screen and (max-width: 1400px) {
    .popular-dedicated-servers-sort-item {
        font-size: 11px;
    }

    .popular-dedicated-servers-item__title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .popular-dedicated-servers-item__price {
        font-size: 24px;
        line-height: 30px;
    }

    .popular-dedicated-servers-item-bottom .btn {
        font-size: 14px;
        padding: 5px 10px;
    }

    .popular-dedicated-servers-item-bottom .link {
        font-size: 12px;
    }
}

@media screen and (max-width: 992px) {
    .popular-dedicated-servers-sort-item {
        padding: 9px 7px;
    }

    .popular-dedicated-servers-item-bottom .btn {
        font-size: 18px;
        padding: 10px 20px;
    }

    .popular-dedicated-servers-item-bottom .link {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .popular-dedicated-servers-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .popular-dedicated-servers-sort {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 20px;
        width: 100%;
    }

    .popular-dedicated-servers-sort-item {
        font-size: 16px;
        padding: 13px 15px;
    }

    .popular-dedicated-servers-item {
        width: 350px;
    }
}

@media screen and (max-width: 540px) {
    .popular-dedicated-servers-sort {
        display: none;
    }

    .popular-dedicated-servers-dropdowns {
        display: block;
    }
}
/* /rent server */
/* End */
/* /local/templates/depohost/components/bitrix/news.detail/news/style.css?168837225011524 */
